

/* ===== BOTONES HERO - LIQUID GLASS EFFECT ===== */

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 1.2rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Efecto de brillo líquido */
.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

/* Botón Vender - Dorado */
.hero-btn-vender {
    background: rgba(212, 175, 55, 1);
    border: 2px solid rgba(212, 175, 55, 0.5);
    color: #383737;
}

.hero-btn-vender:hover {
    background: rgba(212, 175, 55, 0.35);
    border-color: rgba(212, 175, 55, 0.8);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 45px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Botón Comprar - Azul/Morado */
.hero-btn-comprar {
    background: rgba(53, 51, 205, 1);
    border: 2px solid rgba(53, 51, 205, 0.5);
    color: #ffffff;
}

.hero-btn-comprar:hover {
    background: rgba(53, 51, 205, 0.35);
    border-color: rgba(53, 51, 205, 0.8);
    color: #fff;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 15px 45px rgba(53, 51, 205, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

.hero-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Animación de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE - BOTONES HERO ===== */

/* Tablets grandes */
@media (max-width: 1024px) {
    .hero-buttons {
        gap: 1.2rem;
        margin-top: 2rem;
    }
    
    .hero-btn {
        padding: 1.1rem 1.8rem;
        font-size: 1rem;
    }
    
    .hero-btn i {
        font-size: 1.2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero-buttons {
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .hero-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        letter-spacing: 0.5px;
    }
    
    .hero-btn i {
        font-size: 1.1rem;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .hero-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .hero-btn i {
        font-size: 1rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 400px) {
    .hero-buttons {
        gap: 0.8rem;
        margin-top: 1.2rem;
    }
    
    .hero-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-btn i {
        font-size: 0.95rem;
    }
}

/* ===== FOOTER - LIQUID GLASS EFFECT ===== */

footer {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 5% 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

/* Sección superior del footer */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Marca y descripción */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 80px;
    margin-bottom: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Redes sociales en footer */
.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
    color: #d4af37;
    transform: translateY(-3px);
}

.social-link.facebook:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.4);
    color: #1877f2;
}

.social-link.whatsapp:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25d366;
}

/* Columnas del footer */
.footer-column h3 {
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-column ul li i {
    color: #d4af37;
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column a:hover {
    color: #d4af37;
    transform: translateX(3px);
}

/* Sección de servicios/partners */
.partners-section {
    padding: 2.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partners-title {
    text-align: center;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo {
    transition: all 0.3s ease;
    width: 100%;
    max-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.partner-logo img {
    width: 100%;
    height: auto;
    max-height: 150px;
    object-fit: contain;
    filter: brightness(0.9);
    transition: filter 0.3s ease;
}

.partner-logo:hover img {
    filter: brightness(1.1);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links-bottom {
    display: flex;
    gap: 2rem;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #d4af37;
}

/* ===== RESPONSIVE DESIGN - FOOTER ===== */

/* Tablets grandes */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-column:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    footer {
        padding: 3rem 4% 2rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        height: 70px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    footer {
        padding: 3rem 4% 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        height: 65px;
    }
    
    .footer-description {
        font-size: 0.9rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column ul li {
        font-size: 0.9rem;
    }
    
    .partners-section {
        padding: 2rem 0;
    }
    
    .partners-title {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
    
    .partner-logo {
        padding: 1.2rem;
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 1.5rem;
    }
    
    .footer-links-bottom {
        gap: 1.5rem;
    }
}

/* Móviles */
@media (max-width: 576px) {
    footer {
        padding: 2.5rem 3% 1.5rem;
        margin-top: 2.5rem;
    }
    
    .footer-top {
        gap: 2rem;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo {
        height: 60px;
    }
    
    .footer-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-social {
        gap: 0.8rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-column h3 {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .footer-column ul li {
        margin-bottom: 0.7rem;
        font-size: 0.85rem;
    }
    
    .partners-section {
        padding: 1.5rem 0;
        margin-bottom: 1.5rem;
    }
    
    .partners-title {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        letter-spacing: 1px;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .partner-logo {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .partner-logo img {
        max-height: 50px;
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
        gap: 1.2rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
    }
    
    .footer-links-bottom {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-links-bottom a {
        font-size: 0.85rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 400px) {
    footer {
        padding: 2rem 2% 1.2rem;
    }
    
    .footer-top {
        gap: 1.5rem;
    }
    
    .footer-logo {
        height: 55px;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-column h3 {
        font-size: 1rem;
    }
    
    .footer-column ul li {
        font-size: 0.8rem;
    }
    
    .partners-title {
        font-size: 1rem;
    }
    
    .partners-grid {
        gap: 0.8rem;
    }
    
    .partner-logo {
        padding: 0.8rem;
    }
    
    .partner-logo img {
        max-height: 45px;
    }
    
    .footer-copyright,
    .footer-links-bottom a {
        font-size: 0.8rem;
    }
}



/*NO TOCAR */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            background: linear-gradient(135deg, #000000 0%, #3533cd 100%);
            min-height: 100vh;
        }

        /* Secciones */
        .section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 1rem;
            color: #fff;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            padding-bottom: 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(#3533cd 100%);
            border-radius: 2px;
        }

        .section-content {
            text-align: center;
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            line-height: 1.8;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        /* Grid de servicios */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 107, 53, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: rgba(255, 215, 0, 0.3);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }

        .service-card > * {
            position: relative;
            z-index: 1;
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 215, 0, 0.3);
        }

        .service-img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .service-title {
            font-size: 1.5rem;
            color: #ffffff;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .service-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /*botón CONOCER MÁS*/
        .service-btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #000000 0%, #3533cd 100%);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }

        .service-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
        }

        /* Mapas */
        .map-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .map-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
        }

        .map-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.3);
        }

        .map-item h3 {
            color: #ffffff;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .map-placeholder iframe {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .office-info {
            margin-top: 1.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .office-info p {
            margin: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            font-size: 1rem;
        }

        .office-info i {
            color: #ffffff;
            font-size: 1.1rem;
        }

        /* Botones flotantes */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 1000;
        }

        .floating-buttons a {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            text-decoration: none;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .whatsapp {
            background: rgba(37, 211, 102, 0.8);
        }

        .whatsapp:hover {
            background: rgba(37, 211, 102, 1);
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
        }

        .facebook {
            background: rgba(24, 119, 242, 0.8);
        }

        .facebook:hover {
            background: rgba(24, 119, 242, 1);
            transform: scale(1.1) rotate(-5deg);
            box-shadow: 0 12px 30px rgba(24, 119, 242, 0.5);
        }

        /* Menú de navegación */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 1rem 5%;
            transition: background 0.3s ease;
        }

        nav:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo img {
            height: 60px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #ffd700;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #ffd700;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Menú desplegable */
        .dropdown {
            position: relative;
        }

        .dropdown-content {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: rgba(0, 0, 0, 0.9);
            min-width: 200px;
            padding: 1rem 0;
            margin-top: 0.5rem;
            border-radius: 8px;
        }

        .dropdown-content a {
            display: block;
            padding: 0.8rem 1.5rem;
            color: white;
        }

        .dropdown:hover .dropdown-content {
            display: block;
        }

        /* Menú hamburguesa para móvil */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            transition: 0.3s;
        }

        /* Hero Section con carrusel */
        .hero {
            height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            animation: zoom 20s ease-in-out infinite;
        }

        @keyframes zoom {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
            padding: 5%;
            gap: 3rem;
        }

        .hero-left {
            flex: 1;
            color: white;
            max-width: 600px;
        }

        .hero-logo {
            width: 250px;
            margin-bottom: 2rem;
            animation: fadeInLeft 1s ease-out;
        }

        .hero-description {
            font-size: 1.3rem;
            line-height: 1.8;
            animation: fadeInLeft 1s ease-out 0.3s both;
        }

        .hero-right {
            flex: 1;
            max-width: 500px;
            animation: fadeInRight 1s ease-out 0.5s both;
        }

        .carousel {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0);
        }

        .carousel img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .carousel img.active {
            opacity: 1;
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 70%;
                height: calc(100vh - 70px);
                background: rgba(0, 0, 0, 0.95);
                flex-direction: column;
                justify-content: flex-start;
                padding: 2rem;
                transition: right 0.3s ease;
            }

            .nav-links.active {
                right: 0;
            }

            .dropdown-content {
                position: static;
                display: none;
                background: rgba(255, 255, 255, 0.1);
                margin: 0.5rem 0;
            }

            .dropdown.active .dropdown-content {
                display: block;
            }

            .hero-overlay {
                flex-direction: column;
                justify-content: center;
                padding: 2rem;
                padding-top: 6rem;
                gap: 2rem;
            }

            .hero-left {
                max-width: 100%;
                text-align: center;
            }

            .hero-logo {
                width: 180px;
                margin: 0 auto 1.5rem;
            }

            .hero-description {
                font-size: 1rem;
            }

            .hero-right {
                max-width: 100%;
                width: 100%;
            }

            .carousel {
                height: 300px;
            }

            nav {
                padding: 1rem 3%;
            }

            .section {
                padding: 3rem 5%;
            }

            .section-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .map-container {
                grid-template-columns: 1fr;
            }

            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }

            .floating-buttons a {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 480px) {
            .logo img {
                height: 50px;
            }

            .hero-logo {
                width: 150px;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .carousel {
                height: 250px;
            }

            .section-title {
                font-size: 1.7rem;
            }

            .service-title {
                font-size: 1.3rem;
            }

            .floating-buttons {
                bottom: 15px;
                right: 15px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-links {
                gap: 1.5rem;
            }

            .nav-links a {
                font-size: 0.95rem;
            }

            .hero-logo {
                width: 220px;
            }

            .hero-description {
                font-size: 1.1rem;
            }

            .carousel {
                height: 350px;
            }
        }

/* Estilos adicionales para los botones */
    .casa-botones {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: auto;
    }

    .casa-detalles-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
      color: #000;
      text-decoration: none;
      font-weight: 600;
      border-radius: 30px;
      transition: all 0.3s ease;
    }

    .casa-detalles-btn:hover {
      background: linear-gradient(135deg, #f4d03f 0%, #d4af37 100%);
      transform: scale(1.05);
    }
    /* ===== CATÁLOGO DE CASAS - LIQUID GLASS EFFECT ===== */

.casas-catalog-section {
    padding: 8rem 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.casas-catalog-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.casas-catalog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Grid de casas */
.casas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

/* Tarjeta de casa con efecto Liquid Glass */
.casa-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Efecto de brillo líquido */
.casa-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.casa-card:hover::before {
    left: 100%;
}

/* Efecto líquido en hover */
.casa-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Imagen con efecto glass */
.casa-card img {
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
    filter: brightness(0.9);
    display: block;
}

.casa-card:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Contenido de la tarjeta */
.casa-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Detalles de construcción */
.casa-details {
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.casa-details::before {
    content: '📐';
    font-size: 1.1rem;
}

/* Precio con efecto glass dorado */
.casa-price {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Contenedor de botones */
.casa-botones {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 1.5rem 1.5rem;
    margin-top: auto;
    position: relative;
    z-index: 2;
}

/* Botón ver detalles con glass effect */
.casa-detalles-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.casa-detalles-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.5);
    color: #f4d03f;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Botón WhatsApp con glass effect */
.casa-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.casa-whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
    color: #1fc952;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Animación de aparición */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Retraso escalonado para las tarjetas */
.casa-card:nth-child(1) { animation-delay: 0.1s; }
.casa-card:nth-child(2) { animation-delay: 0.2s; }
.casa-card:nth-child(3) { animation-delay: 0.3s; }
.casa-card:nth-child(4) { animation-delay: 0.4s; }
.casa-card:nth-child(5) { animation-delay: 0.5s; }
.casa-card:nth-child(6) { animation-delay: 0.6s; }
.casa-card:nth-child(7) { animation-delay: 0.7s; }
.casa-card:nth-child(8) { animation-delay: 0.8s; }

/* ===== FORMAS DE PAGO - LIQUID GLASS ===== */

.formas-pago {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.vende-casa-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

.vende-casa-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 10px;
}

.metodos-pago {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
}

.pago-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.pago-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 15px 40px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pago-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.pago-item:hover img {
    transform: scale(1.1);
}

.pago-item p {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* ===== VENDE TU CASA - LIQUID GLASS ===== */

.vende-casa-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.vende-casa-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    width: 100%;
}

.vende-casa-container:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.vende-casa-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.vende-casa-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.vende-casa-image:hover img {
    transform: scale(1.05);
}

.vende-casa-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.vende-casa-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
}

.btn-formulario {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 35px;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    align-self: flex-start;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-formulario:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
    color: #f4d03f;
    transform: translateX(5px);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-formulario i {
    font-size: 1.2rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets grandes y laptops pequeñas */
@media (max-width: 1200px) {
    .casas-catalog-section {
        padding: 7rem 4% 4rem;
    }
    
    .casas-grid {
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .casas-catalog-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .casas-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .vende-casa-container {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
    
    .formas-pago {
        padding: 4rem 4%;
    }
    
    .vende-casa-section {
        padding: 4rem 4%;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .casas-catalog-section {
        padding: 6rem 4% 3rem;
    }
    
    .casas-catalog-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1.5px;
    }
    
    .casas-catalog-title::after {
        width: 100px;
        height: 4px;
    }
    
    .casas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin: 2rem auto 0;
    }
    
    .casa-card {
        max-width: 100%;
    }
    
    .metodos-pago {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .vende-casa-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .vende-casa-container {
        padding: 2rem;
        gap: 2rem;
    }
    
    .vende-casa-description {
        font-size: 1rem;
        text-align: left;
    }
    
    .btn-formulario {
        width: 100%;
        align-self: stretch;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .casas-catalog-section {
        padding: 5rem 3% 2rem;
    }
    
    .casas-catalog-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
    }
    
    .casas-grid {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .casa-card {
        border-radius: 20px;
    }
    
    .casa-card img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .casa-card h3 {
        font-size: 1.1rem;
        padding: 1.2rem 1.2rem 0.8rem;
    }
    
    .casa-details {
        font-size: 0.85rem;
        padding: 0 1.2rem;
    }
    
    .casa-price {
        font-size: 1.6rem;
        padding: 0 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .casa-botones {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 1.2rem 1.2rem;
    }
    
    .casa-detalles-btn,
    .casa-whatsapp-btn {
        padding: 12px 16px;
        font-size: 0.85rem;
        width: 100%;
    }
    
    .metodos-pago {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
    
    .pago-item {
        padding: 1.5rem;
    }
    
    .pago-item img {
        width: 70px;
        height: 70px;
    }
    
    .pago-item p {
        font-size: 1rem;
    }
    
    .vende-casa-title {
        font-size: 1.8rem;
    }
    
    .vende-casa-container {
        padding: 1.5rem;
        border-radius: 20px;
        gap: 1.5rem;
    }
    
    .vende-casa-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .btn-formulario {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .formas-pago {
        padding: 3rem 3%;
    }
    
    .vende-casa-section {
        padding: 3rem 3%;
    }
}

/* Móviles muy pequeños */
@media (max-width: 400px) {
    .casas-catalog-section {
        padding: 5rem 2% 2rem;
    }
    
    .casas-catalog-title {
        font-size: 1.5rem;
    }
    
    .casas-grid {
        gap: 1.2rem;
    }
    
    .casa-card img {
        height: auto;
        aspect-ratio: 1 / 1;
    }
    
    .casa-card h3 {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .casa-details {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .casa-price {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
    
    .casa-botones {
        padding: 0 1rem 1rem;
    }
    
    .casa-detalles-btn,
    .casa-whatsapp-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
    
    .pago-item img {
        width: 60px;
        height: 60px;
    }
    
    .pago-item p {
        font-size: 0.9rem;
    }
    
    .vende-casa-title {
        font-size: 1.6rem;
    }
    
    .vende-casa-container {
        padding: 1.2rem;
    }
    
    .vende-casa-description {
        font-size: 0.9rem;
    }
    
    .btn-formulario {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}
/* ===== SECCIÓN MEJORAVIT - LIQUID GLASS EFFECT ===== */

.servicios-section {
    padding: 8rem 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* ===== HERO DEL SERVICIO ===== */

.service-hero {
    text-align: center;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.service-hero:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.productos-catalog-title {
    font-size: 3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.productos-catalog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.service-description1 {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== SUBTÍTULOS DE SECCIÓN ===== */

.section-subtitle {
    font-size: 2.5rem;
    text-align: center;
    margin: 5rem 0 3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 10px;
}

/* ===== GRID DE REQUISITOS ===== */

.requisitos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}

.requisito-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Efecto de brillo líquido */
.requisito-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.requisito-item:hover::before {
    left: 100%;
}

.requisito-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.requisito-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.requisito-item:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.3));
}

.requisito-item h4 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* ===== FORMULARIO DE CONTACTO ===== */

.form-contacto {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.form-contacto:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-enviar {
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-enviar:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.6);
    color: #1fc952;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-enviar i {
    font-size: 1.4rem;
}

/* ===== GRID DE SERVICIOS ADICIONALES ===== */

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

.servicio-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Efecto de brillo líquido */
.servicio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.servicio-card:hover::before {
    left: 100%;
}

.servicio-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.servicio-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
    filter: brightness(0.9);
    display: block;
}

.servicio-card:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

.servicio-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    min-height: 90px;
    display: flex;
    align-items: center;
}

.servicio-info {
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.servicio-info i {
    color: #d4af37;
    font-size: 1rem;
}

.servicio-precio {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.servicio-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    margin: 0 1.5rem 1.5rem;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.servicio-whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
    color: #1fc952;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ===== ANIMACIONES ===== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

/* Retraso escalonado */
.requisito-item:nth-child(1),
.servicio-card:nth-child(1) { animation-delay: 0.1s; }
.requisito-item:nth-child(2),
.servicio-card:nth-child(2) { animation-delay: 0.2s; }
.servicio-card:nth-child(3) { animation-delay: 0.3s; }
.servicio-card:nth-child(4) { animation-delay: 0.4s; }

.service-hero.fade-in { animation-delay: 0s; }
.form-contacto.fade-in { animation-delay: 0.1s; }

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets grandes y laptops pequeñas */
@media (max-width: 1200px) {
    .servicios-section {
        padding: 7rem 4% 4rem;
    }
    
    .servicios-grid,
    .requisitos-grid {
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .productos-catalog-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .service-description1 {
        font-size: 1.1rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
    }
    
    .servicios-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .requisitos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .servicios-section {
        padding: 6rem 4% 3rem;
    }
    
    .service-hero {
        padding: 3rem 2rem;
        margin-bottom: 3rem;
    }
    
    .productos-catalog-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }
    
    .productos-catalog-title::after {
        width: 100px;
        height: 4px;
    }
    
    .service-description1 {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
        margin: 3rem 0 2rem;
    }
    
    .section-subtitle::after {
        width: 80px;
    }
    
    .requisitos-grid,
    .servicios-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .form-contacto {
        padding: 2.5rem 2rem;
    }
    
    .servicio-card h3 {
        min-height: auto;
        font-size: 1.2rem;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .servicios-section {
        padding: 5rem 3% 2rem;
    }
    
    .service-hero {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
        margin-bottom: 2.5rem;
    }
    
    .productos-catalog-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
        padding-bottom: 0.8rem;
    }
    
    .productos-catalog-title::after {
        width: 80px;
        height: 3px;
    }
    
    .service-description1 {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
        letter-spacing: 1px;
        margin: 2.5rem 0 1.5rem;
    }
    
    .section-subtitle::after {
        width: 60px;
        height: 3px;
    }
    
    .requisitos-grid,
    .servicios-grid {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .requisito-item {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .requisito-item img {
        max-width: 200px;
    }
    
    .requisito-item h4 {
        font-size: 1.1rem;
    }
    
    .form-contacto {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-enviar {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .btn-enviar i {
        font-size: 1.2rem;
    }
    
    .servicio-card {
        border-radius: 20px;
    }
    
    .servicio-card h3 {
        font-size: 1.1rem;
        padding: 1.2rem 1.2rem 0.8rem;
    }
    
    .servicio-info {
        font-size: 0.85rem;
        padding: 0 1.2rem;
    }
    
    .servicio-precio {
        font-size: 1.6rem;
        padding: 0 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .servicio-whatsapp-btn {
        padding: 12px 16px;
        margin: 0 1.2rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 400px) {
    .servicios-section {
        padding: 5rem 2% 2rem;
    }
    
    .service-hero {
        padding: 2rem 1.2rem;
    }
    
    .productos-catalog-title {
        font-size: 1.5rem;
    }
    
    .service-description1 {
        font-size: 0.9rem;
    }
    
    .section-subtitle {
        font-size: 1.3rem;
    }
    
    .requisitos-grid,
    .servicios-grid {
        gap: 1.2rem;
    }
    
    .requisito-item {
        padding: 1.5rem 1rem;
    }
    
    .requisito-item img {
        max-width: 180px;
    }
    
    .requisito-item h4 {
        font-size: 1rem;
    }
    
    .form-contacto {
        padding: 1.5rem 1rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-enviar {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .servicio-card h3 {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .servicio-info {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .servicio-precio {
        font-size: 1.4rem;
        padding: 0 1rem;
    }
    
    .servicio-whatsapp-btn {
        padding: 10px 14px;
        margin: 0 1rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===== CATÁLOGO DE PRODUCTOS - LIQUID GLASS EFFECT ===== */

.productos-catalog-section {
    padding: 8rem 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.productos-catalog-title {
    font-size: 3rem;
    text-align: center;
    margin: 5rem 0 3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1.5rem;
    animation: fadeInDown 1s ease-out;
}

.productos-catalog-title:first-of-type {
    margin-top: 0;
}

.productos-catalog-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Grid de productos */
.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    width: 100%;
}

/* Tarjeta de producto con efecto Liquid Glass */
.producto-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    width: 100%;
}

/* Efecto de brillo líquido */
.producto-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.producto-card:hover::before {
    left: 100%;
}

/* Efecto líquido en hover */
.producto-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Imagen con efecto glass - CUADRADA 1:1 */
.producto-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    position: relative;
    z-index: 0;
    transition: all 0.5s ease;
    filter: brightness(0.9);
    display: block;
}

.producto-card:hover img {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Contenido de la tarjeta */
.producto-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    min-height: 90px;
    display: flex;
    align-items: center;
}

/* Precio con efecto glass dorado */
.producto-price {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37, #f4d03f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* Botón WhatsApp con glass effect */
.producto-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    margin: 0 1.5rem 1.5rem;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 4px 15px rgba(37, 211, 102, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    margin-top: auto;
}

.producto-whatsapp-btn:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.5);
    color: #1fc952;
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.producto-whatsapp-btn i {
    font-size: 1.1rem;
}

/* Animaciones */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Retraso escalonado para las tarjetas */
.producto-card:nth-child(1) { animation-delay: 0.1s; }
.producto-card:nth-child(2) { animation-delay: 0.2s; }
.producto-card:nth-child(3) { animation-delay: 0.3s; }
.producto-card:nth-child(4) { animation-delay: 0.4s; }
.producto-card:nth-child(5) { animation-delay: 0.5s; }
.producto-card:nth-child(6) { animation-delay: 0.6s; }
.producto-card:nth-child(7) { animation-delay: 0.7s; }
.producto-card:nth-child(8) { animation-delay: 0.8s; }

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets grandes y laptops pequeñas */
@media (max-width: 1200px) {
    .productos-catalog-section {
        padding: 7rem 4% 4rem;
    }
    
    .productos-grid {
        gap: 2rem;
    }
    
    .productos-catalog-title {
        font-size: 2.8rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .productos-catalog-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
        margin: 4rem 0 2.5rem;
    }
    
    .productos-catalog-title:first-of-type {
        margin-top: 0;
    }
    
    .productos-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .producto-card h3 {
        font-size: 1.15rem;
        min-height: 85px;
    }
    
    .producto-price {
        font-size: 1.7rem;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .productos-catalog-section {
        padding: 6rem 4% 3rem;
    }
    
    .productos-catalog-title {
        font-size: 2rem;
        margin: 3rem 0 2rem;
        padding-bottom: 1rem;
        letter-spacing: 1.5px;
    }
    
    .productos-catalog-title:first-of-type {
        margin-top: 0;
    }
    
    .productos-catalog-title::after {
        width: 100px;
        height: 4px;
    }
    
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .producto-card {
        border-radius: 20px;
    }
    
    .producto-card h3 {
        font-size: 1rem;
        padding: 1.2rem 1.2rem 0.8rem;
        min-height: 80px;
    }
    
    .producto-price {
        font-size: 1.5rem;
        padding: 0 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .producto-whatsapp-btn {
        padding: 12px 16px;
        margin: 0 1.2rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .productos-catalog-section {
        padding: 5rem 3% 2rem;
    }
    
    .productos-catalog-title {
        font-size: 1.7rem;
        letter-spacing: 1px;
        margin: 2.5rem 0 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .productos-catalog-title:first-of-type {
        margin-top: 0;
    }
    
    .productos-catalog-title::after {
        width: 80px;
        height: 3px;
    }
    
    .productos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .producto-card {
        max-width: 100%;
    }
    
    .producto-card h3 {
        font-size: 1.1rem;
        padding: 1.2rem 1.2rem 0.8rem;
        min-height: auto;
    }
    
    .producto-price {
        font-size: 1.6rem;
        padding: 0 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .producto-whatsapp-btn {
        padding: 12px 16px;
        margin: 0 1.2rem 1.2rem;
        font-size: 0.85rem;
        width: calc(100% - 2.4rem);
    }
}

/* Móviles muy pequeños */
@media (max-width: 400px) {
    .productos-catalog-section {
        padding: 5rem 2% 2rem;
    }
    
    .productos-catalog-title {
        font-size: 1.5rem;
        margin: 2rem 0 1.2rem;
    }
    
    .productos-catalog-title:first-of-type {
        margin-top: 0;
    }
    
    .productos-catalog-title::after {
        width: 60px;
        height: 3px;
    }
    
    .productos-grid {
        gap: 1.2rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .producto-card {
        border-radius: 18px;
    }
    
    .producto-card h3 {
        font-size: 1rem;
        padding: 1rem;
        min-height: auto;
    }
    
    .producto-price {
        font-size: 1.4rem;
        padding: 0 1rem;
        margin-bottom: 1rem;
    }
    
    .producto-whatsapp-btn {
        padding: 10px 14px;
        margin: 0 1rem 1rem;
        font-size: 0.8rem;
        width: calc(100% - 2rem);
    }
    
    .producto-whatsapp-btn i {
        font-size: 1rem;
    }
}

/* Ajuste especial para 2 columnas en móviles medianos */
@media (min-width: 450px) and (max-width: 576px) {
    .productos-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }
    
    .producto-card h3 {
        font-size: 0.95rem;
        padding: 1rem;
    }
    
    .producto-price {
        font-size: 1.4rem;
    }
    
    .producto-whatsapp-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

/* ===== SECCIÓN DE RESEÑAS - LIQUID GLASS EFFECT ===== */

.reviews-section {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.reviews-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

.reviews-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Grid de reseñas */
.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    width: 100%;
}

/* Tarjeta de reseña con efecto Liquid Glass */
.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Efecto de brillo líquido */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.review-card:hover::before {
    left: 100%;
}

/* Efecto líquido en hover */
.review-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(212, 175, 55, 0.2),
        0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Estrellas */
.stars {
    font-size: 2rem;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    letter-spacing: 5px;
    position: relative;
    z-index: 2;
}

/* Texto de la reseña */
.review-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    position: relative;
    z-index: 2;
    flex: 1;
}

.review-text::before {
    content: '"';
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.3);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: Georgia, serif;
    z-index: -1;
}

/* Autor de la reseña */
.review-author {
    color: #d4af37;
    font-size: 1rem;
    font-weight: 600;
    text-align: right;
    position: relative;
    z-index: 2;
    margin-top: auto;
}

/* Animación fade-in */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Retraso escalonado para las tarjetas */
.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.2s; }
.review-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets grandes y laptops pequeñas */
@media (max-width: 1200px) {
    .reviews-section {
        padding: 4rem 4%;
    }
    
    .reviews {
        gap: 2rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .reviews-section h2 {
        font-size: 2.2rem;
        margin-bottom: 3rem;
        letter-spacing: 2px;
    }
    
    .reviews {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .review-card {
        padding: 2rem;
    }
    
    .stars {
        font-size: 1.8rem;
    }
    
    .review-text {
        font-size: 1.05rem;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 4%;
    }
    
    .reviews-section h2 {
        font-size: 2rem;
        margin-bottom: 2.5rem;
        letter-spacing: 1.5px;
    }
    
    .reviews-section h2::after {
        width: 100px;
        height: 3px;
    }
    
    .reviews {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .review-card {
        border-radius: 20px;
    }
    
    .review-text {
        font-size: 1rem;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .reviews-section {
        padding: 3rem 3%;
    }
    
    .reviews-section h2 {
        font-size: 1.7rem;
        letter-spacing: 1px;
        margin-bottom: 2rem;
        padding-bottom: 0.8rem;
    }
    
    .reviews-section h2::after {
        width: 80px;
        height: 3px;
    }
    
    .reviews {
        gap: 1.5rem;
        max-width: 500px;
    }
    
    .review-card {
        padding: 2rem 1.5rem;
        gap: 1.2rem;
    }
    
    .stars {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
    
    .review-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .review-text::before {
        font-size: 2.5rem;
        top: -15px;
    }
    
    .review-author {
        font-size: 0.9rem;
    }
}

/* Móviles muy pequeños */
@media (max-width: 400px) {
    .reviews-section {
        padding: 2.5rem 2%;
    }
    
    .reviews-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .reviews-section h2::after {
        width: 60px;
    }
    
    .reviews {
        gap: 1.2rem;
        max-width: 100%;
    }
    
    .review-card {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
    }
    
    .stars {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .review-text {
        font-size: 0.9rem;
    }
    
    .review-text::before {
        font-size: 2rem;
        top: -12px;
    }
    
    .review-author {
        font-size: 0.85rem;
    }
}
/* ===== SECCIÓN DE CONTACTO - LIQUID GLASS EFFECT ===== */

.contacto-section {
    padding: 8rem 5% 5rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Subtítulos de sección */
.section-subtitle {
    font-size: 2.5rem;
    text-align: center;
    margin: 5rem 0 3rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 1rem;
}

.section-subtitle:first-of-type {
    margin-top: 0;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    border-radius: 10px;
}

/* ===== HERO CON FORMULARIO E IMAGEN ===== */

.hero-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
}

/* Contenedor del formulario */
.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.contact-form-container:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-enviar {
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 211, 102, 0.4);
    color: #25d366;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 8px 25px rgba(37, 211, 102, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
}

.btn-enviar:hover {
    background: rgba(37, 211, 102, 0.25);
    border-color: rgba(37, 211, 102, 0.6);
    color: #1fc952;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(37, 211, 102, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-enviar i {
    font-size: 1.4rem;
}

/* Imagen de contacto */
.contact-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.contact-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.contact-image:hover img {
    transform: scale(1.05);
}

/* ===== SECCIÓN DE UBICACIÓN ===== */

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

/* Información de ubicación */
.location-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-info:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.location-info h3 {
    color: #d4af37;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    align-items: flex-start;
}

.info-item i {
    color: #d4af37;
    font-size: 1.5rem;
    min-width: 30px;
    text-align: center;
    margin-top: 5px;
}

.info-item div {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
}

.info-item strong {
    color: #fff;
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

/* Mapa */
.map-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.map-container:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.map-container iframe {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

/* ===== GRID DE REDES SOCIALES ===== */

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

.social-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* Efecto de brillo líquido */
.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.7s ease;
    z-index: 1;
}

.social-card:hover::before {
    left: 100%;
}

.social-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(24, 119, 242, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 20px 60px rgba(24, 119, 242, 0.3),
        0 0 0 1px rgba(24, 119, 242, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Logo de redes sociales */
.social-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.social-card:hover .social-logo {
    transform: scale(1.1);
    border-color: rgba(24, 119, 242, 0.5);
    box-shadow: 0 15px 50px rgba(24, 119, 242, 0.4);
}

.social-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botón de Facebook */
.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 35px;
    background: rgba(24, 119, 242, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(24, 119, 242, 0.4);
    color: #1877f2;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 25px rgba(24, 119, 242, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
    letter-spacing: 2px;
}

.social-btn:hover {
    background: rgba(24, 119, 242, 0.25);
    border-color: rgba(24, 119, 242, 0.6);
    color: #0e5fc7;
    transform: translateY(-2px);
    box-shadow: 
        0 12px 35px rgba(24, 119, 242, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-btn i {
    font-size: 1.3rem;
}

/* Animación fade-in */
.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Retraso escalonado */
.hero-contact.fade-in { animation-delay: 0.1s; }
.location-content.fade-in { animation-delay: 0.1s; }

.social-card:nth-child(1) { animation-delay: 0.1s; }
.social-card:nth-child(2) { animation-delay: 0.2s; }
.social-card:nth-child(3) { animation-delay: 0.3s; }

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets grandes y laptops pequeñas */
@media (max-width: 1200px) {
    .contacto-section {
        padding: 7rem 4% 4rem;
    }
    
    .hero-contact,
    .location-content {
        gap: 2.5rem;
    }
}

/* Tablets */
@media (max-width: 992px) {
    .section-subtitle {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
    
    .hero-contact,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2.5rem;
    }
    
    .location-info h3 {
        font-size: 1.8rem;
    }
    
    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

/* Tablets pequeñas */
@media (max-width: 768px) {
    .contacto-section {
        padding: 6rem 4% 3rem;
    }
    
    .section-subtitle {
        font-size: 2rem;
        margin: 3rem 0 2rem;
        letter-spacing: 1.5px;
    }
    
    .section-subtitle:first-of-type {
        margin-top: 0;
    }
    
    .section-subtitle::after {
        width: 100px;
        height: 3px;
    }
    
    .hero-contact,
    .location-content {
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .contact-form-container {
        padding: 2.5rem 2rem;
        border-radius: 25px;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    .btn-enviar {
        font-size: 1.1rem;
        padding: 1.1rem 1.8rem;
    }
    
    .location-info {
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .location-info h3 {
        font-size: 1.6rem;
    }
    
    .info-item {
        gap: 1rem;
    }
    
    .info-item i {
        font-size: 1.3rem;
    }
    
    .map-container iframe {
        min-height: 350px;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .social-logo {
        width: 130px;
        height: 130px;
    }
}

/* Móviles */
@media (max-width: 576px) {
    .contacto-section {
        padding: 5rem 3% 2rem;
    }
    
    .section-subtitle {
        font-size: 1.7rem;
        letter-spacing: 1px;
        margin: 2.5rem 0 1.5rem;
        padding-bottom: 0.8rem;
    }
    
    .section-subtitle:first-of-type {
        margin-top: 0;
    }
    
    .section-subtitle::after {
        width: 80px;
        height: 3px;
    }
    
    .hero-contact,
    .location-content {
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .btn-enviar {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 1.5px;
    }
    
    .btn-enviar i {
        font-size: 1.2rem;
    }
    
    .contact-image {
        border-radius: 20px;
    }
    
    .location-info {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        gap: 1.5rem;
    }
    
    .location-info h3 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .info-item {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .info-item i {
        font-size: 1.2rem;
        min-width: 25px;
    }
    
    .map-container {
        padding: 1.2rem;
        border-radius: 20px;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
    
    .social-grid {
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .social-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
        gap: 1.5rem;
    }
    
    .social-logo {
        width: 120px;
        height: 120px;
    }
    
    .social-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
        letter-spacing: 1.5px;
    }
}

/* Móviles muy pequeños */
@media (max-width: 400px) {
    .contacto-section {
        padding: 5rem 2% 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
        margin: 2rem 0 1.2rem;
    }
    
    .section-subtitle:first-of-type {
        margin-top: 0;
    }
    
    .section-subtitle::after {
        width: 60px;
    }
    
    .hero-contact,
    .location-content {
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-enviar {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    
    .location-info {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }
    
    .location-info h3 {
        font-size: 1.3rem;
    }
    
    .info-item {
        font-size: 0.85rem;
    }
    
    .map-container {
        padding: 1rem;
        border-radius: 18px;
    }
    
    .map-container iframe {
        min-height: 250px;
    }
    
    .social-card {
        padding: 1.8rem 1.2rem;
        border-radius: 18px;
    }
    
    .social-logo {
        width: 100px;
        height: 100px;
    }
    
    .social-btn {
        padding: 10px 24px;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }
    
    .social-btn i {
        font-size: 1.1rem;
    }
}
/* ===== FORMULARIO DE VENTA DE CASA - LIQUID GLASS ===== */

.form-venta-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    max-width: 900px;
    margin: 0 auto;
}

.form-venta-container:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 25px 70px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.required {
    color: #ff6b6b;
    font-weight: 700;
}

.form-venta-container .form-group input[type="text"],
.form-venta-container .form-group input[type="tel"],
.form-venta-container .form-group input[type="date"],
.form-venta-container .form-group input[type="time"],
.form-venta-container .form-group input[type="number"],
.form-venta-container .form-group select,
.form-venta-container .form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.form-venta-container .form-group input[type="text"]:focus,
.form-venta-container .form-group input[type="tel"]:focus,
.form-venta-container .form-group input[type="date"]:focus,
.form-venta-container .form-group input[type="time"]:focus,
.form-venta-container .form-group input[type="number"]:focus,
.form-venta-container .form-group select:focus,
.form-venta-container .form-group textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.form-venta-container select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-venta-container select option {
    background: #1a1a2e;
    color: #fff;
}

/* Radio buttons y checkboxes */
.radio-group, .checkbox-group {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-option, .checkbox-option {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    font-size: 0.95rem;
}

.radio-option input[type="radio"],
.checkbox-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #d4af37;
}

/* File upload */
.file-upload {
    position: relative;
    display: inline-block;
    width: 100%;
}

.file-upload input[type="file"] {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-upload input[type="file"]:hover {
    border-color: rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.05);
}

/* Botón de envío del formulario */
.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #d4af37;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 
        0 8px 25px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: rgba(212, 175, 55, 0.25);
    border-color: rgba(212, 175, 55, 0.6);
    color: #f4d03f;
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Mensajes de éxito y error */
.success-message, .error-message {
    display: none;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: slideDown 0.4s ease-out;
}

.success-message {
    background: rgba(72, 187, 120, 0.15);
    border: 2px solid rgba(72, 187, 120, 0.4);
    color: #48bb78;
}

.error-message {
    background: rgba(245, 101, 101, 0.15);
    border: 2px solid rgba(245, 101, 101, 0.4);
    color: #f56565;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading spinner */
.spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-top-color: #d4af37;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 1rem auto 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.other-input {
    display: none;
    margin-top: 0.8rem;
}

.other-input.show {
    display: block;
}

/* ===== RESPONSIVE - FORMULARIO VENTA ===== */

@media (max-width: 768px) {
    .form-venta-container {
        padding: 2.5rem 2rem;
        border-radius: 25px;
    }
    
    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .radio-group, .checkbox-group {
        gap: 1.2rem;
    }
    
    .submit-btn {
        font-size: 1.1rem;
        padding: 1.1rem 1.8rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 576px) {
    .form-venta-container {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .form-venta-container .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-venta-container .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }
    
    .form-venta-container .form-group input,
    .form-venta-container .form-group select,
    .form-venta-container .form-group textarea {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .radio-group, .checkbox-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 400px) {
    .form-venta-container {
        padding: 1.5rem 1rem;
        border-radius: 18px;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .form-venta-container .form-group label {
        font-size: 0.9rem;
    }
    
    .form-venta-container .form-group input,
    .form-venta-container .form-group select,
    .form-venta-container .form-group textarea {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
}
/* ===== PÁGINA DE DETALLES - LIQUID GLASS & 1:1 PHOTOS ===== */

.detalles-container {
    padding: 8rem 5% 5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Breadcrumb Glass */
.breadcrumb {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
    transition: 0.3s;
}

/* Grid y Contenedores con Efecto Glass */
.detalles-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.info-principal, .info-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    margin-bottom: 2.5rem;
}

/* Galería 1:1 (Cuadrada) */
.imagen-principal {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 1rem;
}

.imagen-principal img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la imagen llene el cuadrado */
    transition: transform 0.5s ease;
}

.miniaturas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.miniatura {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.3s;
    opacity: 0.6;
}

.miniatura.active, .miniatura:hover {
    border-color: #d4af37;
    opacity: 1;
}

.miniatura img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tipografía y Detalles */
.titulo-propiedad {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1rem;
}

.precio-destacado {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.medidas-container {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
}

.medida-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 15px;
    flex: 1;
    text-align: center;
}

.medida-valor {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}

/* Botones con estilo Glass */
.botones-accion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-accion {
    padding: 1rem;
    border-radius: 50px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border: 1px solid #25d366;
    color: #25d366;
}

.btn-whatsapp:hover {
    background: #25d366;
    color: #fff;
}

.btn-volver {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Métodos de Pago e Iconos */
.metodos-pago-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1.5rem;
}

.metodo-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 15px;
    transition: 0.3s;
}

.metodo-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.metodo-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 0.5rem;
}

/* Mapa */
.mapa-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%); /* Efecto mapa oscuro opcional */
}

/* Responsivo */
@media (max-width: 992px) {
    .detalles-grid {
        grid-template-columns: 1fr;
    }
}
/* Cambia el color de los párrafos y textos dentro de las secciones de información */
.descripcion-texto, 
.caracteristica-item span, 
.metodo-item p,
.ubicacion-info span,
.medida-label {
    color: rgba(255, 255, 255, 0.9); /* Blanco con una ligera transparencia para suavizar */
}

/* Asegura que el texto de las medidas (Construcción/Terreno) sea blanco sólido */
.medida-valor {
    color: #ffffff !important;
}
/* Cambia el color de los títulos de las secciones a blanco */
.info-section h2 {
    color: #ffffff;
    margin-bottom: 1.5rem; /* Espaciado opcional para que se vea mejor */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* También asegura que los iconos dentro de esos títulos sean blancos o dorados */
.info-section h2 i {
    color: #d4af37; /* Color dorado para resaltar los iconos */
}
/* Cambia el color de todos los íconos de Font Awesome en la página de detalles */
.detalles-container i {
    color: #ffffff; /* O puedes usar #d4af37 para que sean dorados y resalten más */
}

/* Si quieres que los íconos de las listas (Check y Rayo) tengan un color especial */
.caracteristica-item i {
    color: #d4af37; /* Dorado para que resalten las características */
    margin-right: 10px;
}

/* Íconos de las medidas (Casa y Regla) */
.medida-label i {
    color: #d4af37;
    margin-right: 5px;
}