  :root {
    --navy: #1e2d4e;
    --gold: #c9a84c;
    --gold-light: #e8c87a;
    --gold-pale: #f5e9c8;
    --cream: #faf8f3;
    --dark: #12192a;
    --text: #2e2e2e;
    --muted: #6b7280;
    --white: #ffffff;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── LANGUAGE SWITCHER ── */
  #lang-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--dark);
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 6px 32px;
    gap: 8px;
    font-size: 12px;
    letter-spacing: .08em;
  }
  #lang-bar span { color: var(--gold); font-weight: 500; }
  .lang-btn {
    background: none;
    border: 1px solid rgba(201,168,76,.4);
    color: var(--gold-light);
    padding: 3px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: .06em;
    transition: .2s;
    font-family: 'Outfit', sans-serif;
  }
  .lang-btn:hover, .lang-btn.active { background: var(--gold); color: var(--dark); }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 32px; left: 0; right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 72px;
    background: rgba(18,25,42,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201,168,76,.15);
    transition: top .3s;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 12px;
    text-decoration: none;
  }
  .nav-logo-icon {
    width: 44px; height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600; color: var(--dark);
  }
  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: var(--gold-light);
    line-height: 1;
  }
  .nav-logo-sub {
    font-size: 9px; color: rgba(201,168,76,.6);
    letter-spacing: .12em; text-transform: uppercase;
    font-family: 'Outfit', sans-serif;
  }
  .nav-links {
    display: flex; gap: 32px; list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: .05em;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--gold-light); }
  .nav-cta {
    background: var(--gold);
    color: var(--dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: .05em;
    transition: .2s;
    white-space: nowrap;
  }
  .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 60%, #2a3f6b 100%);
    display: flex; align-items: center;
    padding-top: 104px;
    position: relative;
    overflow: hidden;
  }
  #hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,.08) 0%, transparent 70%);
  }
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    width: 100%; max-width: 1300px;
    margin: 0 auto;
    padding: 60px 48px;
    align-items: center;
  }
  .hero-left { padding-right: 60px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(201,168,76,.12);
    border: 1px solid rgba(201,168,76,.3);
    color: var(--gold);
    padding: 6px 16px; border-radius: 30px;
    font-size: 11px; letter-spacing: .12em;
    text-transform: uppercase; margin-bottom: 28px;
    animation: fadeUp .8s ease both;
  }
  .hero-badge::before { content: '✦'; font-size: 8px; }
  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 300;
    color: var(--white);
    line-height: 1.08;
    margin-bottom: 24px;
    animation: fadeUp .8s .1s ease both;
  }
  .hero-h1 em { font-style: italic; color: var(--gold-light); }
  .hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 440px;
    animation: fadeUp .8s .2s ease both;
  }
  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp .8s .3s ease both;
  }
  .btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--gold);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: .25s;
    letter-spacing: .04em;
  }
  .btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
  .btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1px solid rgba(255,255,255,.3);
    color: rgba(255,255,255,.85);
    padding: 14px 32px;
    border-radius: 40px;
    font-size: 14px;
    text-decoration: none;
    transition: .25s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

  .hero-right {
    position: relative;
    animation: fadeIn 1s .2s ease both;
  }
  .hero-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center top;
    border-radius: 24px 24px 80px 24px;
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
  }
  .hero-img-float {
    position: absolute;
    bottom: -24px; left: -40px;
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    border: 4px solid var(--dark);
    box-shadow: 0 16px 40px rgba(0,0,0,.4);
  }
  .hero-stats {
    position: absolute;
    top: 24px; left: -40px;
    background: rgba(18,25,42,.95);
    border: 1px solid rgba(201,168,76,.3);
    border-radius: 16px;
    padding: 16px 20px;
    backdrop-filter: blur(12px);
  }
  .hero-stats-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; color: var(--gold);
    font-weight: 600; line-height: 1;
  }
  .hero-stats-label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .06em; }

  /* ── SECTION BASE ── */
  section { padding: 100px 48px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold);
    font-size: 11px; letter-spacing: .15em;
    text-transform: uppercase; font-weight: 600;
    margin-bottom: 16px;
  }
  .section-tag::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
  .section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
  }
  .section-lead { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 560px; }

  /* ── DIFERENCIAIS ── */
  #diferenciais {
    background: var(--cream);
  }
  .diferenciais-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
  }
  .diff-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .diff-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid rgba(0,0,0,.06);
    transition: .3s;
    position: relative;
    overflow: hidden;
  }
  .diff-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0); transform-origin: left;
    transition: transform .3s;
  }
  .diff-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
  .diff-card:hover::before { transform: scaleX(1); }
  .diff-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
  }
  .diff-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 600;
    margin-bottom: 8px;
  }
  .diff-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

  .diff-img-stack { position: relative; }
  .diff-img-main {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center;
    border-radius: 32px;
  }
  .diff-img-badge {
    position: absolute; bottom: 28px; right: -24px;
    background: var(--navy);
    color: white;
    padding: 16px 20px;
    border-radius: 16px;
    text-align: center;
    min-width: 130px;
  }
  .diff-img-badge strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; color: var(--gold);
    line-height: 1;
  }
  .diff-img-badge span { font-size: 11px; color: rgba(255,255,255,.65); }

  /* ── MÉDICOS ── */
  #medicos {
    background: var(--navy);
    color: white;
  }
  #medicos .section-h2 { color: white; }
  #medicos .section-lead { color: rgba(255,255,255,.6); }
  .medicos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 60px;
  }
  .medico-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 24px;
    padding: 40px;
    display: flex; gap: 24px; align-items: flex-start;
    transition: .3s;
  }
  .medico-card:hover { background: rgba(201,168,76,.08); transform: translateY(-3px); }
  .medico-avatar {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600;
    color: var(--dark); flex-shrink: 0;
    overflow: hidden;
    border: 3px solid rgba(201,168,76,0.4);
  }
  .medico-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; font-weight: 600;
    color: var(--gold-light); margin-bottom: 6px;
  }
  .medico-info .cro { font-size: 12px; color: rgba(201,168,76,.6); letter-spacing: .06em; margin-bottom: 12px; }
  .medico-info p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }
  .medico-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .medico-tag {
    background: rgba(201,168,76,.15);
    color: var(--gold);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: .04em;
  }

  /* ── GALERIA ── */
  #clinica {
    background: white;
  }
  .galeria-intro { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 24px; }
  .galeria-mosaic {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 520px;
    border-radius: 24px;
    background: var(--dark);
  }
  .gal-item {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    cursor: zoom-in;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.02);
    transition: opacity .7s ease, transform 1s ease;
    z-index: 1;
  }
  .galeria-mosaic:not(.is-ready) .gal-item:first-child,
  .gal-item.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
    z-index: 2;
  }
  .gal-nav-btn {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.38);
    border-radius: 50%;
    background: rgba(18,25,42,.58);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: background .2s, border-color .2s, transform .2s;
  }
  .gal-nav-btn:hover {
    background: rgba(201,168,76,.82);
    border-color: rgba(201,168,76,.95);
    transform: translateY(-50%) scale(1.06);
  }
  .gal-nav-btn svg {
    width: 24px;
    height: 24px;
    pointer-events: none;
  }
  .gal-nav-prev { left: 18px; }
  .gal-nav-next { right: 18px; }
  .gal-item:hover {
    transform: scale(1);
    z-index: 3;
  }
  .gal-item.expanded {
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important; height: 100vh !important;
    border-radius: 0 !important;
    z-index: 8000 !important;
    transform: none !important;
    display: flex; align-items: center; justify-content: center;
    background: rgba(10,15,30,.95);
    cursor: zoom-out;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .gal-item.expanded img {
    width: auto !important;
    height: auto !important;
    max-width: 92vw !important;
    max-height: 92vh !important;
    object-fit: contain !important;
    border-radius: 12px;
  }
  .gal-close-btn {
    display: none;
    position: fixed;
    top: 20px; right: 20px;
    z-index: 8100;
    width: 44px; height: 44px;
    background: rgba(255,255,255,.15);
    border: none; border-radius: 50%;
    color: white; font-size: 22px;
    cursor: pointer; backdrop-filter: blur(8px);
    transition: .2s;
  }
  .gal-close-btn.visible { display: flex; align-items: center; justify-content: center; }
  .gal-close-btn:hover { background: rgba(201,168,76,.4); }
  .gal-item:nth-child(1),
  .gal-item:nth-child(4) { grid-column: auto; grid-row: auto; }
  .gal-item img {
    width: 100%; height: 520px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .8s ease;
  }
  .gal-item:nth-child(1) img,
  .gal-item:nth-child(4) img {
    height: 520px;
  }
  .gal-item.active:hover img { transform: scale(1.04); }
  .gal-item:hover
  .gal-overlay span { color: white; font-size: 13px; }

  /* ── SERVIÇOS ── */
  #servicos { background: var(--cream); }
  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }
  .servico-card {
    background: white;
    border-radius: 20px;
    padding: 36px 28px;
    border: 1px solid rgba(0,0,0,.06);
    transition: .3s;
    position: relative;
  }
  .servico-card:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30,45,78,.2);
  }
  .servico-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px; font-weight: 300;
    color: var(--gold-pale); line-height: 1;
    margin-bottom: 12px;
    transition: .3s;
  }
  .servico-card:hover .servico-num { color: rgba(201,168,76,.3); }
  .servico-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    margin-bottom: 10px; transition: color .3s;
  }
  .servico-card:hover h3 { color: var(--gold-light); }
  .servico-card p { font-size: 14px; color: var(--muted); line-height: 1.65; transition: color .3s; }
  .servico-card:hover p { color: rgba(255,255,255,.65); }

  /* ── AGENDAMENTO (CTA) ── */
  #agendamento {
    background: linear-gradient(135deg, var(--dark) 0%, var(--navy) 100%);
    color: white;
    text-align: center;
    padding: 100px 48px;
    position: relative; overflow: hidden;
  }
  #agendamento::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,.1) 0%, transparent 70%);
  }
  .agendar-box {
    max-width: 700px; margin: 0 auto;
    position: relative; z-index: 1;
  }
  .agendar-box .section-h2 { color: white; margin-bottom: 20px; }
  .agendar-box .section-lead { color: rgba(255,255,255,.65); margin: 0 auto 48px; text-align: center; }
  .agendar-options {
    display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
  }
  .agendar-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .25s;
    letter-spacing: .03em;
  }
  .agendar-btn.whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 8px 32px rgba(37,211,102,.3);
  }
  .agendar-btn.whatsapp:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,.4); }
  .agendar-btn.tel {
    background: rgba(255,255,255,.1);
    color: white;
    border: 1px solid rgba(255,255,255,.2);
  }
  .agendar-btn.tel:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
  .agendar-nota { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,.4); }

  /* ── LOCALIZAÇÃO ── */
  #localizacao { background: white; }
  .loc-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
  }
  .loc-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; font-weight: 600;
    margin-bottom: 24px;
  }
  .loc-item {
    display: flex; gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
  }
  .loc-ico {
    width: 44px; height: 44px;
    background: var(--gold-pale);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; flex-shrink: 0;
  }
  .loc-item-text strong { display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
  .loc-item-text p { font-size: 15px; color: var(--text); line-height: 1.6; }
  .loc-item-text a { color: var(--text); text-decoration: none; }
  .loc-item-text a:hover { color: var(--gold); }
  .loc-social { display: flex; gap: 12px; margin-top: 32px; }
  .social-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: .2s;
    border: 1px solid;
  }
  .social-btn.insta {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: white; border-color: transparent;
  }
  .social-btn.insta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(253,29,29,.3); }
  .social-btn.wa {
    background: #25D366; color: white; border-color: transparent;
  }
  .social-btn.wa:hover { transform: translateY(-2px); }

  .map-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.1);
    height: 420px;
  }
  .map-frame iframe { width: 100%; height: 100%; border: none; }

  /* ── AVALIAÇÕES ── */
  #avaliacoes {
    background: var(--cream);
    padding: 100px 48px;
  }
  .aval-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 32px;
  }
  .aval-score-box {
    display: flex;
    align-items: center;
    gap: 24px;
    background: white;
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 24px;
    padding: 28px 36px;
    box-shadow: 0 8px 32px rgba(0,0,0,.06);
  }
  .aval-score-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 64px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
  }
  .aval-score-stars { display: flex; gap: 4px; margin-bottom: 6px; }
  .aval-score-stars svg { color: var(--gold); }
  .aval-score-label { font-size: 13px; color: var(--muted); }
  .aval-google-actions {
    margin-top: 22px;
  }
  .google-review-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--navy);
    color: white;
    border: 1px solid rgba(201,168,76,.35);
    padding: 14px 24px;
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .03em;
    text-decoration: none;
    transition: .25s;
  }
  .google-review-btn:hover {
    background: var(--dark);
    color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,30,59,.22);
  }
  .google-review-btn svg {
    flex-shrink: 0;
  }
  .aval-empty {
    grid-column: 1 / -1;
    background: white;
    border: 1px solid rgba(201,168,76,.18);
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    color: var(--muted);
    font-size: 14px;
  }

  .aval-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }
  .aval-card {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,.06);
    transition: .3s;
    position: relative;
  }
  .aval-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.08); }
  .aval-card::before {
    content: '"';
    position: absolute;
    top: 16px; right: 24px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: var(--gold-pale);
    line-height: 1;
  }
  .aval-stars { display: flex; gap: 3px; margin-bottom: 16px; }
  .aval-stars svg { color: var(--gold); }
  .aval-text { font-size: 14px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
  .aval-author { display: flex; align-items: center; gap: 12px; }
  .aval-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), #2a3f6b);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 600; color: var(--gold-light);
    font-family: 'Cormorant Garamond', serif;
    flex-shrink: 0;
  }
  .aval-name { font-weight: 600; font-size: 14px; color: var(--navy); }
  .aval-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }
  .aval-tags-chip {
    display: inline-block;
    background: var(--gold-pale);
    color: var(--navy);
    font-size: 10px;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px;
    font-weight: 600;
  }

  /* ── FORM DE AVALIAÇÃO ── */
  .aval-form-wrap {
    background: white;
    border-radius: 28px;
    padding: 52px 56px;
    border: 1px solid rgba(201,168,76,.15);
    box-shadow: 0 16px 60px rgba(0,0,0,.06);
    max-width: 780px;
    margin: 0 auto;
  }
  .aval-form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 300;
    color: var(--navy); margin-bottom: 8px;
  }
  .aval-form-sub { font-size: 14px; color: var(--muted); margin-bottom: 36px; }
  .aval-criteria {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
  }
  .aval-criterion label {
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
  }
  .star-row { display: flex; gap: 6px; }
  .star-btn {
    background: none; border: none;
    cursor: pointer;
    padding: 2px;
    transition: transform .15s;
  }
  .star-btn:hover { transform: scale(1.2); }
  .star-btn svg { display: block; }
  .star-btn svg path { transition: fill .15s; }

  .aval-field {
    margin-bottom: 20px;
  }
  .aval-field label {
    display: block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 8px;
  }
  .aval-field input, .aval-field textarea, .aval-field select {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0,0,0,.1);
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--cream);
    transition: border-color .2s;
    outline: none;
    resize: vertical;
  }
  .aval-field input:focus, .aval-field textarea:focus, .aval-field select:focus {
    border-color: var(--gold);
    background: white;
  }
  .aval-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .aval-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 16px 40px;
    border-radius: 40px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    letter-spacing: .04em;
    margin-top: 8px;
  }
  .aval-submit:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,.35); }
  .aval-submit:disabled {
    opacity: .65;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
  }
  .aval-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
  }
  .aval-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
  }
  .aval-success-icon {
    font-size: 52px; margin-bottom: 16px;
  }
  .aval-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; color: var(--navy); margin-bottom: 10px;
  }
  .aval-success p { font-size: 15px; color: var(--muted); }
  .aval-success .google-review-btn {
    margin-top: 22px;
  }

  @media (max-width: 768px) {
    .aval-grid { grid-template-columns: 1fr; }
    .aval-criteria { grid-template-columns: 1fr; }
    .aval-form-wrap { padding: 32px 24px; }
    .aval-fields-row { grid-template-columns: 1fr; }
    .aval-header {
      flex-direction: column;
      align-items: stretch;
    }
    .aval-header > div:first-child,
    .aval-google-actions {
      width: 100%;
    }
    .aval-google-actions {
      display: block;
    }
    .google-review-btn {
      width: 100%;
      min-height: 52px;
    }
  }

  /* ── FOOTER ── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,.5);
    text-align: center;
    padding: 40px 48px;
    font-size: 13px;
  }
  footer .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px; color: var(--gold);
    margin-bottom: 12px;
  }
  footer a { color: rgba(201,168,76,.6); text-decoration: none; }
  footer a:hover { color: var(--gold); }
  .footer-links {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid rgba(201,168,76,.42);
    border-radius: 999px;
    color: var(--gold-light);
    background: rgba(255,255,255,.04);
    font-size: 12px;
    font-weight: 500;
    transition: transform .2s, background .2s, border-color .2s, color .2s;
  }
  footer a.footer-btn { color: var(--gold-light); }
  .footer-btn:hover {
    transform: translateY(-2px);
    background: rgba(201,168,76,.14);
    border-color: rgba(201,168,76,.75);
    color: var(--gold);
  }
  .footer-btn svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── VLIBRAS OFFSET ── */
  .vw-plugin-wrapper { z-index: 9999 !important; }

  /* ── MOBILE ── */
  /* ── HAMBURGER MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
  }
  .nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: .3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(12,19,35,.97);
    z-index: 850;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 100px 24px 40px;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    color: rgba(255,255,255,.85);
    text-decoration: none;
    font-size: 22px;
    letter-spacing: .06em;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    transition: color .2s;
  }
  .nav-mobile-menu a:hover { color: var(--gold-light); }
  .nav-mobile-cta {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 14px 36px;
    border-radius: 40px;
    font-family: 'Outfit', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    margin-top: 8px;
  }

  @media (max-width: 900px) {   
    nav { padding: 0 20px; }
    .nav-links, .nav-cta { display: none; }
    .nav-hamburger { display: flex; }
    section { padding: 70px 20px; }
    #hero { min-height: auto; align-items: flex-start; padding-top: 104px; }
    .hero-grid, .diferenciais-grid, .medicos-grid,
    .loc-grid { grid-template-columns: 1fr; }
    .hero-grid { padding: 42px 24px 56px; gap: 32px; }
    .diff-cards { grid-template-columns: 1fr 1fr; }
    .servicos-grid { grid-template-columns: 1fr 1fr; }
    .galeria-mosaic { min-height: 420px; }
    .gal-item:nth-child(1), .gal-item:nth-child(4) { grid-column: auto; grid-row: auto; }
    .hero-left { padding-right: 0; }
    .hero-right { width: 100%; }
    .hero-img-main { height: 380px; border-radius: 20px 20px 48px 20px; }
    .hero-img-float {
      display: block;
      width: 150px;
      height: 150px;
      left: 16px;
      bottom: 16px;
      border-width: 3px;
      border-radius: 18px;
    }
    .hero-stats { display: none; }
    .diff-img-badge { right: 16px; }
    .servicos-grid, .loc-grid, .medicos-grid, .diferenciais-grid { margin-top: 44px; }
    .galeria-intro { margin-bottom: 36px; }
    .gal-item img,
    .gal-item:nth-child(1) img,
    .gal-item:nth-child(4) img { height: 420px; }
    #agendamento, #avaliacoes { padding: 70px 20px; }
    .agendar-options { flex-direction: column; align-items: center; }
    .medico-card { flex-direction: column; align-items: flex-start; }
    .hero-h1 { font-size: clamp(32px, 8vw, 52px); }
    .map-frame { height: 340px; border-radius: 18px; }
    .modal-header { padding: 32px 24px 24px; flex-direction: column; gap: 16px; }
    .modal-body { padding: 24px; }
    .modal-box { border-radius: 20px; max-height: 95vh; }
  }

  @media (max-width: 600px) {
    #lang-bar { padding: 5px 16px; font-size: 11px; }
    nav { top: 30px; height: 68px; padding: 0 16px; }
    .nav-logo { gap: 8px; min-width: 0; }
    .nav-logo-icon { width: 46px !important; height: 46px !important; flex-shrink: 0; }
    .nav-logo-text { font-size: 19px; }
    .nav-logo-sub { font-size: 8px; letter-spacing: .09em; }
    #hero { padding-top: 98px; }
    .hero-grid { padding: 34px 22px 44px; gap: 26px; }
    .hero-left > img:first-child { display: none !important; }
    .hero-badge {
      width: 100%;
      justify-content: center;
      padding: 10px 14px;
      margin-bottom: 24px;
      line-height: 1.35;
      text-align: center;
    }
    .hero-h1 { font-size: 38px; line-height: 1.05; margin-bottom: 20px; }
    .hero-sub { font-size: 15px; line-height: 1.65; max-width: none; margin-bottom: 28px; }
    .hero-btns { width: 100%; gap: 12px; flex-direction: column; }
    .btn-gold, .btn-outline {
      width: 100%;
      min-height: 54px;
      justify-content: center;
      padding: 0 20px;
      border-radius: 32px;
    }
    .hero-img-main { height: 320px; border-radius: 18px 18px 40px 18px; }
    .hero-img-float { width: 122px; height: 122px; left: 14px; bottom: 14px; border-radius: 16px; }
    .diff-cards, .servicos-grid { grid-template-columns: 1fr; }
    .galeria-mosaic { min-height: 300px; border-radius: 18px; }
    .gal-nav-btn { width: 42px; height: 42px; }
    .gal-nav-prev { left: 10px; }
    .gal-nav-next { right: 10px; }
    section { padding: 60px 16px; }
    #agendamento, #avaliacoes { padding: 60px 18px; }
    .aval-grid { grid-template-columns: 1fr; }
    .aval-criteria { grid-template-columns: 1fr; }
    .aval-form-wrap { width: 100%; padding: 28px 20px; border-radius: 20px; }
    .aval-fields-row { grid-template-columns: 1fr; }
    .aval-header { flex-direction: column; gap: 22px; margin-bottom: 36px; }
    .aval-score-box { width: 100%; flex-direction: column; align-items: flex-start; gap: 8px; padding: 20px; }
    .star-row { flex-wrap: nowrap; gap: 4px; }
    .star-btn svg { width: 24px; height: 24px; }
    .aval-submit { width: 100%; justify-content: center; }
    .aval-success .google-review-btn { width: 100%; }
    .agendar-btn { width: 100%; justify-content: center; }
    .loc-social { flex-direction: column; }
    .section-h2 { font-size: 32px; }
    .section-lead { font-size: 15px; line-height: 1.65; }
    .diferenciais-grid { gap: 32px; }
    .diff-img-main { height: 320px; }
    .diff-img-badge { display: none; }
    .galeria-intro { flex-direction: column; }
    .diff-card, .servico-card, .aval-card { padding: 24px 22px; border-radius: 16px; }
    .medico-card { padding: 22px; gap: 18px; border-radius: 18px; }
    .medico-avatar { width: 80px; height: 80px; }
    .gal-item img,
    .gal-item:nth-child(1) img,
    .gal-item:nth-child(4) img { height: 300px; }
    .loc-grid { gap: 34px; }
    .map-frame { height: 280px; }
    .nav-mobile-menu { gap: 24px; padding: 112px 24px 38px; }
    .nav-mobile-menu a { font-size: 20px; }
    .modal-header-info h2 { font-size: 22px; }
    .footer-links { flex-direction: column; align-items: stretch; }
    .footer-btn { width: 100%; }
  }

  @media (max-width: 380px) {
    .lang-btn { padding: 3px 9px; }
    .hero-grid { padding-left: 18px; padding-right: 18px; }
    .hero-h1 { font-size: 34px; }
    .hero-img-main { height: 290px; }
    .hero-img-float { width: 110px; height: 110px; }
  }

  /* ── MODAL ── */
  .modal-overlay {
    position: fixed; inset: 0; z-index: 9000;
    background: rgba(10,15,30,.85);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    opacity: 0; pointer-events: none;
    transition: opacity .3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal-box {
    background: var(--navy);
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 28px;
    max-width: 720px; width: 100%;
    max-height: 90vh; overflow-y: auto;
    transform: translateY(30px) scale(.97);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
  }
  .modal-overlay.open .modal-box { transform: none; }
  .modal-close {
    position: absolute; top: 20px; right: 20px;
    width: 36px; height: 36px;
    background: rgba(255,255,255,.1);
    border: none; border-radius: 50%; cursor: pointer;
    color: white; font-size: 18px; line-height: 36px; text-align: center;
    transition: .2s;
  }
  .modal-close:hover { background: rgba(201,168,76,.3); }
  .modal-header {
    background: linear-gradient(135deg, rgba(201,168,76,.15) 0%, transparent 60%);
    padding: 48px 40px 32px;
    border-bottom: 1px solid rgba(201,168,76,.15);
    display: flex; gap: 28px; align-items: center;
  }
  .modal-avatar {
    width: 90px; height: 90px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    border: 3px solid rgba(201,168,76,.4);
  }
  .modal-header-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px; color: var(--gold-light); font-weight: 600;
    margin-bottom: 4px;
  }
  .modal-header-info .modal-cro {
    font-size: 12px; color: rgba(201,168,76,.6); letter-spacing: .08em; margin-bottom: 12px;
  }
  .modal-header-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .modal-body { padding: 36px 40px; color: white; }
  .modal-section { margin-bottom: 28px; }
  .modal-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; color: var(--gold); font-weight: 600;
    margin-bottom: 12px;
    display: flex; align-items: center; gap: 8px;
  }
  .modal-section h4::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
  .modal-section p, .modal-section li {
    font-size: 14px; color: rgba(255,255,255,.75); line-height: 1.8;
  }
  .modal-section ul { padding-left: 18px; }
  .modal-section li { margin-bottom: 6px; }
  .modal-cta {
    margin-top: 8px;
    display: inline-flex; align-items: center; gap: 10px;
    background: #25D366; color: white;
    padding: 14px 28px; border-radius: 40px;
    font-size: 14px; font-weight: 600;
    text-decoration: none; transition: .2s;
  }
  .modal-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.35); }
