/* =========================================================
   CCOG — Clínica Cirurgia Obesidade Gastroenterologia
   Reformulação Digital Bloom — HTML/CSS/JS puro (sem Webflow)
   Direção visual: clínico claro e arejado
   Marca: teal #0092a2 + carvão #21242d + branco
   ========================================================= */

:root {
  /* Marca */
  --teal:        #0092a2;
  --teal-dark:   #00788a;
  --teal-deep:   #0c4448;
  --teal-tint:   #e6f4f6;
  --teal-tint-2: #f2f9fa;

  /* Neutros */
  --ink:      #1c2530;
  --ink-soft: #45505e;
  --muted:    #6b7684;
  --bg:       #ffffff;
  --bg-alt:   #f4f8f9;
  --line:     #e4ebee;
  --line-2:   #eef3f4;

  /* WhatsApp (só no botão de envio do modal) */
  --wa:       #25d366;
  --wa-dark:  #1fb457;

  /* Sistema */
  --ok:       #0a8a5f;
  --err:      #e0413f;

  --container: 1180px;
  --radius:    18px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --shadow:    0 18px 50px -22px rgba(12, 68, 72, 0.28);
  --shadow-sm: 0 6px 24px -12px rgba(12, 68, 72, 0.22);
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);

  --f-head: 'Montserrat', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-head);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-wrap: balance;
}
p { text-wrap: pretty; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: clamp(64px, 9vw, 130px); }
.section--tint { background: var(--bg-alt); }
.section--deep { background: var(--teal-deep); color: #eafafb; }
.narrow { max-width: 760px; }

/* ===== Eyebrow / headings ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--teal);
  border-radius: 2px;
}
.section--deep .eyebrow { color: #66d3dd; }
.section--deep .eyebrow::before { background: #66d3dd; }

.h-xl { font-size: clamp(1.95rem, 3.9vw, 3.05rem); }
.h-lg { font-size: clamp(1.8rem, 3.6vw, 2.7rem); }
.h-md { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-soft); }
.text-muted { color: var(--muted); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-inline: auto; }

/* ===== Botões ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: 15.5px;
  padding: 15px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 12px 26px -12px rgba(0,146,162,.7); }
.btn--primary:hover { background: var(--teal-dark); transform: translateY(-3px); box-shadow: 0 18px 34px -14px rgba(0,146,162,.75); }
.btn--ghost { background: transparent; color: var(--teal); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--teal); background: var(--teal-tint-2); transform: translateY(-3px); }
.btn--white { background: #fff; color: var(--teal-deep); }
.btn--white:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.btn--lg { padding: 17px 34px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* ===== Navbar ===== */
.nav {
  position: fixed; inset: 0 0 auto 0;
  z-index: 900;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding-block: 18px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.is-solid { background: rgba(255,255,255,.92); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); padding-block: 12px; }

/* wordmark */
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; flex-shrink: 0; }
.brand__txt { font-family: var(--f-head); line-height: 1; }
.brand__name { font-weight: 800; font-size: 25px; letter-spacing: .02em; color: var(--ink); display: block; }
.brand__sub { font-size: 8.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 30px; }
.nav__link {
  font-family: var(--f-head);
  font-weight: 500; font-size: 15px;
  color: var(--ink-soft);
  position: relative; padding-block: 4px;
  transition: color .2s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; background: var(--teal); border-radius: 2px;
  transition: width .25s var(--ease);
}
.nav__link:hover { color: var(--teal); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 6px; }

/* Dropdown "Procedimentos" */
.nav__item--drop { position: relative; }
.nav__drop-toggle {
  display: inline-flex; align-items: center; gap: 5px; background: none; border: none; cursor: pointer;
  font-family: var(--f-head); font-weight: 500; font-size: 15px; color: var(--ink-soft); padding: 4px 0;
  transition: color .2s;
}
.nav__drop-toggle:hover, .nav__item--drop.is-open .nav__drop-toggle { color: var(--teal); }
.nav__drop-toggle svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.nav__item--drop:hover .nav__drop-toggle svg, .nav__item--drop.is-open .nav__drop-toggle svg { transform: rotate(180deg); }
.nav__item--drop:hover::after { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 18px; }
.nav__drop {
  position: absolute; top: calc(100% + 16px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px; min-width: 232px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transition: opacity .22s var(--ease), transform .22s var(--ease); z-index: 950;
}
.nav__item--drop:hover .nav__drop, .nav__item--drop.is-open .nav__drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__drop-link {
  padding: 11px 16px; border-radius: 9px; font-family: var(--f-head); font-weight: 500; font-size: 14.5px;
  color: var(--ink-soft); white-space: nowrap; transition: background .18s, color .18s;
}
.nav__drop-link:hover { background: var(--teal-tint-2); color: var(--teal); }

.nav__burger { display: none; width: 44px; height: 44px; border: none; background: transparent; cursor: pointer; flex-direction: column; gap: 5px; align-items: center; justify-content: center; }
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: clamp(70px, 9vw, 120px);
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 88% -8%, var(--teal-tint) 0%, rgba(230,244,246,0) 62%),
    linear-gradient(180deg, #fbfdfd 0%, #ffffff 60%);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero__eyebrow { color: var(--teal); }
.hero h1 { margin: 8px 0 20px; }
.hero h1 .accent { color: var(--teal); }
.hero__sub { max-width: 46ch; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.hero__trust-item { display: flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--ink-soft); font-weight: 500; }
.hero__trust-item strong { color: var(--ink); font-family: var(--f-head); }
.hero__trust svg { width: 20px; height: 20px; color: var(--teal); flex-shrink: 0; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: clamp(380px, 52vw, 560px);
  object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.hero__media::before {
  content: ""; position: absolute; inset: auto -18px -18px auto;
  width: 62%; height: 62%; border-radius: var(--radius-lg);
  background: var(--teal-tint); z-index: -1;
}
.hero__badge {
  position: absolute; left: -22px; bottom: 34px;
  background: #fff; border-radius: 16px; padding: 16px 22px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px;
}
.hero__badge b { font-family: var(--f-head); font-size: 27px; color: var(--teal); display: block; line-height: 1; }
.hero__badge span { font-size: 12.5px; color: var(--muted); }

/* ===== Faixa CTA ===== */
.cta-band { background: var(--teal); color: #fff; }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-block: 40px; }
.cta-band h3 { color: #fff; font-size: clamp(1.2rem, 2.2vw, 1.6rem); max-width: 30ch; }
.cta-band .btn--white { flex-shrink: 0; }

/* ===== Sobre ===== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.about__text p { color: var(--ink-soft); margin-bottom: 18px; }
.about__text .dropcap::first-letter { font-family: var(--f-head); font-weight: 800; font-size: 3.4em; float: left; line-height: .8; margin: 6px 12px 0 0; color: var(--teal); }
.mini-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-feature {
  display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 16px 18px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mini-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.mini-feature__ic { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; }
.mini-feature__ic svg { width: 21px; height: 21px; }
.mini-feature b { font-family: var(--f-head); font-size: 14.5px; line-height: 1.25; }

/* ===== Equipe (tabs) ===== */
.tabs__menu {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 46px;
}
.tab-btn {
  font-family: var(--f-head); font-weight: 600; font-size: 14.5px;
  padding: 11px 22px; border-radius: 100px;
  border: 1.5px solid var(--line); background: #fff; color: var(--ink-soft);
  cursor: pointer; transition: all .22s var(--ease);
}
.tab-btn:hover { border-color: var(--teal); color: var(--teal); }
.tab-btn.is-active { background: var(--teal); border-color: var(--teal); color: #fff; box-shadow: 0 10px 22px -12px rgba(0,146,162,.7); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp .4s var(--ease); }

.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.doc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .28s var(--ease), box-shadow .28s var(--ease);
  display: flex; flex-direction: column;
}
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.doc-card__photo { aspect-ratio: 4/5; overflow: hidden; background: var(--bg-alt); }
.doc-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.doc-card:hover .doc-card__photo img { transform: scale(1.05); }
.doc-card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.doc-card__name { font-size: 18.5px; margin-bottom: 7px; }
.doc-card__role { font-family: var(--f-head); font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; color: var(--teal); margin-bottom: 4px; }
.doc-card__reg { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.doc-card__bio { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* ===== Serviços ===== */
.serv-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 22px; }
.serv-grid--center { grid-template-columns: repeat(auto-fit, minmax(260px, 330px)); justify-content: center; }
.serv-grid--center .serv-card { text-align: center; }
.serv-grid--center .serv-card__ic { margin-inline: auto; }
.serv-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s;
}
.serv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.serv-card__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--teal-tint); color: var(--teal); display: grid; place-items: center; margin-bottom: 20px; }
.serv-card__ic svg { width: 26px; height: 26px; }
.serv-card h3 { font-size: 18px; margin-bottom: 10px; }
.serv-card p { font-size: 14.5px; color: var(--ink-soft); }
.serv-card__link {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-head); font-weight: 600; font-size: 14px; color: var(--teal);
  transition: gap .2s var(--ease);
}
.serv-card__link svg { width: 16px; height: 16px; }
.serv-card__link:hover { gap: 12px; }

/* ===== IMC ===== */
.imc__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 66px); align-items: center; }
.imc__illu {
  display: grid; place-items: center;
  background: linear-gradient(160deg, var(--teal-tint) 0%, #ffffff 100%);
  border: 1px solid var(--teal-tint);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  min-height: 340px;
}
.imc__illu img { width: 100%; max-width: 320px; height: auto; }
.imc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm);
}
.imc-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.imc-card > p { color: var(--muted); margin-bottom: 24px; font-size: 15px; }
.imc-field { margin-bottom: 16px; }
.imc-field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.imc-field input {
  width: 100%; padding: 14px 16px; font-size: 16px; font-family: var(--f-body);
  border: 1.5px solid var(--line); border-radius: var(--radius-sm); outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.imc-field input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-tint); }
.imc__result { margin-top: 20px; padding: 18px; border-radius: var(--radius-sm); background: var(--bg-alt); text-align: center; font-family: var(--f-head); font-weight: 600; display: none; }
.imc__result.show { display: block; animation: fadeUp .35s var(--ease); }
.imc__result b { font-size: 1.7rem; color: var(--teal); display: block; }
.imc__result.is-err { background: #fdeceb; color: var(--err); }

/* ===== Diferenciais (deep) ===== */
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.why__media img { border-radius: var(--radius-lg); width: 100%; height: 100%; max-height: 460px; object-fit: cover; box-shadow: var(--shadow); }
.section--deep h2, .section--deep h3 { color: #fff; }
.section--deep .lead, .section--deep p { color: #cfeef1; }
.why-list { display: grid; gap: 20px; margin-top: 28px; }
.why-item { display: flex; gap: 16px; }
.why-item__ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: rgba(255,255,255,.12); color: #7fdbe4; display: grid; place-items: center; }
.why-item__ic svg { width: 22px; height: 22px; }
.why-item h4 { font-size: 17px; margin-bottom: 4px; color: #fff; }
.why-item p { font-size: 14.5px; color: #bfe6ea; margin: 0; }

/* ===== Depoimentos / Instagram ===== */
.insta-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 12px; margin-top: 12px; }
.insta-cell {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-sm); overflow: hidden;
  background: var(--bg-alt); display: block;
}
.insta-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.insta-cell::after {
  content: ""; position: absolute; inset: 0; background: rgba(0,146,162,.001);
  transition: background .3s; display: grid; place-items: center;
}
.insta-cell:hover img { transform: scale(1.08); }
.insta-cell:hover::after { background: rgba(12,68,72,.35); }
.insta-cell__ic { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: opacity .3s; z-index: 2; color: #fff; }
.insta-cell:hover .insta-cell__ic { opacity: 1; }
.insta-cell__ic svg { width: 30px; height: 30px; }
.insta-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 26px; }
.insta-handle { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-head); font-weight: 600; color: var(--teal); }

/* ===== Selo de convênios (só páginas Dr. João Paulo) ===== */
.selo {
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 12px 24px; font-family: var(--f-head); font-weight: 600; font-size: 14.5px;
  box-shadow: var(--shadow-sm);
}
.selo__item { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); }
.selo__item svg { width: 18px; height: 18px; color: var(--ok); }
.selo__no { color: var(--muted); font-weight: 500; }
.selo--hero { margin-top: 26px; }

.formas {
  background: var(--teal-tint-2); border: 1px solid var(--teal-tint);
  border-radius: var(--radius-lg); padding: clamp(28px, 4vw, 46px);
  display: flex; gap: 26px; align-items: center; flex-wrap: wrap;
}
.formas__ic { width: 62px; height: 62px; flex-shrink: 0; border-radius: 16px; background: var(--teal); color: #fff; display: grid; place-items: center; }
.formas__ic svg { width: 30px; height: 30px; }
.formas__txt { flex: 1; min-width: 260px; }
.formas__txt h3 { margin-bottom: 8px; }
.formas__txt p { color: var(--ink-soft); margin: 0; }

/* ===== Passos / Como funciona ===== */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 22px; counter-reset: step; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative;
}
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--f-head); font-weight: 800; font-size: 15px;
  width: 40px; height: 40px; border-radius: 12px; background: var(--teal); color: #fff;
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h4 { font-size: 16.5px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--ink-soft); margin: 0; }

/* ===== Sinais / lista ===== */
.signs { display: grid; gap: 14px; margin-top: 22px; }
.sign { display: flex; gap: 13px; align-items: flex-start; font-size: 15.5px; color: var(--ink-soft); }
.sign svg { width: 22px; height: 22px; color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* ===== FAQ ===== */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  font-family: var(--f-head); font-weight: 600; font-size: 17px; color: var(--ink);
  padding: 24px 44px 24px 0; position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%);
  font-size: 26px; font-weight: 400; color: var(--teal); transition: transform .3s var(--ease);
}
.faq-item.is-open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 0 24px; color: var(--ink-soft); font-size: 15.5px; margin: 0; }

/* ===== Responsável técnico ===== */
.rt { display: grid; grid-template-columns: 300px 1fr; gap: clamp(28px, 4vw, 54px); align-items: center; }
.rt__photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.rt__badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 20px; }
.rt__badge { font-family: var(--f-head); font-weight: 600; font-size: 12.5px; padding: 7px 15px; border-radius: 100px; background: var(--teal-tint); color: var(--teal-dark); }

/* ===== Footer ===== */
.footer { background: var(--ink); color: #c7d0d8; padding-top: 70px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand img { width: 168px; margin-bottom: 20px; }
.footer__brand p { font-size: 14.5px; color: #98a4ae; max-width: 32ch; }
.footer__col h5 { color: #fff; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a, .footer__col p { display: block; color: #b3bdc6; font-size: 14.5px; margin-bottom: 12px; transition: color .2s; }
.footer__col a:hover { color: var(--teal); }
.footer__social { display: flex; gap: 12px; margin-top: 6px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; transition: background .25s, transform .25s; }
.footer__social a:hover { background: var(--teal); transform: translateY(-3px); }
.footer__social svg { width: 20px; height: 20px; color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; padding-block: 26px; font-size: 13px; color: #8b97a1; }
.footer__bottom a { color: #b3bdc6; }
.footer__bottom a:hover { color: var(--teal); }

/* ===== WhatsApp flutuante ===== */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 800;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa);
  display: grid; place-items: center; box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .25s var(--ease); cursor: pointer; border: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }

/* ===== Reveal (progressive enhancement — só esconde se houver JS) ===== */
.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js [data-reveal].in { opacity: 1; transform: none; }
.js [data-reveal-delay="1"] { transition-delay: .08s; }
.js [data-reveal-delay="2"] { transition-delay: .16s; }
.js [data-reveal-delay="3"] { transition-delay: .24s; }
.js [data-reveal-delay="4"] { transition-delay: .32s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* =========================================================
   MODAL DO FORMULÁRIO (multi-fluxo) — base do site atual
   ========================================================= */
.ccog-overlay {
  display: none; position: fixed; inset: 0; z-index: 999999;
  background: rgba(15,23,33,.62); backdrop-filter: blur(10px);
  justify-content: center; align-items: center; padding: 20px;
}
.ccog-overlay.active { display: flex; animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.ccog-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  width: 100%; max-width: 480px; max-height: 92vh; overflow-y: auto;
  padding: 50px 28px 32px; position: relative;
  animation: slideUp .4s var(--ease);
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px) scale(.97); } to { opacity: 1; transform: none; } }
.ccog-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-alt); border: none; font-size: 22px; color: var(--muted); cursor: pointer;
  display: grid; place-items: center; transition: all .25s var(--ease);
}
.ccog-close:hover { background: var(--line); color: var(--ink); transform: rotate(90deg); }
.ccog-head { text-align: center; margin-bottom: 28px; }
.ccog-head h2 { font-size: 21px; color: var(--teal-deep); margin-bottom: 7px; }
.ccog-head p { font-size: 14.5px; color: var(--muted); }
.ccog-step { display: none; }
.ccog-step.active { display: block; animation: fadeStep .3s ease; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ccog-option {
  display: flex; align-items: center; gap: 12px; width: 100%; padding: 17px 20px; margin-bottom: 11px;
  background: #fff; border: 2px solid var(--line); border-radius: 14px;
  font-size: 15.5px; font-family: var(--f-body); color: var(--ink); cursor: pointer; text-align: left;
  font-weight: 500; transition: all .22s var(--ease);
}
.ccog-option svg { width: 21px; height: 21px; color: var(--teal); flex-shrink: 0; }
.ccog-option:hover { border-color: var(--teal); background: var(--teal-tint-2); transform: translateY(-2px); }
.ccog-input-group { margin-bottom: 18px; }
.ccog-input-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 7px; font-family: var(--f-head); }
.ccog-input-group input {
  width: 100%; padding: 13px 15px; border: 2px solid var(--line); border-radius: 12px;
  font-size: 16px; font-family: var(--f-body); outline: none; transition: all .2s;
}
.ccog-input-group input:focus { border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-tint); }
.ccog-input-group input.error { border-color: var(--err); }
.ccog-error { color: var(--err); font-size: 13px; margin-top: 6px; display: none; }
.ccog-radio-group { margin-bottom: 22px; }
.ccog-radio-group > p { font-size: 14.5px; font-weight: 600; margin-bottom: 11px; font-family: var(--f-head); }
.ccog-radio {
  display: flex; align-items: center; padding: 13px 15px; margin-bottom: 9px;
  background: #fff; border: 2px solid var(--line); border-radius: 13px; cursor: pointer;
  transition: all .22s var(--ease); min-height: 50px;
}
.ccog-radio:hover { border-color: var(--teal); background: var(--teal-tint-2); }
.ccog-radio.selected { border-color: var(--teal); background: var(--teal-tint); box-shadow: 0 0 0 3px rgba(0,146,162,.12); }
.ccog-radio input { margin-right: 13px; accent-color: var(--teal); width: 18px; height: 18px; flex-shrink: 0; }
.ccog-radio span { flex: 1; font-size: 15px; line-height: 1.4; }
.ccog-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 11px; width: 100%;
  padding: 17px 20px; background: var(--wa); color: #fff; border: none; border-radius: 15px;
  font-size: 16.5px; font-weight: 700; font-family: var(--f-head); cursor: pointer;
  transition: all .25s var(--ease); margin-top: 10px; box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.ccog-wa-btn:hover:not(:disabled) { background: var(--wa-dark); transform: translateY(-3px); }
.ccog-wa-btn:disabled { background: #cbd5db; cursor: not-allowed; box-shadow: none; }
.ccog-wa-btn svg { width: 23px; height: 23px; fill: #fff; }
.ccog-back {
  display: inline-flex; align-items: center; gap: 6px; background: none; border: none;
  color: var(--muted); font-size: 14px; font-weight: 500; font-family: var(--f-head);
  cursor: pointer; margin-bottom: 18px; transition: color .2s;
}
.ccog-back:hover { color: var(--teal); }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 960px) {
  .hero__grid, .about__grid, .imc__grid, .why__grid, .rt { grid-template-columns: 1fr; }
  .hero { padding-top: 128px; }
  .hero__media { order: -1; }
  .hero__media img { height: clamp(300px, 60vw, 420px); }
  .hero__badge { left: auto; right: 16px; }
  .rt { text-align: left; }
  .rt__photo { max-width: 300px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 82vw);
    background: #fff; flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 100px 32px 40px; gap: 22px; transform: translateX(100%);
    transition: transform .35s var(--ease); box-shadow: -20px 0 50px -20px rgba(0,0,0,.3); z-index: 890;
  }
  .nav.is-open .nav__menu { transform: none; }
  .nav__menu .nav__link { color: var(--ink-soft) !important; font-size: 17px; }
  .nav__burger { display: flex; z-index: 900; }
  .nav__cta { width: 100%; margin: 8px 0 0; text-align: center; }
  .nav__item--drop { width: 100%; }
  .nav__item--drop:hover::after { content: none; }
  .nav__drop-toggle { width: 100%; justify-content: space-between; font-size: 17px; color: var(--ink-soft); }
  .nav__drop {
    position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none;
    border: none; background: transparent; padding: 2px 0 0 14px; min-width: 0;
    max-height: 0; overflow: hidden; transition: max-height .3s var(--ease);
  }
  .nav__item--drop.is-open .nav__drop { max-height: 260px; }
  .nav__drop-link { font-size: 16px; padding: 10px 6px; }
  .cta-band .container { flex-direction: column; text-align: center; }
  .mini-features { grid-template-columns: 1fr; }
  .about__grid { gap: 30px; }
}
@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .ccog-card { padding: 46px 20px 26px; }
  .hero__actions .btn { width: 100%; }
}

/* Instagram: linha única deslizável em telas menores */
@media (max-width: 900px) {
  .insta-grid {
    display: flex; grid-template-columns: none; overflow-x: auto;
    scroll-snap-type: x mandatory; padding-bottom: 10px; -webkit-overflow-scrolling: touch;
  }
  .insta-cell { flex: 0 0 40%; scroll-snap-align: start; }
}
@media (max-width: 560px) {
  .insta-cell { flex-basis: 62%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
