/* =========================================================
   Nathalia Miquelini — Fisioterapeuta · VERSÃO 2
   Estilo: landing de conversão (inspirada na referência),
   tons terrosos da marca · alto contraste, marrom + dourado
   ========================================================= */

:root {
  --cream: #f3edeb;
  --cream-2: #ece2db;
  --nude: #c6b5ab;
  --brown: #a08572;
  --brown-dark: #6f5848;
  --brown-deep: #4b3a2f;
  --brown-darker: #3a2c23;
  --ink: #3d342d;
  --ink-soft: #6c5f55;

  --gold: #c2a14e;
  --gold-2: #d8c07e;
  --gold-grad: linear-gradient(135deg, #b8923f 0%, #e7d9a4 50%, #c2a14e 100%);

  --white: #ffffff;
  --whats: #25d366;
  --whats-dark: #1da851;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", system-ui, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 10px 30px rgba(58, 44, 35, 0.10);
  --shadow-md: 0 24px 60px rgba(58, 44, 35, 0.20);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0;
  color: var(--ink);
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(60px, 8vw, 116px) 0; }

.section--cream { background: var(--cream-2); }
.section--brown {
  background: linear-gradient(165deg, var(--brown-deep) 0%, var(--brown-darker) 100%);
  color: var(--cream);
}

.section__head { max-width: 720px; margin: 0 auto clamp(40px, 5vw, 60px); text-align: center; }
.section__title { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section__title--light { color: var(--cream); }
.section__lead { font-size: 1.1rem; color: var(--ink-soft); margin-top: 16px; }
.section__lead--light { color: rgba(243, 237, 235, 0.8); }

/* Eyebrow */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.76rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--brown); font-weight: 600; margin: 0 0 16px;
}
.eyebrow--center { justify-content: center; }
.eyebrow--gold { color: var(--gold); }
.eyebrow__line { width: 34px; height: 1px; background: currentColor; opacity: 0.6; }

/* =========================================================
   Botões
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 30px; border-radius: 100px;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease), color 0.4s var(--ease);
  white-space: nowrap;
}
.btn--lg { padding: 17px 38px; font-size: 0.9rem; }
.btn--block { width: 100%; }
.btn svg { width: 19px; height: 19px; }

.btn--gold { background: var(--gold-grad); color: var(--brown-darker); box-shadow: 0 14px 30px rgba(194, 161, 78, 0.4); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(194, 161, 78, 0.5); }

.btn--brown { background: var(--brown); color: var(--cream); box-shadow: 0 12px 26px rgba(160, 133, 114, 0.35); }
.btn--brown:hover { background: var(--brown-dark); transform: translateY(-3px); }

.btn--outline-light { border: 1.5px solid rgba(243, 237, 235, 0.55); color: var(--cream); }
.btn--outline-light:hover { background: var(--cream); color: var(--brown-deep); transform: translateY(-3px); }

.btn--wa { background: var(--whats); color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3); }
.btn--wa:hover { background: var(--whats-dark); transform: translateY(-3px); }

/* =========================================================
   Header
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo img { height: 52px; width: auto; transition: height 0.4s var(--ease); filter: brightness(0) invert(1) sepia(20%); opacity: 0.96; }
/* logo nude clareada sobre o hero escuro; volta ao normal quando header fica claro */
.header.is-scrolled { background: rgba(59, 44, 35, 0.94); backdrop-filter: blur(12px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); height: 72px; }
.header.is-scrolled .header__logo img { height: 44px; }

.nav { display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; align-items: center; gap: 24px; }
.nav__link { font-size: 0.88rem; letter-spacing: 0.04em; color: var(--cream); position: relative; padding: 6px 0; transition: color 0.3s var(--ease); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--gold-grad); transition: width 0.35s var(--ease); }
.nav__link:hover, .nav__link.is-active { color: var(--gold-2); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { padding: 11px 22px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; z-index: 110; }
.nav__toggle span { width: 26px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.35s var(--ease), opacity 0.3s var(--ease), background 0.3s; }
.header.is-scrolled .nav__toggle span { background: var(--cream); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--header-h);
  background: linear-gradient(150deg, var(--brown-deep) 0%, var(--brown-darker) 60%, #2f231b 100%);
  color: var(--cream); overflow: hidden;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(700px 500px at 80% 20%, rgba(194, 161, 78, 0.18), transparent 60%),
    radial-gradient(600px 500px at 10% 90%, rgba(160, 133, 114, 0.25), transparent 55%);
}
.hero__inner { position: relative; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(30px, 5vw, 64px); align-items: center; padding-block: 60px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: 0.005em; margin-bottom: 22px; color: var(--cream); }
.hero__title em { font-style: italic; color: var(--gold-2); }
.hero__text { font-size: 1.14rem; color: rgba(243, 237, 235, 0.84); max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }

.hero__trust { display: flex; flex-wrap: wrap; gap: 14px 36px; }
.hero__trust li { display: flex; flex-direction: column; }
.hero__trust strong { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold-2); line-height: 1; }
.hero__trust span { font-size: 0.82rem; letter-spacing: 0.04em; color: rgba(243, 237, 235, 0.72); margin-top: 4px; }

.hero__media { position: relative; justify-self: center; width: 100%; max-width: 420px; }
.hero__photo {
  position: relative; aspect-ratio: 4 / 5; border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden; box-shadow: var(--shadow-md); border: 5px solid rgba(243, 237, 235, 0.14);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero__seal { position: absolute; width: 108px; height: 108px; left: -28px; bottom: 34px; filter: drop-shadow(0 12px 24px rgba(0,0,0,0.4)); animation: spin 36s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =========================================================
   Grids de features / outcomes
   ========================================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.feature {
  background: var(--white); border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(198, 181, 171, 0.28);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.feature:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.feature__icon {
  display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: 50%; background: var(--gold-grad);
  color: var(--brown-darker); margin-bottom: 18px;
  box-shadow: 0 10px 22px rgba(194, 161, 78, 0.4);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.feature:hover .feature__icon { transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 28px rgba(194, 161, 78, 0.5); }
.feature__icon svg { width: 27px; height: 27px; }
.feature h3 { font-size: 1.35rem; margin-bottom: 8px; }
.feature p { font-size: 0.96rem; color: var(--ink-soft); margin: 0; }

.outcome {
  border: 1px solid rgba(243, 237, 235, 0.16); border-radius: var(--radius);
  padding: 30px 26px; background: rgba(243, 237, 235, 0.04);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease);
}
.outcome:hover { transform: translateY(-6px); background: rgba(243, 237, 235, 0.08); }
.outcome span { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--gold-2); }
.outcome h3 { color: var(--cream); font-size: 1.35rem; margin: 6px 0 8px; }
.outcome p { color: rgba(243, 237, 235, 0.72); font-size: 0.95rem; margin: 0; }

/* =========================================================
   Sobre
   ========================================================= */
.sobre__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 6vw, 76px); align-items: center; }
.sobre__media { position: relative; }
.sobre__photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius) var(--radius) 180px 180px; overflow: hidden; box-shadow: var(--shadow-md); z-index: 2; }
.sobre__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.sobre__accent { position: absolute; inset: 24px -24px -24px 24px; border: 1.5px solid var(--gold); border-radius: var(--radius) var(--radius) 180px 180px; z-index: 1; }
.sobre__content p { margin: 0 0 18px; color: var(--ink-soft); }
.sobre__creds { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 26px 0 32px; }
.cred h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--brown); margin-bottom: 12px; }
.cred ul { display: grid; gap: 8px; }
.cred li { position: relative; padding-left: 22px; font-size: 0.95rem; color: var(--ink); }
.cred li::before { content: ""; position: absolute; left: 0; top: 9px; width: 10px; height: 10px; border-radius: 50%; background: var(--gold-grad); }

/* =========================================================
   Como funciona (steps)
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 40px 26px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(198,181,171,0.28); text-align: center;
}
.step__num {
  position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px; border-radius: 50%; background: var(--gold-grad); color: var(--brown-darker);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.5rem;
  box-shadow: 0 8px 18px rgba(194,161,78,0.4);
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* =========================================================
   Resultados (galeria)
   ========================================================= */
.gallery { max-width: 760px; margin-inline: auto; }
.gallery__viewport { overflow: hidden; border-radius: var(--radius); }
.gallery__track { display: flex; transition: transform 0.6s var(--ease); }
.gallery__item { min-width: 100%; }
.gallery__item img { width: 100%; height: auto; border-radius: var(--radius) var(--radius) 0 0; }
.gallery__item p { background: rgba(243,237,235,0.06); color: rgba(243,237,235,0.85); margin: 0; padding: 18px 24px; font-size: 0.98rem; border-radius: 0 0 var(--radius) var(--radius); text-align: center; }
.gallery__controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 26px; }
.gallery__btn { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid rgba(243,237,235,0.4); color: var(--cream); display: inline-flex; align-items: center; justify-content: center; transition: background 0.35s var(--ease), color 0.35s var(--ease); }
.gallery__btn:hover { background: var(--gold); color: var(--brown-darker); border-color: var(--gold); }
.gallery__btn svg { width: 22px; height: 22px; }
.gallery__dots { display: flex; gap: 9px; }
.gallery__dots button { width: 9px; height: 9px; border-radius: 50%; background: rgba(243,237,235,0.3); transition: transform 0.3s var(--ease), background 0.3s var(--ease); }
.gallery__dots button.is-active { background: var(--gold-2); transform: scale(1.4); }
.resultados__note { text-align: center; margin-top: 24px; font-size: 0.8rem; color: rgba(243,237,235,0.6); font-style: italic; }

/* =========================================================
   O que está incluso
   ========================================================= */
.incluso__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 70px); align-items: center; }
.incluso__intro p { color: var(--ink-soft); margin: 0 0 26px; }
.checklist { display: grid; gap: 14px; }
.checklist li {
  position: relative; padding: 16px 18px 16px 54px; background: var(--white);
  border: 1px solid rgba(198,181,171,0.3); border-radius: var(--radius-sm); font-size: 1rem; color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 26px; height: 26px; border-radius: 50%; background: var(--gold-grad); color: var(--brown-darker);
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem; font-weight: 700;
}

/* =========================================================
   Planos
   ========================================================= */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  position: relative; background: var(--white); border-radius: var(--radius); padding: 38px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(198,181,171,0.3);
  display: flex; flex-direction: column; transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan--featured {
  background: linear-gradient(165deg, var(--brown-deep) 0%, var(--brown-darker) 100%);
  color: var(--cream); border-color: var(--gold); transform: scale(1.04);
}
.plan--featured:hover { transform: scale(1.04) translateY(-8px); }
.plan__badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--gold-grad); color: var(--brown-darker); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 18px; border-radius: 100px;
  box-shadow: 0 8px 18px rgba(194,161,78,0.45);
}
.plan__name { font-size: 1.7rem; margin-bottom: 10px; }
.plan--featured .plan__name { color: var(--cream); }
.plan__price { font-family: var(--font-display); font-size: 1.7rem; color: var(--brown); margin: 0 0 6px; }
.plan--featured .plan__price { color: var(--gold-2); }
.plan__price span { display: block; font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.plan--featured .plan__price span { color: rgba(243,237,235,0.7); }
.plan__desc { font-size: 0.96rem; color: var(--ink-soft); margin: 0 0 22px; }
.plan--featured .plan__desc { color: rgba(243,237,235,0.78); }
.plan__features { display: grid; gap: 11px; margin-bottom: 28px; flex-grow: 1; }
.plan__features li { position: relative; padding-left: 26px; font-size: 0.95rem; }
.plan__features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--gold); font-weight: 700; }
.plan--featured .plan__features li::before { color: var(--gold-2); }
.plan__actions { display: grid; gap: 10px; }
.planos__soon { text-align: center; margin-top: 36px; font-size: 1rem; color: var(--ink-soft); }

/* =========================================================
   CTA final
   ========================================================= */
.cta-final {
  background: linear-gradient(150deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: var(--cream); padding: clamp(60px, 8vw, 100px) 0; text-align: center;
}
.cta-final__inner { max-width: 720px; margin-inline: auto; }
.cta-final h2 { font-size: clamp(2rem, 4.6vw, 3rem); color: var(--cream); margin-bottom: 16px; }
.cta-final p { font-size: 1.12rem; color: rgba(243,237,235,0.85); margin: 0 auto 32px; max-width: 560px; }

/* =========================================================
   Contato
   ========================================================= */
.contato__grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px, 5vw, 70px); align-items: start; }
.contato__intro p { color: var(--ink-soft); }
.contato__list { display: grid; gap: 16px; margin-top: 28px; }
.contato__list li { display: flex; align-items: center; gap: 14px; font-size: 1rem; }
.contato__ic { width: 44px; height: 44px; border-radius: 50%; background: var(--cream-2); color: var(--brown); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contato__ic svg { width: 22px; height: 22px; }

.contato__form { background: var(--white); border-radius: var(--radius); padding: clamp(28px, 4vw, 42px); box-shadow: var(--shadow-md); border: 1px solid rgba(198,181,171,0.28); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--brown-dark); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; font-weight: 300; color: var(--ink);
  background: var(--cream); border: 1.5px solid transparent; border-radius: var(--radius-sm); padding: 13px 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #b3a89f; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.contato__hint { font-size: 0.8rem; color: var(--ink-soft); text-align: center; margin: 14px 0 0; }
.contato__hint a { color: var(--brown); text-decoration: underline; }

/* Mapa da área de atendimento */
.contato__map { margin-top: 48px; }
.contato__map iframe {
  width: 100%; height: 360px; border: 0; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  filter: saturate(0.88) contrast(0.96);
}

/* =========================================================
   Instagram
   ========================================================= */
.insta__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 8px; }
.insta__tile {
  position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}
.insta__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.insta__tile:hover img { transform: scale(1.06); }
.insta__ic {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; background: rgba(75, 58, 47, 0); opacity: 0;
  transition: background 0.4s var(--ease), opacity 0.4s var(--ease);
}
.insta__tile:hover .insta__ic { background: rgba(75, 58, 47, 0.45); opacity: 1; }
.insta__ic svg { width: 34px; height: 34px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq__list { max-width: 800px; margin-inline: auto; }
.faq__item { background: var(--white); border: 1px solid rgba(198,181,171,0.3); border-radius: var(--radius-sm); margin-bottom: 14px; overflow: hidden; transition: box-shadow 0.35s var(--ease); }
.faq__item[open] { box-shadow: var(--shadow-sm); }
.faq__item summary { list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; font-family: var(--font-display); font-size: 1.3rem; color: var(--ink); position: relative; transition: color 0.3s var(--ease); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); font-family: var(--font-body); font-size: 1.5rem; font-weight: 300; color: var(--brown); transition: transform 0.35s var(--ease); }
.faq__item[open] summary { color: var(--brown); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer { padding: 0 24px 22px; }
.faq__answer p { margin: 0; color: var(--ink-soft); font-size: 0.99rem; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: var(--brown-darker); color: rgba(243,237,235,0.78); padding-top: 66px; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; padding-bottom: 46px; }
.footer__logo { height: 58px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 0.94rem; max-width: 360px; margin: 0 0 14px; }
.footer__crefito { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--gold-2); }
.footer h4 { font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cream); margin-bottom: 18px; font-weight: 500; }
.footer__nav ul, .footer__contact ul { display: grid; gap: 11px; }
.footer__nav a, .footer__contact a { font-size: 0.94rem; transition: color 0.3s var(--ease); }
.footer__nav a:hover, .footer__contact a:hover { color: var(--gold-2); }
.footer__bottom { border-top: 1px solid rgba(243,237,235,0.12); padding: 22px 24px; display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: center; text-align: center; font-size: 0.84rem; }
.footer__bottom p { margin: 0; }
.footer__bottom a { color: var(--gold-2); }
.footer__bottom a:hover { text-decoration: underline; }

/* =========================================================
   WhatsApp flutuante
   ========================================================= */
.whats-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: var(--whats); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 30px rgba(37,211,102,0.4); transition: transform 0.35s var(--ease); animation: pulse 2.6s ease-out infinite;
}
.whats-float:hover { transform: scale(1.08); }
.whats-float svg { width: 32px; height: 32px; }
@keyframes pulse {
  0% { box-shadow: 0 14px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 14px 30px rgba(37,211,102,0.4), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 30px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0); }
}

/* =========================================================
   Reveal
   ========================================================= */
.reveal { transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.js .reveal { opacity: 0; transform: translateY(34px); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .hero__inner { grid-template-columns: 1fr 0.85fr; }
}

@media (max-width: 880px) {
  :root { --header-h: 72px; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 360px); flex-direction: column; justify-content: center;
    gap: 34px; background: linear-gradient(160deg, var(--brown-deep) 0%, var(--brown-darker) 100%);
    padding: 40px; transform: translateX(100%); transition: transform 0.5s var(--ease); box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  }
  .nav.is-open { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 22px; text-align: center; }
  .nav__link { font-size: 1.1rem; }
  .nav__cta { background: var(--gold-grad); color: var(--brown-darker); }
  .nav__toggle { display: flex; }

  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; padding-block: 40px 30px; }
  .hero__content { order: 2; }
  .hero__media { order: 1; max-width: 320px; margin-bottom: 10px; }
  .eyebrow, .hero__actions, .hero__trust { justify-content: center; }
  .hero__trust { gap: 14px 30px; }
  .hero__text { margin-inline: auto; }

  .sobre__grid { grid-template-columns: 1fr; }
  .sobre__media { max-width: 400px; margin-inline: auto; order: -1; }
  .incluso__grid { grid-template-columns: 1fr; }
  .contato__grid { grid-template-columns: 1fr; }

  .plans { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .plan--featured { transform: none; }
  .plan--featured:hover { transform: translateY(-8px); }

  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }

  .insta__grid { grid-template-columns: repeat(2, 1fr); }
  .contato__map iframe { height: 300px; }
  .contato__map { margin-top: 36px; }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .container { padding-inline: 20px; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; row-gap: 50px; }
  .sobre__creds { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__trust { gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
