    :root {
        --ms-blue: #0067b8;
        --valery: #0078d4;
        --white: #ffffff;
        --text: #242424;
        --text-secondary: #616161;
        --success: #107c10; /* Añadido para consistencia con tus textos verdes */
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { 
        font-family: 'Segoe UI', sans-serif; 
        background-color: var(--white); 
        color: var(--text);
        line-height: 1.5;
    }

    /* --- Nav Optimizado --- */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 5%;
        background: var(--white);
        border-bottom: 1px solid #e6e6e6;
        position: sticky;
        top: 0;
        z-index: 1000;
    }
    .social-links { display: flex; gap: 15px; align-items: center; }
    .social-links a { text-decoration: none; transition: transform 0.2s ease; display: flex; align-items: center; }
    .social-links a:hover { transform: scale(1.1); }
    .social-icon { width: 24px; height: 24px; filter: grayscale(1) opacity(0.7); transition: 0.3s; }
    .social-links a:hover .social-icon { filter: grayscale(0) opacity(1); }
    
    .logo { font-weight: 700; font-size: 1.2rem; display: flex; align-items: center; flex-wrap: wrap; gap: 5px; }
    .nav-tag { font-weight: 600; color: var(--ms-blue); }
    .nav-subtag { font-weight: 400; color: var(--text-secondary); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; }

    /* --- Hero --- */
    .hero { display: flex; flex-wrap: wrap; align-items: center; padding: 20px 5% 10px 5%; background: #fff; }
    .hero-text { flex: 1; min-width: 300px; padding-right: 40px; }
    .hero-text h1 { font-size: 3rem; margin: 20px 0; font-weight: 600; letter-spacing: -0.02em; }
    .hero-text p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 10px; }

    /* --- SECCIÓN PRODUCTOS & VERSIONES (AJUSTADO) --- */
    .section-inner { max-width: 1400px; margin: 0 auto; }
    
    .versions-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr); 
        gap: 15px;
        margin-top: 20px;
        align-items: stretch; /* Estira todas las tarjetas a la misma altura */
    }

    /* Estilo XL para el título principal */
    .main-title-licenciamiento {
        font-size: 2.8rem; /* Tamaño significativamente más grande */
        font-weight: 400;  /* Más grueso para mayor impacto */
        color: #1a1a1a;    /* Un negro un poco más profundo */
        text-align: center;
        margin-bottom: 15px;
        letter-spacing: -0.03em; /* Ajuste de kerning profesional */
        line-height: 1.2;
    }

    /* Color Valery con un ligero efecto de énfasis */
    .brand-color {
        color: var(--valery); /* Tu azul #0078d4 */
        display: inline-block; /* Permite micro-ajustes si fuera necesario */
        font-size: 2.8rem;
        font-weight: 800;
    }

    /* Estilo para el subtítulo del SENIAT */
    .subtitle-homologado {
        text-align: center;
        color: var(--text-secondary);
        font-size: 1rem;
        margin-bottom: 5px;
    }    

    /* Estilo para la Tasa BCV */
    .tasa-bcv-display {
        text-align: center;
        font-size: 0.95rem;
        color: var(--success); /* El verde que ya usas */
        font-weight: 600;
    }    

    #tasa-valor {
    color: #0067b8; /* Azul Microsoft para el número [cite: 2026-02-06] */
    }
    
    .version-card {
        background: white;
        padding: 25px 15px;
        border-top: 4px solid var(--valery);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column; /* Organiza el contenido en columna */
        transition: transform 0.3s ease;
        text-align: center;
        align-items: center;
    }

    .version-card:hover {
        transform: translateY(-8px);
        border-top-color: #005a9e; /* Un azul un poco más oscuro al pasar el mouse */
        box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    }    

    /* El párrafo de descripción crecerá para empujar la plus-tag al fondo */
    .version-card > p {
        font-size: 0.82rem;
        color: #555;
        line-height: 1.4;
        margin-bottom: 20px;
        flex-grow: 1; 
    }

    .version-logo { max-width: 140px; height: 60px; object-fit: contain; margin-bottom: 10px; }

    /* --- SECCIÓN HITOS (AJUSTADO) --- */
    .hitos-container {
        padding: 20px 5% 40px 5%; /* Menos espacio arriba para que suba */
        background-color: #f8f9fa;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        margin-top: 0; 
    }
    
    .hitos-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr); 
        gap: 15px;
        margin-top: 15px;
    }

    .hito-card {
        background: white;
        padding: 20px 15px;
        border-top: 4px solid var(--ms-blue);
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    .hito-card:hover { transform: translateY(-5px); }
    .hito-card h4 { color: var(--ms-blue); margin-bottom: 10px; font-size: 0.9rem; font-weight: 700; }
    .hito-card p { font-size: 0.82rem; color: #555; line-height: 1.4; }

    /* --- Precios --- */
    .price-box {
        background: #f4f4f4;
        padding: 10px;
        margin-bottom: 15px;
        border-radius: 4px;
        font-weight: 700;
        color: var(--text);
        font-size: 1.1rem;
        border-left: 4px solid var(--ms-blue);
        width: 100%;
    }
    
    .iva-tag {
        display: block;
        font-size: 0.75rem;
        font-weight: 400;
        color: var(--text-secondary);
        /* Ajustes de precisión */
        margin-top: -2px;    /* Lo acerca sutilmente al precio en $ */
        margin-bottom: 2px;  /* Reduce drásticamente el espacio hacia el precio en Bs */
        line-height: 1;      /* Evita que el interlineado genere espacio extra */
    }

    /* --- Cuadro de Cortesía (EL TRUCO DE LA ALTURA) --- */
    .plus-tag {
        background: #f0f7ff;
        color: #005a9e;
        padding: 15px 10px;
        font-size: 0.75rem;
        border-radius: 4px;
        margin-top: auto; /* Empuja el cuadro al final de la tarjeta */
        font-weight: 400;
        border: 1px dashed var(--valery);
        width: 100%;
        text-align: left;
        min-height: 220px; /* Asegura que todos los cuadros azules midan lo mismo */
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .plus-title {
        display: block;
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.65rem;
        margin-bottom: 8px;
        color: var(--ms-blue);
    }

    /* Ajustes para el Banner Nivel 3 */
    .banner-n3 {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        color: white;
        padding: 60px 5%;
        text-align: center;
        border-left: 8px solid var(--valery);
    }

    .banner-n3 h2 {
        font-size: 2.5rem; /* Un poco más grande para dominar el espacio */
        font-weight: 800;
        text-align: center;
        margin-bottom: 20px;
        letter-spacing: -0.04em;
        line-height: 1.1;
        /* Degradado de Blanco a Azul Valery */
        background: linear-gradient(135deg, #ffffff 40%, #0078d4 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        /* Sombra suave para separar del fondo */
        filter: drop-shadow(0px 4px 8px rgba(0,0,0,0.3));
    }

    .lista-servicios {
        list-style: none; /* Quitamos los puntos genéricos */
        padding: 0;
        margin-top: 0px;
        text-align: left; /* Para que la lista sea fácil de leer */
    }

    .lista-servicios li {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 8px;
        position: relative;
        padding-left: 20px;
        font-size: 0.82rem; 
        color: #555;        
    }

    .lista-servicios li::before {
        content: "•"; /* O puedes usar tu nuevo icono de ubicación en pequeño */
        color: #0056b3; /* El azul corporativo que elegiste */
        font-weight: bold;
        position: absolute;
        left: 0;
    }    

    /* Efecto para el highlight específico */
    .banner-n3 .highlight {
        text-transform: uppercase;
        font-style: normal;
        /* Un toque de resplandor azul */
        text-shadow: 0 0 30px rgba(0, 120, 212, 0.5);
    }

    .soporte-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin-top: 30px;
    }

    .soporte-item {
        background: rgba(45, 45, 45, 0.6); /* Fondo semitransparente */
        backdrop-filter: blur(10px); /* Desenfoque de fondo */
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px;
        border-radius: 12px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .soporte-item:hover {
        transform: translateY(-10px);
        background: rgba(55, 55, 55, 0.8);
        border-color: var(--valery);
        box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .soporte-icon {
        font-size: 1.5rem;
        margin-bottom: 15px;
        display: block;
    }

    .soporte-item h3 {
        font-size: 1rem;
        color: var(--valery);
        margin-bottom: 10px;
        font-weight: 600;
    }

    .soporte-item p {
        font-size: 0.85rem !important;
        color: #bbb !important;
        line-height: 1.4 !important;
        margin-bottom: 0 !important;
    }

    .icono-mapa {
    width: 18px; /* Tamaño discreto y profesional */
    height: auto;
    vertical-align: middle;
    margin-right: 8px;
    /* Si pegaste el código SVG directamente, usa: fill: #005a9e; para que sea azul */
    }
    /* --- Botones --- */
    .btn-primary {
        background: linear-gradient(135deg, #0067b8 0%, #0078d4 100%);
        color: white;
        padding: 16px 35px;
        text-decoration: none;
        font-weight: 600;
        border-radius: 4px;
        box-shadow: 0 4px 15px rgba(0, 103, 184, 0.3);
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 12px;
    }
    .btn-icon { width: 20px; height: 20px; fill: currentColor; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0, 103, 184, 0.4); filter: brightness(1.1); }

    .faq-title {
        font-size: 2.5rem;
        font-weight: 800;
        text-align: center;
        color: var(--text);
        margin-bottom: 50px;
    }

    .faq-title span {
        color: var(--valery); /* El "Yo" en azul Valery */
        border-bottom: 4px solid var(--valery);
    }

    .main-footer {
        background-color: #f5f5f5;
        padding: 30px 20px 30px;
        font-family: 'Inter', -apple-system, sans-serif;
    }

    .footer-container {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px;
    }    

    .brand-name {
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: var(--text-main);
    }

    .brand-phrase {
        color: var(--text-muted);
        font-size: 0.95rem;
        font-style: italic;
    }    

    .footer-cta {
        text-align: right;
    }

    .cta-title {
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--text-main);
    }    

    /* BOTÓN AZUL SÓLIDO */
    .btn-whatsapp-solid {
        display: inline-flex;
        align-items: center;
        padding: 10px 22px;
        background-color: #0056b3; /* Azul Valery Sólido */
        color: #ffffff;
        text-decoration: none;
        font-weight: 600;
        border-radius: 4px; /* Esquina profesional */
        font-size: 0.95rem;
        transition: background-color 0.2s;
    }

    .btn-whatsapp-solid:hover {
        background-color: #004494; /* Un azul un poco más oscuro al pasar el mouse */
    }

    .footer-divider {
        max-width: 1000px;
        height: 1px;
        background-color: var(--border-light);
        margin: 40px auto 20px;
    }

    .footer-bottom {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: var(--text-muted);
    }    

    /* Estilo Minimalista y Limpio */
    .faq-section-clean { background-color: #ffffff; color: #333; padding: 80px 20px; font-family: 'Inter', -apple-system, sans-serif; }
    .faq-header-clean { text-align: center; margin-bottom: 50px; }
    .faq-header-clean h2 { font-size: 2.3rem; color: #1a1a1a; margin-bottom: 10px; font-weight: 800; }
    .yo-highlight { color: #0056b3; border-bottom: 4px solid #0056b3; }
    .faq-header-clean p { color: #666; font-size: 1.1rem; }
    
    .faq-wrapper { max-width: 850px; margin: 0 auto; }
    
    .faq-card { border: 1px solid #eaeaea; border-radius: 10px; margin-bottom: 12px; transition: all 0.3s ease; background: #fff; }
    .faq-card:hover { border-color: #0056b3; box-shadow: 0 4px 15px rgba(0,0,0,0.05); }
    
    .faq-btn { width: 100%; padding: 20px 25px; background: none; border: none; text-align: left; font-size: 1.05rem; font-weight: 600; color: #2c3e50; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
    .faq-btn::after { content: '+'; font-size: 1.5rem; color: #0056b3; transition: transform 0.3s; }
    
    /* Estado Activo */
    .faq-card.active { border-color: #0056b3; background-color: #fcfdfe; }
    .faq-card.active .faq-btn::after { content: '−'; transform: rotate(180deg); }
    
    .faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
    .faq-content p { padding: 0 25px 25px 25px; color: #4a5568; line-height: 1.7; font-size: 0.95rem; margin: 0; }

  /* --- Sinergia Estratégica (Compacto y Profesional) --- */
.sinergia-section {
    margin-top: 50px; /* Separación de la sección anterior */
    padding: 20px 20px 0 20px; /* Eliminamos el espacio inferior */
    background-color: #fff;
}

.sinergia-header {
    text-align: center;
    margin-bottom: 5px;
}

.sinergia-header h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
}

.highlight { color: #0067b8; }

.sinergia-header p {
    font-size: 1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 15px;
}

/* Icono Geográfico SVG */
.icon-geo {
    width: 14px;
    height: 14px;
    fill: #0067b8;
    margin-right: 5px;
}

/* Contenedor de Scroll */
.aliados-scroll-container {
    width: 100%;
    overflow-x: auto;
    padding: 10px 0 0 0;
    margin-bottom: 0;
}

.aliados-flex-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    min-width: max-content;
    padding-bottom: 25px; /* Espacio para sombra de tarjetas */
}

/* Estilo de Tarjetas */
.aliado-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    width: 180px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* RESALTADO PARA TU TARJETA PRINCIPAL */
.principal-consultor {
    border: 2px solid #0067b8 !important;
    box-shadow: 0 8px 16px rgba(0, 103, 184, 0.15) !important;
}

.aliado-foto-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 2px solid #0067b8;
}

.aliado-img { width: 100%; height: 100%; object-fit: cover; }

.aliado-zona {
    font-size: 0.75rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.aliado-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25D366;
    color: #fff !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 10px;
    border-radius: 6px;
}

.aliado-wa img { width: 14px; filter: brightness(0) invert(1); }

/* --- UNIÓN CON LA SIGUIENTE SECCIÓN --- */
.sinergia-section + section, 
.sinergia-section + div {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.sinergia-section + section h2, 
.sinergia-section + div h2 {
    margin-top: 0 !important;
    padding-top: 10px !important;
}

.zona-linea { display: flex; align-items: center; gap: 5px; }

/* --- SECCIÓN EVALUACIÓN GRATUITA (CENTRADOS Y ESPACIADOS) --- */
.evaluacion-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 5%; /* Más aire arriba y abajo para destacar */
    border-top: 1px solid #dee2e6;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.evaluacion-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px 40px; /* Padding interno generoso */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 103, 184, 0.1);
    text-align: center; 
}

.evaluacion-content-centered {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    justify-content: center;
    gap: 15px; /* Espacio base entre elementos */
}

.evaluacion-content-centered h3 {
    color: var(--ms-blue); /* Uso de tu variable */
    margin: 0;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.2;
}

.evaluacion-content-centered p {
    color: var(--text-secondary); /* Uso de tu variable */
    margin: 0;
    font-size: 1.1rem;
    max-width: 700px;
    line-height: 1.6; /* Mejora la legibilidad */
}

.btn-evaluacion {
    display: inline-block;
    background-color: #3169bd; 
    color: #ffffff !important;
    text-decoration: none;
    
    /* AJUSTES DE ESPACIADO DEL BOTÓN */
    padding: 18px 45px;      
    margin-top: 25px;        /* Separa el botón del texto */
    
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(49, 105, 189, 0.3);
    border: none;
    cursor: pointer;
}

.btn-evaluacion:hover {
    background-color: #265499;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(49, 105, 189, 0.4);
}

/* --- RESPONSIVO PARA EVALUACIÓN --- */
@media (max-width: 768px) {
    .evaluacion-section {
        padding: 50px 20px;
    }
    .evaluacion-container {
        padding: 40px 25px;
    }
    .evaluacion-content-centered h3 {
        font-size: 1.5rem;
    }
    .btn-evaluacion {
        width: 100%; /* Botón ancho total en móviles */
        padding: 15px 20px;
    }
}

/* --- CIERRE DE TU MEDIA QUERY ANTERIOR (CORREGIDO) --- */
@media (max-width: 768px) {
    .footer-container, .footer-bottom {
        flex-direction: column;
        text-align: left;
    }
    .footer-cta {
        text-align: left;
    }
}
    /* --- Responsivo --- */
    @media (max-width: 1100px) {
        .hitos-grid, .versions-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
        .hitos-grid, .versions-grid { grid-template-columns: 1fr; }
        .plus-tag { min-height: auto; } /* En móvil no hace falta igualar alturas */
    }
    /* Responsivo para el banner */
    @media (max-width: 992px) {
        .soporte-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 600px) {
        .soporte-grid { grid-template-columns: 1fr; }
    }
 
    /* Ajuste Responsivo para que en celulares no se rompa */
    @media (max-width: 768px) {
        .main-title-licenciamiento {
            font-size: 2rem;
        }
    }
