/* ============================================================
   Rani Pontes — Consultoria Premium de Personal Trainer
   Design system: dark graphite + muted gold, mobile-first
   ============================================================ */

:root {
  --bg: #0b0b0d;
  --bg-soft: #101014;
  --bg-card: #15151a;
  --bg-card-hover: #1a1a20;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #f2f1ec;
  --text-soft: #c9c8c1;
  --muted: #93919b;

  --gold: #c9a15c;
  --gold-light: #e3c48c;
  --gold-deep: #a87f3e;
  --gold-soft: rgba(201, 161, 92, 0.12);
  --gold-line: rgba(201, 161, 92, 0.35);

  --danger: #e06c5f;

  --font-serif: "Fraunces", "Georgia", serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 26px;

  --shadow-card: 0 20px 60px rgba(0, 0, 0, 0.45);
  --header-h: 68px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

input,
textarea {
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
}

::selection {
  background: var(--gold);
  color: #14100a;
}

/* Subtle ambient background */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60rem 40rem at 85% -10%, rgba(201, 161, 92, 0.08), transparent 60%),
    radial-gradient(50rem 36rem at -10% 30%, rgba(255, 255, 255, 0.03), transparent 60%);
  pointer-events: none;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.container--narrow {
  max-width: 860px;
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-line);
}

.eyebrow--center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-line);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.h-display {
  font-size: clamp(2.35rem, 7vw, 4.3rem);
  line-height: 1.06;
}

.h-section {
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  max-width: 22em;
}

.h-section--center {
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  margin-bottom: 48px;
}

.section-head--center {
  text-align: center;
}

.section-head--center .eyebrow {
  justify-content: center;
}

.lead {
  color: var(--text-soft);
  font-size: 1.06rem;
  max-width: 52ch;
}

.section-head--center .lead {
  margin: 16px auto 0;
}

.accent {
  color: var(--gold);
  font-style: italic;
}

.text-center {
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.btn--primary {
  background: var(--gold);
  color: #14100a;
  box-shadow: 0 12px 34px rgba(201, 161, 92, 0.28);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(201, 161, 92, 0.38);
}

.btn--ghost {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--gold-line);
  color: var(--gold-light);
}

.btn--block {
  width: 100%;
}

.btn--sm {
  padding: 12px 20px;
  font-size: 11.5px;
  border-radius: 12px;
}

.btn svg {
  flex: none;
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--header-h);
  background: rgba(11, 11, 13, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.header.scrolled {
  border-bottom-color: var(--border);
}

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand__name {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}

.brand__name em {
  font-style: italic;
  color: var(--gold);
}

.brand__tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-soft);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--gold-light);
}

.header__cta {
  display: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 56px 0 72px;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--gold-soft);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.badge--plain {
  border-color: var(--border-strong);
  background: transparent;
  color: var(--text-soft);
}

.hero__title {
  margin-bottom: 20px;
}

.hero__sub {
  color: var(--text-soft);
  font-size: 1.08rem;
  max-width: 56ch;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.hero__note {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__media {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
}

.hero__frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
}

.hero__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero__frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero__ring {
  position: absolute;
  inset: -16px -16px auto auto;
  width: 62%;
  height: 62%;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  z-index: -1;
}

.hero__stamp {
  position: absolute;
  left: -14px;
  bottom: -16px;
  background: var(--gold);
  color: #14100a;
  padding: 14px 20px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.25;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
}

/* ---------- Cycle (identificação) ---------- */
.cycle__grid {
  display: grid;
  gap: 48px;
}

.cycle__list {
  position: relative;
  display: flex;
  flex-direction: column;
}

.cycle__item {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  position: relative;
}

.cycle__item::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 46px;
  bottom: -16px;
  width: 1px;
  background: linear-gradient(var(--gold-line), var(--gold-line));
  opacity: 0.45;
}

.cycle__item:last-child::before {
  display: none;
}

.cycle__dot {
  flex: none;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--gold-line);
  background: var(--bg-card);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold);
  z-index: 1;
}

.cycle__item:first-child .cycle__dot {
  background: var(--gold);
  color: #14100a;
}

.cycle__label {
  font-weight: 600;
  font-size: 1.02rem;
}

.cycle__wrap {
  position: relative;
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.cycle__wrap h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.cycle__wrap p {
  color: var(--text-soft);
  font-size: 0.98rem;
}

.cycle__note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Acompanhamento ---------- */
.acomp__grid {
  display: grid;
  gap: 24px;
}

.acomp__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.media-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.media-card img,
.media-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card img.media-card--contain {
  object-fit: contain;
}

.media-card__cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(10, 10, 12, 0.92));
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.04em;
}

.acomp__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.acomp__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-size: 0.96rem;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.acomp__item svg {
  flex: none;
  margin-top: 2px;
  color: var(--gold);
}

.acomp__freq {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 16px 20px;
  border: 1px solid var(--gold-line);
  background: var(--gold-soft);
  border-radius: var(--radius-sm);
  color: var(--gold-light);
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Como funciona ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 28px 24px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background 0.3s ease;
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--gold-line);
  background: var(--bg-card-hover);
}

.step__num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}

.step h3 {
  font-size: 1.22rem;
  margin-bottom: 8px;
}

.step p {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- O que recebe ---------- */
.recebe {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.recebe__item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  min-width: 0;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.recebe__item:hover {
  border-color: var(--gold-line);
  transform: translateX(4px);
}

.recebe__icon {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.recebe__item span {
  flex: 1 1 auto;
  min-width: 0;
  font-weight: 600;
  font-size: 1.02rem;
  overflow-wrap: break-word;
}

/* ---------- Autoridade ---------- */
.autoridade__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.autoridade__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.stat {
  padding: 18px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
}

.stat__value {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1.1;
}

.stat__label {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- Depoimentos ---------- */
.proofs__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.proof {
  grid-column: span 12;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  min-width: 0;
  transition: transform 0.3s var(--ease), border-color 0.3s ease;
}

.proof:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
}

.proof__media {
  position: relative;
}

.proof__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof--img img {
  aspect-ratio: auto;
  min-height: 100%;
}

.proof__cap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
}

.proof__zoom {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.proof__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proof__note {
  margin-top: 26px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 13.5px;
}

.proof__note strong {
  color: var(--text-soft);
  font-weight: 600;
}

/* ---------- Para quem é ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audience__item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-soft);
  min-width: 0;
  transition: border-color 0.3s ease;
}

.audience__item:hover {
  border-color: var(--gold-line);
}

.audience__item svg {
  flex: none;
  color: var(--gold);
}

.audience__item {
  overflow-wrap: anywhere;
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq__item.open {
  border-color: var(--gold-line);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text);
}

.faq__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: transform 0.3s var(--ease), background 0.3s ease;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: #14100a;
  border-color: var(--gold);
}

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq__a p {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

/* ---------- CTA final ---------- */
.cta {
  position: relative;
  text-align: center;
  padding: 72px 0 96px;
}

.cta__panel {
  position: relative;
  padding: 48px 24px;
  border: 1px solid var(--gold-line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(40rem 24rem at 50% -20%, rgba(201, 161, 92, 0.12), transparent 60%),
    var(--bg-soft);
  overflow: hidden;
}

.cta h2 {
  font-size: clamp(1.9rem, 5vw, 3.1rem);
  max-width: 20em;
  margin: 0 auto 16px;
}

.cta p {
  color: var(--text-soft);
  max-width: 46ch;
  margin: 0 auto 28px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 0 120px;
  background: var(--bg-soft);
}

.footer__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 600;
  transition: border-color 0.3s ease, color 0.3s ease;
}

.footer__social:hover {
  border-color: var(--gold-line);
  color: var(--gold-light);
}

.footer__meta {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Fixed mobile CTA ---------- */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(rgba(11, 11, 13, 0), rgba(11, 11, 13, 0.96) 30%);
  pointer-events: none;
}

.mobile-cta .btn {
  pointer-events: auto;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .step,
  .proof,
  .recebe__item {
    transition: none;
  }
}

/* ---------- Form (avaliacao) ---------- */
.form-page {
  padding: 28px 0 60px;
}

.form-page__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 36px;
}

.form-page__head h1 {
  font-size: clamp(1.9rem, 5.5vw, 2.9rem);
  margin: 14px 0 12px;
}

.form-page__head p {
  color: var(--muted);
}

.form-card {
  max-width: 620px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-soft);
  padding: 28px 20px 30px;
  box-shadow: var(--shadow-card);
}

.progress {
  margin-bottom: 26px;
}

.progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.progress__pct {
  color: var(--gold);
}

.progress__bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress__fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transition: width 0.4s var(--ease);
}

.step-view {
  display: none;
}

.step-view.active {
  display: block;
  animation: stepIn 0.35s var(--ease);
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.step-view__num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.step-view h2 {
  font-size: clamp(1.4rem, 4.5vw, 1.8rem);
  margin-bottom: 6px;
}

.step-view__hint {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.field {
  margin-bottom: 18px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.32);
}

.field__error {
  display: none;
  margin-top: 8px;
  font-size: 13px;
  color: var(--danger);
}

.field.has-error input {
  border-color: var(--danger);
}

.field.has-error .field__error {
  display: block;
}

.choices {
  display: grid;
  gap: 10px;
}

.choice {
  width: 100%;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s var(--ease);
}

.choice:hover {
  border-color: var(--gold-line);
  transform: translateX(3px);
}

.choice.selected {
  border-color: var(--gold);
  background: var(--gold-soft);
  color: var(--gold-light);
}

.choice__check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: transparent;
  transition: all 0.25s ease;
}

.choice.selected .choice__check {
  border-color: var(--gold);
  background: var(--gold);
  color: #14100a;
}

.choice__multi {
  border-radius: 8px;
}

.choice__tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 26px;
}

.step-actions .btn--primary {
  flex: 1;
}

.btn--back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  padding: 14px 6px;
  white-space: nowrap;
}

.btn--back:hover {
  color: var(--text);
}

.consent {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  margin-bottom: 6px;
}

.consent input[type="checkbox"] {
  flex: none;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}

.consent label {
  color: var(--text-soft);
  font-size: 0.95rem;
  cursor: pointer;
}

.consent.has-error {
  border-color: var(--danger);
}

.form-done {
  display: none;
  text-align: center;
  padding: 20px 0 6px;
}

.form-done .done-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold);
  color: #14100a;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

.form-done h2 {
  margin-bottom: 10px;
}

.form-done p {
  color: var(--muted);
  max-width: 40ch;
  margin: 0 auto 20px;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 640px) {
  .section {
    padding: 96px 0;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recebe {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof--wide {
    grid-column: span 7;
  }

  .proof--tall {
    grid-column: span 5;
  }

  .proof--half {
    grid-column: span 6;
  }

  .form-card {
    padding: 36px 32px 38px;
  }

  .footer__grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .hero {
    padding: 72px 0 96px;
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
  }

  .cycle__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 72px;
    align-items: center;
  }

  .autoridade__grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 72px;
  }

  .autoridade__media {
    order: 1;
  }

  .acomp__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 56px;
    align-items: center;
  }

  .steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .recebe {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .audience {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta {
    padding: 80px 0 110px;
  }

  .cta__panel {
    padding: 64px 40px;
  }

  .footer {
    padding-bottom: 48px;
  }

  .footer__grid {
    gap: 40px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 28px;
  }
}

@media (min-width: 901px) {
  .mobile-cta {
    display: none;
  }
}

@media (max-width: 900px) {
  .footer {
    padding-bottom: 108px;
  }
}

/* Oculta o selo "Build a site like this with MonkeyCode" que a plataforma
   de showcase injeta via #mcai-inject-bubble no HTML servido */
#mcai-inject-bubble {
  display: none !important;
}
