/* ==============================
   Design System (3 tons de azul)
   ============================== */
:root{
  --blue-900:#0B3A60; /* profundo */
  --blue-700:#0B5EA8; /* principal */
  --blue-500:#67ACD6; /* claro */

  --ink:#0B1B2A;
  --text:rgba(15,23,42,.72);
  --muted:rgba(15,23,42,.58);
  --line:rgba(15,23,42,.10);
  --bg:#fff;
  --bg-soft:#f9fbfd;

  --radius-lg:20px;
  --radius-md:14px;
  --shadow-sm:0 10px 20px rgba(2,6,23,.04);
  --shadow-md:0 30px 60px rgba(2,6,23,.06);

  --cta-bg:var(--blue-700);
  --cta-bg-hover:#0a5596;
  --cta-shadow:0 22px 55px rgba(11,94,168,.28);
  --cta-shadow-hover:0 28px 70px rgba(11,94,168,.34);
}

/* ========== Reset básico e estrutura ========== */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"Segoe UI", Arial, Helvetica, sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}
.container{ width:min(1200px,92%); margin:0 auto; }
h1,h2,h3{ color:var(--ink); margin:0; letter-spacing:-.015em; }
p{ margin:0; color:var(--text); }
a{ color:inherit; text-decoration:none; }

/* ==============================
   HEADER + NAV
   ============================== */
.site-header{
  position:absolute;
  top:0; left:0; width:100%;
  z-index:1000;
  padding:22px 0;
  transition:background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.header-inner{ display:flex; align-items:center; gap:26px; }
.brand{ display:inline-flex; align-items:center; }
.brand img{ display:block; height:54px; width:auto; }

/* Nav (desktop por padrão) */
.nav{
  flex:1;
  display:flex; justify-content:center; align-items:center; gap:22px;
}
.nav-link{
  font-size:13px; letter-spacing:.04em;
  padding:10px 14px; border-radius:12px;
  color:rgba(15,23,42,.80);
  transition:background .16s ease, color .16s ease, box-shadow .16s ease;
  white-space:nowrap;
}
.nav-link:hover{ background:rgba(11,94,168,.06); }
.nav-link.is-active{
  background:rgba(255,255,255,.90);
  box-shadow:0 10px 22px rgba(2,6,23,.10);
  color:rgba(15,23,42,.86);
}

/* Ações à direita */
.header-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  width:34px; height:34px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.74);
  box-shadow:0 10px 22px rgba(2,6,23,.10);
  transition:transform .16s ease, background .16s ease;
}
.icon-btn:hover{ transform:translateY(-1px); background:rgba(255,255,255,.88); }
.icon-btn svg{ width:18px; height:18px; fill:var(--blue-900); opacity:.92; }

/* Sticky (desktop) */
@media (min-width:821px){
  .site-header.is-sticky{
    position:fixed !important; top:0 !important; left:0 !important; right:0 !important;
    background:#fff !important; /* opaco */
    box-shadow:0 10px 30px rgba(2,6,23,.10) !important;
    -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
    padding:14px 0; opacity:1 !important; z-index:1000 !important;
  }
  .site-header.is-sticky .nav-link:hover{ background:rgba(11,94,168,.06); }
  .site-header.is-sticky .icon-btn{
    background:rgba(11,94,168,.06);
    box-shadow:0 6px 16px rgba(2,6,23,.08);
  }
}

/* Mobile menu (off-canvas) */
.menu-toggle{
  display:none; width:40px; height:40px; border:0; border-radius:10px;
  background:rgba(255,255,255,.85);
  box-shadow:0 8px 20px rgba(2,6,23,.10); cursor:pointer;
  align-items:center; justify-content:center;
}
.menu-overlay{
  position:fixed; inset:0; background:rgba(2,6,23,.42);
  opacity:0; transition:opacity .16s ease; z-index:999; pointer-events:none;
}
.menu-overlay.is-visible{ opacity:1; pointer-events:auto; }

@media (max-width:820px){
  .menu-toggle{ display:inline-flex; margin-left:auto; }

  .nav{
    position:fixed; top:0; right:0;
    width:min(88vw,360px); 
	/*height:100dvh;*/
    background:#fff; box-shadow:-12px 0 40px rgba(2,6,23,.12);
    transform:translateX(100%); transition:transform .22s ease; z-index:1001;
    display:flex; flex-direction:column; align-items:stretch; gap:0; padding:20px;
  }
  .nav.is-open{ transform:translateX(0); }

  .nav-link{ display:block; padding:14px 12px; margin:2px 0; border-radius:10px; font-size:15px; color:rgba(15,23,42,.88); }
  .nav-link:hover{ background:rgba(11,94,168,.06); }

  .header-actions{ margin-top:12px; gap:8px; justify-content:flex-start; }
  .icon-btn{ background:rgba(11,94,168,.06); box-shadow:0 6px 16px rgba(2,6,23,.08); }

  /* Em mobile, o header não precisa forçar fixed/blur quando sticky */
  .site-header.is-sticky{
    position:absolute !important; background:transparent !important;
    box-shadow:none !important; -webkit-backdrop-filter:none !important; backdrop-filter:none !important;
  }
}

/* ===== Ajustes responsivos suaves do header ===== */
@media (max-width:820px){
  .header-inner{ flex-wrap:wrap; }
  .nav{ gap:8px; }
}

/* ==============================
   HERO (sem gradiente)
   ============================== */
.hero{
  height:720px; min-height:720px;
  display:flex; align-items:center;
  background:url("../imagens/bg_banner01.jpg") center right / cover no-repeat;
  padding-top:120px;
}
.hero-copy{ max-width:720px; padding:20px 0 40px; }
.hero-kicker{ font-size:34px; font-weight:300; color:rgba(15,23,42,.22); margin-bottom:12px; }
.hero-title{
  margin:0 0 16px; font-size:56px; line-height:1.08; font-weight:300;
  letter-spacing:-.02em; color:rgba(15,23,42,.88);
}
.hero-accent{ color:var(--blue-700); font-weight:600; }
.hero-subtitle{ font-size:16px; color:rgba(15,23,42,.58); }

@media (max-width:980px){
  .hero{ height:620px; min-height:620px; padding-top:20px; background-position:center; }
  .hero-title{ font-size:40px; }
  .hero-kicker{ font-size:26px; }
}
@media (max-width:520px){
  .hero{ height:560px; min-height:560px; }
  .hero-title{ font-size:34px; }
}

/* ==============================
   SERVICES BAND
   ============================== */
.services-band{ width:100%; background:transparent; }
.services-band__grid{ display:flex; width:100%; min-height:360px; }
.services-band .service-card{
  flex:1 1 0; color:#fff; text-align:center;
  padding:48px 56px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px;
}
.services-band .service-card--navy{ background:var(--blue-900) !important; }
.services-band .service-card--teal{ background:var(--blue-700) !important; }
.services-band .service-card--sky { background:var(--blue-500) !important; }
.services-band .service-card__title{
  font-size:clamp(22px,2.2vw,32px); font-weight:700; margin:0; color:#fff;
}
.services-band .service-card__text{
  font-size:18px; line-height:1.55; max-width:420px; margin:0; color:rgba(255,255,255,.92);
}
.services-band .service-card__brandText{
  font-size:clamp(28px,3.2vw,44px); font-weight:800; letter-spacing:.5px; text-transform:lowercase; color:#fff;
}
@media (max-width:980px){
  .services-band__grid{ flex-direction:column; min-height:auto; }
  .services-band .service-card{ padding:44px 22px; }
  .services-band .service-card__text{ font-size:16px; }
}

/* ==============================
   ABOUT + MVV
   ============================== */
.about-mvv{ background:var(--bg); padding:90px 0; }
.about-mvv__about{
  display:grid; grid-template-columns:1.15fr 1fr;
  gap:clamp(28px,5vw,90px); align-items:start; margin-bottom:90px;
}
.about-mvv__title{
  margin:0 0 16px; font-size:56px; line-height:1.08; font-weight:300; letter-spacing:-.02em; color:rgba(15,23,42,.88);
}
.about-mvv__p{ margin:0 0 18px; font-size:16px; line-height:1.7; max-width:680px; }
.about-mvv__neighborhoods{ display:grid; grid-template-columns:repeat(3, max-content); gap:26px 54px; margin-top:22px; }
.about-mvv__list{ list-style:none; padding:0; margin:0; }
.about-mvv__list li{
  position:relative; padding-left:18px; margin:10px 0; font-size:16px;
}
.about-mvv__list li::before{
  content:""; position:absolute; left:0; top:.72em; width:6px; height:6px; border-radius:2px; background:var(--blue-700); transform:translateY(-50%);
}
.about-mvv__right{ display:flex; justify-content:flex-end; }
.about-mvv__photo{ width:min(520px,100%); height:auto; display:block; border-radius:10px; }
.mvv-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:44px; }
.mvv-item{ text-align:center; }
.mvv-item img{ width:100%; height:auto; display:inline-block; opacity:.95; }
.mvv-item__title{ margin:18px 0 12px; font-size:22px; font-weight:800; color:var(--blue-900); }
.mvv-item__text{ font-size:15px; line-height:1.7; max-width:360px; margin:0 auto; }
@media (max-width:980px){
  .about-mvv{ padding:70px 0; }
  .about-mvv__about{ grid-template-columns:1fr; margin-bottom:70px; }
  .about-mvv__right{ justify-content:center; }
  .about-mvv__neighborhoods{ grid-template-columns:1fr; gap:14px; }
  .mvv-grid{ grid-template-columns:1fr; gap:28px; }
}

/* ==============================
   CTA WhatsApp
   ============================== */
.cta-whatsapp{ background:var(--blue-700); }
.cta-whatsapp__link{
  display:flex; align-items:center; justify-content:center; gap:16px;
  padding:32px 20px; color:#fff; text-align:center;
  transition:filter .16s ease, background .16s ease;
}
.cta-whatsapp__text{
  font-size:clamp(22px,2.8vw,40px); font-weight:300; letter-spacing:-.3px; color:rgba(255,255,255,.95);
}
.cta-whatsapp__text strong{ font-weight:800; }
.cta-whatsapp__link:hover{ background:rgba(255,255,255,.06); }
@media (max-width:600px){
  .cta-whatsapp__link{ gap:12px; padding:26px 16px; }
  .cta-whatsapp__text{ font-size:22px; }
}

/* ==============================
   TREATMENTS
   ============================== */
.treatments{ padding:86px 0; background:var(--bg); }
.treatments__wrap{
  display:grid; grid-template-columns:1.05fr 1.45fr; column-gap:clamp(30px,4vw,70px); align-items:start;
}
.treatments__title{
  margin:0 0 28px; font-size:clamp(40px,4.2vw,64px); line-height:1.03; letter-spacing:-.5px; color:rgba(15,23,42,.84); font-weight:300;
}
.treatments__titleStrong {
    font-weight: 800; color: var(--blue-900);
}
.treatments__icon {
    color: var(--blue-500); line-height: 0; margin-top: 6px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 22px; border-radius:999px; font-size:14px; font-weight:700; border:1px solid transparent;
  transition:transform .16s ease, filter .16s ease;
}
.btn--primary{ background:var(--blue-700); color:#fff; box-shadow:0 18px 46px rgba(11,94,168,.22); }
.btn--primary:hover{ filter:brightness(.96); transform:translateY(-1px); }
.treatments__grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; padding-top:12px; }
.treatments__item{ display:grid; grid-template-columns:64px 1fr; gap:18px; align-items:start; }
.treatments__name{ margin:0 0 10px; font-size:22px; line-height:1.15; font-weight:800; color:var(--blue-900); }
.treatments__desc{ font-size:15px; line-height:1.6; max-width:360px; }
@media (max-width:1024px){
  .treatments__wrap{ grid-template-columns:1fr; row-gap:40px; }
  .treatments__grid{ grid-template-columns:1fr; gap:26px; }
  .treatments__desc{ max-width:520px; }
}

/* ==============================
   DOCTOR QUOTE
   ============================== */
.doctor-quote{ background:#f4f7fb; padding:40px 0 0; }
.doctor-quote__wrap{
  display:grid; grid-template-columns:1.05fr 1.15fr; align-items:center;
  gap:clamp(28px,4vw,70px); min-height:640px;
}
.doctor-quote__photo{ display:flex; align-items:flex-end; justify-content:center; height:100%; }
.doctor-quote__photo img{ width:min(520px,100%); height:auto; display:block; object-fit:contain; }
.doctor-quote__mark{ font-size:110px; line-height:1; color:var(--blue-700); font-weight:900; margin-bottom:8px; }
.doctor-quote__text{
  margin:0 0 16px; font-size:56px; line-height:1.08; font-weight:300; letter-spacing:-.02em; color:rgba(15,23,42,.88);
}
.doctor-quote__name{ margin:0 0 6px; font-size:clamp(18px,1.8vw,28px); color:var(--blue-900); font-weight:800; }
.doctor-quote__role{ font-size:15px; color:var(--muted); }
@media (max-width:980px){
  .doctor-quote{ padding:0px 0; }
  .doctor-quote__wrap{ grid-template-columns:1fr; justify-items:center; text-align:left; min-height:auto; }
  .doctor-quote__photo{ margin-bottom:24px; }
  .doctor-quote__photo img{ width:min(420px,92%); }
}

/* ==============================
   DIFFERENTIALS
   ============================== */
.differentials{ padding:90px 0; background:var(--bg); }
.differentials__header{ margin-bottom:40px; }
.differentials__label{ font-size:12px; font-weight:900; color:var(--blue-700); letter-spacing:.14em; }
.differentials__title{
  margin:0 0 16px; font-size:56px; line-height:1.08; font-weight:300; letter-spacing:-.02em; color:rgba(15,23,42,.88);
}
.differentials__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.diff-card{
  border-radius:var(--radius-lg); overflow:hidden; background:#fff; border:1px solid var(--line);
  box-shadow:var(--shadow-sm), var(--shadow-md);
  transition:transform .18s ease, border-color .18s ease;
}
.diff-card__image{ height:260px; overflow:hidden; }
.diff-card__image img{ width:100%; height:100%; object-fit:cover; transition:transform .48s ease; }
@media (hover:hover){
  .diff-card:hover{ transform:translateY(-4px); border-color:rgba(11,94,168,.22); }
  .diff-card:hover img{ transform:scale(1.05); }
}
.diff-card__content{ padding:22px 24px 26px; }
.diff-card__content h3{ margin:0 0 10px; font-size:22px; line-height:1.15; font-weight:800; color:var(--blue-900); }
.diff-card__content p{ font-size:15px; line-height:1.65; }
@media (max-width:900px){
  .differentials__grid{ grid-template-columns:1fr; }
  .diff-card__image{ height:220px; }
}

/* ==============================
   DOCTORS (layout especial)
   ============================== */
.doctors{ position:relative; background:#e9f0f4; overflow:visible; padding:0; }
.doctors::before{ content:""; position:absolute; left:0; right:0; top:0; height:150px; background:#fff; z-index:1; }
.doctors__grid{
  position:relative; z-index:1; width:100%; margin:0; min-height:560px;
  display:grid; grid-template-columns:minmax(320px,1fr) 700px minmax(320px,1fr);
  align-items:start; padding-left:clamp(28px,6vw,90px); padding-right:clamp(28px,6vw,90px);
}
.doctors__col--left,.doctors__col--right{ padding-top:190px; }
.doctors__photoFrame{
  position:absolute; left:50%; bottom:0; transform:translateX(-55%);
  width:665px; max-width:52vw; z-index:2; pointer-events:none; margin:0;
}
.doctors__photoFrame img{ display:block; width:100%; height:auto; }
.doctors__name{ margin:0 0 16px; font-size:40px; line-height:1.08; font-weight:300; letter-spacing:-.02em; color:var(--blue-500); }
.doctors__role{ display:block; margin-bottom:14px; color:var(--muted); font-size:13px; }
.doctors__social{ display:flex; gap:14px; margin-bottom:18px; }
.doctors__socialLink{ font-weight:900; font-size:13px; color:var(--blue-700); }
.doctors__socialLink:hover{ text-decoration:underline; }
.doctors__text p{ margin:0 0 14px; font-size:14px; line-height:1.75; }
@media (max-width:1100px){
  .doctors__grid{ grid-template-columns:1fr 520px 1fr; }
  .doctors__photoFrame{ width:560px; }
}
@media (max-width:980px){
  .doctors::before{ top:90px; }
  .doctors__grid{ grid-template-columns:1fr; min-height:auto; padding:0 20px; row-gap:24px; }
  .doctors__col--center{ position:relative; min-height:560px; }
  .doctors__photoFrame{ left:50%; bottom:0; transform:translateX(-50%); width:665px; max-width:86vw; }
  .doctors__col--left,.doctors__col--right{ padding-top:20px; }
}

/* ==============================
   SPEC (cards)
   ============================== */
.spec{ padding:clamp(56px,6vw,88px) 0; background:var(--bg-soft); }
.spec .container{ width:min(1100px,92%); margin:0 auto; }
.spec-kicker{
  margin:0 0 10px; font-weight:900; letter-spacing:.14em; text-transform:uppercase; font-size:12px; color:var(--blue-700);
}
.spec-title{
  margin:0 0 16px; font-size:56px; line-height:1.08; font-weight:300; letter-spacing:-.02em; color:rgba(15,23,42,.88);
}
.spec-subtitle{ margin:14px 0 0; font-size:14px; line-height:1.6; color:var(--muted); max-width:520px; }
.spec-grid{ margin-top:36px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }

.spec-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:24px 24px 20px; box-shadow:var(--shadow-sm), var(--shadow-md);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease; position:relative;
}

.spec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    border: 1px solid #cfe3ff;
    color: #0b5ed7;
}
.spec-icon svg, .spec-icon svg * {
    fill: currentColor !important;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.spec-icon-smile {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    border: 1px solid #cfe3ff;
    color: #0b5ed7;
}
.spec-icon-smile svg {
    width: 26px;
    height: 26px;
    display: block;
}
.spec-icon-smile svg, .spec-icon-smile svg * {
    fill: none;
    stroke: currentColor !important;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.spec-card.is-open p, .spec-card.is-open span, .spec-card.is-open li, .spec-card.is-open small, .spec-card.is-open .spec-short, .spec-card.is-open .spec-more, .spec-card.is-open .spec-more-wrap {
    color: rgba(255, 255, 255, 0.94) !important;
}
.spec-name{ margin:20px 0 10px; font-size:22px; line-height:1.15; font-weight:800; color:var(--blue-900); }
.spec-short{ font-size:14px; line-height:1.6; min-height:44px; }
.spec-toggle{
  margin-top:16px; padding:0; border:0; background:none; display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:900; color:var(--blue-700); cursor:pointer;
}
.spec-chevron{ width:16px; height:16px; transition:transform .18s ease; }

@media (hover:hover){
  .spec-card:hover{
    transform:translateY(-4px); border-color:rgba(11,94,168,.22);
    box-shadow:0 16px 30px rgba(2,6,23,.06), 0 40px 80px rgba(2,6,23,.08);
  }
}

/* Expandido */
.spec-card.is-open{ background:var(--blue-700); border-color:var(--blue-700); }
.spec-card.is-open .spec-name,
.spec-card.is-open .spec-short,
.spec-card.is-open .spec-more{ color:rgba(255,255,255,.95); }
.spec-card.is-open .spec-icon{ background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.25); color:#fff; }
.spec-card.is-open .spec-icon svg *{ stroke:currentColor; fill:currentColor; }
.spec-card.is-open .spec-toggle{ color:#fff; }
.spec-card.is-open .spec-chevron{ transform:rotate(180deg); }
.spec-more{ margin-top:14px; font-size:14px; line-height:1.75; }
.spec-more-wrap{ overflow:hidden; max-height:0; transition:max-height .26s ease; }
.spec-card.is-open .spec-more-wrap{ max-height:520px; }

.spec-bottom{ margin-top:26px; text-align:center; }
.spec-help{ margin:20px 0 14px; font-size:13px; color:var(--muted); }
.spec-cta{
  display:inline-flex; align-items:center; gap:10px; padding:14px 20px; border-radius:999px;
  background:var(--blue-700); color:#fff; font-weight:900; text-decoration:none; box-shadow:0 20px 50px rgba(11,94,168,.28);
}
@media (max-width:980px){ .spec-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:620px){ .spec-grid{ grid-template-columns:1fr; } }

/* ================= FOOTER ================= */
.site-footer{ background:#f1f6fb; padding:80px 0 30px; border-top:1px solid #dbe7f3; }
.footer-container{ max-width:1200px; margin:auto; padding:0 20px; }
.site-footer .footer-box{
  background:#fff; border-radius:18px; overflow:hidden;
  display:grid; grid-template-columns:1fr 1fr; align-items:stretch; padding:0;
  box-shadow:0 25px 60px rgba(15,40,70,.08);
}
.site-footer .footer-map{ height:100%; margin:0; padding:0; display:flex; }
.site-footer .footer-map-frame{ flex:1; height:100%; overflow:hidden; line-height:0; }
.site-footer .footer-map-frame iframe{ display:block; width:100%; height:100%; min-height:320px; border:0; }
.site-footer .footer-content{ padding:32px; }
.site-footer .footer-logo{ display:block; width:100%; max-width:220px; height:auto; object-fit:contain; margin:0 0 14px; }
.footer-bottom{ margin-top:28px; padding-top:18px; border-top:1px solid #dbe7f3; display:flex; justify-content:space-between; font-size:13px; color:#6b7f95; }
@media (max-width:900px){
  .site-footer .footer-box{ grid-template-columns:1fr; }
  .site-footer .footer-map{ height:320px; }
  .site-footer .footer-content{ padding:24px; }
  .footer-bottom{ flex-direction:column; gap:6px; }
}
@media (max-width:480px){
  .site-footer .footer-content{ padding:24px; margin-top:15px }
}

/* ==============================
   CTA (geral) – botões reutilizáveis
   ============================== */
.od-cta{
  appearance:none; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:52px; padding:0 22px; border-radius:14px;
  font:700 15px/1 "Poppins",system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  letter-spacing:-.01em; cursor:pointer; white-space:nowrap;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.od-cta:focus{ outline:none; }
.od-cta:focus-visible{ box-shadow:0 0 0 4px rgba(11,58,96,.18), 0 16px 34px rgba(11,58,96,.22); }
.od-cta__icon{ width:20px; height:20px; display:inline-flex; align-items:center; justify-content:center; flex:0 0 20px; }
.od-cta__icon svg{ width:20px; height:20px; display:block; fill:currentColor; }
.od-cta--primary{
  background:#0b3a60; color:#fff; border:1px solid rgba(255,255,255,.10);
  box-shadow:0 16px 34px rgba(11,58,96,.28);
}
.od-cta--primary:hover{ background:#09406f; transform:translateY(-1px); box-shadow:0 20px 42px rgba(11,58,96,.35); }
.od-cta--primary:active{ transform:translateY(0); box-shadow:0 10px 22px rgba(11,58,96,.25); }
.od-cta--secondary{
  background:#f3f7fb; color:#0b3a60; border:1px solid rgba(11,58,96,.22);
  box-shadow:0 12px 26px rgba(11,58,96,.08);
}
.od-cta--secondary:hover{ background:#fff; border-color:rgba(11,58,96,.40); transform:translateY(-1px); box-shadow:0 16px 34px rgba(11,58,96,.14); }

/* CTA redondo WhatsApp */
.cta-btn{
  display:inline-flex; align-items:center; justify-content:center; gap:12px;
  height:56px; padding:0 26px; border-radius:999px; background:var(--cta-bg); color:#fff;
  font-weight:100; font-size:15px; letter-spacing:-.01em; border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--cta-shadow);
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, filter .18s ease;
}
.cta-btn:hover{ background:var(--cta-bg-hover); transform:translateY(-1px); box-shadow:var(--cta-shadow-hover); }
.cta-btn:focus{ outline:none; }
.cta-btn:focus-visible{ box-shadow:0 0 0 4px rgba(11,94,168,.22), var(--cta-shadow); }
.cta-btn__icon{
  width:34px; height:34px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.14); border:1px solid rgba(255,255,255,.18); flex:0 0 34px;
}
.cta-btn__icon svg{ width:18px; height:18px; display:block; fill:currentColor; color:#fff; }
.cta-btn--wide{ width:100%; }
.cta-btn--xl{ height:62px; padding:0 30px; font-size:16px; }

/* ==============================
   GALLERY (grid) + LIGHTBOX
   ============================== */
.gallery{ padding:70px 0; background:var(--bg-soft); }
.gallery__head{ margin-bottom:18px; }
.gallery__kicker{ display:inline-block; font-size:12px; letter-spacing:.14em; color:rgba(15,23,42,.55); margin-bottom:8px; }
.gallery__title{ font-size:clamp(22px,2.3vw,34px); line-height:1.1; }
.gallery__grid{ display:grid; gap:14px; grid-template-columns:repeat(4,1fr); }
@media (max-width:1024px){ .gallery__grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:720px){ .gallery__grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:480px){ .gallery__grid{ grid-template-columns:1fr; } }
@media (max-width:420px){ .gallery__grid{ grid-template-columns:1fr; } }
.gallery__item{
  border:0; padding:0; cursor:pointer; border-radius:18px; overflow:hidden; background:#fff;
  box-shadow:var(--shadow-sm); transform:translateZ(0);
  transition:transform .16s ease, box-shadow .16s ease;
}
.gallery__item:hover{ transform:translateY(-2px); box-shadow:var(--shadow-md); }
.gallery__item img{ width:100%; height:100%; display:block; aspect-ratio:4 / 3; object-fit:cover; }

.lb{
  width:min(1100px,92vw); border:0; padding:0; border-radius:18px; overflow:hidden; background:#0b1220;
  box-shadow:0 40px 120px rgba(0,0,0,.45); position:relative;
}
.lb::backdrop{ background:rgba(0,0,0,.65); backdrop-filter:blur(2px); }
.lb__figure{ margin:0; display:grid; place-items:center; min-height:min(70vh,700px); padding:18px; }
.lb__img{ width:100%; height:auto; max-height:70vh; object-fit:contain; border-radius:14px; background:rgba(255,255,255,.04); }
.lb__caption{
  width:100%; display:flex; justify-content:space-between; gap:12px; padding:12px 18px 16px;
  color:rgba(255,255,255,.82); font-size:13px;
}
.lb__count{ color:rgba(255,255,255,.55); }
.lb__close, .lb__nav{
  position:absolute; border:0; border-radius:999px; background:rgba(255,255,255,.10); color:#fff; cursor:pointer;
}
.lb__close{ top:12px; right:12px; width:40px; height:40px; font-size:26px; }
.lb__nav{ top:50%; transform:translateY(-50%); width:44px; height:44px; font-size:28px; }
.lb__prev{ left:12px; } .lb__next{ right:12px; }
.lb__close:hover, .lb__nav:hover{ background:rgba(255,255,255,.18); }
@media (max-width:640px){ .lb__nav{ width:40px; height:40px; font-size:26px; } }

/* ===== Utilidade: imagens e SVGs seguras ===== */
.services-band .service-card__icon img,
.diff-card__image img,
.about-mvv__photo{ max-width:100%; height:auto; }
.spec .spec-icon svg,
.spec .spec-grid svg[width],
.spec .spec-grid svg[height]{ width:30px !important; height:30px !important; max-width:100% !important; max-height:100% !important; display:block; }

#galeria .gallery__subtitle {
    margin: 10px 0 0 !important;
    color: #425466 !important;
}
#galeria .gallery__header {
    text-align: left !important;
    margin-bottom: 22px !important;
}
.icon-box svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}
.icon-box {
    width: 44px;
    height: 44px;
    background: rgba(47, 116, 201, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f74c9;
}
.footer-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: flex-start;
    background: #f7fbff;
    padding: 14px 16px;
    border-radius: 14px;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    gap: 16px;
}

/* ===== 14" laptop tuning (≈1366×768) ===== */
@media (max-width: 1400px) and (min-width: 1101px){

  /* Header: logo menor + menu mais baixo */
  .site-header{ padding:14px 0; }
  .site-header.is-sticky{ padding:10px 0 !important; }
  .brand img{ height:44px; }                 /* antes era ~54px */
  .nav-link{ padding:8px 12px; font-size:12px; }
  .header-actions .icon-btn{ width:30px; height:30px; }

  /* Doctors: reduzir foto e apertar colunas */
  .doctors__grid{
    grid-template-columns:minmax(280px,1fr) 560px minmax(280px,1fr);
    min-height:520px;
  }
   .doctors__photoFrame{
    /* move um tiquinho para a direita e assenta um pouco embaixo */
    transform: translateX(-48%);  /* -50% = centro; -48% empurra ~2% p/ direita */
    bottom: 0px!important;
  }
  .doctors::before{ height:120px; }          /* faixa branca superior um pouco menor */

  /* Tipografia da seção para caber melhor */
  .doctors__name{ font-size:34px; }          /* antes 40px */
  .doctors__role{ font-size:12px; }
  .doctors__text p{ font-size:14px; line-height:1.65; }
  .header-inner img{
	  max-height:40px;
  }
  .doctors__col--left, .doctors__col--right {
    padding-top: 130px;
  }
  .doctors__col--left, .doctors__col--right {
    padding-top: 130px;
  }
  .doctors__photoFrame
  {
	  max-width:550px;
  }
  .differentials {
    padding: 30px 0;
    background: var(--bg);
  }
  .header-inner {
    gap: 86px;
  }
}
/* ===== HERO (mobile): centralizar melhor o casal ===== */
@media (max-width: 768px){
  .hero{
    /* move o ponto focal da imagem para a esquerda */
    background-position: 40% center; /* 50% = centro; 60% puxa ~10% p/ esquerda */
    background-size: cover;
    padding-top: 190px;     /* dá um respiro abaixo do header no mobile */
	background:
      linear-gradient(rgba(255,255,255,.60), rgba(255,255,255,.60)),
      url("../imagens/bg_banner01.jpg") center right / cover no-repeat;
  }
}

@media (max-width: 480px){
  .hero{
    background-position: 78% center; /* um tiquinho mais ao centro em telas muito estreitas */
  }
  .header-inner img {
        max-width:150px;
    }
	.hero-kicker {
        color:rgba(15,23,42,.88);
		font-weight:600;
    }
	.treatments {
		padding: 60px 0;
	}
	.differentials {
		padding: 60px 0;
	}
	.diff-card__content p {
		font-size: 20px;
		line-height: 1.65;
	}
}
/* DOCTOR QUOTE – inverter ordem no mobile: texto primeiro, foto depois */
@media (max-width: 980px){
  .doctor-quote__wrap{
    display: flex;                 /* sai do grid no mobile */
    flex-direction: column-reverse;/* inverte: conteúdo vem antes da foto */
    align-items: center;
    gap: 22px;
    min-height: auto;
    justify-items: unset;
    text-align: left;
  }

  .doctor-quote__photo{
    margin: 0;                     /* remove margem extra que estava no grid */
  }

  .doctor-quote__photo img{
    width: min(420px, 92%);        /* mantém a largura amigável no mobile */
    height: auto;
  }
}
/* ===== DOCTORS – mobile: bloco único, textos em cima + foto colada no bottom ===== */
@media (max-width: 980px){
  .doctors{
    background:#e9f0f4;           /* azul claro do bloco todo */
    padding:0;                     /* sem espaçamentos “soltos” */
  }

  .doctors::before{ display:none; }/* remove a faixa branca do topo em mobile */

  .doctors__grid{
    position:relative;
    display:flex;
    flex-direction:column;         /* tudo em uma coluna */
    gap:18px;
    padding:20px 20px 0px;       /* bottom grande para a foto “encaixar” */
    border-radius:16px;
  }

  /* Ordem: textos primeiro (esq), depois textos (dir), por último a foto */
  .doctors__col--left  { order:1; padding-top:0; }
  .doctors__col--right { order:2; padding-top:0; }
  .doctors__col--center{ order:3; min-height:auto; }

  /* Foto isolada, centralizada e colada no rodapé do bloco */
  /* Ajuste de centralização vertical e proporção da foto */
.doctors__photoFrame{
  position:relative;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:100%;
  max-width:520px;
  display:flex;
  justify-content:center;
  align-items:flex-end;
  pointer-events:none;
}

.doctors__photoFrame img{
  width:auto;
  max-width:90%;
  height:auto;
  object-fit:contain;    /* garante que nada será cortado */
  object-position:center bottom; /* centraliza a dupla e encosta no bottom */
  display:block;
}


  /* Tipografia mais enxuta para caber melhor */
  .doctors__name{ font-size:26px; line-height:1.15; }
  .doctors__role{ font-size:12px; }
  .doctors__text p{ font-size:14px; line-height:1.65; }
}
