/* =========================================================
   Active Life — LP Grupo VIP
   ========================================================= */

:root {
  /* Marca */
  --green: #80ff00;
  --blue: #253dff;
  --white: #ffffff;

  /* Apoio (derivados da marca) */
  --navy: #0d1a6e;
  --blue-card: #3149ff;
  --blue-line: rgba(255, 255, 255, 0.22);
  --blue-soft: #eef0ff;
  --bg-soft: #f6f7ff;
  --text: #0d1a6e;
  --muted: #56608f;

  --font-title: "Anton", "Archivo Black", Impact, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-offset: 8px;
  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --topbar-h: 44px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.center { display: flex; justify-content: center; }

/* ---------- Tipografia ---------- */

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--white); }

.title {
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: 0.005em;
  font-size: clamp(42px, 6.4vw, 84px);
}
.title--blue { color: var(--blue); }
.title--green { color: var(--green); }

.hl-green { color: var(--green); }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 34px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--navy);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 7px 7px 0 var(--navy); }
.btn:active { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--navy); }
.btn:focus-visible { outline: 3px solid var(--white); outline-offset: 4px; }

.btn--green { background: var(--green); color: var(--navy); }
.btn--blue { background: var(--blue); color: var(--white); }
.btn--block { width: 100%; }

/* ---------- Faixa topo ---------- */

.topbar {
  background: var(--green);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-block: 11px;
  text-align: center;
}
.topbar strong { font-weight: 800; }
.topbar__progress {
  flex: 0 0 200px;
  height: 12px;
  border: 2px solid var(--navy);
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
}
.topbar__progress span {
  display: block;
  height: 100%;
  width: var(--p);
  background: var(--blue);
  border-radius: 999px;
  animation: fill 1.4s ease-out both;
}
@keyframes fill { from { width: 0; } }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  padding-bottom: clamp(64px, 8vw, 110px);
}
.hero__bg-wing {
  position: absolute;
  left: 0;
  top: -3%;
  height: 106%;
  width: auto;
  color: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}
.hero__bg-word {
  position: absolute;
  right: -40px;
  top: 60px;
  font-family: var(--font-title);
  font-size: clamp(200px, 30vw, 440px);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.1);
  pointer-events: none;
  user-select: none;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 26px;
}
.nav__logo img { width: 190px; height: auto; }
.nav__tagline {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: clamp(28px, 5vw, 60px);
}

.hero__title {
  font-family: var(--font-title);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(52px, 7.6vw, 104px);
  line-height: 1.04;
  margin-bottom: 26px;
}
.hero__subtitle {
  font-size: clamp(17px, 1.5vw, 20px);
  max-width: 600px;
  opacity: 0.95;
  margin-bottom: 24px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.chips li {
  padding: 8px 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.disclaimer {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.8;
}

.hero__visual {
  position: relative;
  max-width: 420px;
  justify-self: end;
  width: 100%;
}
.hero__card {
  position: relative;
  border: 3px solid var(--white);
  border-radius: 28px;
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 14px 14px 0 var(--green);
  aspect-ratio: 4 / 5;
  background: var(--blue-card);
}
.hero__card img { width: 100%; height: 100%; object-fit: cover; }

.sticker {
  position: absolute;
  display: grid;
  place-items: center;
  width: 136px;
  height: 136px;
  border-radius: 50%;
  background: var(--green);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
  font-family: var(--font-title);
  font-size: 24px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  z-index: 2;
}
.sticker--top { top: -34px; left: -48px; transform: rotate(-14deg); animation: bob 4s ease-in-out infinite; }
.sticker--bottom { bottom: -30px; right: -30px; transform: rotate(12deg); animation: bob 4s ease-in-out 1.2s infinite; }
@keyframes bob {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

/* ---------- Seções ---------- */

.section { padding-block: clamp(72px, 9vw, 120px); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.section-head > div { max-width: 820px; }
.section-head__aside {
  max-width: 340px;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 8px;
}
.section-head__aside--light { color: var(--white); font-weight: 500; }

/* ---------- Rotina ---------- */

.rotina__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.p-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-offset) var(--shadow-offset) 0 var(--blue);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.p-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: calc(var(--shadow-offset) + 4px) calc(var(--shadow-offset) + 4px) 0 var(--blue);
}
.p-card--green { background: var(--green); }
.p-card--soft { background: var(--blue-soft); }

.p-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.p-card__num {
  font-family: var(--font-title);
  font-size: 72px;
  line-height: 0.8;
  color: var(--blue);
  opacity: 0.14;
}
.tag {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.p-card__img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 7 / 5;
  margin-bottom: 22px;
  border: 2px solid var(--blue);
}
.p-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.p-card:hover .p-card__img img { transform: scale(1.06); }

.p-card__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: 44px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.p-card p { font-size: 16px; color: var(--navy); }

.rotina__note {
  max-width: 760px;
  margin: 56px auto 28px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
}

/* ---------- Marca ---------- */

.marca {
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}
.marca .section-head { margin-bottom: 36px; }

.marquee {
  border-block: 1px solid var(--blue-line);
  padding-block: 16px;
  margin-bottom: 44px;
  overflow: hidden;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  font-family: var(--font-title);
  font-size: 30px;
  text-transform: uppercase;
  color: var(--green);
  white-space: nowrap;
}
.marquee__track i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  flex: none;
}
@keyframes marquee {
  to { transform: translateX(calc(-50% - 16px)); }
}

.marca__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.25fr;
  grid-template-areas:
    "a b photo"
    "c d photo"
    "e e photo";
  gap: 18px;
}
.marca__grid > :nth-child(1) { grid-area: a; }
.marca__grid > :nth-child(2) { grid-area: b; }
.marca__grid > :nth-child(3) { grid-area: c; }
.marca__grid > :nth-child(4) { grid-area: d; }
.marca__grid > :nth-child(5) { grid-area: e; }
.marca__photo { grid-area: photo; }

.m-card {
  padding: 26px;
  min-height: 210px;
  border: 1px solid var(--blue-line);
  border-radius: var(--radius);
  background: var(--blue-card);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.m-card:hover { background: #3a51ff; border-color: var(--green); }
.m-card--wide { min-height: 0; }
.m-card h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.m-card p { font-size: 16px; opacity: 0.95; }

.marca__photo {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--blue-line);
  min-height: 420px;
}
.marca__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.marca__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(37, 61, 255, 0.25) 0%, rgba(37, 61, 255, 0.05) 45%, rgba(37, 61, 255, 0.85) 100%);
}
.marca__photo figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--green);
  color: var(--navy);
  font-size: 17px;
  font-weight: 800;
}

/* ---------- Prova social ---------- */

.prova { background: var(--bg-soft); }
.prova .section-head > div { max-width: 1000px; }

.prova__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.t-card {
  display: flex;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--green);
}
.t-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.stars { color: var(--blue); font-size: 18px; letter-spacing: 3px; }
.t-card__quote {
  font-family: var(--font-title);
  font-size: 72px;
  line-height: 0.7;
  color: var(--green);
  -webkit-text-stroke: 2px var(--blue);
}
.t-card__text { font-size: 16px; line-height: 1.6; color: var(--navy); margin-bottom: 22px; flex: 1; }
.t-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1.5px solid var(--blue-soft);
}
.t-card__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}
.t-card__name { font-size: 14px; font-weight: 800; text-transform: uppercase; color: var(--blue); line-height: 1.3; }
.t-card__product { font-size: 13px; color: var(--muted); line-height: 1.3; }

/* ---------- FAQ ---------- */

.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.faq__list { border-top: 2px solid var(--blue); }
.faq__list details { border-bottom: 2px solid var(--blue); }
.faq__list summary {
  position: relative;
  display: block;
  padding: 22px 48px 22px 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  list-style: none;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-soft);
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}
.faq__list details[open] summary::after {
  content: "–";
  background: var(--green);
  color: var(--navy);
}
.faq__list summary:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; border-radius: 6px; }
.faq__list details p {
  padding: 0 48px 24px 0;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- CTA final + form ---------- */

.cta {
  position: relative;
  background: var(--green);
  overflow: hidden;
}
.cta__bg-word {
  position: absolute;
  right: -30px;
  bottom: -60px;
  font-family: var(--font-title);
  font-size: clamp(160px, 26vw, 380px);
  line-height: 1;
  color: rgba(13, 26, 110, 0.06);
  pointer-events: none;
  user-select: none;
}
.cta__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.cta__title { font-size: clamp(46px, 6.6vw, 92px); margin-bottom: 26px; }
.cta__subtitle { font-size: 19px; max-width: 560px; margin-bottom: 22px; }
.cta__disclaimer { font-size: 17px; font-weight: 800; }

.form-card {
  padding: clamp(24px, 3.2vw, 38px);
  background: var(--white);
  border: 2px solid var(--blue);
  border-radius: 28px;
  box-shadow: 12px 12px 0 var(--blue);
}
.form__title {
  font-family: var(--font-title);
  font-weight: 400;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.form__subtitle { font-size: 15px; margin-bottom: 24px; }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
}
.field input {
  width: 100%;
  padding: 15px 18px;
  border: 1.5px solid #c3c9f5;
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--navy);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input::placeholder { color: #9aa1c4; }
.field input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 61, 255, 0.15);
}
.field__error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #d0213f;
}
.field.is-invalid input { border-color: #d0213f; }
.field.is-invalid .field__error { display: block; }
.field.is-invalid label { color: #d0213f; }
.field.is-invalid input { background: #fff5f7; }
.field.is-invalid input:focus { box-shadow: 0 0 0 4px rgba(208, 33, 63, 0.15); }

.form__alert {
  margin: -8px 0 16px;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fde8ec;
  color: #b01a34;
  font-size: 14px;
  font-weight: 700;
}
.form__alert[hidden] { display: none; }

.btn.is-shaking { animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { translate: 0 0; }
  20%, 60% { translate: -6px 0; }
  40%, 80% { translate: 6px 0; }
}

.form__consent {
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0 22px;
}

.btn[disabled] { opacity: 0.7; cursor: wait; }

.form-success { text-align: center; padding-block: 24px; }
.form-success__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  border: 2px solid var(--navy);
  color: var(--navy);
  font-size: 34px;
  font-weight: 800;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 30px;
}
.footer img { width: 160px; }
.footer__info { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; text-align: right; }
.footer__credit { font-size: 13px; }
.footer__credit a {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color 0.15s ease;
}
.footer__credit a:hover { border-bottom-color: var(--green); }
.footer__credit a:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; border-radius: 2px; }

/* ---------- Animação de entrada ---------- */

.reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 0.6s ease, translate 0.6s ease, transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.reveal.is-visible { opacity: 1; translate: 0 0; }

/* =========================================================
   Responsivo
   ========================================================= */

@media (max-width: 1080px) {
  .prova__grid { grid-template-columns: repeat(2, 1fr); }
  .marca__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "a b"
      "c d"
      "e e"
      "photo photo";
  }
  .marca__photo { min-height: 380px; }
}

@media (max-width: 900px) {
  .hero__grid,
  .cta__grid,
  .faq__grid { grid-template-columns: 1fr; }

  .hero__visual { justify-self: center; max-width: 340px; margin-top: 30px; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 18px; }
  .rotina__cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .faq__grid { gap: 32px; }
  .cta { padding-top: 96px; }
}

@media (max-width: 640px) {
  .topbar { font-size: 12px; }
  .topbar__inner { flex-direction: column; gap: 7px; padding-block: 9px; }
  .topbar__progress { flex-basis: auto; width: 180px; height: 10px; }

  .nav__logo img { width: 150px; }
  .nav__tagline { display: none; }

  .hero__title { font-size: clamp(44px, 13vw, 64px); }
  .chips li { font-size: 11px; padding: 7px 11px; }
  .hero .btn { width: 100%; }

  .sticker { width: 104px; height: 104px; font-size: 19px; }
  .sticker--top { left: -16px; top: -28px; }
  .sticker--bottom { right: -10px; }

  .marca__grid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e" "photo";
  }
  .m-card { min-height: 0; }
  .marquee__track span { font-size: 24px; }

  .prova__grid { grid-template-columns: 1fr; }

  .faq__list summary { font-size: 17px; }

  .form-card { box-shadow: 8px 8px 0 var(--blue); }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__info { align-items: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; translate: none; }
}

/* =========================================================
   Desktop: cada seção cabe inteira na tela
   Tamanhos acompanham a altura da viewport (svh)
   ========================================================= */

@media (min-width: 901px) {
  .section,
  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: clamp(28px, 6svh, 80px);
  }

  /* Hero ocupa a tela descontando a faixa do topo */
  .hero {
    min-height: calc(100svh - var(--topbar-h, 42px));
    justify-content: flex-start;
    padding-top: 0;
    padding-bottom: clamp(24px, 5svh, 64px);
  }
  .nav { padding-block: clamp(14px, 2.6svh, 26px); }
  .hero__grid {
    flex: 1;
    grid-template-columns: 1.5fr 1fr;
    padding-top: 0;
  }
  .hero__title {
    font-size: clamp(40px, min(6.4vw, 8.6svh), 104px);
    margin-bottom: clamp(12px, 2.4svh, 26px);
  }
  .hero .eyebrow { margin-bottom: clamp(8px, 1.4svh, 14px); }
  .hero__subtitle { font-size: clamp(15px, 2.2svh, 20px); margin-bottom: clamp(14px, 2.4svh, 24px); }
  .chips { margin-bottom: clamp(16px, 3.2svh, 34px); }
  .chips li { padding: clamp(5px, 0.8svh, 8px) 14px; }
  .hero .btn { padding-block: clamp(13px, 2svh, 18px); }
  .disclaimer { margin-top: clamp(8px, 1.4svh, 16px); }
  .hero__visual { max-width: min(420px, 52svh); }
  .sticker { width: clamp(96px, 15svh, 136px); height: clamp(96px, 15svh, 136px); font-size: clamp(18px, 2.7svh, 24px); }

  /* Títulos de seção */
  .title { font-size: clamp(34px, min(5.6vw, 8svh), 84px); }
  .section-head { margin-bottom: clamp(20px, 4svh, 48px); }
  .eyebrow { margin-bottom: clamp(8px, 1.4svh, 14px); }

  /* Rotina */
  .rotina { padding-block: clamp(20px, 4svh, 64px); }
  .rotina__cards { gap: clamp(18px, 2vw, 28px); }
  .rotina .section-head > div { max-width: 940px; }
  .rotina .title { font-size: clamp(32px, min(4.8vw, 7svh), 66px); }
  .rotina .section-head__aside { max-width: 280px; }
  .p-card { padding: clamp(16px, 2.6svh, 26px); }
  .p-card__top { margin-bottom: clamp(10px, 1.8svh, 18px); }
  .p-card__num { font-size: clamp(44px, 7svh, 72px); }
  .p-card__img { aspect-ratio: auto; height: clamp(96px, 18svh, 240px); margin-bottom: clamp(12px, 2.2svh, 22px); }
  .p-card__title { font-size: clamp(28px, 4.6svh, 44px); margin-bottom: 6px; }
  .p-card p { font-size: clamp(14px, 1.9svh, 16px); }
  .rotina__note { margin: clamp(16px, 3svh, 44px) auto clamp(12px, 2svh, 24px); font-size: clamp(15px, 2.2svh, 19px); }
  .rotina .btn { padding-block: clamp(13px, 2svh, 18px); }

  /* Marca */
  .marca .section-head { margin-bottom: clamp(16px, 3svh, 36px); }
  .marquee { padding-block: clamp(8px, 1.4svh, 16px); margin-bottom: clamp(16px, 3.6svh, 44px); }
  .marquee__track span { font-size: clamp(20px, 3.2svh, 30px); }
  .marca__grid { gap: clamp(10px, 1.8svh, 18px); }
  .m-card { min-height: 0; padding: clamp(14px, 2.4svh, 26px) 24px; }
  .m-card h3 { margin-bottom: 6px; }
  .m-card p { font-size: clamp(14px, 1.9svh, 16px); }
  .marca__photo { min-height: 0; }

  /* Prova social */
  .t-card { padding: clamp(18px, 3svh, 28px); }
  .t-card__text { font-size: clamp(14px, 2svh, 16px); }

  /* FAQ */
  .faq__list summary { padding-block: clamp(14px, 2.4svh, 22px); }

  /* CTA + formulário */
  .cta__title { font-size: clamp(34px, min(5.6vw, 7.4svh), 92px); margin-bottom: clamp(14px, 2.6svh, 26px); }
  .cta__subtitle { font-size: clamp(15px, 2.2svh, 19px); margin-bottom: clamp(12px, 2.2svh, 22px); }
  .form-card { padding: clamp(18px, 3.4svh, 38px) clamp(22px, 3vw, 38px); }
  .form__title { font-size: clamp(24px, 4svh, 40px); }
  .form__subtitle { margin-bottom: clamp(12px, 2.4svh, 24px); }
  .field { margin-bottom: clamp(10px, 1.8svh, 18px); }
  .field input { padding-block: clamp(10px, 1.7svh, 15px); }
  .form__consent { margin-bottom: clamp(12px, 2.2svh, 22px); }
  .form .btn { padding-block: clamp(13px, 2svh, 18px); }
}
