/* ============================================================
   style.css — Auxílio Doença LP | Dra. Maria Clara Braga
   One-Pager Engine v3.2 — Doc Canvas Shell
   ============================================================ */

/* ----------------------------------------------------------
   RESET + BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-workspace);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { cursor: pointer; font-family: inherit; }
h1, h2, h3, h4 { line-height: 1.1; font-weight: 600; }
em { font-style: italic; }
ul { list-style: none; }

/* ----------------------------------------------------------
   VARIÁVEIS
   ---------------------------------------------------------- */
:root {
  --c-bg:            #F8F4EF;
  --c-bg-alt:        #F0EBE4;
  --c-workspace:     #E0D8CE;
  --c-gold:          #C9A86C;
  --c-gold-dk:       #A88840;
  --c-gold-lt:       #E2C98A;
  --c-dark:          #1C1B18;
  --c-dark-2:        #252420;
  --c-dark-warm:     #2b2218;
  --c-text:          #1C1B18;
  --c-muted:         #6B645A;
  --c-muted-lt:      #9B9289;
  --c-border:        rgba(201, 168, 108, 0.28);
  --c-green:         #2C8C5A;
  --c-green-dk:      #236E47;
  --c-green-lt:      #D4EDDF;
  --nav-h:           80px;
  --section-px:      clamp(1.5rem, 5vw, 4rem);
  --section-py:      clamp(3.5rem, 7vw, 5.5rem);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       22px;
  --shadow-artboard: 0 2px 16px rgba(28, 27, 24, 0.08),
                     0 8px 48px rgba(28, 27, 24, 0.10);
  --ease:            0.25s ease;
}

/* ----------------------------------------------------------
   NAVBAR
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}
.nav--scrolled {
  background: rgba(240, 235, 228, 0.90);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  box-shadow: 0 1px 0 var(--c-border);
}
.nav__inner {
  max-width: min(1040px, 100%);
  margin: 0 auto;
  padding: 0 var(--section-px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__cta { margin-left: auto; }
.nav__brand {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 62px;
  width: auto;
  display: block;
  /* Elimina o fundo branco da logo sobre o fundo creme da nav */
  mix-blend-mode: multiply;
}

/* ----------------------------------------------------------
   WORKSPACE + ARTBOARD (Doc Canvas Shell)
   ---------------------------------------------------------- */
.workspace {
  background: var(--c-workspace);
  padding-top: var(--nav-h);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  padding-inline: clamp(0.4rem, 1.5vw, 1.25rem);
}
.artboard {
  width: min(1040px, 100%);
  margin: 0 auto;
  border-radius: clamp(12px, 1.5vw, 20px);
  overflow: hidden;
  box-shadow: var(--shadow-artboard);
  position: relative;
}

/* ----------------------------------------------------------
   SECTION RULE (divisor ouro fino)
   ---------------------------------------------------------- */
.section-rule {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--c-gold) 18%,
    var(--c-gold) 82%,
    transparent
  );
  opacity: 0.40;
  margin: 0;
}

/* ----------------------------------------------------------
   SECTION LABEL (editorial — sem pílula)
   ---------------------------------------------------------- */
.section-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.section-label--center { text-align: center; }
.section-label--light  { color: var(--c-gold-lt); }

/* ----------------------------------------------------------
   SECTION TITLE / SUB
   ---------------------------------------------------------- */
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}
.section-title--light { color: #F8F4EF; }

.section-sub {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  color: var(--c-muted);
  text-align: center;
  max-width: 540px;
  margin: 0 auto 2.75rem;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   TRATAMENTOS DE IMAGEM
   ---------------------------------------------------------- */
.img-capsule {
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
}
.img-capsule--portrait { aspect-ratio: 5 / 6; }
.img-capsule img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.img-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
}
.img-frame--tall { aspect-ratio: 3 / 4; }
.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----------------------------------------------------------
   BOTÕES
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn--full { width: 100%; }
.btn--sm   { padding: 0.5rem 1.1rem; font-size: 0.78rem; }

.btn--primary {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--c-gold-dk);
  border-color: var(--c-gold-dk);
}

.btn--outline {
  background: transparent;
  color: var(--c-gold-dk);
  border-color: var(--c-gold);
}
.btn--outline:hover,
.btn--outline:focus-visible {
  background: rgba(201, 168, 108, 0.10);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-dark);
  border-color: var(--c-gold);
  font-size: 0.95rem;
  padding: 1rem 2rem;
}
.btn--gold:hover,
.btn--gold:focus-visible {
  background: var(--c-gold-lt);
  border-color: var(--c-gold-lt);
}

.btn--green {
  background: var(--c-green);
  color: #fff;
  border-color: var(--c-green);
  font-size: 0.95rem;
  padding: 1rem 2rem;
}
.btn--green:hover,
.btn--green:focus-visible {
  background: var(--c-green-dk);
  border-color: var(--c-green-dk);
  color: #fff;
}

/* Quando combinado com btn--sm, preserva o tamanho pequeno */
.btn--sm.btn--gold,
.btn--sm.btn--green,
.btn--sm.btn--primary {
  font-size: 0.78rem;
  padding: 0.5rem 1.1rem;
}

/* CTA anchor centered in sections */
.section-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 0.75rem;
}

/* Aviso de nao-afiliacao (topo) */
.gov-disclaimer {
  background: #1c1b18;
  color: rgba(248, 244, 239, 0.82);
  font-size: 0.74rem;
  line-height: 1.5;
  text-align: center;
  padding: 0.6rem 1.25rem;
  letter-spacing: 0.01em;
}

/* Nota de nao-afiliacao junto ao formulario */
.form__disclaimer {
  font-size: 0.72rem;
  color: var(--c-muted);
  line-height: 1.55;
  margin-top: 0.85rem;
  text-align: center;
}

/* ----------------------------------------------------------
   SECTION INNER (grid 2 colunas compartilhado)
   ---------------------------------------------------------- */
.section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
  padding: var(--section-py) var(--section-px);
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero { background: var(--c-bg); }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: calc(var(--section-py) * 1.1) var(--section-px) var(--section-py);
}

.hero__headline {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--c-dark);
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--c-gold);
  white-space: nowrap;
}

.hero__sub {
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  color: var(--c-muted);
  margin-bottom: 2rem;
  line-height: 1.72;
  max-width: 460px;
}

/* Trust row */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding: 0 0.9rem;
}
.trust-item:first-child { padding-left: 0; }
.trust-item strong {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.trust-item span {
  font-size: 0.78rem;
  color: var(--c-muted);
}
.trust-sep {
  width: 1px;
  height: 28px;
  background: var(--c-border);
  flex-shrink: 0;
}

.hero__content { padding-top: 0.5rem; }

/* Foto hero */
.hero__photo { position: relative; }
.hero__photo-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 0.75rem;
  background: var(--c-dark);
  color: #F8F4EF;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 18px rgba(28, 27, 24, 0.28);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero__photo-tag span {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--c-gold-lt);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero__photo-tag strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: #F8F4EF;
}

/* ----------------------------------------------------------
   VÍDEO INLINE
   ---------------------------------------------------------- */
.video-section { background: var(--c-bg); }

.video-section__inner {
  max-width: 420px;
  margin: 0 auto;
  padding: 0 var(--px);
  text-align: center;
}

.video-section__header { margin-bottom: 2rem; }

.video-section__header h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  line-height: 1.2;
  margin-bottom: 0.7rem;
}

.video-section__header p {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.65;
}

.video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 48px rgba(28, 27, 24, 0.18);
  cursor: pointer;
  background: var(--c-dark);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(
    to bottom,
    rgba(28, 27, 24, 0.10) 0%,
    rgba(28, 27, 24, 0.50) 100%
  );
  transition: background 0.25s ease, opacity 0.3s ease;
}

.video-overlay:hover {
  background: linear-gradient(
    to bottom,
    rgba(28, 27, 24, 0.05) 0%,
    rgba(28, 27, 24, 0.62) 100%
  );
}

.video-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(28, 27, 24, 0.30);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  color: var(--c-dark);
  padding-left: 4px; /* optical centering of play triangle */
}

.video-overlay:hover .video-play-btn {
  transform: scale(1.10);
  box-shadow: 0 8px 36px rgba(28, 27, 24, 0.40);
}

.video-label {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   SONHO
   ---------------------------------------------------------- */
.dream { background: var(--c-bg-alt); }

.dream__text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--c-dark);
  margin-bottom: 1.1rem;
  line-height: 1.18;
}
.dream__text h2 em {
  font-style: italic;
  color: var(--c-gold);
}
.dream__text > p {
  font-size: 0.92rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  line-height: 1.72;
}
.dream__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2rem;
}
.dream__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.6;
}
.dream__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  margin-top: 0.48rem;
}

/* ----------------------------------------------------------
   COMO FUNCIONA
   ---------------------------------------------------------- */
.how { background: var(--c-bg); }
.how__inner {
  padding: var(--section-py) var(--section-px);
  max-width: 880px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: 1fr 32px 1fr 32px 1fr;
  align-items: start;
  gap: 0;
  margin-top: 0.5rem;
}

/* Step card */
.step-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 14px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: 0 2px 12px rgba(28,27,24,0.05);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.step-card:hover {
  box-shadow: 0 6px 28px rgba(28,27,24,0.10);
  transform: translateY(-2px);
}
.step-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.step-card__badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-dark);
  color: var(--c-gold-lt);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.step-card__icon {
  color: var(--c-gold);
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.step-card__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--c-dark);
  line-height: 1.25;
  margin: 0;
}
.step-card__desc {
  font-size: 0.875rem;
  color: var(--c-muted);
  line-height: 1.70;
  flex: 1;
  margin: 0;
}
.step-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(201,168,108,0.10);
  border: 1px solid rgba(201,168,108,0.25);
  color: var(--c-gold-dk);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.3;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
  width: fit-content;
}
.step-card__tag svg {
  flex-shrink: 0;
  opacity: 0.85;
}

/* Arrow between cards */
.step-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: clamp(1.6rem, 3vw, 2rem);
  color: var(--c-gold);
  opacity: 0.55;
}

/* ----------------------------------------------------------
   AUTORIDADE
   ---------------------------------------------------------- */
.authority { background: var(--c-bg-alt); }

.authority__text h2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  margin-bottom: 0.4rem;
  line-height: 1.1;
}
.authority__role {
  font-size: 0.72rem;
  color: var(--c-gold);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: block;
}
.authority__text > p {
  font-size: 0.9rem;
  color: var(--c-muted);
  line-height: 1.78;
  margin-bottom: 1rem;
}
.authority__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 1.75rem;
}
.authority__badge {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.authority__badge strong {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.authority__badge span {
  font-size: 0.8rem;
  color: var(--c-text);
  font-weight: 500;
}

/* ----------------------------------------------------------
   EDUCAÇÃO (seção escura)
   ---------------------------------------------------------- */
.edu {
  background: var(--c-dark-warm);
  padding: var(--section-py) var(--section-px);
}
.edu__inner {
  max-width: 960px;
  margin: 0 auto;
}
.edu__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}
.edu__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 108, 0.16);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background var(--ease), border-color var(--ease);
}
.edu__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(201, 168, 108, 0.32);
}
.edu__num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(4rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-gold);
  opacity: 0.16;
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
}
.edu__card h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #F8F4EF;
  margin-bottom: 0.65rem;
  position: relative;
  line-height: 1.2;
}
.edu__card p {
  font-size: 0.86rem;
  color: rgba(248, 244, 239, 0.60);
  line-height: 1.72;
  position: relative;
}

/* ----------------------------------------------------------
   FAQ
   ---------------------------------------------------------- */
.faq { background: var(--c-bg); }
.faq__inner {
  padding: var(--section-py) var(--section-px);
  max-width: 780px;
  margin: 0 auto;
}
.faq__list {
  display: flex;
  flex-direction: column;
}
.faq__item { border-bottom: 1px solid var(--c-border); }
.faq__item:first-child { border-top: 1px solid var(--c-border); }

.faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-dark);
  cursor: pointer;
  transition: color var(--ease);
  line-height: 1.45;
}
.faq__q:hover { color: var(--c-gold-dk); }

.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--c-gold);
  position: relative;
  transition: transform var(--ease), background var(--ease);
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--c-gold);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq__icon::before { width: 8px; height: 1.5px; }
.faq__icon::after  { width: 1.5px; height: 8px; }

.faq__q[aria-expanded="true"] .faq__icon {
  background: var(--c-gold);
  transform: rotate(45deg);
}
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after {
  background: var(--c-dark);
}

.faq__a {
  padding: 0 0 1.25rem;
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.78;
}
.faq__a p { margin: 0; }

/* ----------------------------------------------------------
   CTA FINAL (escuro)
   ---------------------------------------------------------- */
.cta-final {
  background: var(--c-dark-warm);
  padding: var(--section-py) var(--section-px);
}
.cta-final__inner {
  max-width: 680px;
  margin: 0 auto;
}
.cta-final__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #F8F4EF;
  text-align: center;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.cta-final__title em {
  font-style: italic;
  color: var(--c-gold-lt);
}
.cta-final__sub {
  font-size: 0.92rem;
  color: rgba(248, 244, 239, 0.60);
  text-align: center;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   FORMULÁRIO
   ---------------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.25rem;
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form__field--hidden { display: none !important; }

.form__label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--c-dark);
}
.form--dark .form__label { color: rgba(248, 244, 239, 0.78); }

.form__input,
.form__select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(28, 27, 24, 0.18);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--c-dark);
  background: #FFFFFF;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B645A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.form__input:focus,
.form__select:focus {
  outline: none;
  border-color: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 108, 0.20);
}
.form__input::placeholder { color: var(--c-muted-lt); }

.form--dark .form__input,
.form--dark .form__select {
  background: rgba(255, 255, 255, 0.07);
  background-repeat: no-repeat;
  border-color: rgba(255, 255, 255, 0.16);
  color: #F8F4EF;
}
.form--dark .form__input::placeholder { color: rgba(248, 244, 239, 0.32); }
.form--dark .form__input:focus,
.form--dark .form__select:focus {
  border-color: var(--c-gold);
  background: rgba(255, 255, 255, 0.12);
  background-repeat: no-repeat;
}
.form--dark .form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C9A86C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-position: right 0.9rem center;
  background-size: 16px;
}
.form--dark .form__select option { background: #2a2924; color: #F8F4EF; }

.form__input.error,
.form__select.error {
  border-color: #B03020;
  box-shadow: 0 0 0 3px rgba(176, 48, 32, 0.14);
}

.form__alert {
  display: none;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  line-height: 1.55;
}
.form__alert svg { flex-shrink: 0; margin-top: 0.1rem; }
.form__alert p   { flex: 1; margin: 0; }
.form__alert .btn { flex-shrink: 0; margin-top: 0.5rem; align-self: flex-start; }

.form__alert--info {
  background: rgba(201, 168, 108, 0.10);
  border: 1px solid rgba(201, 168, 108, 0.35);
  color: var(--c-dark);
}
.form__alert--info svg { color: var(--c-gold-dk); }

.form__alert--warning {
  background: rgba(176, 48, 32, 0.08);
  border: 1px solid rgba(176, 48, 32, 0.25);
  color: var(--c-dark);
}
.form__alert--warning svg { color: #B03020; }

.form__promise {
  font-size: 0.82rem;
  color: var(--c-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(180, 150, 80, 0.08);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.form__promise--dark {
  background: rgba(255,255,255,0.06);
  border-left-color: var(--c-gold);
  color: rgba(248,244,239,0.70);
}

.section-cta__copy {
  font-size: 0.92rem;
  color: var(--c-muted);
  line-height: 1.6;
  text-align: center;
  max-width: 480px;
  margin: 0;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer { background: var(--c-dark-warm); padding: 2.5rem var(--section-px); }
.footer__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.footer__icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.90;
  /* PNG com transparência — drop-shadow faz o monograma dourado destacar no fundo escuro */
  filter: drop-shadow(0 0 12px rgba(201, 168, 108, 0.30));
}
.footer__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F8F4EF;
  margin-bottom: 0;
}
.footer__oab {
  font-size: 0.75rem;
  color: var(--c-gold-lt);
  letter-spacing: 0.06em;
  margin-bottom: 0;
}
.footer__contact {
  font-size: 0.78rem;
  color: rgba(248, 244, 239, 0.55);
  margin-bottom: 0.75rem;
}
.footer__about {
  font-size: 0.78rem;
  color: rgba(248, 244, 239, 0.5);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 1.25rem;
}
.footer__contact-block {
  margin-bottom: 1.25rem;
}
.footer__contact-block p {
  font-size: 0.78rem;
  color: rgba(248, 244, 239, 0.55);
  margin: 0.15rem 0;
}
.footer__contact-block strong {
  color: rgba(248, 244, 239, 0.75);
  font-weight: 600;
}
.footer__disclaimer {
  font-size: 0.73rem;
  color: rgba(248, 244, 239, 0.32);
  line-height: 1.68;
  margin-bottom: 1.25rem;
}
.footer__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.footer__links a {
  font-size: 0.76rem;
  color: rgba(248, 244, 239, 0.45);
  text-decoration: none;
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--c-gold-lt); }
.footer__links span { color: rgba(248, 244, 239, 0.22); font-size: 0.65rem; }
.footer__copy { font-size: 0.7rem; color: rgba(248, 244, 239, 0.22); }

/* ----------------------------------------------------------
   ANIMAÇÕES DE ENTRADA
   ---------------------------------------------------------- */
[data-anim] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.60s ease, transform 0.60s ease;
}
[data-anim].is-visible {
  opacity: 1;
  transform: translateY(0);
}
[data-anim]:nth-child(2) { transition-delay: 0.08s; }
[data-anim]:nth-child(3) { transition-delay: 0.16s; }
[data-anim]:nth-child(4) { transition-delay: 0.24s; }

/* ----------------------------------------------------------
   RESPONSIVO — TABLET (max 860px)
   ---------------------------------------------------------- */
@media (max-width: 860px) {
  :root {
    --section-px: clamp(1.25rem, 4vw, 2.5rem);
    --section-py: clamp(2.75rem, 6vw, 4rem);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--section-py) * 1.2);
  }
  .hero__photo {
    order: -1;
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  .hero__photo-tag { left: 0.5rem; bottom: 1rem; }
  .hero__sub { max-width: 100%; }

  .section-inner { grid-template-columns: 1fr; }

  .video-section__inner { max-width: 100%; }
  .dream__img { max-width: 480px; margin: 0 auto; width: 100%; }
  .authority__img { max-width: 360px; margin: 0 auto; width: 100%; }

  .steps {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
    gap: 0;
  }
  .step-arrow {
    padding-top: 0;
    padding-block: 0.25rem;
    transform: rotate(90deg);
  }

  .edu__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .authority__badges { grid-template-columns: 1fr 1fr; }
}

/* ----------------------------------------------------------
   RESPONSIVO — MOBILE (max 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --section-px: 1.25rem;
    --section-py: 2.5rem;
  }

  .artboard { border-radius: 10px; }

  .hero__headline {
    font-size: 1.6rem;
    letter-spacing: -0.01em;
    line-height: 1.22;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .trust-sep { display: none; }
  .trust-item { padding: 0; }

  .authority__badges { grid-template-columns: 1fr; }
  .edu__card { padding: 1.75rem 1.25rem 1.5rem; }
  .hero__photo { max-width: 100%; }
  .dream__img, .authority__img { max-width: 100%; }
  .hero__photo-tag { left: 0; bottom: 0.75rem; }

  .btn--gold,
  .btn--green {
    font-size: 0.88rem;
    padding: 0.875rem 1.5rem;
  }

  .nav__logo-img { height: 50px; }
}

/* ----------------------------------------------------------
   FOCO ACESSÍVEL
   ---------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ----------------------------------------------------------
   DESAFIANTE v2 — BOTÃO WHATSAPP, BLOCO E MODAL
   ---------------------------------------------------------- */
.btn--wpp {
  gap: 0.6rem;
  font-size: 1rem;
  padding: 1.05rem 1.75rem;
}
.btn--wpp svg { flex-shrink: 0; }

.wpp-block { margin-top: 0.5rem; }
.wpp-block--center { text-align: center; }
.wpp-block__note {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 0.75rem;
  line-height: 1.5;
}
.wpp-block__note--dark { color: rgba(248, 244, 239, 0.7); }
.wpp-block .form__disclaimer { margin-top: 0.6rem; }

/* Botão flutuante */
.wpp-fab {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: none;
  background: var(--c-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(28, 27, 24, 0.28);
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}
.wpp-fab:hover { background: var(--c-green-dk); transform: translateY(-2px); }

/* Modal */
.wpp-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.wpp-modal[hidden] { display: none; }
.wpp-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 19, 17, 0.55);
  backdrop-filter: blur(2px);
}
.wpp-modal__box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem 1.5rem 1.5rem;
  box-shadow: 0 18px 50px rgba(20, 19, 17, 0.3);
  animation: wppPop 0.22s ease;
}
@keyframes wppPop {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to   { opacity: 1; transform: none; }
}
.wpp-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c-muted);
  cursor: pointer;
}
.wpp-modal__title {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 0.35rem;
}
.wpp-modal__sub {
  font-size: 0.88rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin-bottom: 1.1rem;
}
.wpp-modal__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-dark);
  margin: 0.9rem 0 0.45rem;
}
.wpp-modal__input {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}
.wpp-modal__input:focus { outline: none; border-color: var(--c-green); }
.wpp-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}
.wpp-option {
  padding: 0.7rem 0.6rem;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: #fff;
  font-size: 0.82rem;
  font-family: inherit;
  color: var(--c-dark);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.wpp-option:hover { border-color: var(--c-green); }
.wpp-option.is-selected {
  border-color: var(--c-green);
  background: var(--c-green);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 0 0 3px rgba(44, 140, 90, 0.28);
}
.wpp-option.is-selected::after {
  content: ' ✓';
  font-weight: 700;
}
.wpp-modal #wppSubmit { margin-top: 1.1rem; }
.wpp-modal__err {
  font-size: 0.8rem;
  color: #B03020;
  margin-top: 0.6rem;
  text-align: center;
}
.wpp-modal__legal {
  font-size: 0.72rem;
  color: var(--c-muted);
  line-height: 1.5;
  margin-top: 0.85rem;
  text-align: center;
}

@media (max-width: 480px) {
  .wpp-options { grid-template-columns: 1fr; }
  .wpp-fab { width: 56px; height: 56px; bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px)); }
}

/* ============================================================
   V2 — SEM MOLDURA (full-bleed), mantendo o tema claro
   ============================================================ */
.workspace { padding-inline: 0; padding-bottom: 0; }
.artboard  { width: 100%; border-radius: 0; box-shadow: none; }
@media (max-width: 480px) {
  .artboard { border-radius: 0; }
}
