@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-300-italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-500-italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-600-italic.woff2') format('woff2');
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Sans';
  src: url('/assets/fonts/dm-sans-700-italic.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('/assets/fonts/dm-serif-display-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'DM Serif Display';
  src: url('/assets/fonts/dm-serif-display-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

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

  :root {
    --teal-deep:   #1f7a86;
    --teal:        #2d7a85;
    --teal-mid:    #3a9aaa;
    --teal-light:  #b8dde3;
    --teal-ultra:  #e8f5f7;
    --teal-pale:   #f0f9fa;
    --teal-glass:  rgba(45,122,133,0.09);

    --ink:         #0d1f22;
    --ink-2:       #1a3038;
    --body:        #2e4a52;
    --muted:       #5b7f8a;
    --subtle:      #8aabb4;
    --line:        #d4e8ec;
    --bg:          #f7fbfc;
    --white:       #ffffff;

    --gold:        #c8932a;
    --gold-light:  #fdf4e3;

    --r-sm:  6px;
    --r-md:  12px;
    --r-lg:  18px;
    --r-xl:  26px;
    --r-full: 9999px;

    --shadow-sm: 0 1px 4px rgba(15,40,50,0.06), 0 2px 8px rgba(15,40,50,0.04);
    --shadow-md: 0 4px 20px rgba(15,40,50,0.10), 0 2px 8px rgba(15,40,50,0.05);
    --shadow-lg: 0 12px 48px rgba(15,40,50,0.14), 0 4px 16px rgba(15,40,50,0.07);
    --nav-height: 72px;
    --layout-max: 1240px;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* ── Aurora System ── */
    --site-aurora-x: 50%;
    --site-aurora-y: 50%;
    --site-aurora-scroll: 0;
    --site-aurora-opacity: 1;
    --hero-aurora-x: 50%;
    --hero-aurora-y: 50%;
    --hero-aurora-depth: 0;
  }

  html { scroll-behavior: smooth; overflow-x: hidden; }
  body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* =========================================================
     AURORA GLOBAL — Camada atmosférica fixa do site inteiro
  ========================================================= */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: var(--site-aurora-opacity);
    background:
      radial-gradient(
        ellipse 120% 100% at calc(var(--site-aurora-x) + 10%) calc(var(--site-aurora-y) - 5%),
        rgba(58,154,170,0.14) 0%, transparent 100%
      ),
      radial-gradient(
        ellipse 100% 85% at calc(var(--site-aurora-x) - 20%) calc(var(--site-aurora-y) + 25%),
        rgba(45,122,133,0.09) 0%, transparent 100%
      ),
      radial-gradient(
        ellipse 80% 65% at calc(var(--site-aurora-x) + 15%) calc(var(--site-aurora-y) + 10%),
        rgba(253,244,227,0.04) 0%, transparent 100%
      ),
      radial-gradient(
        ellipse 130% 110% at 50% calc(40% + var(--site-aurora-scroll) * 8%),
        rgba(184,221,227,0.08) 0%, transparent 100%
      ),
      var(--bg);
    transition: opacity 0.6s ease;
  }

  body.nav-open {
    overflow: hidden;
  }

  [hidden] {
    display: none !important;
  }

  section[id] {
    scroll-margin-top: calc(var(--nav-height) + 24px);
  }

  /* =========================================================
     NAVBAR
  ========================================================= */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(20px, 5vw, 60px);
    height: var(--nav-height);
    background: rgba(247,251,252,0.85);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(45,122,133,0.10);
    transition: box-shadow 0.3s ease;
  }

  nav.scrolled {
    box-shadow: var(--shadow-sm);
  }

  /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
     LOCKED — NÃO ALTERAR — PILL NAV FLOATING FIX
     Este bloco garante que o wrapper .home-nav.scrolled não
     receba box-shadow do seletor base nav.scrolled.
     Mexer aqui reintroduz o glitch lateral da topbar.
     Referência: padrão Mobbin (wrapper invisível + pill absoluta).
     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
  nav.home-nav.scrolled {
    box-shadow: none;
  }
  /* FIM LOCKED — PILL NAV FLOATING FIX (scrolled override) */

  .nav-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    border-radius: 18px;
    transition: transform 0.24s var(--ease-premium), opacity 0.24s ease;
    transform: translate3d(0, 0, 0);
  }

  .nav-brand:hover {
    transform: translate3d(0, -1px, 0);
  }

  .nav-brand:active {
    transform: translate3d(0, 0, 0) scale(0.985);
  }

  .nav-logo {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.24s var(--ease-premium), box-shadow 0.24s ease, filter 0.24s ease;
  }

  .nav-logo svg {
    width: 36px;
    height: 36px;
  }

  .nav-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }

  .nav-name strong {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--ink);
    letter-spacing: -0.01em;
  }

  .nav-name span {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
  }

  .nav-middle {
    display: contents;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--body);
    text-decoration: none;
    transition: color 0.24s var(--ease-premium), background-color 0.24s ease, transform 0.24s var(--ease-premium);
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0 16px;
    min-height: 38px;
    border-radius: var(--r-full);
    border: 1px solid transparent;
    white-space: nowrap;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--teal-deep);
    background-color: rgba(45,122,133,0.06);
    transform: translate3d(0, -1px, 0);
  }

  .nav-links a.active {
    color: var(--teal-deep);
    background-color: rgba(45,122,133,0.08);
    border-color: rgba(45,122,133,0.18);
    transform: translate3d(0, -1px, 0);
  }

  .nav-links a:active {
    transform: translate3d(0, 0, 0) scale(0.985);
  }

  .btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 11px 20px;
    background: var(--teal);
    color: var(--white);
    border-radius: var(--r-full);
    font-size: 0.86rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.22s ease, transform 0.24s var(--ease-premium), box-shadow 0.22s ease, filter 0.22s ease;
    box-shadow: 0 2px 12px rgba(45,122,133,0.35);
    white-space: nowrap;
    transform: translate3d(0, 0, 0);
  }

  .btn-nav:hover {
    background: var(--teal-deep);
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 4px 18px rgba(45,122,133,0.45);
  }

  .btn-nav:active {
    transform: translate3d(0, 0, 0) scale(0.985);
  }

  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    transition: transform 0.24s var(--ease-premium), background-color 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: 0.3s;
  }

  .nav-links.open {
    display: flex;
  }

  nav.nav-open .nav-hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  nav.nav-open .nav-hamburger span:nth-child(2) {
    opacity: 0;
  }

  nav.nav-open .nav-hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
     LOCKED — NÃO ALTERAR — PILL NAV FLOATING (padrão Mobbin)
     ==========================================================
     ATENÇÃO AGENTES DE IA / DESENVOLVEDORES:
     Este bloco foi depurado extensivamente e resolve um glitch
     visual de strips laterais transparentes na topbar pill.
     A solução segue o padrão do site Mobbin.com:
       1. .home-nav (wrapper) é INVISÍVEL: height:0, background:none
       2. .nav-shell (pill) é ABSOLUTE: flutua centralizada
       3. pointer-events:none no wrapper, auto na pill
     NÃO adicione background, backdrop-filter, height, padding,
     border ou box-shadow ao .home-nav.
     NÃO remova position:absolute, transform ou pointer-events
     do .nav-shell.
     NÃO mova estas propriedades para outro seletor.
     Qualquer alteração aqui REINTRODUZ o glitch.
     !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
  .home-nav {
    padding: 0;
    height: 0;
    overflow: visible;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    pointer-events: none;
  }

  .home-nav .nav-shell {
    pointer-events: auto;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(calc(100% - clamp(32px, 6vw, 56px)), 1100px);
    min-height: var(--nav-height);
    padding: 0 clamp(18px, 2vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2vw, 26px);
    border-radius: 26px;
    border: 1px solid rgba(45,122,133,0.14);
    background: rgba(247,251,252,0.82);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 32px rgba(15,40,50,0.08);
    transition: background 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, transform 0.28s var(--ease-premium);
  }

  .home-nav.scrolled .nav-shell,
  .home-nav.nav-open .nav-shell {
    background: rgba(247,251,252,0.94);
    border-color: rgba(45,122,133,0.18);
    box-shadow: 0 14px 36px rgba(15,40,50,0.12);
  }
  /* FIM LOCKED — PILL NAV FLOATING (padrão Mobbin) */

  .home-nav .nav-brand {
    gap: 13px;
    margin-right: clamp(4px, 1vw, 10px);
  }

  .home-nav .nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    box-shadow: 0 6px 16px rgba(58,154,170,0.16);
  }

  .home-nav .nav-brand:hover .nav-logo,
  .home-nav .nav-brand:focus-visible .nav-logo {
    transform: scale(1.02);
    box-shadow: 0 10px 24px rgba(58,154,170,0.22);
    filter: saturate(1.04);
  }

  .home-nav .nav-name strong {
    font-size: 1.12rem;
  }

  .home-nav .nav-name span {
    font-size: 0.66rem;
    letter-spacing: 0.14em;
  }

  .home-nav .nav-middle {
    display: flex;
    justify-content: flex-start;
    margin-right: auto;
    padding-left: clamp(16px, 2vw, 28px);
    min-width: 0;
    transition: max-height 0.34s var(--ease-premium), opacity 0.26s ease, transform 0.28s var(--ease-premium), visibility 0.28s ease;
  }

  .home-nav .nav-links {
    gap: clamp(14px, 1.2vw, 22px);
    padding: 0 clamp(4px, 0.7vw, 10px);
  }

  .home-nav .nav-links a {
    font-size: 0.9rem;
  }

  .home-nav .btn-nav {
    padding: 11px 18px;
    font-size: 0.84rem;
    box-shadow: 0 8px 22px rgba(45,122,133,0.22);
  }

  .home-nav .nav-hamburger {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(45,122,133,0.14);
    background: rgba(255,255,255,0.8);
  }

  .home-nav .nav-hamburger:hover,
  .home-nav .nav-hamburger:focus-visible {
    transform: translate3d(0, -1px, 0);
    background: rgba(255,255,255,0.98);
    border-color: rgba(45,122,133,0.24);
    box-shadow: 0 12px 24px rgba(15,40,50,0.10);
  }

  .home-nav .nav-hamburger:active {
    transform: translate3d(0, 0, 0) scale(0.96);
  }

  /* padding do wrapper já é 0, não precisa de override em 861px */

  /* =========================================================
     HERO
  ========================================================= */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px clamp(20px, 6vw, 80px) 60px;
    gap: 60px;
    position: relative;
  }

  .hero::before {
    content: '';
    position: absolute;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    background:
      radial-gradient(ellipse 70% 60% at 80% 30%, rgba(58,154,170,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 20% 80%, rgba(45,122,133,0.07) 0%, transparent 60%);
    pointer-events: none;
  }

  /* Aurora intensificada — apenas no hero da home */
  .hero-home::before {
    background:
      radial-gradient(
        ellipse 95% 80% at calc(var(--hero-aurora-x) + 15%) calc(var(--hero-aurora-y) - 10%),
        rgba(58,154,170,0.20) 0%, transparent 100%
      ),
      radial-gradient(
        ellipse 85% 75% at calc(var(--hero-aurora-x) - 25%) calc(var(--hero-aurora-y) + 20%),
        rgba(45,122,133,0.12) 0%, transparent 100%
      ),
      radial-gradient(
        ellipse 70% 55% at calc(var(--hero-aurora-x) + 10%) calc(var(--hero-aurora-y) + 5%),
        rgba(253,244,227,0.05) 0%, transparent 100%
      ),
      radial-gradient(
        ellipse 100% 70% at 75% calc(35% + var(--hero-aurora-depth) * 5%),
        rgba(58,154,170,0.14) 0%, transparent 100%
      );
  }

  /* decorative circles */
  .hero-deco {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(45,122,133,0.10);
    pointer-events: none;
    animation: rotate-slow 40s linear infinite;
  }

  .hero-deco-1 {
    width: 480px;
    height: 480px;
    top: -80px;
    right: -80px;
    border-width: 1.5px;
    border-color: rgba(45,122,133,0.08);
  }

  .hero-deco-2 {
    width: 320px;
    height: 320px;
    top: 20px;
    right: 20px;
    border-color: rgba(45,122,133,0.05);
    animation-direction: reverse;
    animation-duration: 28s;
  }

  .hero-deco-3 {
    width: 180px;
    height: 180px;
    top: 100px;
    right: 100px;
    border-color: rgba(45,122,133,0.09);
    animation-duration: 18s;
  }

  @keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }

  .hero-content {
    position: relative;
    z-index: 2;
    animation: fade-up 0.8s ease both;
  }

  .hero-home {
    width: min(100%, 1320px);
    min-height: min(860px, calc(100vh - 12px));
    grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.88fr);
    gap: clamp(28px, 4vw, 60px);
    margin: 0 auto;
    padding: calc(var(--nav-height) + 56px) clamp(28px, 4vw, 56px) clamp(40px, 6vw, 60px);
  }

  .hero-home .hero-content {
    max-width: 610px;
  }

  @keyframes fade-up {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(45,122,133,0.10);
    border: 1px solid rgba(45,122,133,0.18);
    border-radius: var(--r-full);
    color: var(--teal-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 24px;
  }

  .hero-kicker-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-dot 2s ease-in-out infinite;
  }

  @keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.7); }
  }

  .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 24px 48px rgba(15,40,50,0.10), 0 4px 16px rgba(15,40,50,0.04);
  }

  .hero h1 em {
    font-style: italic;
    color: var(--teal);
  }

  .hero-home h1 {
    max-width: 11ch;
    font-size: clamp(2.9rem, 5vw, 4.55rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
  }

  .hero-sub {
    font-size: 1.05rem;
    color: var(--body);
    max-width: 460px;
    line-height: 1.7;
    margin-bottom: 36px;
    font-weight: 400;
  }

  .hero-home .hero-sub {
    max-width: 35rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--teal);
    color: var(--white);
    border-radius: var(--r-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(45,122,133,0.40);
  }

  .btn-primary:hover {
    background: var(--teal-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(45,122,133,0.50);
  }

  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: transparent;
    color: var(--teal-deep);
    border: 1.5px solid rgba(45,122,133,0.35);
    border-radius: var(--r-full);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
  }

  .btn-ghost:hover {
    border-color: var(--teal);
    background: var(--teal-glass);
    transform: translateY(-1px);
  }

  .btn-nav,
  .btn-primary,
  .btn-ghost,
  .btn-white,
  .btn-white-ghost {
    min-height: 44px;
  }

  .hero-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .hero-home .hero-trust {
    margin-top: 28px;
  }

  .trust-avatars {
    display: flex;
  }

  .trust-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: var(--teal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--teal-deep);
    object-fit: cover;
  }

  .trust-stars {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  /* hero visual side */
  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1400px;
    animation: fade-up 0.8s 0.2s ease both;
  }

  .hero-eye-card {
    --scene-tilt-x: 0deg;
    --scene-tilt-y: 0deg;
    --scene-lift: 0px;
    --iris-shift-x: 0px;
    --iris-shift-y: 0px;
    --glint-shift-x: 0px;
    --glint-shift-y: 0px;
    position: relative;
    width: 420px;
    height: 420px;
    max-width: 100%;
    transform: perspective(1400px) rotateX(var(--scene-tilt-x)) rotateY(var(--scene-tilt-y)) translate3d(0, var(--scene-lift), 0);
    transform-style: preserve-3d;
    will-change: transform;
  }

  .hero-home .hero-visual {
    justify-content: flex-start;
  }

  .hero-home .hero-eye-card {
    width: min(100%, 500px);
    height: clamp(380px, 38vw, 500px);
    margin-left: auto;
  }

  .hero-eye-halo {
    position: absolute;
    inset: 52px;
    border-radius: 50%;
    background:
      radial-gradient(circle at 50% 50%, rgba(58,154,170,0.16) 0%, rgba(58,154,170,0.06) 36%, rgba(58,154,170,0) 72%),
      radial-gradient(circle at 35% 30%, rgba(255,255,255,0.60) 0%, rgba(255,255,255,0) 48%);
    filter: blur(8px);
    pointer-events: none;
  }

  .eye-orbit-layer {
    position: absolute;
    inset: 0;
  }

  .eye-orbit-layer-2 {
    inset: 30px;
  }

  .eye-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(45,122,133,0.20);
    animation: rotate-slow 30s linear infinite;
  }

  .eye-orbit-2 {
    inset: 30px;
    animation-duration: 20s;
    animation-direction: reverse;
    border-color: rgba(45,122,133,0.12);
  }

  .eye-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    height: 280px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
  }

  .eye-logo-inner {
    width: 280px;
    height: 280px;
    position: relative;
    z-index: 2;
    transform: translate3d(calc(var(--iris-shift-x) * 0.16), calc(var(--iris-shift-y) * 0.16), 0) scale(1.01);
    filter: drop-shadow(0 16px 24px rgba(15,40,50,0.09));
  }

  .eye-center::before,
  .eye-center::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    pointer-events: none;
  }

  .eye-center::before {
    inset: 8%;
    z-index: 0;
    background:
      radial-gradient(circle at calc(50% + var(--glint-shift-x)) calc(32% + var(--glint-shift-y)), rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.46) 10%, rgba(255,255,255,0) 24%),
      radial-gradient(circle at calc(50% + var(--iris-shift-x)) calc(50% + var(--iris-shift-y)), rgba(58,154,170,0.32) 0%, rgba(58,154,170,0.24) 28%, rgba(45,122,133,0.18) 48%, rgba(45,122,133,0.08) 62%, rgba(45,122,133,0) 82%);
    filter: blur(1px);
    transform: translate3d(calc(var(--iris-shift-x) * 0.22), calc(var(--iris-shift-y) * 0.22), 0);
  }

  .eye-center::after {
    inset: 17%;
    z-index: 1;
    background:
      radial-gradient(circle at calc(50% + var(--iris-shift-x)) calc(50% + var(--iris-shift-y)), rgba(13,31,34,0) 0%, rgba(13,31,34,0) 34%, rgba(13,31,34,0.11) 55%, rgba(13,31,34,0) 72%),
      radial-gradient(circle at calc(48% + var(--glint-shift-x)) calc(38% + var(--glint-shift-y)), rgba(255,255,255,0.34) 0%, rgba(255,255,255,0) 16%);
    opacity: 0.95;
  }

  [data-eye-layer] {
    --shift-x: 0px;
    --shift-y: 0px;
    --shift-rot: 0deg;
    will-change: transform;
  }

  .hero-eye-halo,
  .eye-orbit-layer,
  .float-card {
    transform: translate3d(var(--shift-x), var(--shift-y), 0) rotate(var(--shift-rot));
  }

  .eye-center {
    transform: translate(calc(-50% + var(--shift-x)), calc(-50% + var(--shift-y))) rotate(var(--shift-rot));
  }

  /* orbit dots */
  .orbit-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(45,122,133,0.20);
  }

  /* floating cards around eye */
  .float-card {
    position: absolute;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .float-card-1 {
    top: 26px;
    left: -14px;
  }

  .float-card-2 {
    right: -32px;
    bottom: 58px;
  }

  .float-card-3 {
    left: 18px;
    bottom: -6px;
  }

  .float-card-inner {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(212,232,236,0.95);
    border-radius: 20px;
    padding: 13px 16px;
    box-shadow: 0 18px 34px rgba(15,40,50,0.11), 0 6px 18px rgba(15,40,50,0.07);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    gap: 11px;
    animation: float-card 5.4s ease-in-out infinite;
  }

  .float-card-2 .float-card-inner {
    animation-delay: 1.8s;
  }

  .float-card-3 .float-card-inner {
    animation-delay: 0.9s;
  }

  @keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
  }

  .float-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .float-icon-teal { background: var(--teal-ultra); color: var(--teal); }
  .float-icon-gold { background: var(--gold-light); color: var(--gold); }
  .float-icon-ink  { background: rgba(13,31,34,0.06); color: var(--ink); }

  .float-card-body strong {
    display: block;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.82rem;
    line-height: 1.1;
  }

  .float-card-body small {
    color: var(--muted);
    font-size: 0.7rem;
  }

  /* =========================================================
     SECOES COMUNS
  ========================================================= */
  section {
    padding: clamp(60px, 8vw, 100px) clamp(20px, 6vw, 80px);
  }

  .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 13px;
    background: rgba(45,122,133,0.09);
    border: 1px solid rgba(45,122,133,0.15);
    border-radius: var(--r-full);
    color: var(--teal-deep);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }

  .section-title em {
    font-style: italic;
    color: var(--teal);
  }

  .section-sub {
    font-size: 1rem;
    color: var(--body);
    max-width: 580px;
    line-height: 1.7;
  }

  /* =========================================================
     PAGINAS INTERNAS
  ========================================================= */
  .page-main {
    padding-top: calc(var(--nav-height) + 12px);
  }

  .legal-page-body {
    background:
      radial-gradient(ellipse 72% 58% at 82% 14%, rgba(58,154,170,0.11) 0%, transparent 72%),
      radial-gradient(ellipse 54% 48% at 16% 82%, rgba(45,122,133,0.08) 0%, transparent 70%),
      linear-gradient(180deg, rgba(238,246,248,0.92) 0%, rgba(247,251,252,1) 100%);
  }

  .legal-page-main {
    padding-bottom: 48px;
  }

  .legal-page-shell {
    width: min(100%, 940px);
    margin: 0 auto;
    padding: clamp(84px, 10vw, 120px) clamp(20px, 5vw, 36px) 0;
  }

  .legal-back-link {
    margin-bottom: 18px;
  }

  .legal-card {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(45,122,133,0.14);
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(14px);
    padding: clamp(28px, 4vw, 42px);
  }

  .legal-card h1,
  .legal-card h2 {
    font-family: var(--font-display);
    color: var(--ink);
    letter-spacing: -0.02em;
  }

  .legal-card h1 {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    line-height: 1.02;
    margin-bottom: 16px;
  }

  .legal-card h2 {
    font-size: 1.3rem;
    line-height: 1.15;
    margin: 28px 0 10px;
  }

  .legal-card p {
    color: var(--body);
    line-height: 1.78;
    margin-bottom: 14px;
  }

  .legal-updated {
    display: inline-flex;
    margin-bottom: 16px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(45,122,133,0.08);
    border: 1px solid rgba(45,122,133,0.12);
    color: var(--teal-deep);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .legal-contact {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(45,122,133,0.12);
  }

  .page-hero {
    padding: clamp(72px, 8vw, 104px) clamp(20px, 6vw, 80px) clamp(48px, 6vw, 72px);
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(ellipse 70% 60% at 82% 18%, rgba(58,154,170,0.12) 0%, transparent 72%),
      radial-gradient(ellipse 56% 54% at 14% 82%, rgba(45,122,133,0.08) 0%, transparent 68%),
      linear-gradient(180deg, rgba(232,245,247,0.9) 0%, rgba(247,251,252,0.96) 100%);
  }

  .page-hero::after {
    content: '';
    position: absolute;
    right: -64px;
    top: -48px;
    width: clamp(220px, 28vw, 360px);
    height: clamp(220px, 28vw, 360px);
    border-radius: 50%;
    border: 1px solid rgba(45,122,133,0.12);
    pointer-events: none;
  }

  .page-hero-inner,
  .page-section-inner,
  .content-group,
  .inline-cta,
  .coming-soon-panel {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: clamp(28px, 5vw, 56px);
    align-items: center;
  }

  .page-hero-copy {
    max-width: 700px;
  }

  .page-hero-topline {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
  }

  .page-hero-topline .section-kicker,
  .page-hero-topline .article-back-link {
    justify-content: center;
    margin-bottom: 0;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .page-hero-topline .article-back-link {
    width: auto;
  }

  .page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    color: var(--ink);
    margin-bottom: 18px;
  }

  .page-title em {
    color: var(--teal);
    font-style: italic;
  }

  .page-lead {
    font-size: 1.02rem;
    color: var(--body);
    line-height: 1.75;
    max-width: 620px;
  }

  .page-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
  }

  .page-side-card {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(45,122,133,0.14);
    border-radius: 30px;
    padding: 28px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
  }

  .page-side-card h2,
  .page-side-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 12px;
  }

  .page-side-card p {
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .page-side-list {
    list-style: none;
    display: grid;
    gap: 14px;
    margin-top: 18px;
  }

  .page-side-list li {
    padding: 14px 16px;
    border-radius: var(--r-lg);
    background: var(--teal-pale);
    border: 1px solid rgba(45,122,133,0.12);
    color: var(--ink);
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .page-side-list strong {
    display: block;
    color: var(--teal-deep);
    margin-bottom: 4px;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .page-section {
    background: rgba(255,255,255,0.90);
  }

  .page-section-alt {
    background: rgba(247,251,252,0.90);
  }

  .page-section-head {
    margin-bottom: 34px;
  }

  .page-section-head.centered {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
  }

  .topic-groups {
    display: grid;
    gap: 28px;
  }

  .content-group {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: clamp(24px, 4vw, 34px);
    box-shadow: var(--shadow-sm);
  }

  .content-group-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 22px;
  }

  .content-group-head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.2rem);
    color: var(--ink);
    line-height: 1.08;
    letter-spacing: -0.02em;
  }

  .content-group-head p {
    max-width: 560px;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.7;
  }

  .topic-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .topic-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-decoration: none;
    background: linear-gradient(180deg, rgba(232,245,247,0.55) 0%, rgba(255,255,255,0.98) 100%);
    border: 1px solid rgba(45,122,133,0.14);
    border-radius: 24px;
    padding: 22px 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    min-height: 210px;
  }

  .topic-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45,122,133,0.28);
  }

  .topic-card-tag {
    display: inline-flex;
    width: fit-content;
    padding: 5px 11px;
    border-radius: var(--r-full);
    background: rgba(45,122,133,0.11);
    border: 1px solid rgba(45,122,133,0.12);
    color: var(--teal-deep);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .topic-card h3 {
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1.14;
    letter-spacing: -0.02em;
    color: var(--ink);
  }

  .topic-card p {
    color: var(--muted);
    font-size: 0.91rem;
    line-height: 1.68;
    margin-top: auto;
  }

  .topic-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-deep);
    font-size: 0.86rem;
    font-weight: 700;
  }

  .inline-cta {
    padding: 0 clamp(20px, 6vw, 80px);
    margin-top: clamp(16px, 3vw, 30px);
    margin-bottom: clamp(16px, 3vw, 30px);
  }

  .inline-cta-card {
    background: linear-gradient(135deg, rgba(31,122,134,0.08), rgba(58,154,170,0.14));
    border: 1px solid rgba(45,122,133,0.16);
    border-radius: 28px;
    padding: clamp(22px, 4vw, 32px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
  }

  .inline-cta-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.6vw, 2.1rem);
    color: var(--ink);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
  }

  .inline-cta-card p {
    color: var(--body);
    font-size: 0.96rem;
    line-height: 1.7;
    max-width: 620px;
  }

  .coming-soon-section {
    background: var(--white);
  }

  .coming-soon-panel {
    padding: 0 clamp(20px, 6vw, 80px) clamp(32px, 6vw, 64px);
  }

  .coming-soon-card {
    background: linear-gradient(180deg, rgba(232,245,247,0.72) 0%, rgba(255,255,255,1) 100%);
    border: 1px solid rgba(45,122,133,0.14);
    border-radius: 32px;
    padding: clamp(28px, 5vw, 48px);
    box-shadow: var(--shadow-md);
    text-align: center;
  }

  .coming-soon-card strong {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal-deep);
    margin-bottom: 14px;
  }

  .coming-soon-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3rem);
    color: var(--ink);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
  }

  .coming-soon-card p {
    max-width: 640px;
    margin: 0 auto;
    color: var(--body);
    font-size: 1rem;
    line-height: 1.75;
  }

  .feed-section {
    background: rgba(255,255,255,0.90);
    padding-top: clamp(24px, 4vw, 40px);
  }

  .feed-wrap {
    max-width: 1100px;
    margin: 0 auto;
  }

  .feed-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .feed-head .section-sub {
    max-width: 720px;
  }

  .ocular-search-panel {
    display: grid;
    gap: 0;
    margin-bottom: 28px;
    border-radius: 30px;
    padding: 18px;
  }

  .ocular-search-form {
    display: grid;
    gap: 8px;
  }

  .ocular-search-label {
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--teal-deep);
  }

  .ocular-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: stretch;
  }

  .ocular-search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(45,122,133,0.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  }

  .ocular-search-input-wrap:focus-within {
    background: var(--white);
    border-color: rgba(45,122,133,0.34);
    box-shadow: 0 0 0 4px rgba(45,122,133,0.08);
  }

  .ocular-search-input-wrap svg {
    flex-shrink: 0;
    color: var(--teal-deep);
  }

  .ocular-search-input-wrap input {
    width: 100%;
    border: none;
    outline: none;
    background: transparent;
    font: inherit;
    font-size: 1rem;
    color: var(--ink);
  }

  .ocular-search-input-wrap input::placeholder {
    color: var(--subtle);
  }

  .ocular-search-clear,
  .ocular-search-reset {
    justify-content: center;
  }

  /* ── Premium Autocomplete Dropdown ── */
  .ocular-autocomplete-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.3s ease;
    opacity: 0;
    position: relative;
    z-index: 50;
  }

  .ocular-autocomplete-wrap.open {
    max-height: 380px;
    opacity: 1;
  }

  .ocular-autocomplete-list {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(45, 122, 133, 0.16);
    border-radius: 18px;
    margin-top: 10px;
    overflow-y: auto;
    max-height: 320px;
    padding: 6px;
    box-shadow:
      0 8px 32px rgba(15, 40, 50, 0.10),
      0 2px 8px rgba(15, 40, 50, 0.05);
  }

  .ocular-autocomplete-list::-webkit-scrollbar {
    width: 6px;
  }

  .ocular-autocomplete-list::-webkit-scrollbar-track {
    background: transparent;
  }

  .ocular-autocomplete-list::-webkit-scrollbar-thumb {
    background: rgba(45, 122, 133, 0.18);
    border-radius: 3px;
  }

  .ocular-autocomplete-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    cursor: pointer;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink);
    transition:
      background 0.15s ease,
      color 0.15s ease,
      transform 0.1s ease;
    border-bottom: 1px solid rgba(45, 122, 133, 0.05);
    line-height: 1.4;
  }

  .ocular-autocomplete-item:last-child {
    border-bottom: none;
  }

  .ocular-autocomplete-item:hover,
  .ocular-autocomplete-item.ac-active {
    background: var(--teal-deep);
    color: var(--white);
    transform: scale(1.005);
    box-shadow: 0 2px 12px rgba(31, 122, 134, 0.22);
  }

  .ocular-autocomplete-item:active {
    transform: scale(0.98);
  }

  .ocular-autocomplete-item-title {
    font-weight: 600;
    font-size: 0.93rem;
    letter-spacing: -0.01em;
  }

  .ocular-autocomplete-item-sub {
    font-size: 0.76rem;
    color: var(--muted);
    font-weight: 400;
    margin-top: 1px;
    transition: color 0.15s ease;
  }

  .ocular-autocomplete-item:hover .ocular-autocomplete-item-sub,
  .ocular-autocomplete-item.ac-active .ocular-autocomplete-item-sub {
    color: rgba(255, 255, 255, 0.78);
  }

  .ocular-autocomplete-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--teal-deep);
    border: 1px solid rgba(45, 122, 133, 0.25);
    padding: 2px 7px;
    border-radius: var(--r-full);
    margin-left: 8px;
    vertical-align: middle;
    transition: color 0.15s, border-color 0.15s;
  }

  .ocular-autocomplete-item:hover .ocular-autocomplete-badge,
  .ocular-autocomplete-item.ac-active .ocular-autocomplete-badge {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
  }

  .ocular-autocomplete-empty {
    padding: 18px 14px;
    text-align: center;
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .ocular-autocomplete-empty strong {
    color: var(--teal-deep);
    font-weight: 600;
  }

  /* ─── highlight mark inside suggestions ─── */
  .ocular-autocomplete-item mark {
    background: rgba(45, 122, 133, 0.10);
    color: var(--teal-deep);
    font-weight: 700;
    border-radius: 3px;
    padding: 0 1px;
    /* CRITICAL: keep the mark seamless inline */
    display: inline;
    text-decoration: none;
    line-height: inherit;
    letter-spacing: inherit;
  }

  .ocular-autocomplete-item:hover mark,
  .ocular-autocomplete-item.ac-active mark {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
  }

  /* Focus ring for keyboard navigation */
  .ocular-autocomplete-item:focus-visible {
    outline: 2px solid var(--teal-mid);
    outline-offset: -2px;
  }

  @media (max-width: 600px) {
    .ocular-autocomplete-list {
      border-radius: 14px;
      padding: 5px;
      max-height: 260px;
    }

    .ocular-autocomplete-item {
      padding: 11px 12px;
      font-size: 0.91rem;
      border-radius: 10px;
    }

    .ocular-autocomplete-item-sub {
      font-size: 0.73rem;
    }
  }

  .ocular-search-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 0 4px;
    min-height: 28px;
    transition: opacity 0.2s;
  }

  .ocular-search-count {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--teal-deep);
    letter-spacing: 0.02em;
  }

  .ocular-search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    padding: 48px 24px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(232,245,247,0.5) 0%, rgba(255,255,255,0.95) 100%);
    border: 1px dashed rgba(45,122,133,0.2);
    margin-bottom: 22px;
  }

  .ocular-search-empty svg {
    color: var(--subtle);
    opacity: 0.6;
  }

  .ocular-search-empty p {
    font-size: 1rem;
    color: var(--ink);
    font-weight: 600;
    margin: 0;
  }

  .ocular-search-empty small {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
  }

  .ocular-search-empty small strong {
    color: var(--teal-deep);
    font-weight: 600;
  }

  .article-card[data-search-reorder] {
    transition: opacity 0.25s ease;
  }

  .feed-list {
    display: grid;
    gap: 22px;
  }

  .article-card {
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 24px;
    align-items: stretch;
    padding: 20px;
    background: linear-gradient(180deg, rgba(232,245,247,0.52) 0%, rgba(255,255,255,1) 100%);
    border: 1px solid rgba(45,122,133,0.14);
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s;
  }

  .article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(45,122,133,0.24);
  }

  .article-card-media {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    background: var(--teal-ultra);
    border: 1px solid rgba(45,122,133,0.12);
    min-height: 220px;
  }

  .article-card-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    aspect-ratio: 4 / 3;
  }

  .article-card-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8px 6px 8px 0;
  }

  .article-card-date {
    display: inline-flex;
    align-items: center;
    padding: 5px 11px;
    border-radius: var(--r-full);
    background: rgba(45,122,133,0.1);
    color: var(--teal-deep);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }

  .article-card h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 2.6vw, 2.3rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
  }

  .article-card h2 a {
    color: var(--ink);
    text-decoration: none;
  }

  .article-card h2 a:hover {
    color: var(--teal-deep);
  }

  .article-card p {
    font-size: 0.98rem;
    color: var(--body);
    line-height: 1.72;
    max-width: 62ch;
    margin-bottom: 18px;
  }

  .article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-deep);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
  }

  .article-card-link:hover {
    color: var(--ink);
  }

  /* =========================================================
     NUMEROS
  ========================================================= */
  .stats {
    background: var(--ink);
    padding: 56px clamp(20px, 6vw, 80px);
  }

  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .stat-item {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
  }

  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: var(--teal-mid);
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
  }

  .stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    font-weight: 400;
    line-height: 1.4;
    max-width: 120px;
    margin: 0 auto;
  }

  /* =========================================================
     SERVIÇOS
  ========================================================= */
  .services {
    background: rgba(255,255,255,0.88);
    padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 40px);
  }

  .services-head {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 52px;
    flex-wrap: wrap;
  }

  .services-grid {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .service-card {
    display: block;
    height: 100%;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
    cursor: pointer;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--teal-mid));
    border-radius: 0 0 2px 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .service-card:is(:hover, :focus-visible) {
    border-color: rgba(45,122,133,0.30);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  .service-card:is(:hover, :focus-visible)::before {
    transform: scaleX(1);
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--r-md);
    background: var(--teal-ultra);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 20px;
    transition: background 0.2s;
  }

  .service-card:is(:hover, :focus-visible) .service-icon {
    background: rgba(45,122,133,0.18);
  }

  .service-card:focus-visible {
    outline: 2px solid rgba(45,122,133,0.35);
    outline-offset: 3px;
  }

  .service-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
  }

  .service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
  }

  .service-tag {
    display: inline-flex;
    margin-top: 18px;
    padding: 4px 10px;
    background: var(--teal-ultra);
    color: var(--teal-deep);
    border-radius: var(--r-full);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* featured service card */
  .service-card.featured {
    background: linear-gradient(145deg, #1f7a86, #2d7a85);
    border-color: transparent;
    color: var(--white);
  }

  .service-card.featured::before {
    background: rgba(255,255,255,0.3);
  }

  .service-card.featured .service-icon {
    background: rgba(255,255,255,0.18);
    color: var(--white);
  }

  .service-card.featured:is(:hover, :focus-visible) .service-icon {
    background: rgba(255,255,255,0.28);
  }

  .service-card.featured h3 { color: var(--white); }

  .service-card.featured p { color: rgba(255,255,255,0.72); }

  .service-card.featured .service-tag {
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.88);
  }

  .service-card.featured:is(:hover, :focus-visible) {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 12px 40px rgba(31,122,134,0.55);
  }

  /* =========================================================
     COMO FUNCIONA
  ========================================================= */
  .how {
    background: rgba(240,249,250,0.90);
    position: relative;
    overflow: hidden;
  }

  .how::before {
    content: '';
    position: absolute;
    right: -100px; top: -100px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45,122,133,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .how-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
    gap: clamp(40px, 5vw, 64px);
    align-items: start;
  }

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

  .how-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(45,122,133,0.12);
    position: relative;
    transition: 0.2s;
  }

  .how-step:last-child { border-bottom: none; }

  .how-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(45,122,133,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--teal);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: 0.25s;
  }

  .how-step:hover .how-step-num {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    box-shadow: 0 4px 16px rgba(45,122,133,0.40);
  }

  .how-step-body h4 {
    font-weight: 700;
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: 5px;
  }

  .how-step-body p {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* =========================================================
     COMO FUNCIONA - VISUAL BENTO GRID
  ========================================================= */
  .how-visual {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "main main main"
      "team specialties location";
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
    align-items: stretch;
  }

  /* Base Card Style */
  .how-visual > div,
  .how-visual > article {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: var(--r-xl);
    background: var(--white);
    border: 1px solid rgba(45,122,133,0.12);
    box-shadow: 0 10px 30px rgba(18, 53, 60, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .how-visual > div:hover,
  .how-visual > article:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(18, 53, 60, 0.1);
    border-color: rgba(45,122,133,0.25);
  }

  /* Main Card (Hero) */
  .how-card-main {
    grid-area: main;
    justify-content: space-between;
    background:
      radial-gradient(circle at top right, rgba(121, 216, 224, 0.2), transparent 40%),
      linear-gradient(145deg, #ffffff, #f1f8f9) !important;
    padding: 32px !important;
  }

  .how-card-main-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
  }

  .how-card-main-copy {
    flex: 1 1 auto;
    min-width: 0;
  }

  .how-visual-eyebrow {
    font-size: 0.76rem;
    line-height: 1.5;
    color: rgba(20, 68, 74, 0.84);
    max-width: 26ch;
  }

  .how-card-main h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    line-height: 1.15;
    color: var(--ink);
    margin: 16px 0 12px;
    letter-spacing: -0.02em;
  }

  .how-card-main p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: var(--body);
    opacity: 0.9;
    max-width: 44ch;
  }

  .how-visual-pills {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 30px;
  }

  .how-visual-pills span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 10px 16px;
    text-align: center;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(45,122,133,0.1);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.72), 0 10px 22px rgba(18, 53, 60, 0.05);
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--teal-deep);
  }

  /* Google Rating Chip */
  .how-card-google-chip {
    flex: 0 0 160px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    text-align: center;
    padding: 18px 16px !important;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(244,250,251,0.98));
    border: 1px solid rgba(45,122,133,0.14);
    box-shadow: 0 12px 28px rgba(18, 53, 60, 0.08);
  }

  .how-google-chip-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(236,246,248,0.96));
    color: var(--teal-deep);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 18px rgba(45,122,133,0.12);
  }

  .how-card-google-chip .how-mini-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--teal-deep);
    margin: 4px 0 0;
  }

  .how-card-google-chip .how-mini-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }

  .how-google-chip-stars {
    font-size: 0.78rem;
    letter-spacing: 1.8px;
    color: var(--gold);
    line-height: 1;
    margin-top: 2px;
  }

  .how-card-google-chip .how-mini-note {
    font-size: 0.74rem;
    color: var(--body);
    opacity: 0.7;
    max-width: 14ch;
  }

  .how-google-stars {
    margin-top: 16px;
    color: var(--gold);
    letter-spacing: 2px;
  }

  @media (min-width: 1025px) {
    .how-inner {
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: clamp(36px, 4vw, 58px);
    }

    .how-card-main {
      padding: 38px !important;
    }

    .how-card-main-top {
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(196px, 212px);
      align-items: start;
      gap: 24px;
    }

    .how-card-main-copy {
      max-width: none;
      padding-right: 2px;
    }

    .how-visual-eyebrow {
      font-size: 0.82rem;
      max-width: none;
    }

    .how-card-main h3 {
      font-size: clamp(1.95rem, 1.1vw + 1.25rem, 2.75rem);
      line-height: 1.08;
      letter-spacing: -0.03em;
      margin: 16px 0 16px;
      max-width: 12.5ch;
      text-wrap: pretty;
    }

    .how-card-main p {
      font-size: 0.98rem;
      line-height: 1.7;
      max-width: 34ch;
    }

    .how-card-google-chip {
      flex: 0 0 100%;
      width: min(100%, 212px);
      min-height: 308px;
      margin: 4px 0 0 auto;
      padding: 24px 18px !important;
      border-radius: 28px;
      gap: 7px;
      box-shadow: 0 18px 36px rgba(18, 53, 60, 0.08);
    }

    .how-google-chip-icon {
      width: 46px;
      height: 46px;
    }

    .how-card-google-chip .how-mini-label {
      font-size: 0.78rem;
      letter-spacing: 0.14em;
    }

    .how-card-google-chip .how-mini-value {
      font-size: clamp(3.45rem, 2.2vw + 1.5rem, 4.6rem);
      line-height: 0.95;
      margin: 8px 0 2px;
    }

    .how-google-chip-stars {
      font-size: 0.9rem;
      letter-spacing: 2.3px;
      margin-top: 2px;
    }

    .how-card-google-chip .how-mini-note {
      font-size: 0.78rem;
      max-width: 12ch;
      line-height: 1.42;
    }

    .how-visual-pills {
      gap: 14px;
      margin-top: 24px;
    }

    .how-visual-pills span {
      min-height: 66px;
      padding: 14px 16px;
      background: rgba(255,255,255,0.9);
      font-size: 0.88rem;
      line-height: 1.2;
    }
  }

  /* Stat Cards */
  .how-card-stat {
    background: var(--white);
    justify-content: space-between;
    min-height: 180px;
  }

  .how-card-stat-team {
    grid-area: team;
  }

  .how-card-stat-specialties {
    grid-area: specialties;
  }

  .how-stat-label {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.05em;
  }

  .how-stat-value {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 6px 0 8px;
  }

  .how-stat-number {
    font-family: var(--font-display);
    font-size: 3.3rem;
    line-height: 0.9;
    color: var(--teal);
    letter-spacing: -0.04em;
  }

  .how-stat-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1.05;
    color: var(--teal);
    letter-spacing: -0.02em;
  }

  .how-card-stat p {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.4;
  }

  /* Location Card */
  .how-card-location {
    grid-area: location;
    background: linear-gradient(145deg, #ffffff, #f0f9fa);
    justify-content: space-between;
    min-height: 180px;
  }

  .how-card-location .how-mini-value {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--ink);
    margin: 4px 0;
  }

  .how-card-location .how-mini-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--teal);
    text-transform: uppercase;
  }

  .how-card-location .how-mini-note {
    font-size: 0.8rem;
    color: var(--muted);
  }

  /* =========================================================
     EQUIPE
  ========================================================= */
  .team {
    background: rgba(255,255,255,0.88);
  }

  .team-head {
    text-align: center;
    margin-bottom: 52px;
  }

  .team-sub {
    margin: 0 auto;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 1180px;
    margin: 0 auto;
  }

  .team-card {
    background: linear-gradient(180deg, #f8fcfd 0%, #eef7f8 100%);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s, border-color 0.25s;
    display: grid;
    grid-template-columns: 152px 1fr;
    align-items: stretch;
    min-height: 170px;
    color: inherit;
    text-decoration: none;
  }

  .team-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: rgba(45,122,133,0.24);
  }

  .team-card:focus-visible {
    outline: 3px solid rgba(45,122,133,0.30);
    outline-offset: 3px;
  }

  .team-card-featured {
    background: linear-gradient(180deg, #fbfefe 0%, var(--teal-ultra) 100%);
    border-color: rgba(45,122,133,0.24);
  }

  .team-media {
    position: relative;
    min-height: 170px;
    background: linear-gradient(180deg, #f7fcfd 0%, #edf7f8 100%);
    border-right: 1px solid rgba(45,122,133,0.10);
    overflow: hidden;
  }

  .team-orb {
    position: absolute;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    left: 21px;
    top: 50%;
    transform: translateY(-50%);
    background: radial-gradient(circle at 35% 35%, #7fdae3 0%, #3daab7 58%, #228c9a 100%);
    box-shadow: inset 0 0 20px rgba(255,255,255,0.20), 0 12px 28px rgba(45,122,133,0.14);
  }

  .team-avatar {
    position: absolute;
    left: 20px;
    top: 50%;
    width: 114px;
    height: 114px;
    transform: translateY(-50%);
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.78);
    background: #ffffff;
    z-index: 2;
    box-shadow: 0 18px 34px rgba(12, 33, 38, 0.16);
  }

  .doctor-jennifer .team-avatar {
    object-position: center center;
  }

  .doctor-alana .team-avatar {
    width: 108px;
    height: 108px;
    left: 23px;
    object-fit: contain;
    object-position: center center;
    background: #ffffff;
  }

  .doctor-sarah .team-avatar {
    object-position: center 16%;
  }

  .doctor-ingrid .team-avatar {
    object-position: center 16%;
  }

  .doctor-edson .team-avatar {
    object-position: center 12%;
  }

  .doctor-maria .team-avatar,
  .doctor-renata .team-avatar {
    object-position: center center;
  }

  .team-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 22px 24px;
  }

  .team-body h3 {
    font-family: var(--font-display);
    font-size: clamp(1.08rem, 1.2vw + 0.92rem, 1.45rem);
    color: var(--ink);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.2;
  }

  .team-meta-line {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .team-card .team-role,
  .team-rqe {
    font-size: 0.8rem;
    color: var(--teal);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.03em;
  }

  .team-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 0;
  }

  .team-subspecialty {
    display: inline-flex;
    padding: 5px 10px;
    background: rgba(45,122,133,0.12);
    color: var(--teal-deep);
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.02em;
  }

  /* =========================================================
     DEPOIMENTOS
  ========================================================= */
  .testimonials {
    background: var(--ink);
    position: relative;
    overflow: hidden;
  }

  .testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(45,122,133,0.20) 0%, transparent 70%);
    pointer-events: none;
  }

  .testimonials-head {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
  }

  .testimonials-head .section-kicker {
    background: rgba(45,122,133,0.18);
    border-color: rgba(45,122,133,0.30);
    color: var(--teal-light);
  }

  .testimonials-head .section-title {
    color: var(--white);
  }

  .testimonials-head .section-title em {
    color: var(--teal-mid);
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
  }

  .testimonial-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--r-xl);
    padding: 28px;
    backdrop-filter: blur(8px);
    transition: background 0.25s, border-color 0.25s;
  }

  .testimonial-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(45,122,133,0.35);
  }

  .testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .testimonial-card p {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 20px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testimonial-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.78rem;
    flex-shrink: 0;
    object-fit: cover;
  }

  .testimonial-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.88);
  }

  .testimonial-author small {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.40);
  }

  /* =========================================================
     FAQ
  ========================================================= */
  .faq {
    background: rgba(247,251,252,0.90);
  }

  .faq-head {
    text-align: center;
    margin: 0 auto 48px;
    max-width: 760px;
  }

  .faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
  }

  .faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    padding: 0 24px;
  }

  .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 0;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
    position: relative;
    padding-right: 28px;
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 20px;
    font-size: 1.3rem;
    color: var(--teal);
    line-height: 1;
    transition: transform 0.3s ease;
  }

  .faq-item[open] summary::after {
    content: '-';
  }

  .faq-item .faq-body {
    overflow: hidden;
    transition: height 0.3s ease;
  }

  .faq-item p {
    padding: 0 0 22px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.7;
  }

  /* =========================================================
     AGENDAMENTO / CTA
  ========================================================= */
  .cta {
    background: rgba(255,255,255,0.85);
  }

  .cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1f7a86 0%, #2d7a85 50%, #3a9aaa 100%);
    border-radius: 32px;
    padding: clamp(40px, 6vw, 70px) clamp(30px, 5vw, 70px);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(31,122,134,0.40);
  }

  .cta-inner::before {
    content: '';
    position: absolute;
    right: -60px; top: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
  }

  .cta-inner::after {
    content: '';
    position: absolute;
    right: 80px; bottom: -80px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .cta-content {
    position: relative;
  }

  .cta-kicker {
    display: inline-flex;
    padding: 5px 13px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--r-full);
    color: rgba(255,255,255,0.88);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }

  .cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 1rem;
    color: rgba(255,255,255,0.70);
    max-width: 460px;
    line-height: 1.65;
  }

  .cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    flex-shrink: 0;
  }

  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--white);
    color: var(--teal-deep);
    border-radius: var(--r-full);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  .btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.20);
  }

  .btn-white-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.30);
    border-radius: var(--r-full);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
    text-align: center;
    justify-content: center;
  }

  .btn-white-ghost:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.50);
  }

  /* =========================================================
     CONTATO / LOCALIZAÇÃO
  ========================================================= */
  .contact {
    background: rgba(247,251,252,0.88);
  }

  .contact-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: stretch;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .contact-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--teal-ultra);
    border: 1px solid rgba(45,122,133,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
  }

  .contact-item-body strong {
    display: block;
    font-weight: 700;
    color: var(--ink);
    font-size: 0.9rem;
    margin-bottom: 2px;
  }

  .contact-item-body span {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
  }

  .contact-map {
    background: var(--teal-ultra);
    border: 1px solid var(--line);
    border-radius: var(--r-xl);
    overflow: hidden;
    min-height: 380px;
    height: 100%;
    position: relative;
  }

  .contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  .map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--teal);
    text-align: center;
  }

  .map-placeholder svg { opacity: 0.6; }

  .map-placeholder p {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
  }

  .map-pin-badge {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 48px; height: 48px;
    border-radius: 50% 50% 50% 0;
    rotate: -45deg;
    background: var(--teal);
    box-shadow: 0 4px 20px rgba(45,122,133,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .map-pin-badge::after {
    content: '';
    rotate: 45deg;
    width: 12px; height: 12px;
    background: var(--white);
    border-radius: 50%;
  }

  /* =========================================================
     RODAPÉ
  ========================================================= */
  footer {
    background: var(--ink-2);
    padding: 48px clamp(20px, 6vw, 80px) 28px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 28px;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .footer-brand-logo strong {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.05rem;
  }

  .footer-brand p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.65;
    max-width: 280px;
  }

  .footer-col h5 {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.30);
    margin-bottom: 16px;
  }

  .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-col a {
    font-size: 0.87rem;
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col a:hover { color: var(--teal-mid); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
  }

  .footer-cfm {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.22);
  }

  .footer-technical {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.34);
  }

  /* =========================================================
     SCROLL ANIMATION
  ========================================================= */
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* =========================================================
     RESPONSIVO
  ========================================================= */
  @media (max-width: 1024px) {
    .home-nav .nav-shell {
      padding-left: 18px;
      padding-right: 18px;
    }
    .home-nav .nav-links {
      gap: 18px;
    }
    .hero-home {
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
      gap: 28px;
      padding-left: 24px;
      padding-right: 24px;
    }
    .hero-home .hero-eye-card {
      width: min(100%, 430px);
      height: 430px;
    }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .how-inner     { grid-template-columns: 1fr; gap: 40px; }
    .page-hero-grid { grid-template-columns: 1fr; }
    .topic-grid { grid-template-columns: 1fr; }
    .how-visual    {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-template-areas:
        "main main"
        "team specialties"
        "location location";
      grid-auto-rows: minmax(156px, auto);
    }
    .team-grid     { grid-template-columns: 1fr; max-width: 100%; }
    .team-card     { grid-template-columns: 188px 1fr; min-height: 182px; }
    .team-media    { min-height: 182px; }
    .team-orb      { width: 128px; height: 128px; left: 28px; }
    .team-avatar   { width: 134px; height: 134px; left: 26px; }
    .doctor-alana .team-avatar {
      width: 126px;
      height: 126px;
      left: 30px;
    }
    .team-body     { padding: 24px 26px; }
    .footer-top    { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 860px) {
    /* Aurora — reduzir intensidade em tablet/mobile */
    body::before {
      opacity: 0.6;
    }
    .hero          { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; }
    .home-nav .nav-shell {
      display: grid;
      grid-template-columns: minmax(0, 1fr) max-content 46px;
      grid-template-areas:
        "brand cta menu"
        "links links links";
      padding: 14px 18px 12px;
      gap: 14px 12px;
      align-items: center;
    }
    .home-nav .nav-brand {
      grid-area: brand;
      min-width: 0;
      flex: initial;
      gap: 14px;
      padding-right: 8px;
    }
    .home-nav .nav-logo {
      width: 48px;
      height: 48px;
      border-radius: 14px;
    }
    .home-nav .nav-name {
      min-width: 0;
    }
    .home-nav .nav-name strong {
      font-size: 1.16rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .home-nav .nav-name span {
      font-size: 0.67rem;
      letter-spacing: 0.13em;
      white-space: nowrap;
    }
    .home-nav .nav-middle {
      grid-area: links;
      width: 100%;
      display: block;
      padding: 0;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      visibility: hidden;
      transform: translate3d(0, -10px, 0);
    }
    .home-nav.nav-open .nav-middle {
      max-height: 360px;
      opacity: 1;
      visibility: visible;
      transform: translate3d(0, 0, 0);
    }
    .home-nav .nav-links {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      justify-content: flex-start;
      gap: 6px;
      padding: 16px 0 4px;
    }
    .home-nav .nav-links a {
      width: 100%;
      min-height: 48px;
      padding: 0 14px;
      border-radius: 18px;
    }

    .home-nav .nav-actions {
      display: contents;
    }
    .home-nav .nav-search-trigger {
      display: none !important;
    }
    .home-nav .nav-hamburger {
      grid-area: menu;
      display: inline-flex;
      width: 46px;
      height: 46px;
      justify-self: end;
    }
    .home-nav .btn-nav {
      grid-area: cta;
      justify-self: end;
      align-self: center;
      width: auto;
      min-width: 0;
      max-width: min(34vw, 186px);
      min-height: 40px;
      padding: 0 13px 0 12px;
      font-size: 0.7rem;
      font-weight: 700;
      line-height: 1;
      justify-content: center;
      gap: 5px;
      border-radius: var(--r-full);
      box-shadow: 0 6px 16px rgba(45,122,133,0.16);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      margin-left: 0;
    }
    .home-nav .btn-nav svg {
      width: 13px;
      height: 13px;
      flex-shrink: 0;
    }
    .hero-home {
      gap: 22px;
      padding: calc(var(--nav-height) + 34px) 20px 34px;
    }
    .hero-home .hero-content {
      max-width: none;
    }
    .hero-home .hero-visual {
      position: absolute;
      top: 140px;
      right: 35px;
      display: flex;
      justify-content: center;
      z-index: 1;
      pointer-events: none;
      opacity: 0.25;
    }
    .hero-home .hero-eye-card {
      width: 220px;
      height: 220px;
      margin-left: 0;
    }
    .hero-home h1 {
      max-width: 12ch;
    }
    .eye-center {
      width: 250px;
      height: 250px;
    }
    .eye-logo-inner {
      width: 250px;
      height: 250px;
    }
    .hero-home .float-card {
      display: none;
    }
    .page-main     { padding-top: 76px; }
    .page-title    { max-width: 12ch; }
    .inline-cta-card { grid-template-columns: 1fr; }
    .ocular-search-row { grid-template-columns: 1fr; }
    .article-card  { grid-template-columns: 1fr; }
    .stats-grid    { grid-template-columns: 1fr 1fr; }
    .stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .stat-item:nth-child(2n) { border-right: none; }
    .services-grid { grid-template-columns: 1fr; }
    .how-visual    {
      grid-template-columns: 1fr;
      grid-template-areas:
        "main"
        "team"
        "specialties"
        "location";
      grid-auto-rows: auto;
    }
    .how-card-main, .how-card-stat, .how-card-location { min-height: auto; }
    .how-card-main-top { flex-direction: column; }
    .how-card-google-chip {
      width: 100%;
      max-width: 220px;
      margin: 16px auto 0;
    }
    .how-visual-pills {
      grid-template-columns: 1fr;
    }
    .testimonials-grid { grid-template-columns: 1fr; }
    .cta-inner     { grid-template-columns: 1fr; }
    .cta-actions   { flex-direction: row; flex-wrap: wrap; }
    .contact-inner { grid-template-columns: 1fr; }
    .team-grid     { grid-template-columns: 1fr; max-width: 640px; }
    .team-card     { grid-template-columns: 188px 1fr; min-height: 188px; }
    .team-media    { min-height: 188px; }
    .team-orb      { width: 132px; height: 132px; left: 26px; }
    .team-avatar   { width: 144px; height: 144px; left: 22px; }
    .doctor-alana .team-avatar {
      width: 136px;
      height: 136px;
      left: 24px;
    }
    .team-body     { padding: 24px 24px 24px 28px; }
  }

  @media (max-width: 600px) {
    nav {
      flex-wrap: wrap;
      align-items: center;
      height: auto;
      min-height: 68px;
      padding-top: 12px;
      padding-bottom: 12px;
      gap: 12px;
    }
    nav.nav-open {
      box-shadow: var(--shadow-sm);
      background: rgba(247,251,252,0.98);
    }
    /* LOCKED — wrapper invisível mesmo com menu aberto (ver bloco principal) */
    nav.home-nav.nav-open {
      background: none;
      box-shadow: none;
    }
    .home-nav .nav-shell {
      top: 10px;                   /* LOCKED — posição mobile da pill */
      width: calc(100% - 24px);   /* LOCKED — largura mobile da pill */
      min-height: 72px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) max-content 44px;
      grid-template-areas:
        "brand cta menu"
        "links links links";
      align-items: center;
      gap: 12px 10px;
      padding: 11px 14px;
      border-radius: 22px;
    }
    .home-nav .nav-brand {
      grid-area: brand;
      margin-right: 0;
      min-width: 0;
      flex: initial;
      gap: 13px;
      padding-right: 6px;
      overflow: hidden;
    }
    .home-nav .nav-logo {
      width: 46px;
      height: 46px;
      border-radius: 14px;
    }
    .home-nav .nav-name {
      min-width: 0;
    }
    .home-nav .nav-name strong {
      font-size: 1.12rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .home-nav .nav-name span {
      font-size: 0.61rem;
      letter-spacing: 0.13em;
      white-space: nowrap;
    }
    .home-nav .nav-middle {
      grid-area: links;
      width: 100%;
      order: 4;
      margin-top: 0;
      padding: 0;
    }
    .home-nav .nav-actions {
      display: contents;
    }
    .home-nav .nav-search-trigger {
      display: none;
    }
    .home-nav .nav-hamburger {
      grid-area: menu;
      width: 44px;
      height: 44px;
      min-width: 44px;
      padding: 0;
      justify-content: center;
      justify-self: end;
    }
    .home-nav .btn-nav {
      grid-area: cta;
      justify-self: end;
      width: auto;
      min-width: 0;
      max-width: min(40vw, 158px);
      min-height: 40px;
      padding: 0 11px 0 10px;
      font-size: 0.66rem;
      font-weight: 700;
      line-height: 1;
      justify-content: center;
      gap: 4px;
      border-radius: var(--r-full);
      box-shadow: 0 6px 16px rgba(45,122,133,0.16);
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      margin-left: 0;
    }
    .home-nav .btn-nav svg {
      flex-shrink: 0;
      width: 13px;
      height: 13px;
    }
    .page-hero {
      padding-top: 124px;
    }
    .page-title {
      font-size: clamp(2.2rem, 12vw, 3.2rem);
      max-width: none;
    }
    .page-side-card,
    .content-group,
    .coming-soon-card,
    .legal-card {
      border-radius: 24px;
    }
    .ocular-search-panel {
      border-radius: 24px;
      padding: 16px;
    }
    .ocular-search-input-wrap {
      min-height: 54px;
      padding: 0 16px;
      border-radius: 18px;
    }
    .article-card {
      padding: 16px;
      border-radius: 24px;
    }
    .article-card-media {
      min-height: 0;
    }
    .article-card h2 {
      font-size: clamp(1.45rem, 8vw, 2rem);
    }
    .page-actions,
    .cta-actions {
      flex-direction: column;
    }
    .btn-white,
    .btn-white-ghost,
    .btn-primary,
    .btn-ghost {
      width: 100%;
    }
    .article-back-link {
      width: 100%;
    }
    .btn-nav {
      margin-left: auto;
      padding: 10px 14px;
      font-size: 0.78rem;
    }
    .nav-hamburger { display: flex; }
    .home-nav .nav-links {
      padding: 12px 0 2px;
      gap: 6px;
    }
    .home-nav .nav-links a {
      font-size: 0.94rem;
      min-height: 46px;
      padding: 0 12px;
    }
    .home-nav .nav-hamburger {
      display: inline-flex;
    }
    .legal-page-shell {
      padding-top: 112px;
    }
    .legal-card h1 {
      font-size: clamp(2.1rem, 11vw, 3rem);
    }
    .hero-home {
      padding-top: calc(var(--nav-height) + 24px);
      padding-left: 16px;
      padding-right: 16px;
    }
    .hero-home h1 {
      max-width: none;
      font-size: clamp(2.45rem, 11vw, 3.5rem);
    }
    .hero-home .hero-sub {
      font-size: 1rem;
      margin-bottom: 24px;
    }
    .hero-home .hero-eye-card {
      width: min(100%, 320px);
      height: 320px;
    }
    .hero-eye-halo {
      inset: 40px;
    }
    .eye-orbit-layer-2 {
      inset: 22px;
    }
    .eye-center {
      width: 236px;
      height: 236px;
    }
    .eye-logo-inner {
      width: 208px;
      height: 208px;
    }
    .float-card {
      max-width: 188px;
      font-size: 0.74rem;
    }
    .float-card-inner {
      padding: 10px 12px;
      border-radius: 18px;
      gap: 9px;
    }
    .float-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
    }
    .float-card-2 {
      display: none;
    }
    .float-card-1 {
      top: 12px;
      left: -4px;
    }
    .float-card-3 {
      left: -2px;
      bottom: 2px;
    }
    .stats-grid { grid-template-columns: 1fr; }
    .how-visual { gap: 12px; }
    .how-card-main, .how-card-stat, .how-card-location { padding: 20px; }
    .how-card-main-top { flex-direction: column; gap: 18px; }
    .how-card-google-chip {
      width: min(100%, 240px);
      max-width: 240px;
      margin: 18px auto 0;
      align-self: center;
      padding: 16px 14px !important;
      border-radius: 22px;
    }
    .how-card-google-chip .how-mini-value { font-size: 2.2rem; }
    .how-card-google-chip .how-mini-note {
      max-width: 12ch;
      line-height: 1.45;
    }
    .how-visual-pills {
      grid-template-columns: 1fr;
      gap: 12px;
      margin-top: 18px;
    }
    .how-visual-pills span {
      width: 100%;
      min-height: 54px;
      padding: 12px 16px;
      justify-content: center;
      text-align: center;
      font-size: 0.8rem;
      line-height: 1.2;
    }
    .team-card {
      grid-template-columns: 1fr;
      min-height: auto;
    }
    .team-media {
      min-height: 182px;
      border-right: none;
      border-bottom: 1px solid rgba(45,122,133,0.10);
    }
    .team-orb {
      left: 50%;
      top: 24px;
      transform: translateX(-50%);
    }
    .team-avatar {
      left: 50%;
      top: 98px;
      bottom: auto;
      transform: translate(-50%, -50%);
      width: 160px;
      height: 160px;
    }
    .team-body {
      align-items: center;
      text-align: center;
      padding: 22px 18px 24px;
    }
    .team-meta-line {
      justify-content: center;
      gap: 12px;
    }
    .doctor-alana .team-avatar,
    .doctor-jennifer .team-avatar {
      left: 50%;
      top: 98px;
      width: 160px;
      height: 160px;
      transform: translate(-50%, -50%);
    }
    .faq-item { padding: 0 18px; }
    .footer-top { grid-template-columns: 1fr; }
  }

  @media (max-width: 420px) {
    /* Aurora — muito sutil em telas pequenas */
    body::before {
      opacity: 0.45;
    }
    .home-nav .nav-shell {
      grid-template-columns: minmax(0, 1fr) max-content 42px;
      gap: 10px 8px;
      padding-left: 12px;
      padding-right: 12px;
    }
    .home-nav .nav-name span {
      display: none;
    }
    .home-nav .nav-name strong {
      font-size: 1.02rem;
    }
    .how-card-google-chip {
      max-width: 210px;
      padding: 14px 12px !important;
    }
    .how-card-google-chip .how-mini-value {
      font-size: 2rem;
    }
    .how-card-google-chip .how-mini-note {
      max-width: 11ch;
      font-size: 0.72rem;
    }
    .how-visual-pills span {
      min-height: 50px;
      padding: 10px 14px;
      font-size: 0.76rem;
    }
    .home-nav .btn-nav {
      max-width: fit-content;
      min-height: 38px;
      padding-left: 12px;
      padding-right: 12px;
      font-size: 0;
      gap: 6px;
    }
    .home-nav .btn-nav::after {
      content: "WhatsApp";
      font-size: 0.72rem;
    }
    .home-nav .nav-hamburger {
      width: 42px;
      height: 42px;
      min-width: 42px;
    }
  }

  /* =========================================================
     WHATSAPP FLOAT
  ========================================================= */
  .whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 74px;
    height: 74px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.35);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.24s var(--ease-premium), background-color 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
    animation: whatsapp-pulse 4.8s ease-in-out infinite;
    will-change: transform;
  }

  .whatsapp-float:hover {
    transform: translate3d(0, -3px, 0) scale(1.02);
    background-color: #128c7e;
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  }

  .whatsapp-float:hover svg {
    animation: whatsapp-icon-wiggle 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
  }

  .whatsapp-float:active {
    transform: translate3d(0, -1px, 0) scale(0.975);
  }

  .whatsapp-float svg {
    width: 36px;
    height: 36px;
    transform-origin: center;
    will-change: transform;
  }

  .floating-actions {
    --floating-action-size: 92px;
    position: fixed;
    right: calc(clamp(18px, 2.6vw, 32px) + env(safe-area-inset-right, 0px));
    bottom: calc(clamp(18px, 2.6vw, 30px) + 5vh + env(safe-area-inset-bottom, 0px));
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    pointer-events: none;
  }

  .floating-actions > * {
    pointer-events: auto;
    --btn-offset: 0px;
    --btn-squash: 0;
    transform: translate3d(0, var(--btn-offset), 0)
               scaleX(calc(1 + var(--btn-squash)))
               scaleY(calc(1 - var(--btn-squash)));
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
  }

  .search-float {
    position: relative;
    width: var(--floating-action-size);
    height: var(--floating-action-size);
    margin-right: 0;
    border-radius: 50%;
    border: 1px solid rgba(45,122,133,0.16);
    background: rgba(255,255,255,0.92);
    color: var(--teal-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(15,40,50,0.11);
    backdrop-filter: blur(16px);
    transition: transform 0.24s var(--ease-premium), box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
    will-change: transform;
  }

  .search-float:hover {
    transform: translate3d(0, -3px, 0);
    background: var(--white);
    border-color: rgba(45,122,133,0.24);
    box-shadow: 0 18px 34px rgba(15,40,50,0.16);
  }

  .search-float:active {
    transform: translate3d(0, -1px, 0) scale(0.975);
  }

  .search-float svg {
    width: 34px;
    height: 34px;
  }

  .search-float::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(45,122,133,0.18);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.28s ease, transform 0.32s ease;
    pointer-events: none;
  }

  .search-float.is-active {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(232,245,247,0.96) 100%);
    border-color: rgba(45,122,133,0.28);
    box-shadow: 0 18px 34px rgba(15,40,50,0.16), 0 0 0 10px rgba(45,122,133,0.08);
    animation: search-float-selected 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .search-float.is-active::after {
    opacity: 1;
    transform: scale(1);
  }

  .floating-actions .whatsapp-float {
    position: static;
    width: var(--floating-action-size);
    height: var(--floating-action-size);
    box-shadow: 0 18px 34px rgba(37,211,102,0.22);
  }

  .floating-actions .whatsapp-float svg {
    width: 40px;
    height: 40px;
  }

  .search-float:focus-visible,
  .whatsapp-float:focus-visible,
  .nav-search-trigger:focus-visible,
  .btn-nav:focus-visible,
  .nav-brand:focus-visible,
  .nav-links a:focus-visible,
  .nav-hamburger:focus-visible,
  .global-search-close:focus-visible {
    outline: 3px solid rgba(58,154,170,0.26);
    outline-offset: 3px;
  }

  @keyframes whatsapp-pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.22);
      transform: scale(1);
    }
    45% {
      box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
      transform: scale(1.015);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
      transform: scale(1);
    }
  }

  @keyframes whatsapp-icon-wiggle {
    0% { transform: rotate(0) scale(1); }
    15% { transform: rotate(-12deg) scale(1.15); }
    30% { transform: rotate(10deg) scale(1.15); }
    45% { transform: rotate(-8deg) scale(1.15); }
    60% { transform: rotate(5deg) scale(1.15); }
    75% { transform: rotate(-3deg) scale(1.15); }
    100% { transform: rotate(0) scale(1); }
  }

  @keyframes search-float-selected {
    0% {
      transform: translateY(0) scale(0.92);
      box-shadow: 0 8px 18px rgba(15,40,50,0.10);
    }
    65% {
      transform: translateY(-2px) scale(1.04);
      box-shadow: 0 20px 38px rgba(15,40,50,0.18), 0 0 0 14px rgba(45,122,133,0.06);
    }
    100% {
      transform: translateY(0) scale(1);
      box-shadow: 0 18px 34px rgba(15,40,50,0.16), 0 0 0 10px rgba(45,122,133,0.08);
    }
  }

  @media (max-width: 768px) {
    .floating-actions {
      --floating-action-size: 78px;
      right: calc(16px + env(safe-area-inset-right, 0px));
      bottom: calc(16px + env(safe-area-inset-bottom, 0px));
      gap: 10px;
    }
    .search-float {
      width: var(--floating-action-size);
      height: var(--floating-action-size);
      margin-right: 0;
    }
    .search-float svg {
      width: 28px;
      height: 28px;
    }
    .floating-actions .whatsapp-float {
      width: var(--floating-action-size);
      height: var(--floating-action-size);
    }
    .floating-actions .whatsapp-float svg {
      width: 34px;
      height: 34px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .hero-deco,
    .eye-orbit,
    .float-card-inner,
    .hero-kicker-dot,
    .whatsapp-float {
      animation: none;
    }

    .search-float,
    .btn-nav,
    .btn-primary,
    .btn-ghost,
    .float-card-inner,
    .nav-search-trigger,
    .nav-brand,
    .nav-links a,
    .home-nav .nav-middle {
      transition: none;
    }

    .floating-actions > * {
      transform: translate3d(0, 0, 0) scale(1) !important;
      animation: none !important;
    }

    /* Aurora — composição estática bonita, sem drift */
    body::before {
      --site-aurora-x: 55%;
      --site-aurora-y: 45%;
      --site-aurora-scroll: 0;
      transition: none;
    }
    .hero-home::before {
      --hero-aurora-x: 60%;
      --hero-aurora-y: 40%;
      --hero-aurora-depth: 0;
    }
  }


/* Review Link Styles */
a.testimonial-author {
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
a.testimonial-author:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
a.testimonial-author small {
  color: var(--teal-light);
  display: inline-block;
  margin-top: 4px;
  font-weight: 500;
}

/* ------------------------------------- */
/* ARTICLE SINGLE PAGE STYLES            */
/* ------------------------------------- */
.article-single {
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  background: var(--bg-1);
}

.article-hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: left;
}

.article-back-link {
  width: fit-content;
  margin-bottom: 26px;
}

.article-back-link-inline {
  gap: 8px;
  padding: 5px 13px;
  background: rgba(255,255,255,0.58);
  border-width: 1px;
  border-color: rgba(45,122,133,0.26);
  border-radius: var(--r-full);
  color: var(--teal-deep);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: normal;
  text-transform: uppercase;
  box-shadow: none;
  min-height: auto;
}

.article-back-link-inline svg {
  width: 12px;
  height: 12px;
}

.article-back-link svg {
  flex-shrink: 0;
}

.article-meta {
  font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-meta time {
  color: var(--teal-light);
}

.article-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
}

.article-featured-image {
  max-width: 1000px;
  margin: 0 auto 48px auto;
  padding: 0 24px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: block;
}

.exam-article .article-featured-image {
  max-width: 880px;
}

.exam-article .article-featured-image img {
  box-sizing: border-box;
  padding: clamp(16px, 2.2vw, 26px);
  border: 1px solid rgba(45,122,133,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(244,250,250,0.94) 100%);
  box-shadow: 0 16px 36px rgba(11,38,44,0.08);
}

.article-content-wrapper {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-content {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-light);
}

.article-content h2, .article-content h3 {
  font-family: var(--font-heading);
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.article-content h2 {
  font-size: 2.25rem;
}

.article-content h3 {
  font-size: 1.5rem;
}

.article-content p {
  margin-bottom: 24px;
}

.article-content ul, .article-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 12px;
}

.article-content strong {
  color: var(--ink);
  font-weight: 600;
}

.article-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

@media (max-width: 768px) {
  .article-single {
    padding-top: calc(var(--nav-height) + 24px);
  }
  .article-hero {
    padding: 24px;
  }
  .article-content {
    font-size: 1.05rem;
  }
}

mark, .mark-pastel {
  background: #fef08a;
  color: var(--ink);
  padding: 0px 4px;
  border-radius: 4px;
  font-weight: 500;
}

.info-card-text {
  background: var(--bg);
  border-left: 4px solid var(--teal);
  padding: 18px 24px;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: 32px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.info-card-text strong {
  display: block;
  color: var(--teal-deep) !important;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =========================================================
   ARTICLE HOOK CARD — card de destaque no topo do artigo
========================================================= */
.article-hook-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: linear-gradient(135deg, rgba(45,122,133,0.06), rgba(58,154,170,0.12));
  border: 1px solid rgba(45,122,133,0.16);
  border-radius: 20px;
  padding: 24px 28px;
  margin-bottom: 40px;
}

.article-hook-card .article-hook-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.article-hook-card p {
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0;
}

.article-hook-card p strong {
  color: var(--teal-deep);
}

/* =========================================================
   BTN PULSE — animação sutil no botão inline
========================================================= */
.btn-pulse {
  animation: btn-pulse-glow 2.5s ease-in-out infinite;
}

@keyframes btn-pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(45,122,133,0.25);
  }
  50% {
    box-shadow: 0 6px 28px rgba(45,122,133,0.45);
  }
}

/* =========================================================
   REFERENCES LIST — lista de referências científicas
========================================================= */
.references-list {
  list-style: none;
  counter-reset: ref-counter;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.references-list li {
  counter-increment: ref-counter;
  position: relative;
  padding-left: 36px;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--body);
}

.references-list li::before {
  content: counter(ref-counter);
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: var(--teal-ultra);
  color: var(--teal-deep);
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.references-list li em {
  font-style: italic;
}

.references-list li a {
  color: var(--teal);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.8rem;
}

.references-list li a:hover {
  color: var(--teal-deep);
  text-decoration: underline;
}

/* =========================================================
   NAV SEARCH TRIGGER BUTTON
========================================================= */
.nav-search-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(232,245,247,0.94) 100%);
  border: 1px solid rgba(45,122,133,0.14);
  border-radius: var(--r-full);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--teal-deep);
  cursor: pointer;
  transition: background 0.22s ease, border-color 0.22s ease, transform 0.24s var(--ease-premium), box-shadow 0.22s ease, color 0.22s ease;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 8px 18px rgba(15,40,50,0.08);
}

.nav-search-trigger:hover {
  background: rgba(255,255,255,0.98);
  border-color: rgba(45,122,133,0.28);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 14px 24px rgba(15,40,50,0.12);
}

.nav-search-trigger:active {
  transform: translate3d(0, 0, 0) scale(0.97);
}

.nav-search-trigger.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(232,245,247,0.98) 100%);
  border-color: rgba(45,122,133,0.3);
  box-shadow: 0 16px 28px rgba(15,40,50,0.14), 0 0 0 8px rgba(45,122,133,0.08);
}

.nav-search-trigger svg {
  flex-shrink: 0;
}

.nav-search-label {
  pointer-events: none;
}

/* =========================================================
   GLOBAL SEARCH MODAL
========================================================= */
.global-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: min(18vh, 160px);
  background: rgba(13, 31, 34, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}

.global-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.global-search-open {
  overflow: hidden;
}

.global-search-modal {
  position: relative;
  width: 92%;
  max-width: 640px;
  transform: translateY(-20px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.28s ease;
}

.global-search-overlay.active .global-search-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.global-search-close {
  position: absolute;
  top: -48px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.global-search-close:hover {
  background: rgba(255,255,255,0.22);
  color: #fff;
  transform: scale(1.08);
}

.global-search-box {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(45, 122, 133, 0.18);
  border-radius: 22px;
  box-shadow:
    0 20px 60px rgba(13, 31, 34, 0.22),
    0 4px 16px rgba(13, 31, 34, 0.10);
  overflow: hidden;
}

.global-search-input-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(45, 122, 133, 0.08);
}

.global-search-icon {
  flex-shrink: 0;
  color: var(--teal-deep);
}

.global-search-input-row input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 1.08rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.global-search-input-row input::placeholder {
  color: var(--subtle);
  font-weight: 400;
}

.global-search-kbd {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}

/* ── Autocomplete dropdown inside modal ── */
.global-autocomplete-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
  opacity: 0;
}

.global-autocomplete-wrap.open {
  max-height: 420px;
  opacity: 1;
}

.global-autocomplete-list {
  overflow-y: auto;
  max-height: 380px;
  padding: 6px;
}

.global-autocomplete-list::-webkit-scrollbar {
  width: 6px;
}

.global-autocomplete-list::-webkit-scrollbar-track {
  background: transparent;
}

.global-autocomplete-list::-webkit-scrollbar-thumb {
  background: rgba(45, 122, 133, 0.16);
  border-radius: 3px;
}

/* ── Autocomplete items with thumbnail ── */
.global-ac-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 14px;
  transition: background 0.15s ease, transform 0.1s ease;
  border-bottom: 1px solid rgba(45, 122, 133, 0.04);
  text-decoration: none;
}

.global-ac-item:last-child {
  border-bottom: none;
}

.global-ac-item:hover,
.global-ac-item.ac-active {
  background: var(--teal-deep);
  transform: scale(1.005);
  box-shadow: 0 2px 12px rgba(31, 122, 134, 0.20);
}

.global-ac-item:active {
  transform: scale(0.98);
}

/* Thumbnail */
.global-ac-thumb {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(45, 122, 133, 0.10);
  background: var(--teal-ultra);
}

.global-ac-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.global-ac-item:hover .global-ac-thumb,
.global-ac-item.ac-active .global-ac-thumb {
  border-color: rgba(255, 255, 255, 0.25);
}

/* Text content */
.global-ac-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.global-ac-title {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-ac-sub {
  font-size: 0.76rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.global-ac-item:hover .global-ac-title,
.global-ac-item.ac-active .global-ac-title {
  color: #fff;
}

.global-ac-item:hover .global-ac-sub,
.global-ac-item.ac-active .global-ac-sub {
  color: rgba(255, 255, 255, 0.72);
}

/* Mark highlight */
.global-ac-item mark {
  background: rgba(45, 122, 133, 0.10);
  color: var(--teal-deep);
  font-weight: 700;
  border-radius: 3px;
  padding: 0 1px;
  display: inline;
  text-decoration: none;
  line-height: inherit;
  letter-spacing: inherit;
}

.global-ac-item:hover mark,
.global-ac-item.ac-active mark {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

/* Empty state */
.global-ac-empty {
  padding: 24px 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.global-ac-empty strong {
  color: var(--teal-deep);
  font-weight: 600;
}

/* Focus ring for keyboard navigation */
.global-ac-item:focus-visible {
  outline: 2px solid var(--teal-mid);
  outline-offset: -2px;
}

/* ── Category label separator ── */
.global-ac-category {
  padding: 10px 14px 4px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--subtle);
}

/* ── Mobile: hide label on nav trigger ── */
@media (max-width: 600px) {
  .nav-search-label {
    display: none;
  }

  .nav-search-trigger {
    padding: 8px;
    border-radius: var(--r-full);
  }

  .global-search-overlay {
    padding-top: 80px;
  }

  .global-search-modal {
    width: 95%;
  }

  .global-search-close {
    top: -44px;
  }

  .global-ac-thumb {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .global-ac-item {
    padding: 9px 10px;
    gap: 10px;
    border-radius: 12px;
  }

  .global-ac-title {
    font-size: 0.88rem;
  }

  .global-ac-sub {
    font-size: 0.73rem;
  }
}

/* =========================================================
   WHATSAPP DESKTOP MODAL (Injetado via JS)
========================================================= */
.wa-desktop-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 31, 34, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s;
}

.wa-desktop-overlay.active {
  opacity: 1;
  visibility: visible;
}

body.wa-desktop-open {
  overflow: hidden;
}

.wa-desktop-modal {
  position: relative;
  width: 92%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(45, 122, 133, 0.18);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(13, 31, 34, 0.22), 0 4px 16px rgba(13, 31, 34, 0.10);
  padding: 40px 32px 32px;
  text-align: center;
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.28s ease;
}

.wa-desktop-overlay.active .wa-desktop-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.wa-desktop-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--r-full);
  background: rgba(45, 122, 133, 0.05);
  border: none;
  color: var(--ink-light);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.wa-desktop-close:hover {
  background: rgba(45, 122, 133, 0.12);
  color: var(--ink);
  transform: scale(1.08);
}

.wa-qr-container {
  width: 220px;
  height: 220px;
  margin: 0 auto 24px;
  padding: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(45, 122, 133, 0.08);
  border: 1px solid rgba(45, 122, 133, 0.1);
}

.wa-qr-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.wa-desktop-modal h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.wa-desktop-modal p {
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin-bottom: 28px;
}

.wa-desktop-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-desktop-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 20px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.wa-desktop-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.wa-desktop-open-web {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  transition: color 0.15s;
}

.wa-desktop-open-web:hover {
  color: var(--teal-deep);
  text-decoration: underline;
}

/* =========================================================
   COOKIE CONSENT + TRACKING PREFERENCES
========================================================= */
.cookie-consent-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 11000;
  width: min(420px, calc(100vw - 32px));
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.cookie-consent-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(45, 122, 133, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 54px rgba(13, 31, 34, 0.18), 0 4px 16px rgba(13, 31, 34, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cookie-consent-copy {
  display: grid;
  gap: 8px;
}

.cookie-consent-copy strong {
  font-size: 1rem;
  color: var(--ink);
}

.cookie-consent-copy p {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--body);
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1 1 0;
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  background: linear-gradient(135deg, var(--teal-deep), var(--teal));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(45, 122, 133, 0.22);
}

.cookie-btn-secondary {
  background: rgba(45, 122, 133, 0.04);
  color: var(--teal-deep);
  border-color: rgba(45, 122, 133, 0.16);
}

.cookie-consent-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-deep);
  text-decoration: none;
}

.cookie-consent-link:hover {
  text-decoration: underline;
}



@media (max-width: 720px) {
  .cookie-consent-banner {
    right: 16px;
    bottom: 16px;
    width: calc(100vw - 32px);
  }

  .cookie-consent-card {
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-consent-actions {
    flex-direction: column;
  }


}
