/* --- CONFIGURACIÓN DE COLORES CORPORATIVOS --- */
:root {
    --azul-oscuro: #001d99;
    --naranja-boton: #b0f216;
    --naranja-borde: #b0f216;
}

.txt-title-new{
    color: #000e5d !important;
}
.txt-title-new2{
    color: #01082f !important;
}
.txt-title-new3{
    color: #b0f216 !important;
}
.txt-title-new4{
    color: #75008d !important;
}
.txt-title-new5{
    color: #40024c !important;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #111;
}

/* Fondo de prueba oscuro para simular tu sitio web como en las capturas */
.hero-background-simulado {
    height: 1500px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 200px;
    text-align: center;
    color: white;
}

/* --- ESTRUCTURA PRINCIPAL DEL HEADER (ESTADO POR DEFECTO - IMAGEN 1) --- */
.header-exact {
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.header-flex-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0;
}

/* 1. Cápsula del Logo (Izquierda) */
.logo-capsule {
    background-color: #ffffff;
    border-radius: 0 100px 100px 0;
    padding: 12px 50px 12px 35px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.logo-capsule img {
    height: 60px;
    width: auto;
}

/* 2. Cápsula de Navegación (Centro - Flotante) */
.nav-capsule {
    background-color: #ffffff;
    border-radius: 100px;
    padding: 8px 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    margin-left: 40px;
    flex-grow: 1;
    max-width: 820px;
    transition: background-color 0.4s ease, max-width 0.4s ease;
}

.nav-link-exact {
    color: #000000;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.nav-link-exact:hover {
    color: var(--naranja-boton);
}

/* Botón Contact Us Naranja */
.btn-contact-exact {
    background-color: var(--naranja-boton);
    color: #ffffff !important;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 10px 28px;
    border-radius: 100px;
    border-bottom: 4px solid var(--naranja-borde);
    display: inline-block;
    transition: all 0.2s ease;
}

.btn-contact-exact:hover {
    background-color: #638b05;
    transform: translateY(-1px);
}

/* 3. Bloque de Teléfono (Derecha) */
.phone-block-exact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    padding-right: 40px;
    flex-shrink: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.phone-icon-exact {
    background-color: var(--azul-oscuro);
    color: #ffffff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.phone-text-exact {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    /* Igual a la primera imagen */
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* Nota opcional: Si tu fondo real es extremadamente oscuro, puedes cambiar este color de texto a #ffffff en tu base */
.phone-number {
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.2;
}

/* Botón de Menú Hamburguesa Móvil (Oculto en Desktop) */
.mobile-toggle-btn {
    display: none;
    background: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: var(--azul-oscuro);
    font-size: 20px;
    margin-left: auto;
    margin-right: 25px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- ESTADO STICKY POR SCROLL (SEGUNDA IMAGEN) --- */
.header-exact.is-sticky {
    position: fixed;
    top: 0;
    padding: 10px 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* La cápsula central cambia a Azul Eléctrico y se expande ocupando todo el espacio derecho */
.header-exact.is-sticky .nav-capsule {
    background-color: var(--azul-oscuro);
    max-width: 100%;
    /* Se estira hacia la derecha */
    margin-right: 40px;
}

/* Los links cambian a Blanco Puro */
.header-exact.is-sticky .nav-link-exact {
    color: #ffffff;
}

.header-exact.is-sticky .nav-link-exact:hover {
    color: var(--naranja-boton);
}

/* Desaparece por completo el teléfono en scroll igual que la imagen 2 */
.header-exact.is-sticky .phone-block-exact {
    display: none !important;
}


/* --- DISEÑO RESPONSIVE Y MENÚ HAMBURGUESA --- */
@media (max-width: 1199.98px) {
    .nav-capsule {
        gap: 15px;
        padding: 8px 20px;
    }
}

@media (max-width: 991.98px) {
    .header-exact {
        top: 0;
        background-color: rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    .mobile-toggle-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Ocultamos el teléfono y el menú horizontal nativo en móvil */
    .phone-block-exact {
        display: none !important;
    }

    /* Convertimos la cápsula en el menú desplegable vertical */
    .nav-capsule {
        position: absolute;
        top: 85px;
        left: 5%;
        width: 90%;
        max-width: none;
        margin-left: 0;
        background-color: #ffffff;
        flex-direction: column;
        border-radius: 20px;
        padding: 20px;
        gap: 15px;
        display: none;
        /* Controlado por JS/Bootstrap collapse de forma limpia */
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }

    /* Mostrar el menú si tiene la clase open */
    .nav-capsule.show-mobile {
        display: flex !important;
    }

    .nav-link-exact {
        color: #000000 !important;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .btn-contact-exact {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }

    /* En responsive sticky mantendremos consistencia */
    .header-exact.is-sticky .nav-capsule {
        background-color: #ffffff;
        /* Mantenemos blanco en móvil para legibilidad */
        margin-right: 0;
        width: 90%;
    }

    .header-exact.is-sticky .mobile-toggle-btn {
        background-color: var(--azul-oscuro);
        color: #ffffff;
    }
}





/* --- CONTENEDOR PRINCIPAL DEL FOOTER (IMAGEN AC8AA0) --- */
.custom-footer {
    position: relative;
    background: url('/assets/images/footer-background.jpg');
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding-top: 110px;
    /* Incrementado para dar espacio a la nueva onda */
    padding-bottom: 30px;
    overflow: hidden;
    width: 100%;
}

/* Onda / Curva decorativa superior exacta */
.footer-wave {
    position: absolute;
    top: -1px;
    /* Evita cualquier línea muerta o pixel de separación */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 85px;
}

/* SOLUCIÓN AL FONDO NEGRO: Forzamos a todos los paths a rellenarse de blanco con sus respectivas opacidades nativas */
.footer-wave svg path {
    fill: #ffffff !important;
}

/* --- REFUERZO DE REDISTRIBUCIÓN PARA VISTA WEB DE ESCRITORIO --- */
@media (min-width: 992px) {
    .custom-footer .row {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    /* Obliga a las columnas col-lg-3 a medir exactamente el 25% en pantallas de PC */
    .custom-footer .footer-col {
        flex: 0 0 25% !important;
        max-width: 25% !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {

    /* Distribución en 2 columnas para tablets (col-md-6) */
    .custom-footer .footer-col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

/* --- COLUMNA 1: LOGO Y DESCRIPCIÓN --- */
.footer-logo-capsule {
    background-color: #ffffff;
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-block;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-logo-capsule img {
    max-height: 55px;
    width: auto;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #e0e5ff;
    max-width: 310px;
    font-weight: 400;
}

/* --- TITULOS DE COLUMNAS CON SUBRAYADO VERDE --- */
.footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffffff;
}

.title-accent-line {
    width: 45px;
    height: 3px;
    background-color: #b0f216;
    margin-bottom: 25px;
    border-radius: 2px;
}

/* --- COLUMNA 2: CONTACTO --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 22px;
    color: #ffffff;
    opacity: 0.9;
    margin-top: 3px;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: #a0aec0;
    text-transform: none;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    word-break: break-all;
}

/* --- COLUMNA 3: NAVEGACIÓN --- */
.nav-list-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list-footer li {
    margin-bottom: 12px;
}

.nav-link-footer {
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.2s ease;
    display: inline-block;
}

.nav-list-footer li:last-child .nav-link-footer {
    color: #001d99;
}

/* --- COLUMNA 4: SERVICIOS --- */
.services-list-footer {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list-footer li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.services-list-footer li::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #ffffff;
    display: inline-block;
    flex-shrink: 0;
}

/* --- BARRA INFERIOR DE COPYRIGHT Y REDES --- */
.footer-bottom-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-top: 45px;
    margin-bottom: 25px;
}

.copyright-text {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
}

.social-container-footer {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-btn-round {
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000c3a;
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

/* --- AJUSTES RESPONSIVOS ADICIONALES --- */
@media (max-width: 991.98px) {
    .social-container-footer {
        justify-content: flex-start;
        margin-top: 20px;
    }

    .footer-title {
        margin-top: 25px;
    }
}





/* --- ESTILOS COMPONENTE: CONTACTO Y UBICACIÓN --- */
/* ================================================================== */
/* FUERZA RIGIDA DE COLUMNAS PARA EL MÓDULO DE CONTACTO (SOLUCIÓN)    */
/* ================================================================== */

/* =================================================== */
/* ESTILOS DE AISLAMIENTO: CONTACTO V2                */
/* =================================================== */
.contact-section-module,
.contact-v2-section-module {
    padding: 60px 0;
    width: 100% !important;
    position: relative;
    box-sizing: border-box;
}

.contact-v2-max-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* FUERZA ESTRUCTURAL DE GRID EN ESCRITORIO (Evita el colapso vertical en PC) */
.contact-v2-main-flex-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important;
}

@media (min-width: 992px) {
    .contact-v2-col-form {
        flex: 0 0 52% !important;
        max-width: 52% !important;
        width: 52% !important;
    }

    .contact-v2-col-info {
        flex: 0 0 43% !important;
        max-width: 43% !important;
        width: 43% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
    }
}

/* --- DISEÑO DE LA TARJETA DEL FORMULARIO (IZQUIERDA) --- */
.contact-v2-form-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 45px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-v2-form-title {
    font-size: 32px;
    font-weight: 800;
    color: #001d99;
    margin-bottom: 35px;
    letter-spacing: -0.5px;
}

/* Filas internas del formulario */
.contact-v2-form-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 20px !important;
    margin-bottom: 25px;
    width: 100%;
}

.contact-v2-form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Estilos de inputs de alta fidelidad con curvas exactas */
.label-v2 {
    font-size: 13px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 6px;
}

.input-v2 {
    border: 1px solid #c8c8c8 !important;
    border-radius: 30px !important;
    padding: 11px 22px !important;
    font-size: 14px !important;
    color: #222222 !important;
    outline: none !important;
    transition: border-color 0.3s ease;
    width: 100%;
    background-color: #ffffff;
}

.input-v2:focus,
.textarea-v2:focus {
    border-color: #001d99 !important;
}

/* Select especial estilo borde inferior de la imagen */
.select-v2 {
    border: none !important;
    border-bottom: 1.5px solid #cccccc !important;
    border-radius: 0 !important;
    padding: 8px 0 !important;
    font-weight: 700;
    font-size: 14px;
    color: #111111 !important;
    outline: none !important;
    background-color: transparent;
}

.textarea-v2 {
    border: 1px solid #c8c8c8 !important;
    border-radius: 20px !important;
    padding: 15px 22px !important;
    font-size: 14px !important;
    outline: none !important;
    resize: none;
    width: 100%;
}

.counter-v2 {
    font-size: 11px;
    color: #aaaaaa;
    margin-top: 5px;
}

/* Botón de Envío Azul Oscuro */
.btn-submit-v2 {
    background-color: #001d99 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: none;
    padding: 12px 30px !important;
    border-radius: 4px !important;
    border: none !important;
    cursor: pointer;
    transition: background-color 0.2s ease !important;
    display: inline-block;
    margin-top: 10px;
}

.btn-submit-v2:hover {
    background-color: #001d99 !important;
}

/* --- COLUMNA DERECHA (MAPA E INFO) --- */
.contact-v2-map-embed {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    width: 100%;
    margin-bottom: 25px;
}

/* Contenedor de datos con franja vertical naranja idéntica */
.contact-v2-details-accent-box {
    border-left: 5px solid #b0f216 !important;
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

.contact-v2-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Esfera interna de íconos rosa pastel */
.contact-v2-icon-sphere {
    width: 52px;
    height: 52px;
    background-color: #ffeaea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-v2-icon-sphere i {
    color: #b0f216;
    /* Verde limón exacto */
    font-size: 18px;
}

.contact-v2-text-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2px;
}

.contact-v2-text-block p {
    font-size: 14px;
    color: #444444;
    margin-bottom: 0;
    font-weight: 500;
}

/* Redes Sociales Filtradas */
.contact-v2-social-footer {
    display: flex;
    gap: 12px;
}

.social-v2-circle {
    width: 42px;
    height: 42px;
    border: 2px solid #b0f216 !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b0f216 !important;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-v2-circle:hover {
    background-color: #b0f216 !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

/* --- COMPORTAMIENTO FULL RESPONSIVE PARA DISPOSITIVOS MÓVILES --- */
@media (max-width: 991.98px) {
    .contact-v2-main-flex-row {
        flex-direction: column !important;
    }

    .contact-v2-col-form,
    .contact-v2-col-info {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .contact-v2-form-card {
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .contact-v2-form-row {
        flex-direction: column !important;
        gap: 20px !important;
        margin-bottom: 20px;
    }

    .contact-v2-col-info {
        margin-top: 10px;
    }
}



/* =================================================== */
/* ESTILOS DE AISLAMIENTO: ACERCA DE DIGITAL WORLD     */
/* =================================================== */
.about-digital-section {
    padding: 80px 0;
    width: 100% !important;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
}

.about-digital-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Control estricto anti-colapso horizontal para PC */
.about-digital-flex-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    gap: 0 !important;
}

@media (min-width: 992px) {
    .about-digital-col-img {
        flex: 0 0 46% !important;
        max-width: 46% !important;
        width: 46% !important;
    }

    .about-digital-col-content {
        flex: 0 0 50% !important;
        max-width: 50% !important;
        width: 50% !important;
    }
}

/* --- MAQUETACIÓN ESTRUCTURAL DE LA IMAGEN (BLOB) --- */
.about-image-wrapper-organic {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 20px;
}

/* Imagen con curva orgánica idéntica */
.organic-masked-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 3;
    border-radius: 30% 70% 53% 47% / 50% 48% 52% 50%;
    /* Recreación del corte irregular */
}

/* Decoradores de fondo azules de la imagen */
.blob-decorator {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.blob-top-blue {
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    top: 5px;
    left: 20%;
    border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%;
}

.blob-bottom-blue {
    width: 180px;
    height: 150px;
    background: linear-gradient(135deg, #0033ff, #0072ff);
    bottom: 5px;
    left: 10%;
    border-radius: 50% 40% 60% 40% / 40% 60% 40% 60%;
    z-index: 4;
    /* Pasa ligeramente al frente igual que la captura */
}

/* --- CONTENIDO TEXTUAL (DERECHA) --- */
.about-green-badge-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.badge-line-green {
    width: 15px;
    height: 3px;
    background-color: #b2f300;
    /* Verde limón idéntico */
    display: inline-block;
}

.badge-text-green {
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 0.5px;
}

.about-main-title {
    font-size: 44px;
    font-weight: 800;
    color: #e8e8e8;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.about-main-paragraph {
    font-size: 15px;
    line-height: 1.6;
    color: #4f5665;
    margin-bottom: 35px;
    font-weight: 400;
}

/* --- ELEMENTOS DE LISTA EN CÁPSULAS --- */
.about-capsule-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-list-capsule {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f1f4ff;
    /* Tinte sutil azul-lavanda */
    border-radius: 50px;
    padding: 12px 25px;
    width: 100%;
    box-sizing: border-box;
}

/* Esferas de los checks naranjas */
.about-check-icon-sphere {
    width: 32px;
    height: 32px;
    background-color: #001d99;
    /* Naranja corporativo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(242, 122, 48, 0.3);
}

.about-check-icon-sphere i {
    color: #ffffff;
    font-size: 13px;
}

.about-capsule-text {
    font-size: 14px;
    font-weight: 700;
    color: #0d1128;
}

/* --- AJUSTES RESPONSIVOS COMPLETO --- */
@media (max-width: 991.98px) {
    .about-digital-flex-row {
        flex-direction: column !important;
    }

    .about-digital-col-img,
    .about-digital-col-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .about-digital-col-img {
        margin-bottom: 45px;
    }

    .about-main-title {
        font-size: 32px;
    }

    .about-list-capsule {
        padding: 12px 20px;
        border-radius: 24px;
        /* Se compacta para mejor lectura en móviles */
    }
}


/* =================================================== */
/* ESTILOS EXCLUSIVOS: SERVICIOS V2 (FONDO TRANSPARENTE)*/
/* =================================================== */
.services-v2-section {
    padding: 60px 0;
    width: 100% !important;
    position: relative;
    background-color: transparent !important;
    /* Totalmente transparente para tu fondo animado */
    box-sizing: border-box;
}

.services-v2-container {
    max-width: 1400px;
    /* Contenedor más amplio para favorecer el diseño horizontal */
    margin: 0 auto;
    padding: 0 20px;
}

/* Forzado estricto de columnas Flexbox */
.services-v2-main-flex-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 30px 0 !important;
}

@media (min-width: 1200px) {

    /* Distribución exacta en 2 columnas amplias en PC */
    .services-v2-card-col {
        flex: 0 0 48.5% !important;
        max-width: 48.5% !important;
        width: 48.5% !important;
        display: flex !important;
    }
}

/* --- DISEÑO DE LA TARJETA (ESTILO IMAGEN_525B1C) --- */
.services-v2-card {
    /* Gradiente azul vibrante copiado de tu captura */
    background-image: url(/assets/images/resources/bg-cards-services.png);
    box-shadow: 0 15px 40px rgba(26, 102, 255, 0.15);
    width: 100%;
    display: flex !important;
    flex-direction: row !important;
    /* Contenido lado a lado en modo Web */
    align-items: center;
    padding: 40px 30px;
    box-sizing: border-box;
    position: relative;
    transition: transform 0.3s ease;
}

.services-v2-card:hover {
    transform: translateY(-5px);
}

/* Asimetría de bordes decorativos idénticos a los de la imagen original */
.s-v2-card-left-style {
    border-radius: 45px 45px 45px 0px;
    /* Esquina inferior izquierda recta */
}

.s-v2-card-right-style {
    border-radius: 45px 45px 0px 45px;
    /* Esquina inferior derecha recta */
}

/* --- BLOQUES INTERNOS DE LA CARD --- */
.services-v2-img-block {
    flex: 0 0 35%;
    max-width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 20px;
}

.services-v2-img-block img {
    width: 100%;
    height: auto;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.services-v2-content-block {
    flex: 0 0 65%;
    max-width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Tipografías e Identidad Visual */
.services-v2-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.services-v2-desc {
    font-size: 13.5px;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 25px;
    font-weight: 500;
    text-align: justify;
}

/* Contenedor de doble botón */
.services-v2-btn-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Estilo de los botones cápsula blancos */
.s-v2-btn {
    background-color: #ffffff !important;
    color: #1a66ff !important;
    font-weight: 700 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* --- COMPORTAMIENTO COMPLETO RESPONSIVO --- */
@media (max-width: 1199.98px) {
    .services-v2-card-col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 767.98px) {
    .services-v2-card {
        flex-direction: column !important;
        /* Pasa a formato vertical en teléfonos */
        text-align: center;
        padding: 35px 20px;
    }

    .services-v2-img-block {
        max-width: 60%;
        margin-bottom: 25px;
        padding-right: 0;
    }

    .services-v2-content-block {
        max-width: 100%;
        flex: 0 0 100%;
    }

    .services-v2-desc {
        text-align: center;
    }

    .services-v2-btn-group {
        justify-content: center;
    }

    .s-v2-btn {
        width: 100%;
        /* Botones de ancho completo en móvil para máxima usabilidad */
    }
}






/* =================================================== */
/* ESTILOS EXCLUSIVOS: MÓDULO FAQ V2                  */
/* =================================================== */
.faq-v2-section {
    padding: 80px 0;
    width: 100% !important;
    position: relative;
    background-image: url(/wp-content/uploads/2024/07/body-bg-2-scaled-1.png) !important;
    box-sizing: border-box;
}

.faq-v2-container {
    max-width: 950px;
    /* Ancho optimizado para lectura cómoda de texto */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- ENCABEZADO DEL MÓDULO --- */
.faq-v2-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-badge-line {
    width: 25px;
    height: 3px;
    background-color: #b0f216;
    /* Verde limón corporativo */
    display: inline-block;
}

.faq-badge-text {
    font-size: 14px;
    font-weight: 800;
    color: #111111;
    letter-spacing: 1px;
}

.faq-v2-main-title {
    font-size: 42px;
    font-weight: 800;
    color: #000e5d;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* --- ESTRUCTURA DEL ACORDEÓN --- */
.faq-v2-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
}

.faq-v2-item {
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 5, 84, 0.04);
    border: 1px solid rgba(0, 5, 84, 0.03);
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

/* Botón disparador/Trigger */
.faq-v2-trigger {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    cursor: pointer;
    outline: none !important;
    gap: 20px;
}

.faq-v2-question {
    font-size: 17px;
    font-weight: 700;
    color: #fcfcfc;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Esfera del ícono (Flecha) */
.faq-v2-icon-sphere {
    width: 38px;
    height: 38px;
    background-color: #c4e500;
    /* Naranja corporativo */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(242, 122, 48, 0.25);
    transition: background-color 0.3s ease;
}

.faq-v2-icon-sphere i {
    color: #ffffff;
    font-size: 14px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- COMPORTAMIENTO DE APERTURA (CONTENIDO) --- */
.faq-v2-content {
    height: 0;
    overflow: hidden;
    transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-v2-content-inner {
    padding: 0 30px 28px 30px;
}

.faq-v2-content-inner p {
    font-size: 14.5px;
    line-height: 1.6;
    color: #4f5665;
    margin: 0;
    text-align: justify;
}

/* --- ESTADOS INTERACTIVOS ACTIVOS --- */
.faq-v2-item.is-active {
    border-left: 5px solid #c4e500;
    /* Borde de acento dinámico al abrirse */
    box-shadow: 0 12px 35px rgba(0, 5, 84, 0.08);
}

.faq-v2-item.is-active .faq-v2-question {
    color: #1b1c1b;
    /* El texto de la pregunta cambia a azul eléctrico */
}

.faq-v2-item.is-active .faq-v2-icon-sphere i {
    transform: rotate(180deg);
    /* Rotación suave de la flecha */
}

/* --- ADAPTACIÓN RESPONSIVA COMPLETA --- */
@media (max-width: 767.98px) {
    .faq-v2-main-title {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .faq-v2-trigger {
        padding: 20px;
    }

    .faq-v2-question {
        font-size: 15px;
    }

    .faq-v2-content-inner {
        padding: 0 20px 20px 20px;
    }

    .faq-v2-content-inner p {
        font-size: 13.5px;
    }
}


/* =================================================== */
/* ESTILOS EXCLUSIVOS: REVIEWS ESTILO ELFSIGHT         */
/* =================================================== */
.elf-reviews-section {
    padding: 80px 0;
    width: 100% !important;
    position: relative;
    background-color: transparent !important; /* Fondo transparente requerido */
    box-sizing: border-box;
}

.elf-reviews-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- BARRA ACUMULADORA SUPERIOR --- */
.elf-reviews-summary-bar {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 25px 35px;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 5, 84, 0.05);
    margin-bottom: 45px;
    border: 1px solid rgba(0, 5, 84, 0.02);
}

.elf-summary-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Distintivo circular Facebook con color corporativo integrado */
.elf-fb-badge-infinite {
    width: 55px;
    height: 55px;
    background-color: #1877f2; /* Azul oficial FB */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.elf-rating-info h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0d1128;
    margin-bottom: 4px;
}

.elf-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.elf-numeric-rating {
    font-size: 16px;
    font-weight: 800;
    color: #0d1128;
}

.elf-stars-stars {
    color: #f27a30; /* Naranja corporativo para las estrellas */
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.elf-total-votes {
    font-size: 13.5px;
    color: #6b7280;
    font-weight: 600;
}

/* Botón de acción derecho */
.elf-btn-review {
    background-color: #001a88 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 10px 24px !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 26, 136, 0.15);
}
.elf-btn-review:hover {
    background-color: #1877f2 !important; /* Cambia al azul de Facebook en hover */
}

/* --- REJILLA RIGIDA ANTIRROTURA PARA PC (3 COLUMNAS) --- */
.elf-reviews-main-flex-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 25px 0 !important;
}

@media (min-width: 992px) {
    .elf-review-card-col {
        flex: 0 0 32% !important;
        max-width: 32% !important;
        width: 32% !important;
        display: flex !important;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .elf-review-card-col {
        flex: 0 0 48.5% !important;
        max-width: 48.5% !important;
        width: 48.5% !important;
        display: flex !important;
    }
}

/* --- DISEÑO DE LAS TARJETAS (REVIEW CARDS) --- */
.elf-review-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 5, 84, 0.03);
    border: 1px solid rgba(0, 5, 84, 0.02);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.elf-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 5, 84, 0.07);
}

/* Encabezado interno de la tarjeta */
.elf-card-user-header {
    display: flex;
    align-items: center;
    position: relative;
    margin-bottom: 15px;
    width: 100%;
}

.elf-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 14px;
}

.elf-user-meta h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0d1128;
    margin-bottom: 2px;
}

.elf-review-date {
    font-size: 12px;
    color: #9ca3af;
    font-weight: 500;
}

/* Icono de plataforma en la esquina superior derecha de la tarjeta */
.elf-card-platform-icon {
    margin-left: auto;
    color: #1877f2;
    font-size: 18px;
}

.elf-card-stars {
    color: #f27a30;
    font-size: 13px;
    display: flex;
    gap: 2px;
    margin-bottom: 15px;
}

.elf-card-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #4f5665;
    margin-bottom: 0;
    text-align: justify;
    font-weight: 400;
}

/* --- CONTROL RESPONSIVO TOTAL --- */
@media (max-width: 767.98px) {
    .elf-reviews-summary-bar {
        flex-direction: column !important;
        gap: 20px;
        text-align: center;
        padding: 25px 20px;
    }
    .elf-summary-left {
        flex-direction: column !important;
        gap: 12px;
    }
    .elf-stars-row {
        justify-content: center;
    }
    .elf-btn-review {
        width: 100%;
        justify-content: center;
    }
    .elf-review-card-col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}



/* =================================================== */
/* ESTILOS EXCLUSIVOS: HERO SLIDER DE VIDEO FUTURISTA  */
/* =================================================== */
.futu-slider-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Ocupa el alto total de la pantalla */
    min-height: 600px;
    background-color: #020617;
    overflow: hidden;
    box-sizing: border-box;
}

.futu-slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Estructura Base de los Slides apilados */
.futu-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    overflow: hidden;
    pointer-events: none; /* Desactivado por defecto */
}

.futu-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto; /* Activo solo el slide visible */
}

/* Video de Fondo Inteligente */
.futu-slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Capa de Gradiente Azul Futurista y Filtro de Oscuridad */
.futu-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(2, 6, 23, 0.9) 0%, rgba(1, 25, 90, 0.55) 60%, rgba(2, 6, 23, 0.85) 100%);
    z-index: 2;
}

/* Contenedor de Textos */
.futu-slide-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.futu-slide-content {
    max-width: 680px;
    text-align: left;
}

/* Tipografía de Alta Fidelidad */
.futu-pretitle {
    font-size: 13px;
    font-weight: 800;
    color: #00d2ff; /* Cian futurista */
    letter-spacing: 4px;
    display: block;
    margin-bottom: 15px;
}

.futu-title {
    font-size: 62px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.text-glow-blue {
    color: #1a66ff;
    text-shadow: 0 0 30px rgba(26, 102, 255, 0.6);
}

.futu-subtitle {
    font-size: 17px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 40px;
    font-weight: 400;
}

/* Grupo de Botones */
.futu-btn-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Estilo de los Botones de Diseño Glassmorphic / Cyberpunk */
.futu-btn {
    font-size: 13.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.futu-btn-primary {
    background-color: #1a66ff !important;
    color: #ffffff !important;
    border: 1px solid #1a66ff !important;
    box-shadow: 0 8px 25px rgba(26, 102, 255, 0.35);
}
.futu-btn-primary:hover {
    background-color: #004ce6 !important;
    box-shadow: 0 12px 30px rgba(26, 102, 255, 0.5);
    transform: translateY(-2px);
}

.futu-btn-outline {
    background-color: rgba(255, 255, 255, 0.04) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(10px);
}
.futu-btn-outline:hover {
    background-color: #ffffff !important;
    color: #020617 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
}

/* --- FLECHAS DE NAVEGACIÓN MINIMALISTAS --- */
.futu-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}
.futu-nav-arrow:hover {
    background-color: #1a66ff;
    border-color: #1a66ff;
    box-shadow: 0 0 20px rgba(26, 102, 255, 0.4);
}
.arrow-left { left: 40px; }
.arrow-right { right: 40px; }

/* --- INDICADORES INFERIORES DE PROGRESO (DOTS) --- */
.futu-slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.futu-dot {
    width: 45px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.dot-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-color: #00d2ff;
    border-radius: 2px;
}

.futu-dot.active .dot-progress {
    width: 100%;
    transition: width 6s linear; /* Tiempo de duración por slide */
}

/* --- ADAPTACIÓN RESPONSIVA TOTAL (FULL RESPONSIVE) --- */
@media (max-width: 991.98px) {
    .futu-title { font-size: 44px; }
    .futu-subtitle { font-size: 15px; }
    .arrow-left { left: 20px; }
    .arrow-right { right: 20px; }
}

@media (max-width: 767.98px) {
    .futu-slide-container { padding: 0 24px; }
    .futu-title { font-size: 34px; }
    .futu-subtitle { font-size: 14px; margin-bottom: 30px; }
    .futu-nav-arrow { display: none; } /* Ocultamos flechas en móvil para favorecer taps limpios */
    .futu-btn-group { flex-direction: column; width: 100%; gap: 12px; }
    .futu-btn { width: 100%; padding: 12px 20px; }
    .futu-slider-dots { bottom: 30px; width: 80%; justify-content: center; }
    .futu-dot { flex: 1; }
}




/* =================================================== */
/* ESTILOS EXCLUSIVOS: CONTROLLER DE AUDIO FUTURISTA   */
/* =================================================== */
.futu-audio-widget {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Ubicado en la izquierda para no estorbar al Chat de la derecha */
    z-index: 9998;
    box-sizing: border-box;
}

/* Botón flotante estilo Cyberpunk / Glassmorphic */
.audio-fab-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(26, 102, 255, 0.15) 0%, rgba(0, 26, 136, 0.4) 100%);
    border: 1px solid rgba(26, 102, 255, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(26, 102, 255, 0.2);
    outline: none !important;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.audio-fab-btn:hover {
    background: linear-gradient(135deg, rgba(26, 102, 255, 0.3) 0%, rgba(0, 26, 136, 0.6) 100%);
    border-color: #00d2ff !important;
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.4);
}

/* Icono de silenciado */
#audio-muted-icon {
    color: #cbd5e1;
    font-size: 18px;
}

/* --- ECUALIZADOR VISUAL DE BARRAS (ONDA) --- */
.audio-wave-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 18px;
    transition: opacity 0.2s ease;
}

.audio-wave-bars .bar {
    width: 3px;
    height: 100%;
    background-color: #00d2ff; /* Color cian brillante futurista */
    border-radius: 2px;
    transform-origin: bottom;
}

/* Modificadores de altura iniciales para romper simetría */
.audio-wave-bars .bar:nth-child(1) { height: 60%; }
.audio-wave-bars .bar:nth-child(2) { height: 100%; }
.audio-wave-bars .bar:nth-child(3) { height: 40%; }
.audio-wave-bars .bar:nth-child(4) { height: 80%; }

/* Cuando la música está en pausa, congelamos y bajamos las barras */
.audio-fab-btn.is-paused .audio-wave-bars {
    display: none !important;
}

/* --- ADAPTACIÓN RESPONSIVA --- */
@media (max-width: 480px) {
    .futu-audio-widget {
        bottom: 20px;
        left: 20px;
    }
    .audio-fab-btn {
        width: 48px;
        height: 48px;
    }
}



/* Forzar comportamiento de escala en la capa interna */
.mpc-icon-wrap {
    display: inline-block !important;
    transform-origin: center center !important; /* El zoom nace del centro del icono */
    will-change: transform;
}

/* Evitar que alguna regla externa recorte el icono al crecer */
.mpc-icon, .mpc-icon-column {
    overflow: visible !important;
}



/* =================================================== */
/* ESTILOS EXCLUSIVOS: MODAL AUTOMÁTICO DE ATENCIÓN    */
/* =================================================== */
.futu-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(2, 6, 23, 0.7); /* Oscurecimiento profundo */
    backdrop-filter: blur(10px); /* Cristal esmerilado futurista */
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000 !important; /* Por encima de cualquier elemento existente */
    opacity: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif !important;
}

/* Tarjeta del Modal con Borde Holográfico mediante Keyframe */
.futu-modal-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 460px;
    border-radius: 28px;
    padding: 40px 35px;
    position: relative;
    box-sizing: border-box;
    box-shadow: 0 20px 50px rgba(0, 26, 136, 0.2);
    animation: futuBorderGlow 6s infinite alternate ease-in-out; /* Animación de contorno infinita */
}

/* Botón de cierre en la esquina superior */
.futu-modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease, transform 0.2s ease;
    outline: none !important;
    z-index: 10;
}
.futu-modal-close-btn:hover {
    color: #f27a30;
    transform: scale(1.1);
}

/* --- ELEMENTOS INTERNOS DEL BODY --- */
.futu-modal-logo-container {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}
.futu-m-logo {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.futu-modal-title {
    font-size: 28px;
    font-weight: 900;
    color: #001a88; /* Azul Nexora */
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.futu-modal-text {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 35px;
    font-weight: 500;
}
.futu-modal-text .highlight-orange {
    color: #f27a30; /* Naranja de acento */
    font-weight: 800;
}

/* Distribución Vertical de Botones para Impacto Visual */
.futu-modal-btn-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.futu-modal-btn {
    width: 100%;
    padding: 14px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    transition: transform 0.2s ease, background-color 0.3s ease;
}

/* Botón Principal: Cotizar Gratis (Efecto de Pulso Imponente) */
.btn-m-cta {
    background-color: #f27a30 !important;
    color: #ffffff !important;
    border: none !important;
}
.btn-m-cta:hover {
    background-color: #d65a18 !important;
    transform: translateY(-2px);
}

/* Botón Secundario: Enviar Email (Minimalista Futurista) */
.btn-m-email {
    background-color: rgba(0, 26, 136, 0.04) !important;
    color: #001a88 !important;
    border: 1px solid rgba(0, 26, 136, 0.2) !important;
}
.btn-m-email:hover {
    background-color: #001a88 !important;
    color: #ffffff !important;
    border-color: #001a88 !important;
}

/* =================================================== */
/* ANIMACIONES INFINITAS MEDIANTE CSS KEYFRAMES        */
/* =================================================== */

/* 1. Pulso de Resplandor imponente para el botón de acción */
.impo-pulse-glow {
    animation: impoButtonGlow 2s infinite ease-in-out;
}

@keyframes impoButtonGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(242, 122, 48, 0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(242, 122, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(242, 122, 48, 0);
    }
}

/* 2. Brillo perimetral cambiante para la tarjeta del modal */
@keyframes futuBorderGlow {
    0% {
        box-shadow: 0 20px 50px rgba(0, 26, 136, 0.15), inset 0 0 0 1px rgba(26, 102, 255, 0.2);
    }
    100% {
        box-shadow: 0 20px 50px rgba(242, 122, 48, 0.25), inset 0 0 0 2px rgba(242, 122, 48, 0.3);
    }
}

/* --- AJUSTES RESPONSIVOS --- */
@media (max-width: 575.98px) {
    .futu-modal-card {
        width: 90%;
        padding: 35px 20px;
        border-radius: 24px;
    }
    .futu-modal-title {
        font-size: 22px;
    }
    .futu-modal-text {
        font-size: 13.5px;
        margin-bottom: 25px;
    }
    .futu-modal-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}



/* =================================================== */
/* ESTILOS EXCLUSIVOS: CARRUSEL INFINITO DE MINIATURAS */
/* =================================================== */
.futu-gallery-section {
    padding: 70px 0;
    width: 100% !important;
    position: relative;
    box-sizing: border-box;
    overflow: hidden;
    font-family: 'Arial', sans-serif !important;
}

.futu-gallery-container {
    width: 100%;
    margin: 0 auto;
}

/* --- ENCABEZADO --- */
.futu-gallery-badge-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}
.futu-g-line {
    width: 20px;
    height: 3px;
    background-color: #b0f216; /* Verde limón Nexora */
    display: inline-block;
}
.futu-g-text {
    font-size: 13.5px;
    font-weight: 800;
    color: #0300c4;
    letter-spacing: 1.5px;
}
.futu-gallery-main-title {
    font-size: 40px;
    font-weight: 900;
    color: #530174;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

/* --- VIEWPORT Y TRACK EN BUCLE --- */
.futu-gallery-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.futu-gallery-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 25px; /* Espacio uniforme entre las tarjetas medianas */
    width: max-content;
    will-change: transform;
}

/* --- TARJETAS MEDIANAS (ITEMS DEL CARRUSEL) --- */
.futu-gallery-item {
    flex: 0 0 310px; /* Tamaño mediano fijo por miniatura en escritorio */
    width: 310px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #0d1128;
    border: 1px solid rgba(26, 102, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 5, 84, 0.04);
    cursor: pointer;
    box-sizing: border-box;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.futu-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Capa de texto interna interactiva */
.futu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 26, 136, 0) 40%, rgba(0, 26, 136, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    box-sizing: border-box;
    opacity: 0.85;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.futu-item-overlay span {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transform: translateY(0px);
    transition: transform 0.3s ease, color 0.3s ease;
}

/* --- EFECTOS HOVER (INTERACTIVO) --- */
.futu-gallery-item:hover {
    border-color: #1a66ff;
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(26, 102, 255, 0.2);
}

.futu-gallery-item:hover img {
    transform: scale(1.08); /* Zoom fluido interno en la imagen */
}

.futu-gallery-item:hover .futu-item-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(0, 26, 136, 0.1) 20%, rgba(26, 102, 255, 0.9) 100%);
}

.futu-gallery-item:hover .futu-item-overlay span {
    color: #ffffff;
    transform: translateY(-2px);
}

/* --- RESPONSIVE OPTIMIZADO (FULL RESPONSIVE) --- */
@media (max-width: 991.98px) {
    .futu-gallery-main-title {
        font-size: 32px;
        margin-bottom: 35px;
    }
    .futu-gallery-item {
        flex: 0 0 260px; /* Se encoge proporcionalmente en tablets */
        width: 260px;
        height: 170px;
        border-radius: 16px;
    }
    .futu-gallery-track {
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .futu-gallery-main-title {
        font-size: 26px;
    }
    .futu-gallery-item {
        flex: 0 0 220px; /* Se adapta perfectamente para pantallas compactas de celulares */
        width: 220px;
        height: 150px;
    }
}

/* =================================================== */
/* ESTILOS EXCLUSIVOS: WIDGET DE IDIOMA FUTURISTA     */
/* =================================================== */
.futu-lang-widget {
    position: fixed;
    bottom: 100px; /* Posicionado arriba del audio (bottom: 30px) para un orden vertical limpio */
    left: 30px;
    z-index: 9997;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif !important;
}

/* --- BOTÓN ACCIONADOR FLOTANTE (FAB) --- */
.lang-fab-btn {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, rgba(26, 102, 255, 0.2) 0%, rgba(0, 5, 84, 0.5) 100%);
    border: 1px solid rgba(26, 102, 255, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(26, 102, 255, 0.15);
    outline: none !important;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.lang-fab-inner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 2px;
}

.lang-globe-icon {
    color: #c1e80b; /* Cian futurista */
    font-size: 14px;
}

.lang-current-label {
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* Efectos Hover del Botón Base */
.lang-fab-btn:hover, .lang-fab-btn.is-open {
    background: linear-gradient(135deg, rgba(26, 102, 255, 0.4) 0%, rgba(0, 5, 84, 0.7) 100%);
    border-color: #c1e80b !important;
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.35);
}

/* --- PANEL DE SELECCIÓN DE IDIOMAS --- */
.lang-options-panel {
    position: absolute;
    bottom: 68px; /* Separación con el botón accionador */
    left: 0;
    width: 160px;
    background: rgba(2, 6, 23, 0.85); /* Fondo oscuro futurista translúcido */
    border: 1px solid rgba(26, 102, 255, 0.25);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: scale(0);
    opacity: 0;
    transform-origin: bottom left; /* El despliegue nace desde el botón */
    box-sizing: border-box;
}

/* Ítems/Opciones de idioma individuales */
.lang-opt-item {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    outline: none !important;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.lang-flag-icon {
    font-size: 16px;
    line-height: 1;
}

.lang-text-name {
    color: #cbd5e1;
    font-size: 13.5px;
    font-weight: 600;
    transition: color 0.2s ease;
}

/* Check de validación oculto por defecto */
.lang-check-mark {
    margin-left: auto;
    font-size: 12px;
    color: #b0f216; /* Verde limón activo */
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

/* Hover sobre las opciones */
.lang-opt-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}
.lang-opt-item:hover .lang-text-name {
    color: #ffffff;
}

/* --- ESTADO IDIOMA ACTIVO --- */
.lang-opt-item.is-active {
    background-color: rgba(26, 102, 255, 0.15);
    border: 1px solid rgba(26, 102, 255, 0.25);
}
.lang-opt-item.is-active .lang-text-name {
    color: #00d2ff; /* Resalta en cian el seleccionado */
    font-weight: 700;
}
.lang-opt-item.is-active .lang-check-mark {
    opacity: 1;
    transform: scale(1);
}

/* --- ADAPTACIÓN RESPONSIVA MÓVIL --- */
@media (max-width: 480px) {
    .futu-lang-widget {
        bottom: 85px; /* Sube un poco en móviles para coordinarse con el audio comprimido */
        left: 20px;
    }
    .lang-fab-btn {
        width: 48px;
        height: 48px;
    }
    .lang-options-panel {
        bottom: 60px;
        width: 145px;
    }
}

/* --- LIMPIEZA DE BANNERS INTRUSIVOS DE GOOGLE --- */
body {
    top: 0 !important; /* Evita que Google mueva tu web hacia abajo */
    position: static !important;
}
.skiptranslate, .goog-te-banner-frame, #goog-gt-tt, .goog-te-balloon-frame {
    display: none !important; /* Oculta barras flotantes y popups de Google */
    visibility: hidden !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box;
}


/* =================================================== */
/* ESTILOS EXCLUSIVOS: TICKER BANNER DE TEXTO          */
/* =================================================== */
.futu-ticker-section {
    width: 100% !important;
    overflow: hidden;
    background-color: #000e5d; /* Color inicial del ciclo */
    padding: 16px 0;
    box-sizing: border-box;
    position: relative;
    white-space: nowrap;
    z-index: 99;
    font-family: 'Arial', sans-serif !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Track contenedor del movimiento lineal */
.futu-ticker-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center;
    width: max-content;
    will-change: transform;
}

/* Estructura interna de cada grupo de datos */
.futu-ticker-group {
    display: flex;
    align-items: center;
    gap: 35px;
    padding-right: 35px; /* Sincronización perfecta con el inicio del siguiente bloque */
}

/* Elementos de contenido individuales */
.futu-ticker-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Resalte cian/verde en los iconos informativos */
.futu-ticker-item i {
    color: #b0f216; /* Tono verde limón característico */
    font-size: 15px;
    display: inline-block;
}

/* Separadores oblicuos minimalistas */
.futu-ticker-separator {
    color: rgba(255, 255, 255, 0.35);
    font-size: 14px;
    font-weight: 400;
}

/* --- ADAPTACIÓN ULTRA-RESPONSIVA --- */
@media (max-width: 991.98px) {
    .futu-ticker-section {
        padding: 12px 0;
    }
    .futu-ticker-item {
        font-size: 12px;
        gap: 8px;
    }
    .futu-ticker-group {
        gap: 25px;
        padding-right: 25px;
    }
}







/* =================================================== */
/* ESTILOS EXCLUSIVOS: SECCIÓN METRICAS Y SKILLS SEO   */
/* =================================================== */
.seo-skills-section {
    padding: 80px 0;
    width: 100% !important;
    position: relative;
    background-color: transparent !important;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif !important; /* Fuente Arial requerida */
}

.seo-skills-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ESTRUCTURA RÍGIDA ANTI-ROTURA EN PC */
.seo-skills-main-row {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    gap: 0 !important;
}

@media (min-width: 992px) {
    .seo-skills-col-img {
        flex: 0 0 48% !important;
        max-width: 48% !important;
        width: 48% !important;
        display: block !important;
    }
    .seo-skills-col-content {
        flex: 0 0 48% !important;
        max-width: 48% !important;
        width: 48% !important;
        display: block !important;
    }
}

/* --- COLUMNA DE LA ILUSTRACIÓN --- */
.seo-illustration-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.seo-main-graphic {
    width: 100%;
    height: auto;
    max-width: 540px;
    object-fit: contain;
}

/* --- TEXTOS E IDENTIDAD VISUAL --- */
.seo-skills-badge {
    font-size: 15px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}
.seo-skills-badge .brace-color {
    color: #f27a30; 
    font-size: 18px;
    font-weight: 700;
}

.seo-skills-title {
    font-size: 38px;
    font-weight: 900;
    color: #0c1025; 
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.seo-skills-paragraph {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 45px;
    text-align: justify;
    font-weight: 400;
}

/* --- FILA DE CARGADORES CIRCULARES --- */
.seo-loaders-flex-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 35px;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.seo-loader-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 110px;
}

.circular-loader-box {
    position: relative;
    width: 115px;
    height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SOLUCIÓN: Implementación de Keyframes directos en el SVG para el efecto Loader Infinito */
.loader-svg-ring {
    width: 100%;
    height: 100%;
    transform-origin: center center !important;
    will-change: transform;
}

/* Asignamos los tiempos de carga y animaciones de forma independiente a cada elipse */
.ring-blue .loader-svg-ring {
    animation: futuActiveLoader 2.8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.ring-orange .loader-svg-ring {
    animation: futuActiveLoader 3.4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.ring-grey .loader-svg-ring {
    animation: futuActiveLoader 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.ring-bg {
    fill: none;
    stroke-width: 8;
}
.ring-fg {
    fill: none;
    stroke-width: 8;
    stroke-linecap: round;
}

/* Paleta de colores de los anillos */
.ring-blue .ring-bg   { stroke: #e0e7ff; }
.stroke-blue          { stroke: #1652f0; } 

.ring-orange .ring-bg { stroke: #ffedd5; }
.stroke-orange        { stroke: #ff7c25; } 

.ring-grey .ring-bg   { stroke: #e2e8f0; }
.stroke-grey          { stroke: #93a6c2; } 

/* Texto interno controlado por GSAP */
.loader-inner-text {
    position: absolute;
    font-size: 20px;
    font-weight: 900;
    color: #0c1025;
    transform-origin: center center !important;
    will-change: transform;
}

.loader-label-text {
    font-size: 13.5px;
    font-weight: 700;
    color: #475569;
    text-align: center;
    white-space: nowrap;
}

/* =================================================== */
/* KEYFRAMES DE ENTRADA INFINITA PARA LOS LOADERS      */
/* =================================================== */
@keyframes futuActiveLoader {
    0% {
        transform: rotate(-90deg); /* Inicio estándar norte */
    }
    100% {
        transform: rotate(270deg); /* Giro completo de 360 grados */
    }
}

/* --- RESPONSIVE --- */
@media (max-width: 991.98px) {
    .seo-skills-main-row {
        flex-direction: column !important;
        align-items: center !important;
    }
    .seo-skills-col-img, .seo-skills-col-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
    .seo-skills-col-img {
        margin-bottom: 50px;
    }
    .seo-skills-title {
        font-size: 30px;
    }
    .seo-loaders-flex-row {
        justify-content: center;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .seo-loaders-flex-row {
        flex-direction: column !important;
        gap: 35px;
    }
    .seo-loader-item {
        width: 100%;
    }
}




/* Efectos Hover del Botón Llamativo */
.btn-hover-effect:hover {
    background-color: #4F46E5 !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.2) !important;
}
.btn-hover-effect:hover .js-btn-icon {
    transform: rotate(45deg);
}

/* Ajustes Responsive para que las tarjetas flotantes no se desborden en móviles */
@media (max-width: 575.98px) {
    .js-floating-1 {
        start: 0% !important;
        bottom: 5% !important;
    }
    .js-floating-2 {
        end: 0% !important;
        top: 15% !important;
    }
}