/* 1. RESET Y VARIABLES - NUEVA ESTETICA 2026 */
:root {
    --amarillo: #FFCC00;
    --amarillo-hover: #E6B800;
    --azul: #003366;
    --azul-oscuro: #002244;
    --dorado: #D4AF37;
    --gris-claro: #F8F9FA;
    --gris-medio: #E9ECEF;
    --gris-texto: #4A4A4A;
    --negro: #000000;
    --blanco: #FFFFFF;
    --fuente-sans: 'Montserrat', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--fuente-sans);
    color: var(--negro);
    line-height: 1.6;
    background-color: var(--blanco);
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

/* 2. UTILIDADES GLOBALES */
.contenedor {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 1.25rem;
}

.centro { text-align: center; }
.al-izq { text-align: left; }
.al-der { text-align: right; }

.mt-10 { margin-top: 0.625rem; }
.mt-20 { margin-top: 1.25rem; }
.mt-30 { margin-top: 1.875rem; }
.mt-40 { margin-top: 2.5rem; }
.mt-50 { margin-top: 3.125rem; }
.mt-60 { margin-top: 3.75rem; }

.mb-10 { margin-bottom: 0.625rem; }
.mb-20 { margin-bottom: 1.25rem; }
.mb-30 { margin-bottom: 1.875rem; }
.mb-40 { margin-bottom: 2.5rem; }
.mb-50 { margin-bottom: 3.125rem; }

.pt-20 { padding-top: 1.25rem; }
.pt-30 { padding-top: 1.875rem; }
.pt-40 { padding-top: 2.5rem; }
.pt-50 { padding-top: 3.125rem; }

.py-40 { padding: 2.5rem 0; }
.py-50 { padding: 3.125rem 0; }
.py-60 { padding: 3.75rem 0; }
.py-80 { padding: 5rem 0; }
.py-100 { padding: 6.25rem 0; }

.fs-12 { font-size: 1.2rem; }
.fs-15 { font-size: 1.5rem; }
.fs-18 { font-size: 1.8rem; }
.fs-20 { font-size: 2rem; }
.fs-25 { font-size: 2.5rem; }
.fs-30 { font-size: 3rem; }

.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.display-block { display: block; }
.gap-10 { gap: 0.625rem; }
.gap-15 { gap: 0.9375rem; }

.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
}

.tag-amarillo {
    background: var(--amarillo);
    padding: 0.625rem 1.875rem;
    border-radius: 3.125rem;
    font-weight: 700;
    display: inline-block;
}

.bg-gris { background-color: var(--gris-claro); }
.bg-amarillo { background-color: var(--amarillo); }
.txt-amarillo { color: var(--amarillo); }
.txt-gris { color: var(--gris-texto); }
.txt-blanco { color: var(--blanco); }
.txt-dorado { color: var(--dorado); }
.txt-blanco-opaco { color: rgba(255,255,255,0.7); }
.al-inicio { align-items: flex-start; }
.relative { position: relative; }
.z-2 { z-index: 2; }
.z-3 { z-index: 3; }

.flex-1 { flex: 1; }
.flex-2 { flex: 2; }
.min-w-300 { min-width: 18.75rem; }

.border-radius-20 { border-radius: 1.25rem; }
.shadow-light { box-shadow: 0 0.3125rem 0.9375rem rgba(0,0,0,0.05); }
.border-top { border-top: 0.0625rem solid var(--gris-medio); }

.bg-hero-card { background-color: #E2E5E9; }
.bg-negro-final { background-color: #1A1A1A; }

.mr-10 { margin-right: 0.625rem; }

.centro-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

@media (max-width: 992px) {
    .centro-flex {
        flex-direction: column;
        text-align: center;
    }
    .centro-flex .al-izq { text-align: center; }
}

.google-estrellas-centro {
    display: flex;
    justify-content: center;
    gap: 0.125rem;
    color: #FABB05;
    font-size: 1.5rem;
}

.grid-equipo-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .grid-equipo-5 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .grid-equipo-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .grid-equipo-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .grid-equipo-5 { grid-template-columns: 1fr; }
}

.lh-18 { line-height: 1.8; }
.fs-115 { font-size: 1.15rem; }
.fs-09 { font-size: 0.9rem; }

.al-centro-v { align-items: center; }
.b-none { border: none; }
.bl-8-amarillo { border-left: 0.5rem solid var(--amarillo); }
.bg-blanco { background-color: var(--blanco); }

.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-600 { max-width: 37.5rem; }

/* 3. TIPOGRAFIA */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.2; letter-spacing: -0.02em; }
h1 strong, h2 strong, h3 strong { font-weight: 800; }

.fuente-manuscrita {
    font-family: 'Kalam', cursive;
    font-weight: 700;
}

.titulo-seccion {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Subrayado con efecto de trazo a mano alzada - REFINADO FINO */
.subrayado-amarillo {
    position: relative;
    display: inline-block;
    font-weight: 800;
    z-index: 1;
}

.subrayado-amarillo::after {
    content: '';
    position: absolute;
    bottom: -1px; 
    left: 5%; 
    width: 90%; 
    height: 8px; /* REDUCIDO PARA UN ACABADO MAS FINO */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 20' preserveAspectRatio='none'%3E%3Cpath d='M10,15 C150,5 350,20 490,12' stroke='%23FFCC00' stroke-width='6' stroke-linecap='round' fill='none' opacity='0.7'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

/* Estilo especifico para el resaltado que toma la palabra anterior (ahora tambien fino) */
.resaltado-prolongado {
    position: relative;
    display: inline-block;
}

.resaltado-prolongado::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -20px; 
    width: calc(100% + 25px);
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 500 20' preserveAspectRatio='none'%3E%3Cpath d='M10,15 C150,5 350,20 490,12' stroke='%23FFCC00' stroke-width='10' stroke-linecap='round' fill='none' opacity='0.7'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

/* 4. BOTONES */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.5rem, 4vw, 2.5rem);
    min-height: 3.125rem;
    border-radius: 0.5rem;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.btn-amarillo {
    background-color: var(--amarillo);
    color: var(--negro) !important;
    box-shadow: 0 4px 15px rgba(255, 204, 0, 0.3);
}

.btn-amarillo:hover {
    background-color: var(--amarillo-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 204, 0, 0.4);
}

.btn-outline {
    background-color: var(--amarillo);
    border: none;
    color: var(--negro) !important;
}

.btn-outline:hover {
    background-color: var(--amarillo-hover);
    color: var(--negro) !important;
}

.fade-in {
    animation: fadeIn 0.8s ease-in;
}

.mt-60 { margin-top: 60px; }
.mt-50 { margin-top: 50px; }
.mt-30 { margin-top: 30px; }
.mt-20 { margin-top: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-25 { margin-bottom: 25px; }
.mb-20 { margin-bottom: 20px; }
.m-0 { margin: 0 !important; }
.p-0 { padding: 0 !important; }
.p-20 { padding: 20px; }
.p-40 { padding: 40px; }

.flex-column { display: flex; flex-direction: column; }
.min-h-auto { min-height: auto !important; }
.w-100 { width: 100%; }
.max-w-900 { max-width: 900px; }
.max-w-400 { max-width: 400px; margin: 0 auto; }

.h-200 { height: 200px !important; }

.color-azul { color: var(--azul-oscuro); }
.txt-negro { color: var(--negro); }
.fs-24 { font-size: 24px; }
.fs-20 { font-size: 20px; }
.hidden { display: none !important; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 6. FORMULARIOS GLOBALES - ESTILO LIMPIO */
input, select, textarea {
    border: 1px solid var(--gris-medio) !important;
    background-color: var(--gris-claro) !important;
    border-radius: 8px !important;
    padding: 12px 15px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    color: var(--negro);
    font-family: var(--fuente-sans);
    width: 100%;
}

input:focus, select:focus, textarea:focus {
    background-color: var(--blanco) !important;
    border-color: #ced4da !important; /* GRIS UN POCO MAS OSCURO EN FOCO, NUNCA AMARILLO */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important;
}

/* 6.1 AJUSTE ICONO CALENDARIO A LA IZQUIERDA */
input[type="date"] {
    position: relative;
    padding-left: 45px !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* GRILLAS Y LAYOUTS */
.grid-iconos, .grid-servicios, .grid-equipo {
    display: grid;
    gap: 30px;
}

/* GRID EQUIPO: 5 COLUMNAS DESKTOP, 3 TABLET, 2 MOBILE, 1 SMALL MOBILE */
.grid-equipo {
    grid-template-columns: repeat(5, 1fr);
}

/* REGLAS PARA PANTALLAS GRANDES (BREAKPOINT ESTANDAR) */
@media (max-width: 1200px) {
    .grid-equipo { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1024px) {
    .grid-equipo { grid-template-columns: repeat(3, 1fr); }
}

/* REGLAS PARA TABLETS Y MOVILES */
@media (max-width: 992px) {
    .contenedor { padding: 0 1.25rem; }
    
    .grid-iconos, .grid-servicios {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .grid-equipo {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem;
    }

    .hero-v2 {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding: 1.875rem 0;
    }

    .grid-info-doble {
        grid-template-columns: 1fr !important;
        gap: 1.875rem;
    }

    .flex-between {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }

    .al-inicio { align-items: center !important; }
    
    .py-100 { padding: 3.75rem 0; }
    .py-80 { padding: 3.125rem 0; }
    .py-40 { padding: 1.875rem 0; }
}

/* REGLAS PARA MOVILES PEQUENOS */
@media (max-width: 480px) {
    .grid-equipo { grid-template-columns: 1fr !important; }
    .btn { width: 100%; }
    
    .p-40 { padding: 1.5625rem; }
    .google-estrellas-centro { font-size: 1.2rem; }
}

/* HEADER - NUEVA ESTETICA LIMPIA */
.sitio-header {
    background-color: var(--blanco);
    width: 100%;
    z-index: 1000;
}

/* 1. COMPORTAMIENTO PARA MOVIL (LOGO SCROLLEA, BOTON FIJO) */
@media (max-width: 992px) {
    .sitio-header {
        position: relative; /* El header vuelve al flujo normal */
        background-color: var(--blanco);
    }

    .logo {
        display: block !important; /* Restauramos el logo */
    }

    .menu-toggle {
        display: block !important;
        position: fixed; /* SOLO EL BOTON ES FIJO */
        top: 25px;
        right: 20px;
        z-index: 2000;
        background: none !important;
        border: none !important;
        box-shadow: none !important;
        font-size: 2rem !important;
        color: var(--azul) !important;
        padding: 0;
    }

    /* El menu desplegable debe ser fijo tambien para acompañar al boton */
    .menu-movil {
        position: fixed !important; /* FORZAMOS FIXED */
        top: 70px !important; /* DISTANCIA FIJA DESDE EL TECHO DE LA PANTALLA */
        right: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 300px !important;
        z-index: 1999 !important;
        border-radius: 10px !important;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    }

    body {
        padding-top: 0 !important;
    }
}

/* Barra superior eliminada o simplificada segun imagen */
.barra-superior {
    display: none; /* La imagen de referencia no tiene barra azul superior */
}

.navegacion-principal {
    padding: 15px 0;
    border-bottom: 1px solid var(--gris-medio);
    position: relative; /* PARA EL MENU MOVIL */
}

.flex-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contenedor-header {
    max-width: 100% !important;
    padding: 0 40px !important;
}

.logo img {
    height: 80px;
    width: auto;
}

/* OCULTAR ELEMENTOS DE MOVIL EN ESCRITORIO */
.menu-toggle, .menu-movil {
    display: none !important;
}

.menu-escritorio ul {
    display: flex;
    gap: 30px;
    align-items: center;
}

.menu-escritorio ul li {
    position: relative; /* CLAVE PARA QUE EL DROPDOWN SE POSICIONE RESPECTO AL LI */
}

.menu-escritorio ul li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--negro);
    text-transform: uppercase;
}

.menu-escritorio ul li a:hover {
    color: var(--gris-texto);
}

/* DROPDOWN DESKTOP */
.has-dropdown {
    position: relative;
    padding-right: 15px !important;
}

.has-dropdown::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--negro);
    transition: transform 0.3s;
}

.dropdown-menu {
    display: none !important; /* ASEGURAMOS QUE ESTE OCULTO */
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--blanco);
    min-width: 220px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-top: 3px solid var(--amarillo);
    padding: 10px 0;
    z-index: 1500;
}

.menu-escritorio ul li:hover .dropdown-menu {
    display: block !important; /* SOLO SE MUESTRA EN HOVER */
    animation: fadeIn 0.3s ease;
}

.menu-escritorio ul li:hover .has-dropdown::after {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px !important;
    font-size: 0.8rem !important;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gris-claro);
}

.dropdown-menu li a:hover {
    background-color: var(--gris-claro);
    color: var(--amarillo) !important;
}

/* DROPDOWN MOVIL */
.dropdown-movil {
    display: none !important; /* OCULTO POR DEFECTO */
    background-color: var(--gris-claro);
}

.dropdown-movil.activo {
    display: block !important; /* SE MUESTRA CON LA CLASE ACTIVO */
}

.dropdown-movil li a {
    padding-left: 45px !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
}

.flecha-movil {
    float: right;
    transition: transform 0.3s;
}

.item-dropdown-movil.abierto .flecha-movil {
    transform: rotate(180deg);
}

/* Boton de contacto en el menu */
.btn-menu-contacto {
    background-color: var(--amarillo);
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700 !important;
}

.btn-menu-contacto:hover {
    background-color: var(--amarillo-hover);
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .menu-escritorio { display: none !important; }
    
    .menu-toggle {
        display: block !important;
        position: fixed !important;
        top: 25px !important;
        right: 20px !important;
        z-index: 2000 !important;
        background: none !important;
        border: none !important;
        font-size: 2rem !important;
        color: var(--azul) !important;
        cursor: pointer;
        padding: 5px;
        transition: color 0.3s ease;
    }

    .menu-toggle:hover {
        color: var(--dorado);
    }

    /* Menu Movil - Diseño de caja flotante moderna */
    .menu-movil {
        display: none !important;
        position: fixed !important;
        top: 80px !important;
        right: 20px !important;
        width: calc(100% - 40px) !important;
        max-width: 320px !important;
        background-color: var(--blanco) !important;
        border-radius: 15px !important;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
        z-index: 1999 !important;
        overflow-y: auto;
        max-height: calc(100vh - 100px);
        border-top: 4px solid var(--amarillo) !important;
    }

    .menu-movil.activo {
        display: block !important;
        animation: slideDown 0.3s ease-out;
    }

    .menu-movil ul {
        display: flex;
        flex-direction: column;
        padding: 15px 0;
    }

    .menu-movil ul li {
        width: 100%;
    }

    .menu-movil ul li a {
        display: block;
        padding: 12px 25px;
        font-size: 1rem;
        font-weight: 700;
        color: var(--azul);
        text-decoration: none;
        border-bottom: 1px solid var(--gris-claro);
    }

    .menu-movil ul li a:hover {
        background-color: var(--gris-claro);
        color: var(--dorado);
    }

    .menu-movil .btn-menu-contacto {
        margin: 20px 25px;
        justify-content: center;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* COMPONENTES - NUEVA ESTETICA */

/* 1. HERO */
.hero-v2 {
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-v2-texto .titulo-hero {
    font-family: var(--fuente-sans);
    font-size: clamp(2rem, 8vw, 3.5rem);
    margin-bottom: 1.5625rem;
    font-weight: 400;
}

.hero-v2-texto p {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--gris-texto);
    margin-bottom: 1.875rem;
    max-width: 31.25rem;
}

.hero-v2-card {
    background-color: #E2E5E9; /* Gris 5% mas oscuro que #F0F2F5 */
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.05);
}

.hero-v2-card ul {
    display: flex;
    flex-direction: column;
    gap: 1.5625rem;
}

.hero-v2-card li {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.hero-v2-card .icon-box {
    width: 3.125rem;
    height: 3.125rem;
    background: var(--blanco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.05);
}

.hero-v2-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.3125rem;
}

.hero-v2-card p {
    font-size: 0.95rem;
    color: var(--gris-texto);
    margin: 0;
}

/* 2. SECCION ICONOS CIRCULARES (PUNTOS DE DOLOR) */
.seccion-iconos {
    padding: 3.125rem 0;
    text-align: center;
}

.grid-iconos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3.75rem;
}

.icono-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.circulo-icono {
    width: 5rem;
    height: 5rem;
    border: 0.0625rem solid var(--gris-medio);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.icono-item p {
    font-size: 1rem;
    color: var(--gris-texto);
    max-width: 15.625rem;
}

/* 3. SECCION PASOS (COMO FUNCIONA) */
.pasos-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 3.75rem;
    position: relative;
}

.linea-conector {
    position: absolute;
    top: 2.5rem;
    left: 12%;
    width: 76%;
    height: 0;
    border-top: 0.125rem dashed #CCC !important;
    z-index: 1;
}

.paso-v2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9375rem;
    z-index: 2;
    position: relative;
    flex: 1;
}

.circulo-blanco {
    background: white !important;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.1);
    border: 0.125rem solid #DDD;
    position: relative;
    z-index: 3;
    font-size: 1.5rem;
}

.btn-capsula {
    background: var(--amarillo);
    padding: 0.625rem 1.875rem;
    border-radius: 0.5rem;
    font-weight: 700;
    display: inline-block;
}

.paso-v2 .numero {
    width: 1.5625rem;
    height: 1.5625rem;
    background: var(--amarillo);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

/* 4. TESTIMONIOS Y RESEÑAS DE GOOGLE */
.google-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-user-img {
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--gris-medio);
}

.google-user-info .fw-700 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    display: block;
}

.google-estrellas {
    color: #FABB05; /* Dorado Google */
    font-size: 0.85rem;
    display: flex;
    gap: 0.125rem;
}

.google-logo-mini {
    position: absolute;
    top: 1.5625rem; /* Restaurado a 25px */
    right: 1.5625rem; /* Restaurado a 25px */
    width: 1.125rem;
    opacity: 0.8;
}

.google-texto {
    font-size: 0.95rem;
    color: var(--gris-texto);
    line-height: 1.6;
    font-style: italic;
}

.testimonio-v2 {
    background: var(--blanco);
    padding: 1.875rem;
    border-radius: 0.9375rem;
    box-shadow: 0 0.625rem 1.875rem rgba(0,0,0,0.05);
    border-top: 0.3125rem solid #E2E5E9; /* CAMBIADO A GRIS */
}

.tarjeta-reseña-google {
    background: var(--blanco);
    padding: 1.5625rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 1.25rem rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    position: relative;
    transition: transform 0.3s ease;
}

.tarjeta-reseña-google:hover {
    transform: translateY(-0.3125rem);
}

/* SLIDER DE RESEÑAS */
.contenedor-slider-reseñas {
    position: relative;
    padding: 0.625rem 0;
    width: 100%;
    overflow: hidden;
}

.reseñas-track {
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: calc(33.333% - 0.875rem);
    gap: 1.25rem;
    overflow-x: auto; /* SE CAMBIA A AUTO PARA ASEGURAR LA CAPACIDAD DE SCROLL */
    scroll-behavior: smooth;
    padding: 1.25rem 3.4375rem;
    scrollbar-width: none; /* OCULTA SCROLLBAR EN FIREFOX */
    -ms-overflow-style: none; /* OCULTA SCROLLBAR EN IE/EDGE */
}

.reseñas-track::-webkit-scrollbar {
    display: none; /* OCULTA SCROLLBAR EN CHROME/SAFARI */
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--amarillo);
    color: #000;
    border: none;
    width: 2.8125rem;
    height: 2.8125rem;
    border-radius: 50%;
    cursor: pointer !important;
    z-index: 100 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: auto !important;
}

.slider-arrow:hover {
    background: #f5c518;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 0; }
.slider-arrow.next { right: 0; }

@media (max-width: 1200px) {
    .reseñas-track {
        grid-auto-columns: calc(50% - 0.625rem);
    }
}

@media (max-width: 1024px) {
    .tarjeta-reseña-google {
        padding: 0.9375rem !important;
    }

    .google-texto {
        font-size: 0.87rem !important; /* Reduccion adicional del 3% */
    }

    .google-logo-mini {
        top: 0.9375rem !important; /* Ajustado para movil */
        right: 0.9375rem !important;
        width: 1rem !important;
    }

    .google-user-info .fw-700 {
        font-size: 0.85rem !important; /* Ajuste proporcional del nombre */
        padding-right: 1.5625rem !important; /* Espacio para el logo */
    }

    .reseñas-track {
        grid-template-rows: repeat(2, auto); 
        grid-auto-columns: calc(50% - 0.625rem); 
        overflow-x: auto;
        padding: 1.25rem 0.9375rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .reseñas-track::-webkit-scrollbar { display: none; }
    .slider-arrow { display: none; }
}

@media (max-width: 992px) {
    .hero-v2 { grid-template-columns: 1fr; gap: 1.875rem; }
    .hero-v2-texto p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-v2-card { padding: 1.5625rem; }
    
    .grid-iconos { grid-template-columns: 1fr; gap: 1.875rem; }
    
    .pasos-horizontal { 
        flex-direction: column; 
        align-items: center; 
        gap: 2.5rem; 
    }
    
    .linea-conector { display: none !important; }
    
    .paso-v2 { width: 100%; }
    
    .circulo-blanco { width: 4.375rem; height: 4.375rem; font-size: 1.3rem; }
    
    .seccion-iconos { padding: 1.875rem 0; }
}

@media (max-width: 480px) {
    .hero-v2-card li { gap: 0.9375rem; }
    .hero-v2-card .icon-box { width: 2.5rem; height: 2.5rem; font-size: 1rem; }
}

/* ESTILOS ESPECIFICOS PARA PAGINAS INTERNAS - NUEVA ESTETICA */

/* 1. HERO INTERNA (LIMPIO Y CLARO) */
.hero-interna { 
    padding: 80px 0; 
    text-align: center; 
    background-color: var(--gris-claro);
    border-bottom: 1px solid var(--gris-medio);
}

.hero-interna h1 { 
    font-size: 3.5rem; 
    margin-bottom: 20px; 
}

.subtitulo-hero { 
    font-family: var(--fuente-sans); 
    font-size: 1.25rem; 
    color: var(--gris-texto);
    max-width: 700px;
    margin: 0 auto;
}

/* --- GRILLA ZONAS --- */
.grid-zonas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.zona-categoria {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.zona-categoria:hover {
    transform: translateY(-5px);
}

.titulo-zona {
    font-size: 1.4rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 10px;
}

/* --- GRILLA SEO ZONAS --- */
.grid-zonas-seo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.col-seo h4 {
    font-size: 1rem;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
}

.lista-seo-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lista-seo-links a {
    color: #555;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
}

.lista-seo-links a:hover {
    color: var(--amarillo);
}

details summary {
    outline: none;
    padding: 5px 0;
    font-weight: 500;
}

details[open] summary {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .grid-zonas-seo {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .grid-zonas-seo {
        grid-template-columns: 1fr;
    }
}

/* 2. CONTENIDO GENERAL */
.seccion-texto { 
    padding: 80px 0; 
}

.grid-info-doble { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px; 
    margin-top: 50px; 
}

.info-bloque { 
    padding: 40px; 
    border-radius: 20px; 
    background: var(--blanco); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-top: 5px solid #E2E5E9; /* CAMBIADO DE AMARILLO A GRIS */
}

.info-bloque h3 {
    margin-bottom: 20px;
    font-weight: 800;
}

.info-bloque p {
    color: var(--gris-texto);
    line-height: 1.8;
}

/* ESTILO CONTACTO */
.lista-contacto-v2 {
    list-style: none;
    padding: 0;
}

.lista-contacto-v2 li {
    margin-bottom: 1.5625rem;
    display: flex;
    align-items: center;
    gap: 0.9375rem;
}

.input-fiel {
    /* HEREDA TODO DE BASE.CSS - MANTENEMOS SOLO REGLAS ESPECIFICAS SI HUBIERA */
}

.min-h-120 { min-height: 7.5rem; }

/* 3. LISTAS Y DERECHOS */
.seccion-derechos { 
    padding: 5rem 0; 
    background-color: var(--gris-claro);
}

.lista-derechos { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr)); 
    gap: 2.5rem; 
    margin-top: 3.75rem; 
}

.derecho-item { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
    gap: 1.5625rem; 
    background: var(--blanco);
    padding: 2.5rem;
    border-radius: 1.25rem;
    box-shadow: 0 0.25rem 0.9375rem rgba(0,0,0,0.02);
}

.derecho-item i { 
    font-size: 3rem; 
    color: var(--amarillo); 
}

.derecho-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

/* 4. ACORDEONES (FAQ) */
.lista-faq {
    max-width: 50rem;
    margin: 3.125rem auto 0;
}

details {
    background: var(--blanco);
    margin-bottom: 0.9375rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 0.625rem rgba(0,0,0,0.03);
    border: 0.0625rem solid var(--gris-medio);
}

summary {
    padding: 1.25rem 1.5625rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

summary::-webkit-details-marker { display: none; }

summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: var(--amarillo);
}

details[open] summary::after {
    transform: rotate(180deg);
}

.respuesta {
    padding: 0 1.5625rem 1.5625rem;
    color: var(--gris-texto);
    line-height: 1.8;
}

/* 5. GRID EQUIPO (ESTILO REFINADO SEGUN IMAGEN) */
.grid-equipo {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3.75rem;
}

.miembro-equipo {
    text-align: center;
}

.foto-circulo {
    width: 11.25rem;
    height: 11.25rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    /* SIN BORDES NI SOMBRAS PARA UN LOOK LIMPIO COMO LA IMAGEN */
}

.foto-circulo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.miembro-equipo h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--negro);
}

.miembro-equipo .especialidad {
    font-size: 0.95rem;
    color: var(--gris-texto);
    line-height: 1.4;
    margin-bottom: 0.625rem;
}

.miembro-equipo .matriculas {
    font-size: 0.75rem;
    color: #999;
    margin-top: 0.9375rem;
    padding-top: 0.9375rem;
    border-top: 0.0625rem solid var(--gris-medio);
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

@media (max-width: 1024px) {
    .grid-equipo { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.25rem; /* MENOS ESPACIO ENTRE ELLAS */
    }
    .foto-circulo { width: 8.75rem; height: 8.75rem; }
}

@media (max-width: 480px) {
    .grid-equipo { 
        grid-template-columns: repeat(2, 1fr) !important; /* VOLVEMOS A 2 COLUMNAS POR PEDIDO DEL USUARIO */
        gap: 0.9375rem; 
    }
    .foto-circulo { width: 7.5rem; height: 7.5rem; }
    
    .miembro-equipo h3 { font-size: 0.95rem; }
    .miembro-equipo .especialidad { font-size: 0.75rem; }
    .miembro-equipo .matriculas { font-size: 0.65rem; }

    .hero-interna h1 { font-size: 2rem !important; }
    .subtitulo-hero { font-size: 1rem; }
}

/* RESPONSIVIDAD FORMULARIO */
@media (max-width: 992px) {
    .grid-formulario {
        grid-template-columns: 1fr !important;
        gap: 0.9375rem;
    }
    
    .input-fiel {
        width: 100% !important;
    }
}

/* RESPONSIVIDAD */
@media (max-width: 992px) {
    .hero-interna h1 { font-size: 3rem; }
    .grid-info-doble { grid-template-columns: 1fr; gap: 1.875rem; }
    .hero-interna { padding: 3.75rem 0; }
    .seccion-texto, .seccion-derechos { padding: 3.75rem 0; }
    .info-bloque { padding: 1.875rem; }
}

/* ========================================
   ESTILOS PARA FORMULARIO DE CONTACTO
   ======================================== */

.input-fiel {
    background-color: #ffffff !important;
    border: 0.125rem solid #d0d5db !important;
    border-radius: 0.5rem;
    padding: 0.75rem 0.9375rem;
    font-size: 1rem;
    font-family: var(--fuente-sans);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    color: var(--negro);
}

.input-fiel:focus {
    outline: none;
    border-color: var(--amarillo) !important;
    box-shadow: 0 0 0 0.1875rem rgba(255, 206, 0, 0.15) !important;
}

.input-fiel:hover {
    border-color: #b0b5bb;
}

textarea.input-fiel {
    resize: vertical;
    min-height: 6.25rem;
    font-family: var(--fuente-sans);
}

.error-message {
    display: block;
    margin-top: 0.3125rem;
    font-size: 0.85rem;
    color: #b91c1c;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--negro);
}

/* ESTILOS ESPECIFICOS PARA LA TABLA DE ART (CUAL-ES-MI-ART.PHP) */
.info-bloque table tbody tr td {
    padding: 0.75rem 0.9375rem;
    border-bottom: 0.0625rem solid #eee;
}

.info-bloque table tbody tr:hover {
    background-color: #fff9e6 !important;
}

/* FOOTER - VERSION BLINDADA 2.5 */

.footer-art-principal { 
    background-color: #1A1A1A !important; 
    color: #FFFFFF !important;
    padding: 3.125rem 0 0 0 !important;
    font-family: 'Montserrat', sans-serif !important;
    width: 100% !important;
    display: block !important;
    clear: both !important;
}

.footer-art-contenedor {
    max-width: 75rem !important;
    margin: 0 auto !important;
    padding: 0 1.25rem !important;
}

.footer-art-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.footer-art-col {
    flex: 1 !important;
    min-width: 15.625rem !important;
    display: block !important;
}

.footer-art-bio-destacada {
    margin-bottom: 1.5625rem !important;
    padding-bottom: 0.9375rem !important;
    border-bottom: 0.0625rem solid rgba(255,255,255,0.1) !important;
    line-height: 1.6 !important;
    font-size: 0.9375rem !important;
}

.footer-art-bio-destacada .subrayado-amarillo::after {
    opacity: 1 !important; /* Más visible en fondo negro */
}

.footer-art-logo-img {
    width: 5.625rem !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
    margin-bottom: 1.25rem !important;
    display: block !important;
}

.footer-art-bio-texto {
    font-size: 0.875rem !important;
    line-height: 1.6 !important;
    color: #CCC !important;
}

.footer-art-titulo {
    color: #D4AF37 !important; /* Dorado */
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5625rem !important;
    text-transform: uppercase !important;
}

.footer-art-links {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-art-links li {
    margin-bottom: 0.75rem !important;
}

.footer-art-links a {
    color: #CCC !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
}

.footer-art-links a:hover {
    color: #FFCC00 !important;
}

.footer-art-info {
    display: block !important;
}

.footer-art-item {
    margin-bottom: 0.9375rem !important;
    display: block !important;
}

.footer-art-item a {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    color: #FFFFFF !important;
    text-decoration: none !important;
    font-size: 0.875rem !important;
}

.footer-art-item i {
    color: #FFCC00 !important;
    width: 1.25rem !important;
    text-align: center !important;
    font-size: 1.1rem !important;
}

.footer-art-barra {
    background-color: #111111 !important;
    border-top: 0.0625rem solid #333 !important;
    padding: 1.5625rem 0 !important;
    text-align: center !important;
    color: #777 !important;
    font-size: 0.75rem !important;
}

/* RESPONSIVE MOBILE */
@media (max-width: 992px) {
    .footer-art-principal {
        padding-top: 1.875rem !important;
        text-align: center !important;
    }
    
    .footer-art-grid {
        display: block !important; /* APILADO VERTICAL PURO */
        padding-bottom: 0.9375rem !important;
        gap: 0 !important;
    }

    .footer-art-col {
        width: 100% !important;
        margin-bottom: 1.5625rem !important; /* REDUCIDO ESPACIO ENTRE COLUMNAS */
        padding: 0 !important;
    }

    .footer-art-logo-img {
        margin: 0 auto 0.9375rem !important;
    }

    .footer-art-item {
        margin-bottom: 0.5rem !important; /* REDUCIDO ESPACIO ENTRE ITEMS */
    }

    .footer-art-item a {
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 0.8125rem !important; /* UN POCO MAS CHICO PARA QUE ENTRE */
    }

    .footer-art-item span {
        text-align: left !important;
    }

    .footer-art-titulo {
        margin-bottom: 0.9375rem !important;
        font-size: 0.875rem !important;
    }

    .footer-art-bio-destacada {
        margin: 0 auto 0.9375rem !important;
        max-width: 17.5rem !important;
        font-size: 0.875rem !important;
        padding-bottom: 0.625rem !important;
    }

    .footer-art-links li {
        margin-bottom: 0.5rem !important;
    }
}

/* BOTON WHATSAPP FLOTANTE */
.whatsapp-flotante {
    position: fixed; 
    bottom: 1.875rem; 
    right: 1.875rem;
    width: 4.0625rem; 
    height: 4.0625rem; 
    background: #25d366;
    color: white !important; 
    border-radius: 50%;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 2.1875rem; 
    box-shadow: 0 0.625rem 1.5625rem rgba(0,0,0,0.3);
    z-index: 1000;
    transition: all 0.3s;
}

.whatsapp-flotante:hover {
    transform: scale(1.1) rotate(10deg);
    color: white !important;
}

@media (max-width: 992px) {
    .whatsapp-flotante {
        width: 3.4375rem;
        height: 3.4375rem;
        font-size: 1.875rem;
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

/* ANIMACION DE PARPADEO PARA LOCALIDAD */
@keyframes parpadeo-suave {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.parpadeo-localidad {
    animation: parpadeo-suave 1.5s infinite ease-in-out;
}
`n/* EFECTO DE BRILLO METALICO (SHIMMER) */`n.efecto-brillo-metal {`n    position: relative;`n    overflow: hidden;`n}`n`n.efecto-brillo-metal::after {`n    content: \"\";`n    position: absolute;`n    top: -50%;`n    left: -60%;`n    width: 20%;`n    height: 200%;`n    background: rgba(255, 255, 255, 0.4);`n    transform: rotate(30deg);`n    animation: brillo-metalico 4s infinite;`n    z-index: 1;`n    pointer-events: none;`n}`n`n@keyframes brillo-metalico {`n    0% { left: -60%; }`n    20% { left: 120%; }`n    100% { left: 120%; }`n}

`n/* EFECTO DE BRILLO METALICO (SHIMMER) */`n.efecto-brillo-metal {`n    position: relative;`n    overflow: hidden;`n}`n`n.efecto-brillo-metal::after {`n    content: \"\";`n    position: absolute;`n    top: -50%;`n    left: -60%;`n    width: 20%;`n    height: 200%;`n    background: rgba(255, 255, 255, 0.4);`n    transform: rotate(30deg);`n    animation: brillo-metalico 4s infinite;`n    z-index: 1;`n    pointer-events: none;`n}`n`n@keyframes brillo-metalico {`n    0% { left: -60%; }`n    20% { left: 120%; }`n    100% { left: 120%; }`n}
