:root{
    --navy: #0F1C61;
    --navy-deep: #0A1444;
    --blue: #2F6FED;
    --blue-light: #6FA3FF;
    --red: #E63946;
    --sky: #F3F7FF;
    --sky-2: #E8F0FF;
    --ink: #101828;
    --ink-soft: #4A5266;
    --white: #FFFFFF;
    --line: #DFE6F5;
    --shadow: 0 20px 50px -20px rgba(15,28,97,0.25);
    --radius: 18px;
  }

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

  html{scroll-behavior:smooth;}

  body{
    font-family:'Inter', sans-serif;
    color:var(--ink);
    background:var(--white);
    line-height:1.55;
    overflow-x:hidden;
  }

  h1,h2,h3,h4{
    font-family:'Manrope', sans-serif;
    color:var(--navy-deep);
    line-height:1.12;
    letter-spacing:-0.01em;
  }

  a{color:inherit;text-decoration:none;}
  ul{list-style:none;}
  img{max-width:100%;display:block;}

  .container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }

  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:'Manrope', sans-serif;
    font-weight:700;
    font-size:12.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--blue);
  }
  .eyebrow::before{
    content:"";
    width:22px;height:2px;
    background:var(--red);
    display:inline-block;
    border-radius:2px;
  }

  :focus-visible{
    outline:3px solid var(--blue);
    outline-offset:3px;
  }

  /* ---------- HEADER ---------- */
  header{
    position:sticky;
    top:0;
    z-index:100;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(14px) saturate(160%);
    border-bottom:1px solid var(--line);
  }
  .nav-wrap{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 28px;
    max-width:1180px;
    margin:0 auto;
  }
  .brand{
    display:flex;
    align-items:center;
    gap:10px;
  }
  .brand-mark{width:38px;height:38px;flex-shrink:0;}
  .brand-text{
    font-family:'Manrope', sans-serif;
    font-weight:800;
    font-size:20px;
    color:var(--navy-deep);
    line-height:1;
  }
  .brand-text span{
    display:block;
    font-family:'Inter', sans-serif;
    font-weight:600;
    font-size:10.5px;
    color:var(--ink-soft);
    letter-spacing:0.03em;
    margin-top:3px;
  }
  nav.primary-nav{
    display:flex;
    align-items:center;
    gap:34px;
  }
  nav.primary-nav a{
    font-weight:600;
    font-size:14.5px;
    color:var(--ink);
    position:relative;
    padding:4px 0;
  }
  nav.primary-nav a::after{
    content:"";
    position:absolute;
    left:0;bottom:-2px;
    width:0%;
    height:2px;
    background:var(--red);
    transition:width .25s ease;
  }
  nav.primary-nav a:hover::after{width:100%;}

  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-family:'Manrope', sans-serif;
    font-weight:700;
    font-size:14px;
    padding:12px 22px;
    border-radius:100px;
    cursor:pointer;
    border:none;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--red);
    color:var(--white);
    box-shadow:0 12px 24px -10px rgba(230,57,70,0.55);
  }
  .btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 28px -8px rgba(230,57,70,0.6);}
  .btn-outline{
    background:transparent;
    border:1.5px solid var(--navy);
    color:var(--navy);
  }
  .btn-outline:hover{background:var(--navy);color:var(--white);}
  .btn-light{
    background:var(--white);
    color:var(--navy-deep);
  }
  .btn-light:hover{transform:translateY(-2px);}

  .menu-toggle{
    display:none;
    flex-direction:column;
    gap:5px;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
  }
  .menu-toggle span{
    width:24px;height:2.5px;background:var(--navy-deep);border-radius:2px;
    transition:all .25s ease;
  }

  /* ---------- HERO ---------- */
  .hero{
    position:relative;
    background:linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #17318C 100%);
    overflow:hidden;
    padding:88px 0 0;
  }
  .hero::before{
    content:"";
    position:absolute;
    top:-140px; right:-160px;
    width:520px;height:520px;
    background:radial-gradient(circle, rgba(111,163,255,0.35) 0%, rgba(111,163,255,0) 70%);
    pointer-events:none;
  }
  .hero-grid{
    display:grid;
    grid-template-columns:1.05fr 0.95fr;
    gap:40px;
    align-items:center;
    position:relative;
    z-index:2;
  }
  .hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
    color:#CFE0FF;
    font-family:'Manrope',sans-serif;
    font-weight:700;
    font-size:13px;
    padding:8px 16px;
    border-radius:100px;
    margin-bottom:24px;
  }
  .hero-badge b{color:var(--white);}
  .hero h1{
    color:var(--white);
    font-size:clamp(34px, 4.4vw, 54px);
    font-weight:800;
    max-width:620px;
  }
  .hero h1 em{
    font-style:normal;
    color:var(--blue-light);
  }
  .hero p.lead{
    color:#C7D3F0;
    font-size:17.5px;
    max-width:520px;
    margin:22px 0 34px;
  }
  .hero-ctas{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-bottom:40px;
  }
  .hero-stats{
    display:flex;
    gap:36px;
    flex-wrap:wrap;
    padding-top:28px;
    border-top:1px solid rgba(255,255,255,0.14);
  }
  .hero-stats div b{
    display:block;
    font-family:'Manrope',sans-serif;
    font-size:26px;
    font-weight:800;
    color:var(--white);
  }
  .hero-stats div span{
    font-size:12.5px;
    color:#A9BAE3;
    font-weight:500;
  }

  .hero-card{
    position:relative;
    background:var(--white);
    border-radius:22px;
    padding:30px;
    box-shadow:0 30px 70px -20px rgba(0,0,0,0.5);
    z-index:2;
  }
  .hero-card .status{
    display:flex;
    align-items:center;
    gap:10px;
    background:#FDEAEA;
    color:var(--red);
    font-family:'Manrope',sans-serif;
    font-weight:800;
    font-size:13px;
    padding:9px 14px;
    border-radius:10px;
    margin-bottom:20px;
    letter-spacing:0.03em;
  }
  .status-dot{
    width:8px;height:8px;border-radius:50%;
    background:var(--red);
    box-shadow:0 0 0 0 rgba(230,57,70,.6);
    animation:pulse-dot 1.8s infinite;
  }
  @keyframes pulse-dot{
    0%{box-shadow:0 0 0 0 rgba(230,57,70,.55);}
    70%{box-shadow:0 0 0 10px rgba(230,57,70,0);}
    100%{box-shadow:0 0 0 0 rgba(230,57,70,0);}
  }
  .hero-card h3{font-size:17px;margin-bottom:14px;}
  .info-row{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:12px 0;
    border-bottom:1px dashed var(--line);
  }
  .info-row:last-of-type{border-bottom:none;}
  .info-row .ico{
    width:34px;height:34px;
    border-radius:10px;
    background:var(--sky-2);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .info-row .ico svg{width:17px;height:17px;stroke:var(--blue);}
  .info-row strong{display:block;font-size:14px;font-family:'Manrope',sans-serif;color:var(--navy-deep);}
  .info-row span{font-size:13px;color:var(--ink-soft);}
  .hero-card .btn-primary{width:100%;justify-content:center;margin-top:18px;}

  /* pulse line inside hero */
  .hero-pulse{
    position:absolute;
    left:0;bottom:0;
    width:100%;
    height:64px;
    z-index:1;
    opacity:0.5;
  }

  /* ---------- STRIP ---------- */
  .strip{
    background:var(--sky);
    border-bottom:1px solid var(--line);
    padding:16px 0;
  }
  .strip .container{
    display:flex;
    gap:34px;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
  }
  .strip-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:13.5px;
    color:var(--ink-soft);
    font-weight:600;
  }
  .strip-item svg{width:16px;height:16px;stroke:var(--blue);flex-shrink:0;}
  .strip-item b{color:var(--navy-deep);font-weight:700;}

  /* ---------- SECTIONS COMMON ---------- */
  section{padding:96px 0;}
  .section-head{
    max-width:640px;
    margin-bottom:52px;
  }
  .section-head h2{
    font-size:clamp(28px, 3.2vw, 38px);
    margin-top:14px;
  }
  .section-head p{
    color:var(--ink-soft);
    font-size:16px;
    margin-top:14px;
  }
  .section-alt{background:var(--sky);}

  /* ---------- ABOUT ---------- */
  .about-grid{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:64px;
    align-items:start;
  }
  .trust-stats{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:16px;
    margin-bottom:56px;
  }
  .trust-stat{
    display:flex;
    align-items:center;
    gap:14px;
    background:var(--navy-deep);
    border-radius:16px;
    padding:20px 20px;
  }
  .trust-stat .ico{
    width:44px;height:44px;
    border-radius:12px;
    background:rgba(255,255,255,0.1);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .trust-stat .ico svg{width:21px;height:21px;stroke:var(--blue-light);}
  .trust-stat b{
    display:block;
    font-family:'Manrope',sans-serif;
    font-size:22px;
    font-weight:800;
    color:var(--white);
    line-height:1.1;
  }
  .trust-stat span{font-size:12.5px;color:#A9BAE3;font-weight:500;}
  @media (max-width:760px){
    .trust-stats{grid-template-columns:1fr;}
  }
  .about-copy p{color:var(--ink-soft);font-size:15.5px;margin-bottom:16px;}
  .about-copy p strong{color:var(--navy-deep);}

  .diff-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
  }
  .diff-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:16px;
    padding:22px;
    transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  }
  .diff-card:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
    border-color:transparent;
  }
  .diff-card .ico{
    width:42px;height:42px;
    border-radius:12px;
    background:var(--sky-2);
    display:flex;align-items:center;justify-content:center;
    margin-bottom:14px;
  }
  .diff-card .ico svg{width:20px;height:20px;stroke:var(--blue);}
  .diff-card h4{font-size:15.5px;margin-bottom:6px;}
  .diff-card p{font-size:13.5px;color:var(--ink-soft);}

  /* ---------- EXAMS ---------- */
  .exam-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:24px;
  }
  .exam-card{
    --accent: var(--blue);
    --accent-soft: var(--sky-2);
    --accent-shadow: rgba(47,111,237,0.35);
    background:var(--white);
    border:1px solid var(--line);
    border-top:4px solid var(--accent);
    border-radius:var(--radius);
    padding:32px 26px;
    position:relative;
    overflow:hidden;
    isolation:isolate;
    cursor:default;
    transition:transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease, border-color .4s ease;
  }
  .exam-card::before{
    content:"";
    position:absolute;
    inset:0;
    background:var(--accent);
    opacity:0;
    transform:scale(1.15);
    transition:opacity .4s ease, transform .5s ease;
    z-index:-1;
  }
  .exam-card:hover{
    transform:translateY(-8px);
    box-shadow:0 26px 50px -18px var(--accent-shadow);
    border-top-color:var(--accent);
  }
  .exam-card:hover::before{opacity:1;transform:scale(1);}
  .exam-card:hover h3,
  .exam-card:hover p,
  .exam-card:hover .exam-price,
  .exam-card:hover .exam-price .val{color:var(--white);}
  .exam-card:hover .exam-price{border-top-color:rgba(255,255,255,0.3);}
  .exam-card:hover .exam-price .cur{color:rgba(255,255,255,0.85);}
  .exam-card:hover .tag{background:rgba(255,255,255,0.2);color:var(--white);}

  .exam-card .tag{
    display:inline-block;
    font-family:'Manrope',sans-serif;
    font-weight:700;
    font-size:11px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color:var(--accent);
    background:var(--accent-soft);
    padding:5px 11px;
    border-radius:100px;
    margin-bottom:18px;
    transition:background .4s ease, color .4s ease;
  }
  .exam-card h3{font-size:19px;margin-bottom:8px;transition:color .4s ease;}
  .exam-card p{font-size:13.5px;color:var(--ink-soft);margin-bottom:22px;min-height:40px;transition:color .4s ease;}
  .exam-price{
    display:flex;
    align-items:baseline;
    gap:6px;
    font-family:'Manrope',sans-serif;
    color:var(--navy-deep);
    border-top:1px dashed var(--line);
    padding-top:16px;
    transition:color .4s ease, border-color .4s ease;
  }
  .exam-price .cur{font-size:13px;font-weight:700;color:var(--accent);transition:color .4s ease;}
  .exam-price .val{font-size:26px;font-weight:800;}

  .exam-note{
    margin-top:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    background:var(--sky-2);
    border-radius:16px;
    padding:22px 28px;
  }
  .exam-note p{font-size:14.5px;color:var(--ink-soft);max-width:520px;}
  .exam-note p strong{color:var(--navy-deep);}
  .exam-note .btn{flex-shrink:0;}

  @media (max-width:640px){
    .exam-note{
      flex-direction:column;
      align-items:stretch;
      text-align:left;
      padding:22px;
      gap:16px;
    }
    .exam-note p{max-width:100%;}
    .exam-note .btn{width:100%;justify-content:center;}
  }

  /* ---------- TEAM ---------- */
  .team-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:28px;
  }
  .team-card{
    background:var(--white);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:34px;
    position:relative;
    overflow:hidden;
  }
  .team-card::before{
    content:"";
    position:absolute;
    top:-40px;right:-40px;
    width:140px;height:140px;
    border-radius:50%;
    background:var(--sky-2);
    z-index:0;
  }
  .team-top{
    display:flex;
    align-items:center;
    gap:16px;
    position:relative;
    z-index:1;
    margin-bottom:20px;
  }
  .avatar{
    width:64px;height:64px;
    border-radius:16px;
    background:var(--navy-deep);
    display:flex;align-items:center;justify-content:center;
    font-family:'Manrope',sans-serif;
    font-weight:800;
    color:var(--white);
    font-size:20px;
    flex-shrink:0;
  }
  .team-card:nth-of-type(2) .avatar{background:var(--red);}
  .team-name{font-size:18.5px;font-family:'Manrope',sans-serif;font-weight:800;color:var(--navy-deep);}
  .team-role{font-size:13px;color:var(--blue);font-weight:600;margin-top:3px;}
  .team-bio{font-size:14.5px;color:var(--ink-soft);position:relative;z-index:1;margin-bottom:18px;}
  .team-tags{display:flex;flex-wrap:wrap;gap:8px;position:relative;z-index:1;}
  .team-tags span{
    font-size:12px;
    font-weight:600;
    color:var(--navy-deep);
    background:var(--sky-2);
    padding:6px 12px;
    border-radius:100px;
  }

  /* ---------- PULSE DIVIDER ---------- */
  .pulse-divider{
    background:var(--navy-deep);
    padding:64px 0;
    overflow:hidden;
  }
  .pulse-divider svg{width:100%;height:auto;display:block;}
  .pulse-caption{
    text-align:center;
    color:#8FA3D9;
    font-family:'Manrope',sans-serif;
    font-weight:700;
    font-size:12.5px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    margin-top:20px;
  }
  .pulse-caption b{color:var(--white);}

  /* ---------- LOCATION ---------- */
  .loc-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
    align-items:stretch;
  }
  .loc-info{
    display:flex;
    flex-direction:column;
    gap:22px;
  }
  .loc-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:16px;
    padding:20px;
  }
  .loc-item .ico{
    width:42px;height:42px;
    border-radius:12px;
    background:var(--sky-2);
    display:flex;align-items:center;justify-content:center;
    flex-shrink:0;
  }
  .loc-item .ico svg{width:20px;height:20px;stroke:var(--blue);}
  .loc-item h4{font-size:15.5px;margin-bottom:4px;}
  .loc-item p{font-size:14px;color:var(--ink-soft);}
  .loc-map{
    border-radius:var(--radius);
    overflow:hidden;
    border:1px solid var(--line);
    min-height:320px;
    box-shadow:var(--shadow);
  }
  .loc-map iframe{width:100%;height:100%;min-height:320px;border:0;}

  /* ---------- CTA ---------- */
  .cta{
    background:linear-gradient(120deg, var(--navy-deep), var(--navy) 60%, #1E3496);
    position:relative;
    overflow:hidden;
    text-align:center;
    padding:90px 0;
  }
  .cta::after{
    content:"";
    position:absolute;
    bottom:-120px;left:50%;
    transform:translateX(-50%);
    width:560px;height:280px;
    background:radial-gradient(ellipse, rgba(230,57,70,0.28) 0%, rgba(230,57,70,0) 70%);
  }
  .cta h2{color:var(--white);font-size:clamp(26px,3.4vw,38px);position:relative;z-index:1;max-width:620px;margin:0 auto;}
  .cta p{color:#C7D3F0;font-size:16px;max-width:480px;margin:16px auto 34px;position:relative;z-index:1;}
  .cta-ctas{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;position:relative;z-index:1;}

  /* ---------- FOOTER ---------- */
  footer{background:var(--navy-deep);color:#B9C4E8;padding:60px 0 26px;}
  .footer-grid{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr 1fr;
    gap:32px;
    padding-bottom:40px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:14px;}
  .footer-brand .brand-text{color:var(--white);}
  .footer-brand .brand-text span{color:#8FA3D9;}
  footer p.desc{font-size:13.5px;max-width:280px;color:#93A2CC;}
  footer h5{
    font-family:'Manrope',sans-serif;
    color:var(--white);
    font-size:13.5px;
    letter-spacing:0.05em;
    text-transform:uppercase;
    margin-bottom:16px;
  }
  footer ul li{margin-bottom:10px;font-size:14px;}
  footer ul li a:hover{color:var(--white);}
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    padding-top:24px;
    font-size:12.5px;
    color:#7387BD;
  }

  /* whatsapp floating button */
  .wa-float{
    position:fixed;
    bottom:26px;right:26px;
    width:58px;height:58px;
    border-radius:50%;
    background:#25D366;
    display:flex;align-items:center;justify-content:center;
    box-shadow:0 14px 30px -8px rgba(37,211,102,0.6);
    z-index:200;
    transition:transform .2s ease;
  }
  .wa-float:hover{transform:scale(1.08);}
  .wa-float svg{width:28px;height:28px;fill:var(--white);}

  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    .status-dot{animation:none;}
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width:980px){
    nav.primary-nav{
      position:fixed;
      top:70px;left:0;right:0;
      background:var(--white);
      flex-direction:column;
      align-items:flex-start;
      gap:0;
      padding:10px 28px 20px;
      border-bottom:1px solid var(--line);
      transform:translateY(-130%);
      opacity:0;
      transition:transform .3s ease, opacity .3s ease;
    }
    nav.primary-nav.open{transform:translateY(0);opacity:1;}
    nav.primary-nav a{padding:12px 0;width:100%;border-bottom:1px solid var(--line);}
    .nav-cta{display:none;}
    .menu-toggle{display:flex;}

    .hero-grid{grid-template-columns:1fr;}
    .hero-card{max-width:460px;}
    .about-grid{grid-template-columns:1fr;}
    .diff-grid{grid-template-columns:1fr 1fr;}
    .exam-grid{grid-template-columns:1fr 1fr;}
    .team-grid{grid-template-columns:1fr;}
    .loc-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr 1fr;}
  }
  @media (max-width:620px){
    section{padding:70px 0;}
    .diff-grid{grid-template-columns:1fr;}
    .exam-grid{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr;}
    .hero{padding-top:76px;}
    .hero-stats{gap:24px;}
  }

  /* ============================================================
     COMPONENTES ADAPTADOS — inspirados na estrutura do site do
     Sabin Diagnóstico e Saúde (barra utilitária, acesso rápido a
     facilidades, canais de atendimento, selos de compromisso e
     aviso de cookies). Conteúdo, textos e ícones são originais da
     Saúdeplan — nenhuma marca, imagem ou texto do Sabin foi usado.
     ============================================================ */

  /* ---------- BARRA UTILITÁRIA ---------- */
  .util-bar{
    background:var(--navy-deep);
    color:#C7D3F0;
    font-size:12.5px;
  }
  .util-bar-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:8px 28px;
    flex-wrap:wrap;
  }
  .util-phone{
    display:flex;align-items:center;gap:7px;
    font-weight:600;color:#E7ECFA;
  }
  .util-phone svg{width:13px;height:13px;stroke:var(--blue-light);}
  .util-phone:hover{color:#fff;}
  .util-right{display:flex;align-items:center;gap:20px;}

  .a11y-widget{display:flex;align-items:center;gap:6px;}
  .a11y-label{color:#8FA3D9;font-weight:600;margin-right:2px;}
  .a11y-widget button{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.14);
    color:#E7ECFA;
    width:26px;height:26px;
    border-radius:6px;
    font-size:11px;font-weight:700;
    display:flex;align-items:center;justify-content:center;
  }
  .a11y-widget button svg{width:13px;height:13px;stroke:#E7ECFA;fill:#E7ECFA;}
  .a11y-widget button:hover{background:rgba(255,255,255,0.18);}

  .util-social{display:flex;align-items:center;gap:8px;}
  .util-social a{
    width:26px;height:26px;border-radius:7px;
    background:rgba(255,255,255,0.08);
    display:flex;align-items:center;justify-content:center;
  }
  .util-social a svg{width:13px;height:13px;stroke:#E7ECFA;}
  .util-social a:hover{background:rgba(255,255,255,0.18);}

  @media (max-width:760px){
    .a11y-label{display:none;}
    .util-social{display:none;}
  }
  @media (max-width:520px){
    .util-phone span{display:none;}
    .util-bar-inner{justify-content:center;}
  }

  /* ---------- NAV DROPDOWN ---------- */
  .nav-dropdown{position:relative;}
  .nav-dropdown-btn{
    display:flex;align-items:center;gap:6px;
    background:none;border:none;
    font-family:'Inter',sans-serif;
    font-weight:600;font-size:14.5px;
    color:var(--ink);
    padding:4px 0;
    cursor:pointer;
  }
  .nav-dropdown-btn svg{width:13px;height:13px;stroke:currentColor;transition:transform .2s ease;}
  .nav-dropdown:hover .nav-dropdown-btn svg{transform:rotate(180deg);}
  .nav-dropdown-panel{
    position:absolute;
    top:calc(100% + 16px);
    left:50%;
    transform:translateX(-50%);
    background:var(--white);
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:var(--shadow);
    padding:10px;
    min-width:220px;
    display:none;
    flex-direction:column;
    gap:2px;
    z-index:120;
  }
  .nav-dropdown:hover .nav-dropdown-panel,
  .nav-dropdown-panel.open{display:flex;}
  .nav-dropdown-panel a{
    padding:10px 12px;
    border-radius:9px;
    font-size:13.5px;
    font-weight:600;
    color:var(--ink);
  }
  .nav-dropdown-panel a:hover{background:var(--sky);color:var(--blue);}
  .nav-dropdown-panel a::after{display:none;}

  @media (max-width:980px){
    .nav-dropdown-panel{
      position:static;transform:none;
      box-shadow:none;border:none;
      padding:0 0 0 14px;
      display:none;
    }
    .nav-dropdown-panel.open{display:flex;}
    .nav-dropdown-btn{width:100%;justify-content:space-between;padding:12px 0;border-bottom:1px solid var(--line);}
  }

  /* ---------- FACILIDADES MAIS BUSCADAS ---------- */
  .quick-access{padding:64px 0;background:var(--white);}
  .qa-head{text-align:center;max-width:520px;margin:0 auto 34px;}
  .qa-head h2{font-size:24px;}
  .qa-head p{color:var(--ink-soft);font-size:14.5px;margin-top:8px;}
  .qa-links{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:14px;
  }
  .qa-link{
    display:flex;flex-direction:column;align-items:center;gap:12px;
    text-align:center;
    background:var(--sky);
    border:1px solid var(--line);
    border-radius:16px;
    padding:22px 12px;
    transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
  }
  .qa-link:hover{
    transform:translateY(-4px);
    background:var(--navy-deep);
    box-shadow:var(--shadow);
  }
  .qa-link .ico{
    width:44px;height:44px;border-radius:12px;
    background:var(--white);
    display:flex;align-items:center;justify-content:center;
    transition:background .2s ease;
  }
  .qa-link .ico svg{width:20px;height:20px;stroke:var(--blue);}
  .qa-link span{font-size:12.5px;font-weight:700;color:var(--navy-deep);transition:color .2s ease;}
  .qa-link:hover span{color:#fff;}
  .qa-link:hover .ico{background:rgba(255,255,255,0.12);}
  .qa-link:hover .ico svg{stroke:var(--blue-light);}

  @media (max-width:980px){.qa-links{grid-template-columns:repeat(3, 1fr);}}
  @media (max-width:520px){.qa-links{grid-template-columns:1fr 1fr;}}

  /* ---------- CANAIS DE ATENDIMENTO ---------- */
  .channels{padding:96px 0;background:var(--white);}
  .channels-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:22px;
  }
  .channel-card{
    background:var(--sky);
    border:1px solid var(--line);
    border-radius:var(--radius);
    padding:30px 26px;
    text-align:left;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .channel-card:hover{transform:translateY(-6px);box-shadow:var(--shadow);}
  .channel-ico{
    width:46px;height:46px;border-radius:13px;
    display:flex;align-items:center;justify-content:center;
    margin-bottom:16px;
  }
  .channel-ico svg{width:21px;height:21px;stroke:#fff;}
  .channel-ico.wa{background:#25D366;}
  .channel-ico.tel{background:var(--blue);}
  .channel-ico.form{background:var(--red);}
  .channel-card h4{font-size:17px;margin-bottom:8px;}
  .channel-card p{font-size:13.5px;color:var(--ink-soft);margin-bottom:14px;min-height:56px;}
  .channel-hours{
    display:block;
    font-size:12px;font-weight:700;
    color:var(--navy-deep);
    background:var(--sky-2);
    padding:6px 12px;border-radius:100px;
    margin-bottom:18px;
  }
  .channel-card .btn{width:100%;justify-content:center;}

  @media (max-width:900px){.channels-grid{grid-template-columns:1fr;}}

  /* ---------- COMPROMISSOS ---------- */
  .commitments-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
  }
  .commitment-item{
    display:flex;flex-direction:column;align-items:center;gap:12px;
    text-align:center;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:16px;
    padding:26px 16px;
  }
  .commitment-item svg{width:26px;height:26px;stroke:var(--blue);}
  .commitment-item span{font-size:13px;font-weight:700;color:var(--navy-deep);}

  @media (max-width:900px){.commitments-grid{grid-template-columns:1fr 1fr;}}
  @media (max-width:520px){.commitments-grid{grid-template-columns:1fr;}}

  /* ---------- COOKIE BANNER (LGPD) ---------- */
  .cookie-banner{
    position:fixed;
    left:20px;right:20px;bottom:20px;
    max-width:920px;
    margin:0 auto;
    background:var(--navy-deep);
    color:#E7ECFA;
    border-radius:16px;
    padding:18px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
    box-shadow:0 24px 60px -20px rgba(0,0,0,0.5);
    z-index:300;
    transform:translateY(140%);
    opacity:0;
    transition:transform .4s ease, opacity .4s ease;
  }
  .cookie-banner.visible{transform:translateY(0);opacity:1;}
  .cookie-text{font-size:13px;color:#C7D3F0;max-width:560px;}
  .cookie-text a{color:var(--blue-light);font-weight:600;}
  .cookie-actions{display:flex;gap:10px;flex-shrink:0;}
  .cookie-actions .btn{padding:10px 18px;font-size:13px;}

  @media (max-width:620px){
    .cookie-banner{left:12px;right:12px;bottom:12px;flex-direction:column;align-items:stretch;text-align:center;}
    .cookie-actions{justify-content:center;}
  }

  /* ---------- ALTO CONTRASTE (acessibilidade) ---------- */
  body.high-contrast{
    background:#000 !important;
    color:#FFF200 !important;
  }
  body.high-contrast .hero,
  body.high-contrast .cta,
  body.high-contrast footer,
  body.high-contrast .pulse-divider,
  body.high-contrast .util-bar{background:#000 !important;}
  body.high-contrast .exam-card,
  body.high-contrast .diff-card,
  body.high-contrast .team-card,
  body.high-contrast .channel-card,
  body.high-contrast .commitment-item,
  body.high-contrast .qa-link,
  body.high-contrast .hero-card,
  body.high-contrast .kpi-card{
    background:#000 !important;
    border-color:#FFF200 !important;
  }
  body.high-contrast h1,
  body.high-contrast h2,
  body.high-contrast h3,
  body.high-contrast h4,
  body.high-contrast p,
  body.high-contrast span,
  body.high-contrast a,
  body.high-contrast li{color:#FFF200 !important;}
  body.high-contrast .btn-primary{background:#FFF200 !important;color:#000 !important;}

