/* ========================================================================
   CORE: REDISEÑO HEADER (AUXISEG)
   ======================================================================== */

/* --- Configuración Base del Header --- */
:root {
    /* Paleta de colores (basada en el proyecto) */
    --color-rojo: #ED2E2C;
    --color-azul-oscuro: #0E6387;
    --color-azul-claro: #239ED2;
    --color-texto: #333;
    --color-blanco: #fff;
    
    /* Variables de UI */
    --header-height: 80px; /* Altura estándar del header */
    --header-transition: all 0.3s ease-in-out;
}

header#main-header {
    background-color: transparent; /* Inicia transparente */
    transition: var(--header-transition);
    height: var(--header-height);
    display: flex;
    align-items: center;
}

/* --- Estado "Scrolled" (Cuando el usuario baja) --- */
header#main-header.header-scrolled {
    background-color: var(--color-blanco);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.site-brand img {
    max-height: 50px; /* Ajusta la altura máxima del logo */
    transition: var(--header-transition);
}

/* --- Navegación Desktop --- */
.header-nav {
    margin-right: 20px;
}

.header-menu {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    align-items: center;
}

.header-nav .nav-item {
    margin: 0 12px;
}

.header-nav .nav-link {
    color: var(--color-texto);
    font-weight: 600;
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
    transition: var(--header-transition);
    border-bottom: 2px solid transparent;
}

/* --- Efecto Hover y Estado Activo --- */
.header-nav .nav-link:hover,
.header-nav .nav-link.active {
    color: var(--color-rojo);
    border-bottom-color: var(--color-rojo);
}

.header-nav .dropdown-menu {
    border-radius: 8px;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    margin-top: 10px !important; /* Pequeña separación */
}

.header-nav .dropdown-item {
    font-weight: 500;
    padding: 10px 20px;
    transition: var(--header-transition);
}
.header-nav .dropdown-item:hover {
    background-color: var(--color-rojo);
    color: var(--color-blanco);
}
.header-nav .dropdown-item i {
    color: var(--color-rojo);
    transition: var(--header-transition);
}
.header-nav .dropdown-item:hover i {
    color: var(--color-blanco);
}

/* --- Botones CTA (Call to Action) --- */
.header-cta {
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre botones */
}

/* Estilo Botón Primario (Rojo Sólido) */
.btn-primary-solid {
    background-color: var(--color-rojo);
    color: var(--color-blanco);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px; /* Completamente redondeado */
    text-decoration: none;
    transition: var(--header-transition);
    border: 2px solid var(--color-rojo);
}
.btn-primary-solid:hover {
    background-color: darken(var(--color-rojo), 10%);
    border-color: darken(var(--color-rojo), 10%);
    color: var(--color-blanco);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Estilo Botón Secundario (Azul Outline) */
.btn-secondary-outline {
    background-color: transparent;
    color: var(--color-azul-oscuro);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--header-transition);
    border: 2px solid var(--color-azul-oscuro);
}
.btn-secondary-outline:hover {
    background-color: var(--color-azul-oscuro);
    color: var(--color-blanco);
    transform: translateY(-2px);
}

/* --- Menú Móvil (Overlay) --- */
.menu-mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9998;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%); /* Inicia fuera de la pantalla */
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.menu-mobile-overlay.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-rojo);
    background: none;
    border: none;
}

.btn-menu-mobile {
    font-size: 1.8rem;
    color: var(--color-rojo);
    background: none;
    border: none;
    z-index: 9999; /* Siempre encima */
}

/* Ocultar ícono por defecto */
#btnmenu .closeicon { display: none; }
#btnmenu .openicon { display: block; }

/* Mostrar 'X' cuando el menú está abierto */
body.mobile-menu-open #btnmenu .closeicon { display: block; }
body.mobile-menu-open #btnmenu .openicon { display: none; }


/* --- Menú Móvil (Interior) --- */
.header-menu-mobile {
    list-style: none;
    padding-left: 0;
    text-align: center;
}
.header-menu-mobile .nav-item {
    margin: 20px 0;
}
.header-menu-mobile .nav-link {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-texto);
    text-decoration: none;
}
.header-menu-mobile .nav-link.active {
    color: var(--color-rojo);
}

.header-menu-mobile .dropdown-menu {
    background: transparent;
    border: none;
    text-align: center;
    box-shadow: none;
}
.header-menu-mobile .dropdown-item {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-azul-oscuro);
}

.mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    width: 80%;
    max-width: 300px;
    text-align: center;
}

/* Media query para ajustar el header en pantallas más pequeñas */
@media (max-width: 991px) {
    :root {
        --header-height: 70px; /* Un poco más bajo en móvil */
    }
    
    /* En móvil, el header siempre es blanco */
    header#main-header,
    header#main-header.header-scrolled {
        background-color: var(--color-blanco);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }
    
    .site-brand img {
        max-height: 40px; /* Logo más pequeño */
    }
}
/* ========================================================================
   CORE: REDISEÑO FOOTER 2.0 (UX/UI Moderno)
   ======================================================================== */

/* --- 1. Pre-Footer (Bloque de Conversión) --- */
.pre-footer {
    background-color: var(--color-azul-oscuro);
    color: var(--color-blanco);
    padding: 60px 0;
}

.pre-footer-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pre-footer-subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Botón CTA más grande */
.btn-lg-cta {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* --- 2. Footer Principal (Diseño "Light") --- */
footer.site-footer-light {
    background-color: var(--color-blanco);
    color: #555; /* Texto más oscuro para legibilidad */
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.site-footer-light .logofooter {
    max-width: 180px; /* Tamaño de logo controlado */
}

.site-footer-light .footer-tagline {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
    margin-top: 1rem;
}

/* --- Títulos y Listas del Footer "Light" --- */
footer.site-footer-light h4 {
    color: var(--color-texto); /* Títulos negros/oscuros */
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.site-footer-light .menu-footer ul {
    list-style: none;
    padding-left: 0;
}

.site-footer-light .menu-footer li {
    margin-bottom: 12px;
}

.site-footer-light .menu-footer a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: var(--header-transition);
}
/* El rojo se usa solo en la interacción (hover) */
.site-footer-light .menu-footer a:hover {
    color: var(--color-rojo);
    padding-left: 5px;
}

/* --- Columna de Contacto de Asistencia (Crítico) --- */
.footer-contact-main {
    display: flex;
    align-items: center;
    text-decoration: none;
    background-color: rgba(237, 46, 44, 0.05); /* Tinte rojo muy sutil */
    border: 1px solid rgba(237, 46, 44, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    transition: var(--header-transition);
    margin-bottom: 0.5rem;
}
.footer-contact-main i {
    color: var(--color-rojo);
    font-size: 1.5rem;
    margin-right: 12px;
}
.footer-contact-main span {
    color: var(--color-rojo);
    font-size: 1.3rem;
    font-weight: 700;
}
.footer-contact-main:hover {
    background-color: var(--color-rojo);
}
.footer-contact-main:hover i,
.footer-contact-main:hover span {
    color: var(--color-blanco);
}

.footer-contact-desc {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 1rem;
}

.footer-contact-secondary {
    color: var(--color-azul-oscuro);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--header-transition);
}
.footer-contact-secondary:hover {
    color: var(--color-rojo);
}


/* --- Redes Sociales (Diseño "Light") --- */
.social-links-light a.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0; /* Fondo gris claro */
    color: var(--color-azul-oscuro); /* Icono azul */
    font-size: 1.1rem;
    margin-right: 10px;
    text-decoration: none;
    transition: var(--header-transition);
}
.social-links-light a.social-icon:hover {
    background-color: var(--color-rojo); /* Fondo rojo al pasar el mouse */
    color: var(--color-blanco);
    transform: translateY(-3px);
}

/* --- Sub-Footer (Copyright) --- */
.footer-bottom-light {
    background-color: #f8f9fa; /* Gris muy claro */
    border-top: 1px solid #eee;
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
}

.footer-bottom-light p {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
}

.footer-bottom-light a {
    color: #555;
    text-decoration: none;
    font-weight: 600;
}
.footer-bottom-light a:hover {
    color: var(--color-rojo);
}

/* --- Media Queries para el nuevo footer --- */
@media (max-width: 991px) {
    .pre-footer {
        padding: 40px 15px;
    }
    .pre-footer-title {
        font-size: 2rem;
    }
    .pre-footer-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .site-footer-light .footer-main {
        text-align: center;
    }
    .site-footer-light .logofooter {
        margin: 0 auto;
    }
    .social-links-light {
        margin-top: 1.5rem;
    }
    footer.site-footer-light h4 {
        margin-top: 1.5rem;
    }
    .footer-contact-main {
        justify-content: center;
    }
}

/* ========================================================================
   CORE: ESTILOS BOTÓN PRIMARIO (Rojo)
   ======================================================================== */

/* Este es el estilo base que le da el color rojo */
.btn-primary-solid {
    background-color: var(--color-rojo);
    color: var(--color-blanco);
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px; /* Completamente redondeado */
    text-decoration: none;
    transition: var(--header-transition);
    border: 2px solid var(--color-rojo);
    display: inline-block; /* Asegura que se comporte como un bloque */
}

/* Efecto hover */
.btn-primary-solid:hover {
    background-color: #c22523; /* Un rojo un 10% más oscuro */
    border-color: #c22523;
    color: var(--color-blanco);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Esta es la clase que le da el tamaño grande
   específico para el pre-footer 
*/
.btn-lg-cta {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* ========================================================================
   HOMEPAGE v3: Estilos Completos Index.php
   ======================================================================== */

/* --- Configuración Global Homepage --- */
.homepage-v3 { background-color: var(--color-blanco); }
:root {
    --gradient-primary: linear-gradient(135deg, var(--color-azul-oscuro) 0%, #1a8bb8 100%); /* Gradiente Azul Ajustado */
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-large: 0 20px 45px rgba(0, 0, 0, 0.1);
    --border-radius-medium: 12px;
    --border-radius-large: 20px;
    --color-rojo-rgb: 237, 46, 44; /* Para usar con rgba */
    --color-azul-oscuro-rgb: 14, 99, 135; /* Para usar con rgba */
    --color-success: #1FAF38; /* Verde WhatsApp más vivo */
    --color-warning: #f39c12; /* Naranja */
    --color-grey-light: #f0f4f7; /* Azul muy pálido */
    --color-grey-medium: #e0e5ea; /* Gris borde */
    --color-grey-dark: #6c757d; /* Texto gris */
    --color-text-light: #555;
    --color-text-dark: #333;
}

/* --- Estilos Generales de Sección (Refinados) --- */
.homepage-v3 section { padding: 100px 0; overflow: hidden; position: relative;}
.section-title { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; color: var(--color-azul-oscuro); margin-bottom: 1.5rem; position: relative; line-height: 1.3; }
.section-title.text-white { color: var(--color-blanco); }
.section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 70px; height: 5px; background-color: var(--color-rojo); border-radius: 3px; }
.section-title.text-white::after { background-color: rgba(255,255,255,0.8); }
.section-title.text-start::after { left: 0; transform: translateX(0); }
.section-subtitle { display: block; font-size: 1rem; font-weight: 700; color: var(--color-rojo); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.section-description { font-size: 1.15rem; color: var(--color-text-light); max-width: 750px; margin: 0 auto 3rem auto; line-height: 1.8; }
.section-description.text-white { color: rgba(255,255,255,0.85); }

/* --- 1. HERO v3 --- */
.herobk-section-v3 { padding: 180px 0 120px 0; color: var(--color-blanco); }
.herobk-background-v3 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #eef2f5 url('/assets/images/subtle-map-pattern.png') repeat center center; background-size: cover; z-index: 1; opacity: 0.3; }
.herobk-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--gradient-primary); z-index: 2;}
.herobk-content-v3 { position: relative; z-index: 3; }
.herobk-badge-v3 { display: inline-block; background-color: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2); color: var(--color-blanco); padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 0.95rem; margin-bottom: 1.2rem; backdrop-filter: blur(5px); }
.herobk-title-v3 { font-size: clamp(2.8rem, 7vw, 4.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; color: var(--color-blanco); text-shadow: 0 3px 8px rgba(0, 0, 0, 0.15); }
.herobk-title-v3 .text-highlight { color: var(--color-rojo); text-shadow: none; display: inline-block; /* Evita que el color se corte raro */ }
.herobk-subtitle-v3 { font-size: clamp(1.1rem, 3vw, 1.4rem); font-weight: 400; margin-bottom: 3rem; max-width: 600px; opacity: 0.95; line-height: 1.7; }
.badge-discount-v3 { background-color: var(--color-rojo); color: var(--color-blanco); padding: 5px 12px; border-radius: 50px; font-weight: 700; font-size: 0.9em; display: inline-block; vertical-align: middle; margin: 0 5px; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.herobk-cta-v3 .btn { padding: 16px 35px; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
.btn-hero-secondary { background-color: transparent; border: 2px solid rgba(255, 255, 255, 0.7); color: var(--color-blanco); backdrop-filter: none; }
.btn-hero-secondary:hover { background-color: var(--color-blanco); color: var(--color-azul-oscuro); border-color: var(--color-blanco); }
.herobk-vehicle-slider-wrapper-v3 { /* Sin estilos extra */ }
.herobk-vehicle-slider-wrapper-v3 .vehicle-img { max-width: 500px; filter: drop-shadow(0 15px 25px rgba(0,0,0,0.2)); }
.scroll-down-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-down-indicator a { color: rgba(255,255,255,0.7); font-size: 1.5rem; animation: bounce 2s infinite; }
.scroll-down-indicator a:hover { color: var(--color-blanco); }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } }

/* --- 2. KEY ACTIONS v3 --- */
.key-actions-section-v3 { padding: 100px 0; background-color: var(--color-grey-light); }
.action-card-v3 { border-radius: var(--border-radius-large); padding: clamp(30px, 5vw, 45px); box-shadow: 0 15px 40px rgba(var(--color-azul-oscuro-rgb), 0.08); transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1); border: none; display: flex; flex-direction: column; }
.action-card-v3:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 25px 50px rgba(var(--color-azul-oscuro-rgb), 0.12); }
.action-card-v3 .card-icon { font-size: 3.2rem; margin-bottom: 1.8rem; line-height: 1; transition: transform 0.3s ease; }
.action-card-v3:hover .card-icon { transform: scale(1.1); }
.action-card-v3 .card-title { font-size: clamp(1.4rem, 4vw, 1.7rem); font-weight: 700; margin-bottom: 1rem; }
.action-card-v3 .card-text { margin-bottom: 2.5rem; flex-grow: 1; font-size: 1.05rem; line-height: 1.7; }
.action-card-v3 .btn { padding: 14px 30px; font-size: 1.05rem; font-weight: 700; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; border: none; display: inline-flex; align-items: center; justify-content: center; }
.assistance-card-v3 { background: var(--gradient-primary); color: var(--color-blanco); }
.assistance-card-v3 .card-icon { color: var(--color-blanco); opacity: 0.9; }
.assistance-card-v3 .card-title { color: var(--color-blanco); }
.assistance-card-v3 .card-text { color: rgba(255, 255, 255, 0.9); }
.assistance-card-v3 .btn-assistance { background-color: var(--color-rojo); color: var(--color-blanco); }
.assistance-card-v3 .btn-assistance:hover { background-color: darken(var(--color-rojo), 10%); transform: scale(1.05); box-shadow: 0 5px 15px rgba(var(--color-rojo-rgb), 0.3); }
.sales-card-v3 { background-color: var(--color-blanco); }
.sales-card-v3 .card-icon { color: var(--color-success); }
.sales-card-v3 .card-title { color: var(--color-azul-oscuro); }
.sales-card-v3 .card-text { color: var(--color-text-light); }
.sales-card-v3 .btn-sales { background-color: var(--color-success); color: var(--color-blanco); }
.sales-card-v3 .btn-sales:hover { background-color: darken(var(--color-success), 10%); transform: scale(1.05); box-shadow: 0 5px 15px rgba(31, 175, 56, 0.3); }

/* --- 3. HOW IT WORKS v2 --- */
.how-it-works-section-v2 { padding: 100px 0; background-color: var(--color-blanco); }
.steps-container { display: flex; justify-content: space-between; position: relative; margin-top: 4rem; }
.steps-container::before { content: ''; position: absolute; top: 35px; left: 12.5%; right: 12.5%; height: 3px; background-image: linear-gradient(to right, var(--color-grey-medium) 50%, transparent 50%); background-size: 10px 3px; /* Línea punteada */ z-index: 0; }
.step-item { width: 23%; text-align: center; position: relative; z-index: 1; }
.step-content { transition: transform 0.3s ease; }
.step-item:hover .step-content { transform: translateY(-8px); }
.step-icon { font-size: 2.5rem; color: var(--color-blanco); margin-bottom: 1.5rem; position: relative; z-index: 2; display: inline-flex; align-items:center; justify-content:center; background: var(--gradient-primary); width: 70px; height: 70px; border-radius: 50%; box-shadow: 0 6px 18px rgba(var(--color-azul-oscuro-rgb), 0.25); transition: all 0.3s ease; border: 3px solid var(--color-blanco); }
.step-item:hover .step-icon { background: var(--color-rojo); box-shadow: 0 8px 22px rgba(var(--color-rojo-rgb), 0.3); transform: scale(1.1); }
.step-title { font-size: 1.25rem; font-weight: 700; color: var(--color-azul-oscuro); margin-bottom: 0.5rem; transition: color 0.3s ease;}
.step-item:hover .step-title { color: var(--color-rojo); }
.step-description { color: var(--color-grey-dark); font-size: 0.9rem; line-height: 1.6; }

/* --- 4. ABOUT US v3 --- */
.about-section-v3 { padding: 100px 0; background-color: var(--color-grey-light); }
.about-section-v3 .section-title::after { left: 0; transform: translateX(0); }
.about-section-v3 p { font-size: 1.1rem; color: var(--color-text-light); line-height: 1.8; margin-bottom: 1.5rem;}
.about-key-points { list-style: none; padding-left: 0; margin-bottom: 2rem; }
.about-key-points li { margin-bottom: 0.8rem; font-size: 1.05rem; font-weight: 500; color: var(--color-text-dark); display: flex; align-items: center;}
.about-key-points i { color: var(--color-rojo); margin-right: 12px; font-size: 1.2em; }
.about-image { border-radius: var(--border-radius-large); object-fit: cover; aspect-ratio: 4/3; box-shadow: var(--shadow-large); transition: transform 0.5s ease, box-shadow 0.5s ease;}
.about-image:hover { transform: scale(1.03); box-shadow: 0 25px 60px rgba(var(--color-azul-oscuro-rgb), 0.15); }

/* --- 5. COVERAGES v3 --- */
.coverages-section-v3 { padding: 100px 0; background-color: var(--color-blanco); }
.coverage-filters .btn-filter { background-color: var(--color-grey-light); color: var(--color-text-light); border: none; border-radius: 50px; padding: 12px 30px; margin: 0 8px 10px 8px; font-weight: 600; transition: all 0.3s ease; }
.coverage-filters .btn-filter i { margin-right: 8px;}
.coverage-filters .btn-filter:hover { background-color: var(--color-grey-medium); color: var(--color-text-dark); }
.coverage-filters .btn-filter.active { background-color: var(--color-rojo); color: var(--color-blanco); box-shadow: 0 4px 15px rgba(var(--color-rojo-rgb), 0.3); }
.coverage-plan-list .plan-card-wrapper { transition: transform 0.4s ease, opacity 0.4s ease; } /* Filtro con fade/scale */
.plan-card { background-color: var(--color-blanco); border: 1px solid var(--color-grey-medium); border-radius: var(--border-radius-large); padding: clamp(30px, 4vw, 40px); display: flex; flex-direction: column; height: 100%; transition: all 0.3s ease; position: relative; overflow: hidden; box-shadow: var(--shadow-light); }
.plan-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-large); border-color: transparent; background: linear-gradient(145deg, #ffffff 0%, #fdfdff 100%); }
.plan-badge { position: absolute; top: 18px; right: -45px; background-color: var(--color-rojo); color: white; padding: 6px 45px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; transform: rotate(45deg); z-index: 1; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
.plan-card.highlight { border: 2px solid var(--color-rojo); background-color: #fffafa; }
.plan-icon { height: 80px; margin-bottom: 1.5rem; text-align: center; }
.plan-icon img { max-height: 100%; width: auto; max-width: 130px; object-fit: contain; filter: saturate(1.1); /* Ligeramente más vivos */}
.plan-name { font-size: 1.7rem; font-weight: 800; color: var(--color-azul-oscuro); margin-bottom: 0.5rem; text-align: center; }
.plan-name .plan-limit { color: var(--color-rojo); font-weight: 800;}
.plan-features { list-style: none; padding: 0; margin: 2rem 0; flex-grow: 1; border-top: 1px solid var(--color-grey-medium); padding-top: 1.5rem;}
.plan-features li { display: flex; align-items: start; /* Para textos largos */ margin-bottom: 0.9rem; font-size: 1rem; color: var(--color-text-light); }
.plan-features i { color: var(--color-success); width: 22px; text-align: center; margin-right: 12px; font-size: 1.1em; margin-top: 2px; flex-shrink: 0;}
.plan-features li i.fa-infinity, .plan-features li i.fa-star { color: var(--color-warning); }
.plan-features li i.fa-clock { color: var(--color-grey-dark); }
.plan-features li i.fa-globe, .plan-features li i.fa-flag { color: var(--color-azul-claro); }
.plan-cta { width: 100%; padding: 14px 20px; font-size: 1.05rem; margin-top: auto; } /* mt-auto aquí */

/* --- 6. REASONS v3 --- */
.reasons-section-v3 { padding: 100px 0; background-color: var(--color-grey-light); }
.reason-card-v3 { background-color: var(--color-blanco); padding: 35px; border-radius: var(--border-radius-medium); text-align: center; height: 100%; border: 1px solid var(--color-grey-medium); transition: all 0.35s ease; position: relative; overflow: hidden;}
/* Efecto de fondo sutil al pasar */
.reason-card-v3::before { content: ''; position: absolute; bottom: -50%; left: -25%; width: 150%; height: 100%; background: var(--gradient-primary); border-radius: 50%; opacity: 0; transform: scale(0); transition: all 0.5s ease; z-index: 1;}
.reason-card-v3:hover::before { opacity: 0.08; transform: scale(1); }
.reason-card-v3 > * { position: relative; z-index: 2; transition: all 0.3s ease;} /* Asegura que contenido esté encima */
.reason-card-v3:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); border-color: transparent; }
.reason-icon { height: 60px; margin-bottom: 1.8rem; }
.reason-icon img { height: 100%; width: auto; max-width: 60px; object-fit: contain; transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
.reason-card-v3:hover .reason-icon img { transform: scale(1.15) rotate(5deg); }
.reason-title { font-size: 1.3rem; font-weight: 700; color: var(--color-azul-oscuro); margin-bottom: 0.8rem; }
.reason-text { color: var(--color-text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 0; }
.reason-card-v3:hover .reason-title { color: var(--color-rojo); } /* Cambia color título al pasar */

/* --- 7. TESTIMONIALS v2 --- */
.testimonials-section-v2 { padding: 100px 0; background: var(--gradient-primary); position: relative; }
.testimonials-section-v2::before { /* Olas sutiles */ content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100px; background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23ffffff" fill-opacity="1" d="M0,64L48,58.7C96,53,192,43,288,48C384,53,480,75,576,80C672,85,768,75,864,69.3C960,64,1056,64,1152,69.3C1248,75,1344,85,1392,90.7L1440,96L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') top center no-repeat; background-size: cover; z-index: 2;}
.testimonials-section-v2 .section-title { margin-bottom: 4rem; position: relative; z-index: 3;}
.testimonials-slider { padding: 0 60px; position: relative; z-index: 3;}
.testimonial-card { background-color: var(--color-blanco); border-radius: var(--border-radius-large); padding: 40px; text-align: center; color: var(--color-texto); margin: 10px; box-shadow: var(--shadow-large); position: relative; }
.testimonial-card::before { content: '\f10d'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 2.8rem; color: var(--color-rojo); opacity: 0.1; position: absolute; top: 25px; left: 30px; }
.testimonial-rating { color: var(--color-warning); font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-quote { font-size: 1.15rem; line-height: 1.8; font-style: normal; color: #444; margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 700; color: var(--color-azul-oscuro); font-size: 1rem; text-transform: uppercase; letter-spacing: 0.5px;}
.testimonials-button-prev, .testimonials-button-next { color: var(--color-blanco); background-color: rgba(0, 0, 0, 0.3); border-radius: 50%; width: 50px; height: 50px; transition: all 0.3s ease; top: 50%; transform: translateY(-50%); }
.testimonials-button-prev:hover, .testimonials-button-next:hover { background-color: var(--color-rojo); }
.testimonials-button-prev::after, .testimonials-button-next::after { font-size: 1.3rem; }
.testimonials-button-prev { left: 0px; }
.testimonials-button-next { right: 0px; }

/* --- 8. FAQS v3 --- */
.faqs-section-v3 { padding: 100px 0; background-color: var(--color-blanco); } /* Fondo blanco */
.faq-accordion-v3 { max-width: 850px; margin: 4rem auto 0 auto; }
.faq-accordion-v3 .accordion-item { border: none; border-bottom: 1px solid var(--color-grey-medium); margin-bottom: 0; background-color: transparent; border-radius: 0;} /* Línea separadora simple */
.faq-accordion-v3 .accordion-header { margin-bottom: 0; }
.faq-accordion-v3 .accordion-button { background-color: transparent; color: var(--color-azul-oscuro); font-weight: 700; font-size: 1.15rem; padding: 25px 0; text-align: left; border: none; box-shadow: none !important; border-radius: 0 !important; }
.faq-accordion-v3 .accordion-button:hover { color: var(--color-rojo); }
.faq-accordion-v3 .accordion-button:not(.collapsed) { color: var(--color-rojo); background-color: transparent; }
.faq-accordion-v3 .accordion-button::after { content: '\f054'; /* Chevron Right */ font-family: 'Font Awesome 6 Free'; font-weight: 900; background-image: none; transform: rotate(90deg); transition: transform 0.3s ease, color 0.3s ease; color: var(--color-rojo); font-size: 0.8em; }
.faq-accordion-v3 .accordion-button:not(.collapsed)::after { content: '\f077'; /* Up arrow */ transform: rotate(0deg); color: var(--color-rojo); }
.faq-accordion-v3 .accordion-body { padding: 10px 0 30px 0; background-color: transparent; color: var(--color-text-light); line-height: 1.8; font-size: 1.05rem; border: none;}
.faq-accordion-v3 .accordion-body a { font-weight: 600; text-decoration: underline; color: var(--color-rojo);}
.faq-accordion-v3 .accordion-body a:hover { color: darken(var(--color-rojo), 10%); }

/* --- Responsive General v3 --- */
@media (max-width: 991px) {
    .homepage-v3 section { padding: 80px 0; }
    .section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); }
     .herobk-section-v3 { padding: 140px 0 90px 0; }
     .steps-container::before { left: 5%; right: 5%;}
     .step-item { width: 24%; } /* Ajuste ligero */
     .testimonials-slider { padding: 0 45px;}
     .testimonials-button-prev, .testimonials-button-next { width: 45px; height: 45px;}
     .testimonials-button-prev::after, .testimonials-button-next::after { font-size: 1.1rem;}
}
@media (max-width: 767px) {
    .homepage-v3 section { padding: 60px 0; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
     .herobk-section-v3 { padding: 100px 0 60px 0; }
     .herobk-cta-v3 .btn { width: 100%; font-size: 1rem; padding: 14px 25px; }
     .herobk-cta-v3 .btn:first-child { margin-right: 0 !important; }
     .action-card-v3 { padding: 35px; margin-bottom: 25px;}
     .action-card-v3 .card-title { font-size: 1.5rem; }
     /* How it Works Mobile */
     .steps-container { flex-direction: column; align-items: center; }
     .steps-container::before { display: none; }
     .step-item { width: 90%; max-width: 350px; margin-bottom: 40px; }
     .step-item:last-child { margin-bottom: 0; }
     .step-item:not(:last-child)::after { content: ''; position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%); width: 2px; height: 20px; background-color: var(--color-grey-medium); }
     .plan-card-wrapper { margin-bottom: 25px; }
     .reason-card-v3 { margin-bottom: 25px; padding: 30px;}
     .testimonials-slider { padding: 0 10px; }
     .testimonials-button-prev, .testimonials-button-next { display: none; }
     .faq-accordion-v3 .accordion-button { font-size: 1.05rem; padding: 18px 0; }
     .faq-accordion-v3 .accordion-body { padding: 10px 0 25px 0; font-size: 1rem;}
     .faq-accordion-v3 .accordion-button::after { font-size: 0.75em;} /* Icono más chico */
}

/* ========================================================================
   HOMEPAGE v6: HERO con Video Background
   ======================================================================== */

.hero-section-v6 {
    position: relative;
    height: 100vh; /* Ocupa toda la altura de la ventana inicial */
    min-height: 650px; /* Altura mínima */
    display: flex;
    align-items: center; /* Centra contenido verticalmente */
    justify-content: center; /* Centra contenido horizontalmente */
    color: var(--color-blanco);
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden; /* Asegura que el video no se desborde */
}

.hero-video-background video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centra el video */
    object-fit: cover; /* Asegura que cubra todo el área */
}

/* Overlay oscuro para legibilidad del texto */
.hero-overlay-v6 {
    position: absolute;
    inset: 0;
    background: rgba(var(--color-azul-oscuro-rgb), 0.6); /* Overlay azul oscuro semi-transparente */
    /* background: linear-gradient(to bottom, rgba(var(--color-azul-oscuro-rgb), 0.5), rgba(var(--color-azul-oscuro-rgb), 0.8)); /* O gradiente */
    z-index: 2;
}

.hero-content-v6 {
    position: relative;
    z-index: 3;
    padding-top: var(--header-height); /* Evita superposición con header sticky */
}

.hero-title-v6 {
    font-size: clamp(2.8rem, 7vw, 5rem); /* Título grande y audaz */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-blanco);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra más fuerte para contraste */
}
/* Highlight sutil con color claro y más peso */
.hero-title-v6 .highlight-v6 {
    color: #e0f2fe; /* Azul muy muy claro, casi blanco */
    font-weight: 900;
}

.hero-subtitle-v6 {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    font-weight: 400;
    margin-bottom: 2rem; /* Menos margen inferior */
    max-width: 700px; /* Centrado y legible */
    opacity: 0.95;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.hero-trust-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-blanco);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(5px);
}
.hero-trust-badge i {
    color: var(--color-rojo); /* Icono rojo */
    margin-right: 8px;
    font-size: 1.1em;
}


.hero-cta-v6 .btn {
    padding: 16px 40px; /* Botones un poco más grandes */
    font-size: 1.1rem;
    font-weight: 700; /* Texto más grueso */
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Sombra más notable */
}
.hero-cta-v6 .btn-primary-solid { /* Botón principal consistente */ }
.hero-cta-v6 .btn-primary-solid:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 25px rgba(var(--color-rojo-rgb), 0.3); }

/* Nuevo botón secundario Outline Blanco */
.btn-hero-outline-v6 {
    background-color: transparent;
    border: 2px solid var(--color-blanco);
    color: var(--color-blanco);
}
.btn-hero-outline-v6:hover {
    background-color: var(--color-blanco);
    color: var(--color-azul-oscuro);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.2);
}


/* Indicador de scroll */
.scroll-down-indicator-v6 { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-down-indicator-v6 a { color: rgba(255,255,255,0.7); font-size: 1.8rem; animation: bounce 2s infinite; }
.scroll-down-indicator-v6 a:hover { color: var(--color-blanco); }
/* Keyframes bounce se mantiene */

/* --- Responsive Hero v6 --- */
@media (max-width: 991px) {
    .hero-section-v6 { height: auto; min-height: 80vh; padding: 150px 0 100px 0; } /* Altura menos estricta */
    .hero-title-v6 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
    .hero-subtitle-v6 { max-width: 90%; }
}
@media (max-width: 767px) {
    .hero-section-v6 { min-height: 70vh; padding: 120px 0 80px 0; }
    .hero-title-v6 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-subtitle-v6 { font-size: 1rem; }
    .hero-cta-v6 .btn { width: 90%; max-width: 350px; display: block; margin: 15px auto !important; padding: 14px 30px; font-size: 1rem;}
    .hero-trust-badge { font-size: 0.85rem; padding: 10px 20px; margin-bottom: 2rem;}
    .scroll-down-indicator-v6 { bottom: 25px; }
}
/* ========================================================================
   HOMEPAGE v8: HERO con Imagen Integrada y Texto Refinado
   ======================================================================== */

.hero-section-v8 {
    padding: clamp(140px, 18vh, 200px) 0 clamp(100px, 12vh, 150px) 0;
    background-color: #f8f9fa; /* Fondo claro */
    position: relative;
    overflow: hidden;
    min-height: 85vh; /* Altura considerable */
    display: flex;
    align-items: center;
}

.hero-background-v8 { /* Mantiene fondo claro, sin gradiente fuerte */
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to bottom, var(--color-blanco) 60%, #f8f9fa);
}

.hero-content-v8 { position: relative; z-index: 2; }

/* --- Lado del Texto (Izquierda) --- */
.hero-text-content-v8 { /* No requiere estilos extra */ }

.hero-title-v8 {
    font-size: clamp(3rem, 7vw, 5.2rem); /* Ligeramente más grande */
    font-weight: 800;
    line-height: 1.15; /* Ajustado */
    margin-bottom: 1.5rem;
    color: var(--color-azul-oscuro);
}
.hero-title-v8 .text-highlight-v8 {
    color: var(--color-rojo);
    display: inline-block;
}

.hero-subtitle-v8 {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 400;
    margin-bottom: 3rem;
    max-width: 550px; /* Ligeramente más corto */
    color: var(--color-text-light);
    line-height: 1.8;
}
.badge-discount-v8 { /* Mismo estilo */
    background-color: var(--color-rojo); color: var(--color-blanco); padding: 6px 14px; border-radius: 50px; font-weight: 700; font-size: 0.9em; display: inline-block; vertical-align: baseline; margin: 0 3px; box-shadow: 0 3px 8px rgba(var(--color-rojo-rgb), 0.3);
}

.hero-cta-v8 .btn { /* Mismo estilo base */
    padding: 16px 35px; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 50px; font-weight: 700; transition: all 0.3s ease;
}
.hero-cta-v8 .btn-primary-solid:hover { /* Mismo hover */
    transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 25px rgba(var(--color-rojo-rgb), 0.3);
}
/* Botón secundario Outline Azul */
.btn-hero-outline-v8 {
    background-color: transparent;
    border: 2px solid var(--color-azul-oscuro);
    color: var(--color-azul-oscuro);
}
.btn-hero-outline-v8:hover {
    background-color: var(--color-azul-oscuro);
    color: var(--color-blanco);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(var(--color-azul-oscuro-rgb), 0.2);
}

/* --- Lado Visual con Imagen Integrada (Derecha) --- */
.hero-visual-area-v8 {
    position: relative;
    min-height: 450px; /* Asegura espacio */
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-composition-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1/1; /* Mantiene cuadrado */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Imagen del Vehículo */
.hero-vehicle-image-v8 {
    position: relative; /* Para estar encima de algunas formas */
    z-index: 5;
    max-width: 85%; /* Tamaño relativo al contenedor */
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)); /* Sombra suave */
    transform: rotateY(-5deg); /* Ligera perspectiva */
}

/* Estilos base de las formas */
.visual-composition-container .shape {
    position: absolute;
    border-radius: 40% 60% 60% 40% / 70% 50% 50% 30%; /* Forma blob más suave */
    opacity: 0.7;
    filter: blur(10px);
    animation: morphFloat 25s infinite ease-in-out alternate;
}

/* Formas específicas v8 (Ajustadas para rodear la imagen) */
.visual-composition-container .abstract-shape-1-v8 { /* Azul más grande, detrás */
    width: 95%; height: 95%; top: 0; left: 0;
    background: linear-gradient(135deg, rgba(var(--color-azul-claro-rgb), 0.5), rgba(var(--color-azul-oscuro-rgb), 0.6));
    animation-duration: 28s;
    z-index: 1; /* Detrás de la imagen */
}
.visual-composition-container .abstract-shape-2-v8 { /* Rojo mediano, solapado */
    width: 60%; height: 60%; bottom: -5%; right: -10%;
    background: linear-gradient(45deg, rgba(var(--color-rojo-rgb), 0.4), rgba(var(--color-rojo-rgb), 0.6));
    animation-duration: 22s; animation-delay: -4s;
    z-index: 6; /* Encima de la imagen */
    filter: blur(15px); /* Más desenfoque para el rojo */
    opacity: 0.6;
}
.visual-composition-container .abstract-shape-3-v8 { /* Blanco pequeño, delante */
    width: 40%; height: 40%; top: 5%; left: -5%;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation-duration: 30s; animation-delay: -7s;
    z-index: 7; /* Encima de todo */
}

/* Keyframes morphFloat (se mantiene igual que v7) */
@keyframes morphFloat { /* ... */ }

/* Iconos sutiles (Ajustados) */
.visual-composition-container .icon-element {
    position: absolute; font-size: 1.8rem; /* Más pequeños */
    color: rgba(var(--color-azul-oscuro-rgb), 0.3); /* Más sutiles */
    z-index: 4; /* Encima de forma azul, debajo de imagen */
    opacity: 0.7;
}
.icon-shield-v8 { top: 10%; right: 10%; }
.icon-pin-v8 { bottom: 15%; left: 5%; }


/* Indicador de scroll (Ajustado color) */
.scroll-down-indicator-v8 { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-down-indicator-v8 a { color: rgba(var(--color-azul-oscuro-rgb), 0.4); font-size: 1.8rem; animation: bounce 2s infinite; }
.scroll-down-indicator-v8 a:hover { color: var(--color-azul-oscuro); }
/* Keyframes bounce (se mantiene igual) */

/* --- Responsive Hero v8 --- */
@media (max-width: 991px) { /* Tablet */
    .hero-section-v8 { padding: 120px 0 80px 0; text-align: center; }
    .hero-text-content-v8 { text-align: center !important; }
    .hero-title-v8 { font-size: clamp(2.6rem, 7vw, 4rem); }
    .hero-subtitle-v8 { max-width: 85%; margin: 0 auto 3rem auto; }
    .hero-cta-v8 { justify-content: center; }
    .hero-visual-area-v8 { display: none; } /* Oculto */
}
@media (max-width: 767px) { /* Móvil */
    .hero-section-v8 { padding: 100px 0 60px 0; min-height: 75vh;}
    .hero-title-v8 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .hero-subtitle-v8 { font-size: 1rem; }
    .hero-cta-v8 .btn { width: 90%; max-width: 350px; display: block; margin: 15px auto !important; }
}

/* ========================================================================
   ASSISTANT PAGE v4: Estilos Completos (Profesional & Claro + Coberturas)
   ======================================================================== */

.assistant-page-v4 { background-color: var(--color-blanco); }

/* --- Estilos Generales de Sección (Refinados para Assistant) --- */
.assistant-page-v4 section { padding: clamp(80px, 10vh, 100px) 0; overflow: hidden; position: relative;}
.assistant-page-v4 .section-title { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; color: var(--color-azul-oscuro); margin-bottom: 1.5rem; position: relative; line-height: 1.3; }
.assistant-page-v4 .section-title.text-white { color: var(--color-blanco); }
.assistant-page-v4 .section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 70px; height: 5px; background-color: var(--color-rojo); border-radius: 3px; }
.assistant-page-v4 .section-title.text-white::after { background-color: rgba(255,255,255,0.8); }
.assistant-page-v4 .section-title.text-start::after { left: 0; transform: translateX(0); }
.assistant-page-v4 .section-subtitle { display: block; font-size: 1rem; font-weight: 700; color: var(--color-rojo); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.75rem; }
.assistant-page-v4 .section-description { font-size: 1.15rem; color: var(--color-text-light); max-width: 750px; margin: 0 auto 3rem auto; line-height: 1.8; }
.assistant-page-v4 .section-description.text-white { color: rgba(255,255,255,0.85); }

/* --- 1. HERO ASISTENCIA v3 (Mantenido y Refinado) --- */
.hero-assistance-v3 { padding: clamp(140px, 20vh, 200px) 0 clamp(120px, 18vh, 180px) 0; color: var(--color-blanco); text-align: center; overflow: hidden; min-height: 75vh; display: flex; align-items: center; justify-content: center; background-color: #0b2231; position: relative;}
.hero-background-assistance-v3 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(170deg, #0b2231 20%, #0f344a 100%); overflow: hidden; }
.background-elements { position: absolute; inset: 0; z-index: 1; pointer-events: none;}
.background-elements span { position: absolute; bottom: -50px; width: 2px; height: 2px; background-color: rgba(255, 255, 255, 0.08); border-radius: 50%; animation: moveUp 15s infinite linear; opacity: 0; }
.background-elements span:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s; width: 3px; height: 3px;}
.background-elements span:nth-child(2) { left: 30%; animation-duration: 18s; animation-delay: 3s; background-color: rgba(var(--color-rojo-rgb), 0.06);}
.background-elements span:nth-child(3) { left: 50%; animation-duration: 15s; animation-delay: 6s; height: 30px; border-radius: 0; background-color: rgba(255, 255, 255, 0.05); }
.background-elements span:nth-child(4) { left: 70%; animation-duration: 20s; animation-delay: 1s; width: 3px; height: 3px; background-color: rgba(var(--color-azul-claro-rgb), 0.08);}
.background-elements span:nth-child(5) { left: 90%; animation-duration: 14s; animation-delay: 4s; }
@keyframes moveUp { 0% { transform: translateY(0); opacity: 0; } 10%, 90% { opacity: 1; } 100% { transform: translateY(-110vh); opacity: 0; } }
.hero-content-assistance-v3 { position: relative; z-index: 2; }
.hero-icon-container { margin-bottom: 2.5rem; }
.hero-icon-container i { font-size: clamp(4rem, 10vw, 6rem); color: var(--color-rojo); text-shadow: 0 0 25px rgba(var(--color-rojo-rgb), 0.6); --animate-duration: 3s; /* Pulso más lento */ }
.hero-title-assistance-v3 { font-size: clamp(2.8rem, 7vw, 4.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: var(--color-blanco); text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25); }
.hero-title-assistance-v3 .highlight-urgent { font-weight: 900; color: #fff; }
.hero-subtitle-assistance-v3 { font-size: clamp(1.1rem, 3vw, 1.45rem); font-weight: 400; margin-bottom: 3.5rem; max-width: 650px; opacity: 0.95; line-height: 1.7; margin-left: auto; margin-right: auto; }
.hero-cta-assistance-v3 { margin-bottom: 2rem; --animate-duration: 2.5s; }
.btn-assistance-call-v3 { background: linear-gradient(135deg, var(--color-rojo) 0%, #c81e1c 100%); color: var(--color-blanco); padding: 22px 55px; font-size: clamp(1.4rem, 4vw, 2rem); font-weight: 700; border-radius: 50px; text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); display: inline-flex; align-items: center; justify-content: center; border: none; box-shadow: 0 12px 30px rgba(var(--color-rojo-rgb), 0.4), inset 0 -3px 6px rgba(0,0,0,0.2); }
.btn-assistance-call-v3 i { margin-right: 18px; font-size: 0.9em; }
.btn-assistance-call-v3:hover { transform: translateY(-4px) scale(1.04); box-shadow: 0 18px 35px rgba(var(--color-rojo-rgb), 0.5), inset 0 -2px 5px rgba(0,0,0,0.1); background: linear-gradient(135deg, darken(var(--color-rojo), 5%) 0%, #b31a18 100%); }
.hero-availability-note-v3 { margin-top: 1.5rem; font-size: 1rem; opacity: 0.8; letter-spacing: 0.5px; }
.hero-availability-note-v3 strong { font-weight: 700; color: #fff; }

/* --- 2. SERVICIOS INCLUIDOS v2 --- */
.services-included-section-v2 { padding: 100px 0; background-color: var(--color-blanco); } /* Fondo blanco */
.service-card-v2 { background-color: var(--color-blanco); /* Fondo blanco */ padding: 40px; border-radius: var(--border-radius-large); text-align: center; height: 100%; border: 1px solid var(--color-grey-medium); transition: all 0.35s ease; box-shadow: var(--shadow-medium); /* Sombra por defecto */}
.service-card-v2:hover { transform: translateY(-10px); box-shadow: var(--shadow-large); border-color: transparent; background: linear-gradient(to bottom, var(--color-blanco), #f8fcff); }
.service-icon-v2 { font-size: 3.5rem; color: var(--color-rojo); margin-bottom: 1.8rem; display: inline-block; transition: transform 0.3s ease; }
.service-card-v2:hover .service-icon-v2 { transform: scale(1.1) rotate(-5deg); }
.service-title-v2 { font-size: 1.4rem; font-weight: 700; color: var(--color-azul-oscuro); margin-bottom: 1rem; }
.service-description-v2 { color: var(--color-text-light); font-size: 1rem; line-height: 1.7; margin-bottom: 0; }

/* --- 3. VISTAZO A COBERTURAS (NUEVO) --- */
.coverage-overview-section { padding: 100px 0; background-color: var(--color-grey-light); } /* Fondo gris claro diferente */
/* Estilos para filtros y plan-cards son heredados de index.php (v8) via core.css o style.css */
/* Ajustes específicos para esta sección si son necesarios */
.coverage-overview-section .plan-card { background-color: var(--color-blanco); /* Asegura fondo blanco */}
.coverage-overview-section .plan-features.simple { /* Estilo para lista corta */ margin: 1.5rem 0; border-top: none; padding-top: 0; }
.coverage-overview-section .plan-features.simple li { font-size: 0.95rem; margin-bottom: 0.6rem; }
.coverage-overview-section .plan-features.simple i { font-size: 1em; margin-right: 8px; }
.coverage-overview-section .plan-cta { /* Botón secundario por defecto */ background: transparent; border: 2px solid var(--color-azul-oscuro); color: var(--color-azul-oscuro); font-weight: 600; padding: 12px 20px;}
.coverage-overview-section .plan-cta:hover { background: var(--color-azul-oscuro); color: var(--color-blanco); }
.coverage-overview-section .plan-card.highlight .plan-cta { /* Botón rojo para destacado */ background: var(--color-rojo); border-color: var(--color-rojo); color: var(--color-blanco); font-weight: 700;}
.coverage-overview-section .plan-card.highlight .plan-cta:hover { background: darken(var(--color-rojo), 10%); border-color: darken(var(--color-rojo), 10%); }

/* --- 4. SAFETY TIPS v2 --- */
.safety-tips-section-v2 { padding: 100px 0; background-color: var(--color-blanco); } /* Fondo blanco */
.safety-tips-section-v2 .section-title::after { left: 0; transform: translateX(0); }
.safety-tips-section-v2 p { color: var(--color-text-light); line-height: 1.8; font-size: 1.1rem; margin-bottom: 2rem;}
.safety-list-v2 { list-style: none; padding-left: 0; margin-top: 2rem; }
.safety-list-v2 li { margin-bottom: 1.2rem; font-size: 1.1rem; color: var(--color-text-dark); display: flex; align-items: center; }
.safety-icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; background-color: rgba(var(--color-rojo-rgb), 0.1); color: var(--color-rojo); margin-right: 15px; font-size: 1.2rem; flex-shrink: 0; transition: background-color 0.3s ease, color 0.3s ease;}
.safety-list-v2 li:hover .safety-icon { background-color: var(--color-rojo); color: var(--color-blanco); } /* Hover en el ícono */
.safety-illustration { max-width: 100%; height: auto; transition: transform 0.4s ease;}
.safety-tips-section-v2 .reveal:hover .safety-illustration { transform: scale(1.04); }

/* --- 5. SECONDARY CONTACT v2 --- */
.secondary-contact-section-v2 { padding: 80px 0; background-color: var(--color-grey-light); }
.secondary-contact-box-v2 { background: var(--color-azul-oscuro); /* Cambiado a fondo azul oscuro */ color: var(--color-blanco); padding: 50px clamp(30px, 6vw, 60px); border-radius: var(--border-radius-large); box-shadow: var(--shadow-large); border: none; /* Sin borde */}
.secondary-contact-title-v2 { font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; margin-bottom: 0.8rem; color: var(--color-blanco); } /* Texto blanco */
.secondary-contact-text-v2 { font-size: clamp(1rem, 2.5vw, 1.15rem); color: rgba(255, 255, 255, 0.85); } /* Texto blanco tenue */
.btn-whatsapp-contact-v2 { background-color: var(--color-success); color: var(--color-blanco); padding: 15px 35px; font-size: 1.1rem; font-weight: 700; border-radius: 50px; text-decoration: none; transition: all 0.3s ease; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(31, 175, 56, 0.3); border: none;}
.btn-whatsapp-contact-v2:hover { background-color: darken(var(--color-success), 10%); transform: translateY(-3px) scale(1.03); box-shadow: 0 10px 22px rgba(31, 175, 56, 0.4); }

/* --- Responsive Assistant Page v4 --- */
@media (max-width: 991px) { /* Tablet */
    .assistant-page-v4 section { padding: 80px 0; }
    .hero-assistance-v3 { min-height: 70vh; padding: 120px 0 100px 0;}
    .hero-title-assistance-v3 { font-size: clamp(2.4rem, 6vw, 3.8rem); }
    .btn-assistance-call-v3 { font-size: clamp(1.2rem, 3.5vw, 1.6rem); padding: 18px 40px; }
    .safety-tips-section-v2 .row > div:first-child { order: 1; text-align: center;}
    .safety-tips-section-v2 .row > div:last-child { order: 2; }
    .safety-tips-section-v2 .section-title { text-align: center !important; }
    .safety-tips-section-v2 .section-title::after { left: 50%; transform: translateX(-50%); }
    .safety-illustration { max-width: 350px; margin-bottom: 40px; }
    .secondary-contact-box-v2 { padding: 40px; }
}
@media (max-width: 767px) { /* Móvil */
    .assistant-page-v4 section { padding: 60px 0; }
    .hero-assistance-v3 { min-height: 70vh; padding: 100px 0 80px 0;}
    .hero-title-assistance-v3 { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero-subtitle-assistance-v3 { font-size: 1rem; margin-bottom: 2.5rem;}
    .hero-icon-container i { font-size: clamp(3.5rem, 8vw, 4.5rem); }
    .btn-assistance-call-v3 { width: 95%; max-width: 450px; font-size: clamp(1.1rem, 5vw, 1.4rem); padding: 16px 25px; }
    .hero-availability-note-v3 { font-size: 0.9rem; }
    .service-card-v2 { margin-bottom: 25px; padding: 30px; }
    .safety-illustration { max-width: 80%; }
    .safety-list-v2 li { font-size: 1rem; }
    .secondary-contact-box-v2 { text-align: center; padding: 35px 25px;}
    .secondary-contact-box-v2 .text-lg-end { text-align: center !important; margin-top: 25px;}
    .secondary-contact-title-v2 { font-size: 1.4rem; }
    .secondary-contact-text-v2 { font-size: 1rem; }
    .btn-whatsapp-contact-v2 { width: 100%; max-width: 350px; font-size: 1rem;}
}

/* ========================================================================
   ASSISTANT PAGE v4: CONTACTO SECUNDARIO v3 (Visual Mejorado)
   ======================================================================== */

.secondary-contact-section-v3 {
    padding: 80px 0;
    background-color: var(--color-grey-light); /* Fondo claro para la sección */
}

.secondary-contact-box-v3 {
    background: var(--gradient-primary); /* Fondo con gradiente azul */
    color: var(--color-blanco);
    padding: clamp(40px, 6vw, 60px) clamp(30px, 5vw, 70px); /* Padding responsivo */
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-large); /* Sombra más pronunciada */
    position: relative; /* Para posibles elementos decorativos */
    overflow: hidden; /* Contiene elementos visuales */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.secondary-contact-box-v3:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(var(--color-azul-oscuro-rgb), 0.2);
}


.secondary-contact-title-v3 {
    font-size: clamp(1.6rem, 4vw, 2.2rem); /* Título más grande */
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-blanco);
    line-height: 1.3;
}

.secondary-contact-text-v3 {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9); /* Blanco más legible */
    line-height: 1.8;
    max-width: 600px; /* Limita ancho en desktop */
    margin-left: auto; margin-right: auto; /* Centra en móvil/tablet si el contenedor es text-center */
}
/* Asegura alineación izquierda en desktop */
@media (min-width: 992px) {
    .secondary-contact-text-v3 { margin-left: 0; margin-right: 0;}
}


.btn-whatsapp-contact-v3 {
    background-color: var(--color-success);
    color: var(--color-blanco);
    padding: 16px 40px; /* Botón más grande */
    font-size: 1.15rem; /* Texto más grande */
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(31, 175, 56, 0.35); /* Sombra más fuerte */
    border: none;
}
.btn-whatsapp-contact-v3 i { font-size: 1.2em; /* Icono un poco más grande */}

.btn-whatsapp-contact-v3:hover {
    background-color: darken(var(--color-success), 10%);
    transform: translateY(-4px) scale(1.03); /* Efecto hover más notorio */
    box-shadow: 0 12px 25px rgba(31, 175, 56, 0.45);
}

/* Columna Visual Derecha */
.secondary-contact-visual {
    /* Contenedor Flex */
}
.secondary-contact-visual .visual-icon {
    font-size: 10rem; /* Icono bien grande */
    color: rgba(255, 255, 255, 0.1); /* Blanco muy tenue, como marca de agua */
    transform: rotate(-15deg); /* Rotación sutil */
}
/* Si usas una ilustración SVG */
.secondary-contact-visual .visual-illustration {
     max-width: 280px; /* Ajusta tamaño */
     opacity: 0.9;
}


/* --- Responsive Contacto Secundario v3 --- */
@media (max-width: 991px) { /* Tablet */
    .secondary-contact-box-v3 { padding: 50px 40px; text-align: center; } /* Centrado en tablet */
    .secondary-contact-text-v3 { margin-left: auto; margin-right: auto; } /* Asegura centrado */
    .btn-whatsapp-contact-v3 { margin-top: 1rem; }
}
@media (max-width: 767px) { /* Móvil */
    .secondary-contact-section-v3 { padding: 60px 0; }
    .secondary-contact-box-v3 { padding: 40px 25px; }
    .secondary-contact-title-v3 { font-size: 1.5rem; }
    .secondary-contact-text-v3 { font-size: 1rem; }
    .btn-whatsapp-contact-v3 { width: 100%; max-width: 380px; font-size: 1rem; padding: 15px 30px;}
}

 /* ========================================================================
   WE ARE PAGE v6: Estilos Completos (Creativo y Profesional)
   ======================================================================== */

.we-are-page-v6 { background-color: var(--color-blanco); }

/* --- Estilos Generales (Ajustados) --- */
.we-are-page-v6 section { padding: clamp(90px, 12vh, 120px) 0; overflow: hidden; position: relative;}
.we-are-page-v6 .section-title { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; color: var(--color-azul-oscuro); margin-bottom: 1.5rem; position: relative; line-height: 1.3; }
.we-are-page-v6 .section-title.text-white { color: var(--color-blanco); }
.we-are-page-v6 .section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 70px; height: 5px; background-color: var(--color-rojo); border-radius: 3px; }
.we-are-page-v6 .section-title.text-white::after { background-color: rgba(255,255,255,0.8); }
.we-are-page-v6 .section-title.text-start::after { left: 0; transform: translateX(0); }
.we-are-page-v6 .section-subtitle { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-rojo); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.we-are-page-v6 .section-description { font-size: 1.15rem; color: var(--color-text-light); max-width: 750px; margin: 0 auto 3rem auto; line-height: 1.8; }
.we-are-page-v6 .section-description.text-white { color: rgba(255,255,255,0.9); }

/* --- 1. HERO WE ARE v6 (Estilo Home v8 Adaptado) --- */
.hero-we-are-v6 { padding: clamp(150px, 20vh, 220px) 0 clamp(100px, 15vh, 180px) 0; background-color: #f8f9fa; position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero-background-we-are-v6 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, var(--color-blanco) 60%, #f0f4f7); }
.hero-content-we-are-v6 { position: relative; z-index: 2; }
.hero-subtitle-upper-v6 { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-azul-claro); /* Azul claro para subtítulo */ text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem; }
.hero-title-we-are-v6 { font-size: clamp(3rem, 7vw, 5.2rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.5rem; color: var(--color-azul-oscuro); }
.hero-title-we-are-v6 .highlight-red { color: var(--color-rojo); display: inline-block; }
.hero-subtitle-we-are-v6 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 400; margin-bottom: 3rem; max-width: 580px; color: var(--color-text-light); line-height: 1.8; }
.badge-discount-v6 { /* Estilo consistente */ background-color: var(--color-rojo); color: var(--color-blanco); padding: 6px 14px; border-radius: 50px; font-weight: 700; font-size: 0.9em; display: inline-block; vertical-align: baseline; margin: 0 3px; box-shadow: 0 3px 8px rgba(var(--color-rojo-rgb), 0.3); }
.hero-cta-we-are-v6 .btn { padding: 16px 35px; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 50px; font-weight: 700; transition: all 0.3s ease; }
/* Botón secundario Outline Azul (igual que v8 index) */
.btn-hero-outline-v8 { background-color: transparent; border: 2px solid var(--color-azul-oscuro); color: var(--color-azul-oscuro); }
.btn-hero-outline-v8:hover { background-color: var(--color-azul-oscuro); color: var(--color-blanco); transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 25px rgba(var(--color-azul-oscuro-rgb), 0.2); }
/* Area Visual Derecha (igual que v8 index) */
.hero-visual-area-v6 { position: relative; min-height: 450px; display: flex; justify-content: center; align-items: center; }
.visual-composition-container-v6 { position: relative; width: 100%; max-width: 500px; aspect-ratio: 1/1; display: flex; justify-content: center; align-items: center; }
.hero-team-image-v6 { position: relative; z-index: 5; max-width: 95%; /* Imagen más grande */ height: auto; object-fit: contain; filter: drop-shadow(0 18px 35px rgba(0,0,0,0.18)); transform: rotateY(-3deg) translateY(-10px); transition: transform 0.5s ease;}
.visual-composition-container-v6:hover .hero-team-image-v6 { transform: rotateY(0deg) translateY(0); }
.visual-composition-container-v6 .shape { position: absolute; border-radius: 40% 60% 60% 40% / 70% 50% 50% 30%; opacity: 0.7; filter: blur(10px); animation: morphFloat 25s infinite ease-in-out alternate; }
.visual-composition-container-v6 .abstract-shape-1-v6 { width: 95%; height: 95%; top: 0; left: 0; background: linear-gradient(135deg, rgba(var(--color-azul-claro-rgb), 0.4), rgba(var(--color-azul-oscuro-rgb), 0.5)); animation-duration: 28s; z-index: 1; }
.visual-composition-container-v6 .abstract-shape-2-v6 { width: 60%; height: 60%; bottom: -5%; right: -10%; background: linear-gradient(45deg, rgba(var(--color-rojo-rgb), 0.3), rgba(var(--color-rojo-rgb), 0.5)); animation-duration: 22s; animation-delay: -4s; z-index: 6; filter: blur(15px); opacity: 0.6;}
.visual-composition-container-v6 .abstract-shape-3-v6 { width: 40%; height: 40%; top: 5%; left: -5%; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.7); animation-duration: 30s; animation-delay: -7s; z-index: 7; }
/* @keyframes morphFloat se mantiene igual */
.visual-composition-container-v6 .icon-element { position: absolute; font-size: 1.8rem; color: rgba(var(--color-azul-oscuro-rgb), 0.3); z-index: 4; opacity: 0.7;}
.icon-shield-v6 { top: 10%; right: 10%; }
.icon-pin-v6 { bottom: 15%; left: 5%; }
.scroll-down-indicator-v6 { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-down-indicator-v6 a { color: rgba(var(--color-azul-oscuro-rgb), 0.4); font-size: 1.8rem; animation: bounce 2s infinite; }
.scroll-down-indicator-v6 a:hover { color: var(--color-azul-oscuro); }
/* @keyframes bounce se mantiene igual */

/* --- 2. NUESTRA ESENCIA v6 (Cards Flotantes Mejoradas) --- */
.essence-section-v6 { padding: 120px 0; background-color: var(--color-blanco); }
.essence-card-v6 { background-color: var(--color-blanco); padding: 40px 30px; border-radius: var(--border-radius-large); text-align: center; height: 100%; border: 1px solid var(--color-grey-medium); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); box-shadow: 0px 10px 30px -10px rgba(var(--color-azul-oscuro-rgb), 0.1); position: relative; top: 0; }
.essence-card-v6:hover { transform: translateY(-15px); box-shadow: 0px 25px 45px -15px rgba(var(--color-azul-oscuro-rgb), 0.2); border-color: var(--color-rojo); }
.essence-icon { height: 60px; /* Tamaño consistente */ margin-bottom: 1.8rem; transition: transform 0.4s ease;}
.essence-icon img { height: 100%; width: auto; max-width: 60px; object-fit: contain; }
.essence-card-v6:hover .essence-icon { transform: scale(1.15) rotate(5deg); }
.essence-title { font-size: 1.3rem; font-weight: 700; color: var(--color-azul-oscuro); margin-bottom: 1rem; transition: color 0.3s ease;}
.essence-card-v6:hover .essence-title { color: var(--color-rojo); }
.essence-description { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; }

/* --- 3. PROPÓSITO Y FUTURO v6 (Contraste Corregido, Parallax Mantenido) --- */
.mission-vision-v6 { padding: 0; background-color: var(--bs-body-color); }
.mv-panel-v6 { position: relative; padding: clamp(100px, 15vh, 150px) 0; overflow: hidden; min-height: 60vh; display: flex; align-items: center; color: var(--color-blanco); }
/* Fondos con overlay para contraste */
.mission-panel-v6 { background: linear-gradient(rgba(var(--color-azul-oscuro-rgb), 0.85), rgba(var(--color-azul-claro-rgb), 0.75)), url('/assets/images/team-subtle-bg.jpg') center center / cover scroll; /* attachment: scroll para parallax JS */ }
.vision-panel-v6 { background: linear-gradient(rgba(var(--color-rojo-rgb), 0.85), rgba(190, 30, 28, 0.75)), url('/assets/images/tech-abstract-bg.jpg') center center / cover scroll; } /* attachment: scroll */
.mv-content-v6 { padding: 0 clamp(20px, 6vw, 80px); position: relative; z-index: 2;}
.mv-icon-v6 { max-height: clamp(80px, 10vw, 110px); width: auto; margin-bottom: 2rem; opacity: 0.9; filter: drop-shadow(0 8px 15px rgba(0,0,0,0.2)); transition: transform 0.4s ease; display: block; /* Asegura display block */}
/* Alineación de imágenes */
.mission-panel-v6 .mv-icon-v6 { margin-right: auto; } /* Izquierda por defecto */
.vision-panel-v6 .mv-icon-v6 { margin-left: auto; } /* Derecha */
.mv-panel-v6:hover .mv-icon-v6 { transform: scale(1.08) rotate(-3deg); }
.mv-title-v6 { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; color: var(--color-blanco); text-shadow: 0 2px 8px rgba(0,0,0,0.3);}
.mv-panel-v6 p { font-size: clamp(1rem, 2.5vw, 1.15rem); line-height: 1.9; opacity: 0.95; max-width: 550px; }
/* Ajuste de alineación de texto para Visión */
.vision-panel-v6 .mv-content-v6 { text-align: right; }
.vision-panel-v6 p { margin-left: auto; } /* Alinea párrafo a la derecha */

/* --- 4. PRINCIPIOS INALTERABLES v6 (Valores Grid Hover Sutil) --- */
.values-section-v6 { padding: 100px 0; background-color: var(--color-blanco); } /* Fondo blanco */
.values-grid-v6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 4rem;}
.value-item-v6 { background-color: var(--color-blanco); /* Fondo blanco */ padding: 40px 30px; border-radius: var(--border-radius-medium); text-align: center; transition: all 0.35s ease; position: relative; overflow: hidden; border: 1px solid var(--color-grey-medium); /* Borde sutil */}
.value-item-v6:hover { transform: translateY(-8px); box-shadow: var(--shadow-medium); border-color: var(--color-rojo); }
.value-icon-v6 { font-size: 3.5rem; color: var(--color-azul-oscuro); margin-bottom: 1.5rem; display: inline-block; transition: all 0.3s ease;}
.value-item-v6:hover .value-icon-v6 { color: var(--color-rojo); transform: scale(1.1); }
.value-title-v6 { font-size: 1.4rem; font-weight: 700; color: var(--color-azul-oscuro); margin-bottom: 1rem; transition: color 0.3s ease;}
.value-item-v6:hover .value-title-v6 { color: var(--color-rojo); }
.value-description-v6 { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; }

/* --- 5. SIMULACIÓN CHAT WHATSAPP --- */
.whatsapp-testimonial-section { padding: 100px 0; background-color: #e5ddd5; /* Fondo tipo WhatsApp */ }
.chat-container {
    max-width: 700px; margin: 3rem auto 0 auto;
    background-color: var(--color-blanco); border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-large); overflow: hidden; display: flex; flex-direction: column; height: 600px; /* Altura fija para simular pantalla */
}
.chat-header {
    background-color: var(--color-azul-oscuro); /* Azul corporativo */ color: var(--color-blanco);
    padding: 15px 20px; display: flex; align-items: center;
}
.chat-avatar { width: 45px; height: 45px; border-radius: 50%; margin-right: 15px; background: rgba(255,255,255,0.2); padding: 5px; /* Para que logo blanco se vea */}
.chat-title h5 { margin: 0; font-size: 1.1rem; font-weight: 600; }
.chat-title span { font-size: 0.8rem; opacity: 0.8; }
.chat-body {
    flex-grow: 1; padding: 20px; overflow-y: auto; /* Permite scroll si hay muchos mensajes */
    background-image: url('/assets/images/whatsapp-bg-pattern.png'); /* REEMPLAZAR con patrón sutil */
    background-color: #f7f7f7; /* Fallback */
    display: flex; flex-direction: column;
}
.message {
    max-width: 75%; padding: 10px 15px; border-radius: 10px; margin-bottom: 15px;
    position: relative; line-height: 1.5; font-size: 0.95rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    opacity: 0; /* Para animación de entrada */
}
.message p { margin-bottom: 5px; } /* Espacio para timestamp */
.timestamp { font-size: 0.75rem; color: #999; display: block; text-align: right; }

.message.sent { /* Mensajes de Auxiseg */
    background-color: #DCF8C6; /* Verde claro WhatsApp */ color: var(--color-text-dark);
    margin-left: auto; /* Alinea a la derecha */ border-bottom-right-radius: 0;
}
.message.sent .timestamp { color: #88a77a; }

.message.received { /* Mensajes del Cliente */
    background-color: var(--color-blanco); color: var(--color-text-dark);
    margin-right: auto; /* Alinea a la izquierda */ border-bottom-left-radius: 0;
}
.message.received .timestamp { color: #aaa; }

/* Animación de entrada de mensajes (si reveal está activo) */
.chat-body .message.animate__animated { opacity: 1; }
/* Puedes ajustar delays en el HTML (animate__delay-Xs) */

.chat-footer {
    background-color: #f0f0f0; padding: 10px 20px; text-align: center;
    font-size: 0.8rem; color: #888; border-top: 1px solid #ddd;
}

/* --- Responsive We Are Page v6 --- */
@media (max-width: 991px) { /* Tablet */
    /* ... (Ajustes generales y específicos como en v5) ... */
    .hero-we-are-v6 { min-height: 70vh; padding: 140px 0 100px 0; }
    .hero-title-we-are-v6 { font-size: clamp(2.6rem, 7vw, 4.5rem); }
    .hero-visual-area-v6 { display: none; }
    .essence-card-v6 { margin-bottom: 30px; }
    .mission-vision-v6 .mv-panel-v6 { min-height: auto; padding: 80px 0;}
    .mission-vision-v6 .row > div { text-align: center; } /* Centrar todo en M/V */
    .mission-vision-v6 p { margin-left: auto; margin-right: auto; } /* Centrar texto */
    .values-section-v6 { padding: 80px 0; }
    .value-item-v6 { margin-bottom: 25px; }
    .whatsapp-testimonial-section { padding: 80px 0; }
    .chat-container { max-width: 90%; height: 550px;}
}
@media (max-width: 767px) { /* Móvil */
    /* ... (Ajustes generales y específicos como en v5) ... */
    .hero-we-are-v6 { min-height: 75vh; padding: 120px 0 80px 0; }
    .hero-title-we-are-v6 { font-size: clamp(2.2rem, 9vw, 3.2rem); }
    .hero-subtitle-we-are-v6 { font-size: 1rem; }
    .hero-pillars-icons { gap: 10px; } /* Menos espacio entre iconos */
    .pillar-icon-item span { font-size: 0.75rem;}
    .essence-section-v6 { padding: 60px 0; }
    .essence-card-v6 { margin-bottom: 25px; padding: 30px 20px;}
    .mission-vision-v6 { padding: 0;}
    .mv-panel-v6 { padding: 60px 0;}
    .mv-title-v6 { font-size: 2rem; }
    .mv-icon-v6 { max-height: 80px; }
    .mv-panel-v6 p { font-size: 1rem; }
    .values-section-v6 { padding: 60px 0; }
    .value-item-v6 { margin-bottom: 25px; padding: 30px 20px;}
    .value-icon-v6 { font-size: 3rem;}
    .value-title-v6 { font-size: 1.3rem;}
    .value-description-v6 { font-size: 0.9rem;}
    .whatsapp-testimonial-section { padding: 60px 0; }
    .chat-container { max-width: 95%; height: 500px;}
    .message { max-width: 85%; font-size: 0.9rem;}
}

/* ========================================================================
   WORK WITH US PAGE v7: Estilos Completos (Profesional & Creativo)
   ======================================================================== */

.work-with-us-page-v7 { background-color: var(--color-blanco); }

/* --- Estilos Generales (Reutilizados/Ajustados) --- */
.work-with-us-page-v7 section { padding: clamp(90px, 12vh, 120px) 0; overflow: hidden; position: relative;}
/* (Asegúrate de tener .section-title, subtitle, description definidos globalmente o cópialos aquí) */
.work-with-us-page-v7 .section-title { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 800; color: var(--color-azul-oscuro); margin-bottom: 1.5rem; position: relative; display: inline-block; line-height: 1.3; }
.work-with-us-page-v7 .section-title.text-white { color: var(--color-blanco); }
.work-with-us-page-v7 .section-title::after { content: ''; position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); width: 70px; height: 5px; background-color: var(--color-rojo); border-radius: 3px; }
.work-with-us-page-v7 .section-title.text-white::after { background-color: rgba(255,255,255,0.8); }
.work-with-us-page-v7 .section-title.text-start::after { left: 0; transform: translateX(0); }
.work-with-us-page-v7 .section-subtitle { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-rojo); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1rem; }
.work-with-us-page-v7 .section-description { font-size: 1.15rem; color: var(--color-text-light); max-width: 750px; margin: 0 auto 3rem auto; line-height: 1.8; }
.work-with-us-page-v7 .section-description.text-white { color: rgba(255,255,255,0.9); }

/* --- 1. HERO WORK WITH US v7 --- */
.hero-wwu-v7 { padding: clamp(150px, 20vh, 220px) 0 clamp(100px, 15vh, 180px) 0; background-color: #f8f9fa; position: relative; overflow: hidden; min-height: 85vh; display: flex; align-items: center; }
.hero-background-wwu-v7 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, var(--color-blanco) 60%, #f0f4f7); }
.hero-content-wwu-v7 { position: relative; z-index: 2; }
.hero-subtitle-upper-v7 { display: block; font-size: 0.9rem; font-weight: 700; color: var(--color-azul-claro); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 1.2rem; }
.hero-title-wwu-v7 { font-size: clamp(2.8rem, 6vw, 4.8rem); font-weight: 800; line-height: 1.2; margin-bottom: 1.5rem; color: var(--color-azul-oscuro); }
.hero-title-wwu-v7 .highlight-red { color: var(--color-rojo); display: inline-block; }
.hero-subtitle-wwu-v7 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 400; margin-bottom: 3rem; max-width: 600px; color: var(--color-text-light); line-height: 1.8; }
.hero-cta-wwu-v7 .btn { padding: 16px 35px; font-size: 1.1rem; box-shadow: 0 5px 15px rgba(0,0,0,0.1); border-radius: 50px; font-weight: 700; transition: all 0.3s ease; }
/* Botón secundario Outline Azul (reutilizado) */
.btn-hero-outline-v7 { background-color: transparent; border: 2px solid var(--color-azul-oscuro); color: var(--color-azul-oscuro); }
.btn-hero-outline-v7:hover { background-color: var(--color-azul-oscuro); color: var(--color-blanco); transform: translateY(-3px) scale(1.03); box-shadow: 0 12px 25px rgba(var(--color-azul-oscuro-rgb), 0.2); }
/* Area Visual Derecha (reutilizado de We Are v5/Index v8) */
.hero-visual-area-v7 { position: relative; min-height: 450px; display: flex; justify-content: center; align-items: center; }
.visual-composition-container-v7 { position: relative; width: 100%; max-width: 500px; aspect-ratio: 1/1; display: flex; justify-content: center; align-items: center; }
.hero-agent-image-v7 { position: relative; z-index: 5; max-width: 95%; height: auto; object-fit: contain; filter: drop-shadow(0 18px 35px rgba(0,0,0,0.18)); transition: transform 0.5s ease;}
.visual-composition-container-v7:hover .hero-agent-image-v7 { transform: scale(1.05); }
.visual-composition-container-v7 .shape { position: absolute; border-radius: 40% 60% 60% 40% / 70% 50% 50% 30%; opacity: 0.7; filter: blur(10px); animation: morphFloat 25s infinite ease-in-out alternate; }
.visual-composition-container-v7 .abstract-shape-1-v7 { width: 95%; height: 95%; top: 0; left: 0; background: linear-gradient(135deg, rgba(var(--color-azul-claro-rgb), 0.4), rgba(var(--color-azul-oscuro-rgb), 0.5)); animation-duration: 28s; z-index: 1; }
.visual-composition-container-v7 .abstract-shape-2-v7 { width: 60%; height: 60%; bottom: -5%; right: -10%; background: linear-gradient(45deg, rgba(var(--color-rojo-rgb), 0.3), rgba(var(--color-rojo-rgb), 0.5)); animation-duration: 22s; animation-delay: -4s; z-index: 6; filter: blur(15px); opacity: 0.6;}
.visual-composition-container-v7 .abstract-shape-3-v7 { width: 40%; height: 40%; top: 5%; left: -5%; background: rgba(255, 255, 255, 0.6); backdrop-filter: blur(15px); border: 1px solid rgba(255, 255, 255, 0.7); animation-duration: 30s; animation-delay: -7s; z-index: 7; }
/* @keyframes morphFloat se mantiene igual */
.visual-composition-container-v7 .icon-element { position: absolute; font-size: 1.8rem; color: rgba(var(--color-azul-oscuro-rgb), 0.3); z-index: 4; opacity: 0.7;}
.icon-chart-v7 { top: 15%; right: 10%; }
.icon-network-v7 { bottom: 10%; left: 15%; }
/* Indicador scroll (reutilizado) */
.scroll-down-indicator-v7 { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 3; }
.scroll-down-indicator-v7 a { color: rgba(var(--color-azul-oscuro-rgb), 0.4); font-size: 1.8rem; animation: bounce 2s infinite; }
.scroll-down-indicator-v7 a:hover { color: var(--color-azul-oscuro); }
/* @keyframes bounce se mantiene igual */

/* --- 2. BENEFICIOS EXCLUSIVOS v7 --- */
.benefits-section-v7 { padding: 100px 0; background-color: var(--color-blanco); }
.benefit-card-v7 {
    background-color: var(--color-blanco); padding: 40px 30px; border-radius: var(--border-radius-large);
    text-align: center; height: 100%; border: 1px solid var(--color-grey-medium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0px 10px 30px -10px rgba(var(--color-azul-oscuro-rgb), 0.1); position: relative; top: 0;
}
.benefit-card-v7:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0px 25px 50px -15px rgba(var(--color-azul-oscuro-rgb), 0.2); border-color: var(--color-rojo); }
.benefit-icon-v7 { font-size: 3.5rem; color: var(--color-rojo); margin-bottom: 1.8rem; display: inline-block; line-height: 1; transition: transform 0.3s ease;}
.benefit-card-v7:hover .benefit-icon-v7 { transform: scale(1.15) rotate(-5deg); }
.benefit-title-v7 { font-size: 1.4rem; font-weight: 700; color: var(--color-azul-oscuro); margin-bottom: 1rem; transition: color 0.3s ease;}
/* .benefit-card-v7:hover .benefit-title-v7 { color: var(--color-rojo); } */ /* Opcional */
.benefit-description-v7 { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0; }

/* --- 3. PRESENTANDO AUXINET v7 --- */
.auxinet-section-v7 { padding: 100px 0; background-color: var(--color-grey-light); }
.auxinet-section-v7 .section-title::after { left: 0; transform: translateX(0); }
.auxinet-section-v7 p { font-size: 1.1rem; color: var(--color-text-light); line-height: 1.8; margin-bottom: 1.5rem; }
.auxinet-pills { margin: 2rem 0; display: flex; flex-wrap: wrap; gap: 10px;}
.badge-feature { background-color: rgba(var(--color-rojo-rgb), 0.1); color: var(--color-rojo); padding: 8px 15px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; }
.badge-feature i { margin-right: 6px; }
/* Mockup Laptop Mejorado (Ahora Slider Standalone) */
.laptop-mockup-v7 { position: relative; max-width: 600px; margin: 0 auto; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));}
.laptop-frame-img-v7 { display: none; } /* Aseguramos que no se vea si queda en caché o algo */
.laptop-screen-v7 { 
    position: relative; 
    width: 100%; 
    aspect-ratio: 16/9; /* Mantiene proporción rectangular */
    background-color: #eee; 
    overflow: hidden; 
    z-index: 1; 
    border-radius: 12px; /* Bordes redondeados agradables */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15); /* Sombra propia */
}
.auxinet-slider { width: 100%; height: 100%; }
.auxinet-slider .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.auxinet-pagination { bottom: 12px !important; } /* Ajuste */
.auxinet-pagination .swiper-pagination-bullet { background-color: rgba(0, 0, 0, 0.3); width: 8px; height: 8px;}
.auxinet-pagination .swiper-pagination-bullet-active { background-color: var(--color-rojo); width: 20px; border-radius: 4px;}

/* --- 4. CÓMO EMPEZAR v2 (Mantenido y Refinado) --- */
.how-to-start-v2 { padding: 100px 0; background-color: var(--color-blanco); }
.steps-container-v2 { display: flex; justify-content: space-around; position: relative; margin-top: 5rem; flex-wrap: wrap;}
.steps-container-v2::before { content: ''; position: absolute; top: 45px; left: 16.66%; right: 16.66%; height: 3px; background-image: linear-gradient(to right, var(--color-grey-medium) 50%, transparent 50%); background-size: 12px 3px; z-index: 0;}
.step-item-v2 { width: 30%; text-align: center; position: relative; z-index: 1; margin-bottom: 30px; }
.step-content-v2 { transition: transform 0.3s ease; padding-bottom: 10px;} /* Espacio inferior para sombra */
.step-item-v2:hover .step-content-v2 { transform: translateY(-10px); }
.step-icon-v2 { font-size: 2rem; color: var(--color-blanco); margin-bottom: 1.5rem; position: relative; z-index: 2; display: inline-flex; align-items:center; justify-content:center; background: var(--gradient-primary); width: 90px; height: 90px; border-radius: 50%; box-shadow: 0 10px 25px rgba(var(--color-azul-oscuro-rgb), 0.25); transition: all 0.3s ease; border: 4px solid var(--color-blanco); }
.step-icon-v2 span { position: absolute; top: -12px; left: -12px; background: var(--color-rojo); color: white; width: 32px; height: 32px; border-radius: 50%; font-size: 1rem; font-weight: 700; line-height: 32px; box-shadow: 0 3px 8px rgba(0,0,0,0.2);}
.step-item-v2:hover .step-icon-v2 { background: var(--color-rojo); box-shadow: 0 12px 30px rgba(var(--color-rojo-rgb), 0.35); }
.step-title-v2 { font-size: 1.3rem; font-weight: 700; color: var(--color-azul-oscuro); margin-bottom: 0.5rem; transition: color 0.3s ease;}
.step-item-v2:hover .step-title-v2 { color: var(--color-rojo); }
.step-description-v2 { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.6; }

/* --- 5. SUMATE AHORA v7 (Instrucción Email Mejorada) --- */
.join-us-section-v7 { padding: 120px 0; position: relative; color: var(--color-blanco); }
.join-background-v7 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(150deg, var(--color-azul-oscuro) 15%, #1a8bb8 85%), url('/assets/images/texture-subtle-dark.png') repeat; background-size: auto, auto; }
.join-content-v7 { position: relative; z-index: 2; }
.join-us-section-v7 .section-title, .join-us-section-v7 .section-subtitle { color: var(--color-blanco); }
.join-us-section-v7 .section-title::after { background-color: rgba(255,255,255,0.8); }
.contact-man-image { max-width: 450px; height: auto; transform: scaleX(-1); /* Reflejar imagen si mira hacia afuera */ filter: drop-shadow(0 15px 30px rgba(0,0,0,0.2)); }
.join-instruction-text { font-size: 1.15rem; line-height: 1.8; color: rgba(255, 255, 255, 0.9); margin-bottom: 2rem; }
.join-instruction-text strong { color: var(--color-blanco); font-weight: 700;}
.email-contact-box {
    background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius-medium); padding: 20px 25px; display: inline-flex; align-items: center;
    backdrop-filter: blur(5px); transition: background-color 0.3s ease;
}
.email-contact-box:hover { background: rgba(255, 255, 255, 0.15); }
.email-icon { font-size: 1.8rem; color: var(--color-rojo); margin-right: 15px; }
.email-address { font-size: 1.3rem; font-weight: 600; color: var(--color-blanco); text-decoration: none; }
.btn-copy-email { background: none; border: none; color: rgba(255, 255, 255, 0.7); font-size: 1.2rem; margin-left: 15px; cursor: pointer; position: relative; padding: 5px;}
.btn-copy-email:hover { color: var(--color-blanco); }
.copy-feedback { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%) translateY(-5px); background: #333; color: white; padding: 3px 8px; border-radius: 4px; font-size: 0.8rem; white-space: nowrap; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }
.copy-feedback.show { opacity: 1; visibility: visible; }
.alternative-contact-v7 { color: rgba(255,255,255,0.8); }
.alternative-contact-v7 a { color: var(--color-blanco); font-weight: 600; text-decoration: underline; }
.alternative-contact-v7 a:hover { color: var(--color-rojo); }

/* --- Responsive General Work With Us v7 --- */
@media (max-width: 991px) { /* Tablet */
    .work-with-us-page-v7 section { padding: 80px 0; }
    .hero-wwu-v7 { min-height: auto; padding: 140px 0 100px 0; text-align: center;}
    .hero-text-content-v7 { text-align: center !important; }
    .hero-title-wwu-v7 { font-size: clamp(2.6rem, 7vw, 4rem); }
    .hero-visual-area-v7 { display: none; }
    .benefits-section-v7 .col-lg-3 { margin-bottom: 30px; }
    .auxinet-section-v7 { text-align: center; }
    .auxinet-section-v7 .row > div:first-child { order: 2; } /* Texto abajo */
    .auxinet-section-v7 .row > div:last-child { order: 1; } /* Mockup arriba */
    .auxinet-section-v7 .section-title::after { left: 50%; transform: translateX(-50%); }
    .auxinet-pills { justify-content: center; }
    .laptop-mockup-v7 { max-width: 80%; margin-bottom: 40px;}
    .how-to-start-v2 { padding: 80px 0;}
    .join-us-section-v7 { padding: 100px 0; }
    .contact-man-image { display: none; } /* Ocultar hombre en tablet */
}
@media (max-width: 767px) { /* Móvil */
    .work-with-us-page-v7 section { padding: 60px 0; }
    .hero-wwu-v7 { padding: 120px 0 80px 0; }
    .hero-title-wwu-v7 { font-size: clamp(2.4rem, 8vw, 3.5rem); }
    .hero-subtitle-wwu-v7 { font-size: 1.1rem; }
    .hero-cta-wwu-v7 .btn { width: 90%; max-width: 350px; display: block; margin: 15px auto !important; }
    .hero-cta-wwu-v7 .btn:first-child { margin-right: auto !important;}
    .benefits-section-v7 .col-md-6 { margin-bottom: 25px; }
    .benefit-card-v7 { padding: 30px 20px;}
    .auxinet-section-v7 { padding: 60px 0;}
    .laptop-mockup-v7 { max-width: 95%; }
    .how-to-start-v2 { padding: 60px 0;}
    .join-us-section-v7 { padding: 80px 0; }
    .email-contact-box { flex-direction: column; align-items: center; }
    .email-address { margin: 10px 0; }
    .btn-copy-email { margin-left: 0; }
}