﻿    :root {
      --navy-900: #0b1e33;
      --navy-800: #102a4a;
      --navy-700: #173a63;
      --navy-100: #e7eef7;
      --navy-50: #f4f7fc;
      --orange-600: #f0641f;
      --orange-500: #ff7a2f;
      --orange-100: #ffe9dc;
      --ink: #1c2b3a;
      --text: #3d4f60;
      --muted: #6b7a89;
      --white: #ffffff;
      --green: #1f9d55;
      --radius: 16px;
      --shadow: 0 10px 30px rgba(11, 30, 51, .10);
      --shadow-lg: 0 24px 60px rgba(11, 30, 51, .18);
      --maxw: 1140px;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 84px; }
    body {
      font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; }
    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

    /* ============ ACCESIBILIDAD ============ */
    .skip-link {
      position: absolute; left: -9999px; top: 0;
      background: var(--navy-800); color: #fff; padding: 10px 16px;
      border-radius: 0 0 8px 0; z-index: 100; text-decoration: none;
    }
    .skip-link:focus { left: 0; }
    :focus-visible { outline: 3px solid var(--orange-500); outline-offset: 2px; }
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
    }

    /* ============ HEADER ============ */
    .header {
      position: sticky; top: 0; z-index: 50;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #e6ecf3;
    }
    .header-inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 16px; height: 68px;
    }
    .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo svg { flex: none; }
    .logo-name {
      font-weight: 800; font-size: 1.15rem; color: var(--navy-900);
      letter-spacing: -.01em;
    }
    .logo-name span { color: var(--orange-600); }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a {
      text-decoration: none; font-weight: 600; font-size: .95rem;
      color: var(--ink); transition: color .2s;
    }
    .nav-links a:hover { color: var(--orange-600); }
    .btn {
      display: inline-block; font-weight: 700; text-decoration: none;
      border: none; cursor: pointer; font-family: inherit;
      transition: transform .15s, box-shadow .2s, background .2s;
      border-radius: 10px;
    }
    .btn:active { transform: translateY(1px); }
    .btn-orange {
      background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
      color: #fff; padding: 12px 22px; box-shadow: 0 8px 20px rgba(240, 100, 31, .35);
    }
    .btn-orange:hover { box-shadow: 0 12px 28px rgba(240, 100, 31, .45); transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: var(--navy-800);
      border: 2px solid var(--navy-800); padding: 10px 20px;
    }
    .btn-outline:hover { background: var(--navy-800); color: #fff; }
    .btn-lg { padding: 16px 30px; font-size: 1.05rem; border-radius: 12px; }
    .header-cta { display: none; }
    .hamburger {
      display: none; background: none; border: 1px solid #dbe3ec; border-radius: 8px;
      width: 42px; height: 42px; font-size: 1.2rem; color: var(--navy-900); cursor: pointer;
    }
    @media (max-width: 860px) {
      .hamburger { display: block; }
      .header-cta { display: inline-block; }
      .nav-links {
        position: fixed; inset: 68px 0 auto 0; background: var(--white);
        flex-direction: column; gap: 0; padding: 8px 20px 20px;
        box-shadow: 0 20px 40px rgba(11, 30, 51, .12);
        transform: translateY(-140%); transition: transform .25s ease;
        border-bottom: 1px solid #e6ecf3;
      }
      .nav-links.open { transform: translateY(0); }
      .nav-links li { width: 100%; }
      .nav-links a { display: block; padding: 14px 6px; border-bottom: 1px solid #f0f4f8; }
      .nav-links li:last-child a { border-bottom: none; }
      .nav-desktop-cta { display: none; }
    }

    /* ============ HERO ============ */
    .hero {
      position: relative; overflow: hidden;
      background:
        radial-gradient(ellipse 70% 60% at 85% 10%, rgba(240, 100, 31, .18), transparent 60%),
        radial-gradient(ellipse 60% 70% at 10% 90%, rgba(23, 58, 99, .35), transparent 60%),
        linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
      color: var(--white);
      padding: 90px 0 100px;
    }
    .hero::after {
      content: "";
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
      background-size: 26px 26px;
      pointer-events: none;
    }
    .hero-inner { position: relative; max-width: 780px; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .22);
      color: #eaf2ff; font-weight: 600; font-size: .9rem;
      padding: 8px 16px; border-radius: 999px; margin-bottom: 22px;
    }
    .hero-badge i { color: var(--orange-500); }
    .hero h1 {
      font-size: clamp(2.1rem, 5.2vw, 3.4rem); font-weight: 900;
      line-height: 1.12; letter-spacing: -.02em; margin-bottom: 20px;
    }
    .hero h1 .hl { color: var(--orange-500); }
    .hero p.sub {
      font-size: clamp(1.05rem, 2vw, 1.25rem); color: #dbe6f3;
      max-width: 640px; margin-bottom: 32px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 18px; }
    .hero-note {
      font-size: .88rem; color: #b9c9dd; display: flex; gap: 8px; align-items: center;
    }
    .hero-note i { color: #7fd6a5; }
    .hero-trust {
      display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px;
      color: #c3d2e4; font-size: .9rem;
    }
    .hero-trust div { display: flex; align-items: center; gap: 8px; }
    .hero-trust i { color: var(--orange-500); }

    /* ============ SECCIONES COMUNES ============ */
    section { padding: 76px 0; }
    .section-tag {
      display: inline-block; font-weight: 700; font-size: .8rem;
      text-transform: uppercase; letter-spacing: .12em; color: var(--orange-600);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.6rem, 3.4vw, 2.3rem); font-weight: 800;
      color: var(--navy-900); letter-spacing: -.01em; line-height: 1.2; margin-bottom: 14px;
    }
    .section-lead { font-size: 1.08rem; max-width: 640px; color: var(--muted); }
    .center { text-align: center; }
    .center .section-lead { margin: 0 auto; }

    /* ============ PROBLEMA ============ */
    .problem { background: var(--navy-50); }
    .cards {
      display: grid; gap: 20px; margin-top: 40px;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    .card {
      background: var(--white); border: 1px solid #e6ecf3;
      border-radius: var(--radius); padding: 28px 24px;
      box-shadow: 0 4px 12px rgba(11, 30, 51, .05);
      transition: transform .2s, box-shadow .2s;
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .card-icon {
      width: 52px; height: 52px; border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      background: var(--orange-100); color: var(--orange-600); font-size: 1.3rem;
      margin-bottom: 18px;
    }
    .card h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy-900); margin-bottom: 10px; }
    .card p { font-size: .95rem; color: var(--muted); }

    /* ============ SOLUCIÓN ============ */
    .solutions-grid {
      display: grid; gap: 14px; margin-top: 40px;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    .solution-item {
      display: flex; gap: 16px; align-items: flex-start;
      background: var(--white); border: 1px solid #e6ecf3;
      border-radius: 14px; padding: 20px;
    }
    .solution-item .card-icon { width: 46px; height: 46px; font-size: 1.15rem; margin-bottom: 0; flex: none; }
    .solution-item h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
    .solution-item p { font-size: .93rem; color: var(--muted); }
    .solutions-note {
      margin-top: 28px; display: flex; gap: 12px; align-items: center;
      background: var(--navy-100); border-radius: 12px; padding: 18px 20px;
      color: var(--navy-800); font-weight: 600; font-size: .98rem;
    }
    .solutions-note i { font-size: 1.3rem; color: var(--orange-600); }

    /* ============ PLANES ============ */
    .plans { background: linear-gradient(180deg, var(--navy-50) 0%, var(--white) 100%); }
    .pricing {
      display: grid; gap: 22px; margin-top: 44px; align-items: stretch;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .plan {
      position: relative; background: var(--white);
      border: 1px solid #e6ecf3; border-radius: var(--radius);
      padding: 32px 26px; display: flex; flex-direction: column;
      transition: transform .2s, box-shadow .2s;
    }
    .plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .plan.pro {
      border: 2px solid var(--orange-600);
      box-shadow: 0 20px 50px rgba(240, 100, 31, .18);
    }
    .plan-badge {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--orange-600), var(--orange-500));
      color: #fff; font-size: .75rem; font-weight: 800; letter-spacing: .06em;
      text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
      white-space: nowrap;
    }
    .plan-name { font-size: 1rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }
    .plan-price {
      font-size: 2.5rem; font-weight: 900; color: var(--navy-900);
      margin: 10px 0 4px; letter-spacing: -.02em;
    }
    .plan-price small { font-size: 1rem; font-weight: 600; color: var(--muted); }
    .plan-desc { font-size: .93rem; color: var(--muted); margin-bottom: 20px; }
    .plan-note {
      font-size: .85rem; color: var(--muted);
      background: var(--navy-50); border-radius: 8px;
      padding: 10px 12px; margin: -6px 0 18px; line-height: 1.4;
    }
    .plan ul { list-style: none; margin-bottom: 24px; flex: 1; }
    .plan ul li {
      display: flex; gap: 10px; align-items: flex-start;
      font-size: .94rem; padding: 7px 0; color: var(--text);
    }
    .plan ul li i { color: var(--green); margin-top: 4px; font-size: .85rem; }
    .plan ul li.off { color: #b3bec9; }
    .plan ul li.off i { color: #c3ccd6; }
    .plan .btn { width: 100%; text-align: center; }
    .plan.pro .btn { background: linear-gradient(135deg, var(--orange-600), var(--orange-500)); color: #fff; box-shadow: 0 8px 20px rgba(240,100,31,.35); }
    .pricing-note {
      margin-top: 26px; text-align: center; font-weight: 600; color: var(--navy-800);
      background: var(--orange-100); border-radius: 12px; padding: 16px 20px;
      display: inline-block;
    }
    .pricing-note-wrap { text-align: center; margin-top: 28px; }
    .pricing-note i { color: var(--orange-600); margin-right: 8px; }
    .pricing-note small { display: block; font-weight: 500; color: var(--muted); margin-top: 6px; }

    /* ============ CÓMO FUNCIONA ============ */
    .steps {
      display: grid; gap: 22px; margin-top: 44px;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      counter-reset: step;
    }
    .step {
      background: var(--navy-50); border-radius: var(--radius);
      padding: 30px 26px; position: relative;
    }
    .step-num {
      width: 46px; height: 46px; border-radius: 50%;
      background: var(--navy-800); color: var(--orange-500);
      display: flex; align-items: center; justify-content: center;
      font-weight: 900; font-size: 1.2rem; margin-bottom: 16px;
    }
    .step h3 { font-size: 1.12rem; font-weight: 700; color: var(--navy-900); margin-bottom: 8px; }
    .step p { font-size: .95rem; color: var(--muted); }
    .no-permanence {
      margin-top: 30px; display: flex; gap: 12px; align-items: center; justify-content: center;
      font-weight: 700; color: var(--green); background: #eaf8f0;
      border-radius: 12px; padding: 16px 20px; text-align: center;
    }
    .no-permanence i { font-size: 1.2rem; }

    /* ============ TESTIMONIOS ============ */
    .testimonials { background: var(--navy-50); }
    .t-cards {
      display: grid; gap: 22px; margin-top: 40px;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .t-card {
      background: var(--white); border: 1px solid #e6ecf3; border-radius: var(--radius);
      padding: 28px 26px; display: flex; flex-direction: column;
    }
    .t-stars { color: #f5a623; margin-bottom: 14px; letter-spacing: 2px; }
    .t-card blockquote {
      font-size: .98rem; color: var(--text); font-style: italic;
      flex: 1; margin-bottom: 18px;
    }
    .t-person { display: flex; align-items: center; gap: 12px; }
    .t-avatar {
      width: 46px; height: 46px; border-radius: 50%; flex: none;
      background: var(--navy-800); color: #fff; font-weight: 800;
      display: flex; align-items: center; justify-content: center; font-size: 1rem;
    }
    .t-person strong { display: block; color: var(--navy-900); font-size: .95rem; }
    .t-person span { font-size: .82rem; color: var(--muted); }
    .t-disclaimer {
      margin-top: 26px; font-size: .85rem; color: var(--muted);
      display: flex; gap: 8px; align-items: center; justify-content: center;
    }
    .t-disclaimer i { color: var(--muted); }

    /* ============ FAQ ============ */
    .faq-list { max-width: 760px; margin: 40px auto 0; }
    .faq-item {
      border: 1px solid #e6ecf3; border-radius: 12px; margin-bottom: 12px;
      background: var(--white); overflow: hidden;
    }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      padding: 20px 22px; font-family: inherit; text-align: left;
      font-size: 1.02rem; font-weight: 700; color: var(--navy-900);
    }
    .faq-q .chev {
      color: var(--orange-600); flex: none; transition: transform .25s;
    }
    .faq-item.open .chev { transform: rotate(180deg); }
    .faq-a {
      max-height: 0; overflow: hidden; transition: max-height .3s ease;
    }
    .faq-a p { padding: 0 22px 22px; font-size: .95rem; color: var(--muted); }

    /* ============ CTA FINAL / FORMULARIO ============ */
    .final-cta {
      background:
        radial-gradient(ellipse 80% 70% at 80% 20%, rgba(240, 100, 31, .15), transparent 60%),
        linear-gradient(160deg, var(--navy-900), var(--navy-800));
      color: var(--white);
    }
    .final-cta-grid {
      display: grid; gap: 40px; align-items: center;
      grid-template-columns: 1fr 1.1fr;
    }
    .final-cta h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
    .final-cta h2 .hl { color: var(--orange-500); }
    .final-cta p { color: #dbe6f3; margin-bottom: 20px; }
    .final-cta .check { display: flex; gap: 10px; align-items: center; margin-bottom: 12px; font-size: .98rem; color: #e7eef7; }
    .final-cta .check i { color: #7fd6a5; }
    .form-card {
      background: var(--white); color: var(--text); border-radius: var(--radius);
      padding: 30px 28px; box-shadow: var(--shadow-lg);
    }
    .form-card h3 { color: var(--navy-900); font-size: 1.25rem; margin-bottom: 4px; }
    .form-card > p { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: 6px; }
    .form-group input {
      width: 100%; padding: 13px 14px; border: 1.5px solid #d5dee8;
      border-radius: 10px; font-family: inherit; font-size: .98rem; color: var(--ink);
      transition: border-color .2s, box-shadow .2s;
    }
    .form-group input:focus { border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(255, 122, 47, .18); outline: none; }
    .form-card .btn { width: 100%; }
    .form-hint { font-size: .82rem; color: var(--muted); text-align: center; margin-top: 12px; }
    .form-consent { margin-bottom: 16px; }
    .consent-label {
      display: flex; gap: 10px; align-items: flex-start;
      font-size: .82rem; color: var(--muted); line-height: 1.45; cursor: pointer;
    }
    .consent-label input {
      width: 17px; height: 17px; margin-top: 1px; flex: none;
      accent-color: var(--orange-600); cursor: pointer;
    }
    .consent-label a { color: var(--orange-600); font-weight: 600; }
    .form-success {
      display: none; text-align: center; padding: 24px 8px;
    }
    .form-success i { font-size: 2.6rem; color: var(--green); margin-bottom: 12px; }
    .form-success h4 { color: var(--navy-900); font-size: 1.2rem; margin-bottom: 8px; }
    .form-success p { color: var(--muted); font-size: .95rem; }

    /* ============ TOAST ============ */
    .toast {
      position: fixed; bottom: 24px; left: 50%; transform: translate(-50%, 150%);
      background: var(--navy-900); color: #fff; padding: 14px 22px;
      border-radius: 12px; font-weight: 600; font-size: .95rem;
      box-shadow: var(--shadow-lg); display: flex; gap: 10px; align-items: center;
      z-index: 100; transition: transform .35s ease; max-width: calc(100% - 40px);
    }
    .toast.show { transform: translate(-50%, 0); }
    .toast i { color: #7fd6a5; font-size: 1.1rem; }

    /* ============ FOOTER ============ */
    .footer { background: var(--navy-900); color: #c3d2e4; padding: 44px 0 30px; }
    .footer-grid {
      display: grid; gap: 28px; margin-bottom: 30px;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
    }
    .footer .logo-name { color: #fff; }
    .footer-about p { font-size: .92rem; margin-top: 12px; color: #aebfce; }
    .footer h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
    .footer ul { list-style: none; }
    .footer ul li { margin-bottom: 10px; font-size: .93rem; }
    .footer ul a { text-decoration: none; color: #aebfce; transition: color .2s; }
    .footer ul a:hover { color: var(--orange-500); }
    .footer ul li i { width: 20px; color: var(--orange-500); margin-right: 8px; }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .12); padding-top: 22px;
      display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
      font-size: .86rem; color: #8fa2b5;
    }

    /* ============ ANIMACIONES SCROLL ============ */
    .reveal {
      opacity: 0; transform: translateY(24px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .toast { transition: none; }
      .chat-toggle, .chat-toggle::before { animation: none !important; }
      .chat-hint { transition: none; }
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 960px) {
      .final-cta-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      section { padding: 56px 0; }
      .hero { padding: 64px 0 72px; }
      .hero-actions .btn-lg { width: 100%; text-align: center; }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-trust { gap: 14px; flex-direction: column; }
    }

    /* ============ MODAL DE PLAN ============ */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 200;
      background: rgba(11, 30, 51, .65);
      display: flex; align-items: center; justify-content: center;
      padding: 20px;
    }
    .modal-overlay[hidden] { display: none; }
    .modal {
      background: var(--white); color: var(--text);
      border-radius: var(--radius); padding: 32px 28px;
      max-width: 480px; width: 100%; max-height: 90vh; overflow-y: auto;
      position: relative; box-shadow: var(--shadow-lg);
    }
    .modal .plan-badge { top: 0; }
    .modal-close {
      position: absolute; top: 14px; right: 14px;
      background: none; border: none; cursor: pointer;
      font-size: 1.3rem; color: var(--muted); padding: 6px;
    }
    .modal-close:hover { color: var(--navy-900); }
    .modal h3 { color: var(--navy-900); font-size: 1.4rem; margin: 10px 0 2px; }
    .modal .plan-price { margin: 6px 0; }
    .modal-desc { color: var(--muted); font-size: .95rem; margin-bottom: 14px; }
    .modal-features { list-style: none; margin-bottom: 12px; }
    .modal-features li {
      display: flex; gap: 10px; align-items: flex-start;
      font-size: .92rem; padding: 5px 0; color: var(--text);
    }
    .modal-features li i { color: var(--green); margin-top: 4px; font-size: .85rem; }
    .modal-note {
      font-weight: 600; color: var(--orange-600);
      background: var(--orange-100); border-radius: 10px;
      padding: 10px 14px; font-size: .9rem; margin-bottom: 16px;
    }
    .modal-form .form-group { margin-bottom: 12px; }
    .modal-form .form-group input {
      width: 100%; padding: 11px 13px; border: 1.5px solid #d5dee8;
      border-radius: 10px; font-family: inherit; font-size: .95rem; color: var(--ink);
    }
    .modal-form .form-group input:focus { outline: none; border-color: var(--orange-500); box-shadow: 0 0 0 3px rgba(255,122,47,.18); }
    .modal-form .btn { width: 100%; margin-top: 6px; }
    .modal-hint { text-align: center; font-size: .85rem; color: var(--muted); margin: 14px 0 8px; }
    .modal-whatsapp { width: 100%; text-align: center; display: flex; gap: 8px; justify-content: center; align-items: center; }
    .modal-whatsapp i, .chat-wa-link i { color: #25d366; }

    /* ============ CHAT WIDGET ============ */
    .chat-widget { position: fixed; right: 22px; bottom: 22px; z-index: 160; font-family: inherit; }
    .chat-toggle {
      position: relative;
      width: 58px; height: 58px; border-radius: 50%; border: none; cursor: pointer;
      background: var(--orange-600); color: #fff; font-size: 1.6rem;
      box-shadow: 0 8px 24px rgba(240, 100, 31, .4);
      display: flex; align-items: center; justify-content: center;
      transition: transform .2s;
      animation: chatPulse 2.2s ease-in-out infinite;
    }
    @keyframes chatPulse {
      0%   { transform: scale(1); }
      50%  { transform: scale(1.08); }
      100% { transform: scale(1); }
    }
    .chat-toggle::before {
      content: "";
      position: absolute; inset: 0; border-radius: 50%;
      background: var(--orange-600);
      animation: chatRing 2.2s ease-out infinite;
      z-index: -1;
    }
    @keyframes chatRing {
      0%   { transform: scale(1);   opacity: .45; }
      70%  { transform: scale(1.55); opacity: 0; }
      100% { transform: scale(1.55); opacity: 0; }
    }
    .chat-toggle:hover { transform: translateY(-3px) scale(1.04); animation-play-state: paused; }
    .chat-toggle:hover::before { animation-play-state: paused; }
    /* Burbuja de aviso (se muestra al cabo de 2.5s y desaparece al abrir) */
    .chat-hint {
      position: absolute; right: 72px; bottom: 12px;
      background: var(--white); color: var(--ink);
      border: 1px solid #e6ecf3; border-radius: 14px 14px 4px 14px;
      box-shadow: var(--shadow); padding: 10px 14px;
      font-size: .82rem; font-weight: 600; line-height: 1.35;
      max-width: 200px; white-space: normal;
      opacity: 0; transform: translateY(8px);
      transition: opacity .4s, transform .4s;
      pointer-events: none;
    }
    .chat-hint.show { opacity: 1; transform: translateY(0); }
    .chat-hint i { color: var(--orange-500); margin-right: 4px; }
    .chat-hint::after {
      content: ""; position: absolute; right: -8px; bottom: 12px;
      border: 8px solid transparent; border-left-color: var(--white);
    }
    .chat-box {
      position: absolute; right: 0; bottom: 70px; width: 320px;
      background: var(--white); border: 1px solid #e6ecf3; border-radius: 16px;
      box-shadow: var(--shadow-lg); overflow: hidden;
    }
    .chat-box[hidden] { display: none; }
    .chat-header {
      background: var(--navy-800); color: #fff; padding: 14px 16px;
      display: flex; justify-content: space-between; align-items: center;
    }
    .chat-brand { display: flex; align-items: center; gap: 8px; font-weight: 700; }
    .chat-brand i { color: var(--orange-500); }
    .chat-close { background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; }
    .chat-body {
      padding: 14px 14px 6px; min-height: 120px; max-height: 260px; overflow-y: auto;
      display: flex; flex-direction: column; gap: 8px;
    }
    .chat-msg {
      max-width: 85%; padding: 9px 12px; border-radius: 14px; font-size: .9rem; line-height: 1.4;
    }
    .chat-msg.bot { background: var(--navy-50); color: var(--ink); border-bottom-left-radius: 4px; align-self: flex-start; }
    .chat-msg.user { background: var(--orange-500); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
    .chat-options { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 14px; }
    .chat-options button {
      border: 1.5px solid var(--orange-600); color: var(--orange-600);
      background: transparent; border-radius: 999px; padding: 7px 13px;
      font-size: .82rem; font-weight: 600; cursor: pointer; font-family: inherit;
      transition: background .2s, color .2s;
    }
    .chat-options button:hover { background: var(--orange-600); color: #fff; }
    .chat-wa-link {
      display: flex; gap: 8px; align-items: center; justify-content: center;
      margin: 4px 14px 14px; padding: 10px; border-radius: 10px;
      background: #eafaf0; color: #128c4a; font-weight: 700; font-size: .9rem;
      text-decoration: none;
    }
    .chat-wa-link[hidden] { display: none; }
    .chat-input {
      display: flex; gap: 8px; padding: 0 14px 14px;
    }
    .chat-input[hidden] { display: none; }
    .chat-input input {
      flex: 1; padding: 10px 12px; border: 1.5px solid #d5dee8;
      border-radius: 10px; font-family: inherit; font-size: .9rem; color: var(--ink);
    }
    .chat-input input:focus { outline: none; border-color: var(--orange-500); }
    .chat-input button {
      width: 42px; height: 42px; border: none; border-radius: 10px;
      background: var(--orange-600); color: #fff; font-size: 1rem; cursor: pointer;
      flex: none; display: flex; align-items: center; justify-content: center;
    }

    /* Chat flotante */
    .chat-toggle { position: absolute; right: 0; bottom: 0; }

    /* ============ BANNER DE COOKIES ============ */
    .cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
      background: var(--white); color: var(--text);
      border-top: 1px solid #e6ecf3;
      box-shadow: 0 -10px 30px rgba(11, 30, 51, .12);
      padding: 18px 20px;
    }
    .cookie-banner[hidden] { display: none; }
    .cookie-banner-inner {
      max-width: var(--maxw); margin: 0 auto;
      display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
    }
    .cookie-banner p { font-size: .9rem; line-height: 1.5; flex: 1; min-width: 260px; }
    .cookie-banner a { color: var(--orange-600); font-weight: 600; }
    .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
    .cookie-actions .btn { padding: 10px 18px; font-size: .88rem; }
