:root {
  --navy: #102A43;          /* Azul almirante profundo */
  --navy-mid: #243E56;      /* Azul plomo para componentes */
  --navy-light: #486581;    /* Azul acero intermedio */
  --gold: #486581;          /* Azul acero oscuro para botones y líneas clave */
  --gold-light: #627D98;    /* Hover en tono acero claro */
  --cream: #BCCCDC;         /* Gris plata suave */
  --cream-light: #F0F4F8;   /* Fondo general con un levísimo matiz azulado */
  --text-main: #102A43;     /* Texto en azul profundo */
  --text-muted: #486581;    /* Texto secundario */
  --white: #FFFFFF;
  --border: rgba(72, 101, 129, 0.2);
}

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

    html { scroll-behavior: smooth; }

    body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream-light);
    color: var(--text-main);
    overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(10,22,40,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    }

    .nav-logo {
    display: flex; flex-direction: column; gap: 2px;
    }
    .nav-logo .brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 700;
    color: var(--white); letter-spacing: 0.06em;
    }
    .nav-logo .brand span { color: var(--gold); }
    .nav-logo .tagline {
    font-size: 9px; letter-spacing: 0.22em;
    color: rgba(255,255,255,0.45); text-transform: uppercase;
    }

    .nav-links {
    display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
    font-size: 13px; font-weight: 500; letter-spacing: 0.08em;
    color: rgba(255,255,255,0.65); text-decoration: none;
    text-transform: uppercase; transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
        background: var(--gold); 
        color: var(--white); /* Texto blanco sobre el botón azul acero */
        padding: 11px 28px; border: none; cursor: pointer;
        font-family: 'DM Sans', sans-serif; font-size: 12px;
        font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
        transition: background 0.2s, transform 0.15s;
        }
        .nav-cta:hover { 
        background: var(--gold-light); 
        color: var(--white);
        transform: translateY(-1px); 
        }
    /* ── HERO ── */
    .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
    }

    .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(201,168,76,0.07) 0%, transparent 70%);
    pointer-events: none;
    }

    .hero-lines {
    position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px),
        linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    }

    .hero-content {
    display: flex; flex-direction: column; justify-content: center;
    /* padding: 140px 60px 80px; */
    position: relative; z-index: 2;
    }

    .hero-eyebrow {
    display: flex; align-items: center; gap: 14px;
    margin-bottom: 36px;
    }
    .hero-eyebrow .line {
    width: 48px; height: 1px; background: var(--gold);
    }
    .hero-eyebrow span {
    font-size: 15px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    }

    .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 300; line-height: 1.12;
    color: var(--white); margin-bottom: 28px;
    }
    .hero-title strong {
    font-weight: 700; color: var(--gold-light); display: block;
    }

    .hero-subtitle {
    font-size: 15px; 
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 520px; /* Subido de 440px a 520px para que el nuevo texto fluya mejor */
    margin-bottom: 52px;
}

    .hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap;
    }

    .btn-primary {
    background: var(--gold); color: var(--white);
    padding: 16px 36px; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 13px;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    }

    .btn-primary:hover { 
        background: var(--gold-light); 
        color: var(--white); /* Forzamos a que el texto sea blanco y no arrastre tonos viejos */
        transform: translateY(-2px); 
        box-shadow: 0 12px 32px rgba(72, 101, 129, 0.3); /* Sombra azulada en lugar de amarilla */
        }

    .btn-ghost {
    background: transparent; color: rgba(255,255,255,0.75);
    padding: 16px 36px; border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
    font-family: 'DM Sans', sans-serif; font-size: 13px;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    transition: all 0.2s; display: inline-flex; align-items: center; gap: 10px;
    text-decoration: none;
    }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

    .hero-right {
    display: flex; align-items: center; justify-content: center;
    padding: 140px 60px 80px 40px;
    position: relative; z-index: 2;
    }

    .hero-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 48px 44px; width: 100%; max-width: 400px;
    }

    .hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--white); margin-bottom: 32px;
    padding-bottom: 24px; border-bottom: 1px solid var(--border);
    }

    .stat-row {
    display: flex; flex-direction: column; gap: 28px;
    }

    .stat-item {
    display: flex; align-items: center; gap: 20px;
    }

    .stat-icon {
        width: 44px; height: 44px;
        background: rgba(72, 101, 129, 0.08); /* Fondo azul acero ultra suave y traslúcido */
        border: none; /* Eliminamos el borde amarillo/duro por completo */
        border-radius: 50%; /* Lo hacemos circular para un look más moderno y orgánico */
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
        box-shadow: 0 4px 12px rgba(72, 101, 129, 0.1); /* Destello sutil de fondo */
        }

    .stat-icon svg { 
        width: 20px; 
        height: 20px; 
        stroke: var(--gold); /* Tu azul acero */
        fill: none; 
        stroke-width: 1.5; 
        }

    .stat-text .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 700; color: var(--gold-light);
    line-height: 1;
    }
    .stat-text .label {
    font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 4px;
    letter-spacing: 0.06em;
    }

   /* ── STRIP CORREGIDO CON GOOGLE ICONS ── */
    .strip {
    background: var(--gold);
    padding: 18px 60px;
    display: flex; 
    align-items: center; 
    justify-content: center; 
    gap: 40px; 
    overflow: hidden;
    }

    .strip-item {
    display: flex; 
    align-items: center; 
    gap: 12px;
    white-space: nowrap; 
    flex-shrink: 0;
    }

    /* Forzamos el renderizado correcto del ícono de Google */
    .strip-item .material-icons-outlined {
    font-family: 'Material Icons Outlined' !important; /* Obliga al navegador a usar los dibujos de Google */
    font-size: 20px !important;
    color: var(--navy) !important;                    /* Color azul oscuro sobre el fondo dorado */
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;              /* Suavizado premium para pantallas */
    }

    .strip-item span:not(.material-icons-outlined) {
    font-size: 12px; 
    font-weight: 600; 
    letter-spacing: 0.1em;
    text-transform: uppercase; 
    color: var(--navy);
    }

    .strip-divider { 
    color: var(--navy); 
    opacity: 0.35; 
    font-size: 18px; 
    }

    /* Ajuste para celulares */
    @media (max-width: 768px) {
    .strip {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    .strip-divider {
        display: none;
    }
    }
    /* ── SECTION COMMON ── */
    section { padding: 100px 60px; }

    .section-label {
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
    }
    .section-label .line { width: 36px; height: 1px; background: var(--gold); }
    .section-label span {
    font-size: 15px; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 500;
    }

    .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 400; line-height: 1.15;
    color: var(--navy);
    }
    .section-title.light { color: var(--white); }

    /* ── SERVICIOS ── */
    .services { background: var(--cream-light); }

    .services-header {
    max-width: 640px; margin-bottom: 72px;
    }
    .services-header p {
    font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-top: 20px;
    }

    .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(10,22,40,0.08);
    border: 1px solid rgba(10,22,40,0.08);
    }

    .service-card {
    background: var(--white);
    padding: 44px 36px;
    transition: background 0.25s;
    position: relative;
    overflow: hidden;
    }
    .service-card::after {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
    }
    .service-card:hover { background: var(--cream); }
    .service-card:hover::after { width: 100%; }

    .service-icon {
    width: 44px; height: 44px;
    background: rgba(72, 101, 129, 0.08); /* Fondo azul acero traslúcido */
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 24px;
    }

    /* Estilo para los íconos de Google */
    .service-icon .material-icons-outlined {
    font-size: 24px;
    color: var(--navy); /* Color azul almirante profundo */
    }

    .service-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--navy); margin-bottom: 14px;
    }
    .service-desc {
    font-size: 14px; line-height: 1.7; color: var(--text-muted);
    }

    /* ── PROBLEMA ── */
    .problema {
    background: var(--navy);
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    position: relative; overflow: hidden;
    }
    .problema::before {
    content: '';
    position: absolute; right: -200px; top: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    }

    .problema-content { position: relative; z-index: 1; }
    .problema-content p {
    font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.55); margin-top: 24px;
    }

    .problema-list {
    margin-top: 40px; display: flex; flex-direction: column; gap: 16px;
    }
    .problema-list-item {
    display: flex; align-items: center; gap: 16px;
    padding: 16px 20px;
    border-left: 2px solid var(--gold);
    background: rgba(255,255,255,0.03);
    }
    .problema-list-item svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; flex-shrink: 0; }
    .problema-list-item span { font-size: 14px; color: rgba(255,255,255,0.75); }

    .problema-cta-block { position: relative; z-index: 1; }

    .big-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px; font-weight: 700; line-height: 1;
    color: var(--gold); opacity: 0.15;
    position: absolute; top: -30px; right: -20px;
    }

    .cta-box {
    background: rgba(201,168,76,0.08);
    border: 1px solid rgba(201,168,76,0.25);
    padding: 52px 44px;
    position: relative;
    }

    .cta-box-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600;
    color: var(--white); margin-bottom: 16px;
    }

    .cta-box p {
    font-size: 14px; line-height: 1.75;
    color: rgba(255,255,255,0.5); margin-bottom: 32px;
    }

    .discount-badge {
    display: inline-flex; align-items: baseline; gap: 6px;
    margin-bottom: 28px;
    }
    .discount-badge .pct {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px; font-weight: 700; color: var(--gold); line-height: 1;
    }
    .discount-badge .detail {
    font-size: 13px; color: rgba(255,255,255,0.5);
    line-height: 1.4;
    }
    .discount-badge .detail strong { color: var(--gold-light); display: block; }

    /* ── PROCESO ── */
    .proceso { background: var(--cream-light); }

    .proceso-header { max-width: 560px; margin-bottom: 72px; }
    .proceso-header p { font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-top: 18px; }

    .proceso-steps {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
    background: rgba(10,22,40,0.06);
    }

    .step {
    background: var(--white);
    padding: 52px 40px;
    position: relative;
    }

    .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px; font-weight: 700; line-height: 1;
    color: var(--navy); opacity: 0.06;
    position: absolute; top: 24px; right: 28px;
    }

    .step-icon {
    width: 48px; height: 48px;
    background: rgba(72, 101, 129, 0.08); /* Fondo azul acero translúcido */
    border-radius: 50%;                    /* Círculo moderno */
    margin-bottom: 28px;
    display: flex; align-items: center; justify-content: center;
    }

    /* Estilo para los iconos de Google dentro de los pasos */
    .step-icon .material-icons-outlined {
    font-size: 24px;
    color: var(--navy); /* Tu azul profundo principal */
    }
    .step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 600; color: var(--navy);
    margin-bottom: 14px;
    }
    .step-desc {
    font-size: 14px; line-height: 1.7; color: var(--text-muted); margin-bottom: 28px;
    }

    .step-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .step-checklist li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--text-main);
    }
    .step-checklist li::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--gold); flex-shrink: 0;
    }

    /* ── PRESCRIPCION ── */
    .prescripcion {
    background: var(--navy);
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    }

    .prescripcion-content {
    padding: 100px 60px; border-right: 1px solid var(--border);
    }
    .prescripcion-content p {
    font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-top: 24px; margin-bottom: 40px;
    }

    .alert-box {
    background: rgba(201,168,76,0.07);
    border-left: 3px solid var(--gold);
    padding: 20px 24px;
    }
    .alert-box p {
    font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; line-height: 1.6;
    }
    .alert-box strong { color: var(--gold-light); }

    .prescripcion-panel {
    padding: 100px 60px;
    display: flex; flex-direction: column; justify-content: center;
    }

    .years-display {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px; font-weight: 700;
    color: var(--gold); line-height: 1; margin-bottom: 12px;
    }

    .years-label {
    font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 40px;
    }

    .prescripcion-panel p {
    font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.5); margin-bottom: 36px;
    }

    /* ── ACTUALIZACION ── */
    .actualizacion { background: var(--cream-light); }

    .actualizacion-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
    }

    .actualizacion-content .section-title { color: var(--navy); }
    .actualizacion-content p {
    font-size: 15px; line-height: 1.75; color: var(--text-muted); margin-top: 20px; margin-bottom: 40px;
    }

    .timeline {
    display: flex; flex-direction: column; gap: 0;
    }

    .timeline-item {
    display: grid; 
    grid-template-columns: 48px 1fr; /* Ajustado el ancho para los nuevos círculos */
    gap: 24px; align-items: start;
    padding-bottom: 36px; position: relative;
    }

    /* La línea vertical que une los pasos de tiempo */
    .timeline-item:not(:last-child)::before {
    content: '';
    position: absolute; 
    left: 23px; /* Centrado perfecto con el círculo de 48px */
    top: 48px; bottom: 0;
    width: 1px; background: rgba(72, 101, 129, 0.2);
    }

    /* El nuevo contenedor circular minimalista para los iconos */
    .timeline-icon-box {
    width: 48px; height: 48px;
    background: rgba(72, 101, 129, 0.08);
    border: 1px solid rgba(72, 101, 129, 0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 1; flex-shrink: 0;
    }

    /* Estilo para los iconos de Google de la línea de tiempo */
    .timeline-icon-box .material-icons-outlined {
    font-size: 20px;
    color: var(--navy);
    }

    .timeline-content {
    padding-top: 12px; /* Alineación perfecta a la altura del icono */
    }

    .timeline-content .name {
    font-size: 15px; color: var(--navy);
    }

    .timeline-content .detail {
    font-size: 13px; color: var(--text-muted); line-height: 1.5;
    }

    /* ── CONTACTO CTA ── */
    .contacto {
    background: var(--navy);
    text-align: center;
    padding: 120px 60px;
    position: relative; overflow: hidden;
    }

    .contacto::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.07) 0%, transparent 65%);
    }

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

    .contacto .section-label { justify-content: center; }

    .contacto .section-title {
    color: var(--white); max-width: 640px;
    margin: 0 auto 20px;
    }

    .contacto > p {
    font-size: 15px; line-height: 1.75;
    color: rgba(255,255,255,0.45); max-width: 480px;
    margin: 0 auto 52px;
    }

    .contacto-actions {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    }

    /* ── ESTILOS DEL FOOTER ── */
    .main-footer {
    background: var(--navy-dark, #0b132b); /* Tu azul más profundo de fondo */
    padding: 60px 20px 40px 20px;
    border-top: 1px solid rgba(72, 101, 129, 0.1);
    }

    .footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    }

    .footer-brand .footer-logo {
    color: var(--white, #ffffff);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    }

    .footer-brand .footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    }

    .main-footer h4 {
    color: var(--gold, #c5a880); /* Tu color dorado/acero decorativo para títulos */
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    font-weight: 600;
    }

    .main-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    }

    .main-footer ul li {
    margin-bottom: 12px;
    }

    .main-footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
    }

    .main-footer ul li a:hover {
    color: var(--gold, #c5a880);
    }

    .main-footer .material-icons-outlined {
    font-size: 18px;
    color: var(--gold, #c5a880);
    }

    /* Adaptación impecable para Teléfonos Celulares */
    @media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .main-footer ul li a {
        justify-content: center;
    }
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
    }

    .hero-content > * {
    opacity: 0; animation: fadeUp 0.7s ease forwards;
    }
    .hero-eyebrow  { animation-delay: 0.1s; }
    .hero-title    { animation-delay: 0.25s; }
    .hero-subtitle { animation-delay: 0.4s; }
    .hero-actions  { animation-delay: 0.55s; }

    .hero-card { opacity: 0; animation: fadeUp 0.7s ease 0.7s forwards; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
    nav { padding: 18px 32px; }
    .nav-links { display: none; }
    section { padding: 72px 32px; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-content { padding: 140px 32px 80px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .problema { grid-template-columns: 1fr; gap: 48px; padding: 72px 32px; }
    .proceso-steps { grid-template-columns: 1fr; }
    .prescripcion { grid-template-columns: 1fr; }
    .prescripcion-content { border-right: none; border-bottom: 1px solid var(--border); padding: 72px 32px; }
    .prescripcion-panel { padding: 72px 32px; }
    .actualizacion-inner { grid-template-columns: 1fr; gap: 48px; }
    footer { flex-direction: column; gap: 24px; text-align: center; }
    .strip { gap: 32px; flex-wrap: wrap; }
    }

    @media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    nav { padding: 16px 20px; }
    section { padding: 60px 20px; }
    .hero-content { padding: 120px 20px 60px; }
    .prescripcion-content, .prescripcion-panel { padding: 60px 20px; }
    }


    /* ── BOTÓN FLOTANTE DE WHATSAPP OFICIAL ── */
    .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background-color: #25d366; /* Verde oficial WhatsApp */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    }

    /* Tamaño y comportamiento del logo SVG */
    .whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff; /* El icono interno se pinta de blanco limpio */
    }

    /* Efecto al pasar el cursor */
    .whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    }

    /* Ajuste fino para pantallas móviles */
    @media (max-width: 768px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    }

    /* ── PESTAÑA LATERAL FLOTANTE DE EQUIFAX COLOR OFICIAL ── */
    .equifax-side-badge {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: flex-start;
    z-index: 9998;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* El gatillo exterior con el color rojo borgoña de Equifax */
    .equifax-side-badge .badge-trigger {
    background: #9c0031; /* El color exacto de las imágenes del logo */
    color: #ffffff;
    padding: 14px 12px;
    border-radius: 8px 0 0 8px;
    box-shadow: -4px 4px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-right: none;
    }

    .equifax-side-badge .badge-trigger .trigger-text {
    writing-mode: vertical-rl;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    }

    /* Contenedor interno desplegable */
    .equifax-side-badge .badge-content {
    width: 290px;
    background: #ffffff;
    padding: 24px;
    border-left: 4px solid #9c0031; /* Detalle de color de la marca */
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.25);
    display: none;
    flex-direction: column;
    }

    /* Evento Hover para mostrar la ventanita */
    .equifax-side-badge:hover .badge-content {
    display: flex;
    }

    .equifax-side-badge:hover .badge-trigger {
    background: #ffffff;
    color: #9c0031;
    border-left: 1px solid #e2e8f0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: none;
    }

    /* Encabezado interno con tono rojo corporativo suavizado */
    .equifax-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9c0031;
    margin-bottom: 8px;
    }

    .equifax-header h4 {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin: 0;
    }

    .equifax-header .material-icons-outlined {
    font-size: 16px;
    }

    .badge-content h3 {
    font-size: 18px;
    color: #1a202c;
    margin: 0 0 10px 0;
    font-weight: 700;
    }

    .badge-content p {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0 0 20px 0;
    }

    /* Botón de acción interno (Verde WhatsApp para invitar al click) */
    .badge-btn {
    background: #25d366;
    color: #ffffff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 6px rgba(37, 211, 102, 0.2);
    }

    .badge-btn:hover {
    background: #1ebd54;
    transform: translateY(-1px);
    }

    /* Ocultar en celulares para optimizar espacio táctil */
    @media (max-width: 768px) {
    .equifax-side-badge {
        display: none;
    }
    }

    /* ── CONTENEDOR Y CINTILLO ALINEADO A LA DERECHA ── */
    .nav-actions-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Separación perfecta entre el cintillo de Equifax y tu botón CTA */
    }

    .nav-equifax-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(72, 101, 129, 0.1);
    height: fit-content;
    }

    .nav-equifax-badge .badge-nav-text {
    font-size: 11px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    white-space: nowrap;
    }

    .nav-equifax-badge .badge-nav-logo {
    height: 13px; /* Tamaño sutil y compacto */
    width: auto;
    object-fit: contain;
    display: block;
    }

    /* Ocultar el cintillo en pantallas medianas o celulares para que no se amontone */
    @media (max-width: 992px) {
    .nav-equifax-badge {
        display: none !important;
    }
    }


    /* CONTAINER GENERAL */
    .report-info-container {
    margin-top: 16px;
    }

    /* EL TEXTO GATILLO EN LA CARD */
    .report-info-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold, #c5a880);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0;
    width: fit-content;
    transition: opacity 0.2s;
    }

    .report-info-trigger:hover {
    opacity: 0.8;
    }

    /* MODAL CONTENEDOR (Oculto por defecto) */
    .report-info-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999 !important;
    display: none; /* Se activa con JS */
    align-items: center;
    justify-content: center;
    }

    /* Fondo oscuro translúcido protector */
    .report-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.6); /* Color Navy con opacidad */
    backdrop-filter: blur(2px);
    }

    /* CAJA DE CONTENIDO DE LA VENTANA */
    .report-modal-content {
    position: relative;
    width: 460px;
    max-width: 90vw;
    max-height: 80vh;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(72, 101, 129, 0.15);
    display: flex;
    flex-direction: column;
    animation: modalFadeIn 0.2s ease-out;
    }

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

    /* ENCABEZADO */
    .popover-header {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 12px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    }

    .popover-header h4 {
    color: var(--navy, #0b132b);
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    }

    .popover-header h4 span {
    color: #9c0031;
    font-size: 20px;
    }

    /* BOTÓN DE CERRAR X */
    .modal-close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: #a0aec0;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
    }

    .modal-close-btn:hover {
    color: var(--navy, #0b132b);
    }

    /* AREA DE SCROLL (Aquí el scroll funciona de manera nativa e impecable) */
    .popover-scroll-area {
    overflow-y: auto !important;
    flex-grow: 1;
    padding-right: 12px;
    text-align: left;
    }

    .popover-scroll-area::-webkit-scrollbar {
    width: 5px;
    }
    .popover-scroll-area::-webkit-scrollbar-track {
    background: #f7fafc;
    }
    .popover-scroll-area::-webkit-scrollbar-thumb {
    background: var(--gold, #c5a880);
    border-radius: 10px;
    }

    /* ITEMS EN LISTA */
    .popover-item {
    margin-bottom: 16px;
    }

    .popover-item strong {
    font-size: 13.5px;
    color: var(--navy, #0b132b);
    display: block;
    margin-bottom: 4px;
    }

    .popover-item p {
    font-size: 12.5px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
    }

    /* PIE DE VENTANA */
    .report-info-modal .popover-footer {
    font-size: 11px;
    font-style: italic;
    color: #718096;
    text-align: center;
    padding-top: 12px;
    margin-top: 16px;
    border-top: 1px solid #edf2f7;
    }

    /* Alineación perfecta de los títulos con sus respectivos íconos */
    .popover-item-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    }

    .popover-item-title .material-icons-outlined {
    font-size: 18px !important;
    color: var(--gold, #c5a880); /* Color dorado para resaltar de forma ejecutiva */
    font-family: 'Material Icons Outlined' !important;
    }

    .popover-item strong {
    font-size: 13.5px;
    color: var(--navy, #0b132b);
    margin-bottom: 0 !important; /* Reseteamos el margen para que flex haga su magia */
    }

    /* ── LOGO BLANCO CON SOMBRA CORREGIDO AL OTRO LADO (DERECHA) ── */
    .hero {
    position: relative; 
    overflow: hidden;   
    }

    .hero::before {
    content: "";
    position: absolute;
    
    /* Centrado vertical perfecto para que no pegue ni arriba ni abajo */
    top: 50%;
    transform: translateY(-50%);
    right: 6%;
    left: auto;          
    
    width: 650px;        
    height: 550px;
    background-image: url('assets/logo/logo.png'); 
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right; /* Centrado interno de la imagen */
    
    filter: brightness(0) invert(1) drop-shadow(0px 0px 12px rgba(11, 19, 43, 0.25)); 
    opacity: 0.08;       
    
    z-index: 0;          
    pointer-events: none;
    }

    /* Forzamos a que el contenido real flote por encima del logo en el fondo */
    .hero-content, .hero-right {
    position: relative;
    z-index: 1;
    }