/* ═══════════════════════════════════════════
   TOKENS DE COR — edite aqui para mudar tudo
   ═══════════════════════════════════════════ */
:root {
  /* Escuros (ink) — Roxo Mounjaro */
  --ink:            #7B2D8B;   /* roxo principal: botões, títulos, fundos dark */
  --ink-soft:       #5C1A78;   /* roxo escuro (stat cards, form success) */
  --ink-mid:        #3D1265;   /* roxo profundo (labels, borda dark footer) */
  --ink-hover:      #8B3D9B;   /* hover — tom mais claro */
  --ink-rgb:        123, 45, 139; /* canal RGB para rgba() */

  /* Superfícies claras */
  --surface:        #FFFFFF;   /* cards e seções brancas */
  --bg:             #FBF0FB;   /* fundo creme/rosado Mounjaro */
  --bg-dim:         #E8D0EA;   /* números decorativos */

  /* Bordas */
  --border:         #E2D0E8;   /* borda header, hover btn */
  --border-mid:     #D0B8DA;   /* borda input */
  --border-soft:    #C0A0CC;   /* borda btn outline */

  /* Texto sobre fundo claro */
  --text:           #1E1048;   /* corpo de texto — roxo escuro Mounjaro */
  --text-2:         #3A2060;   /* texto secundário / descrições */
  --text-3:         #6A4880;   /* eyebrow, labels */
  --text-4:         #8A6898;   /* disclaimer */

  /* Texto sobre fundo escuro */
  --on-dark:        #FFFFFF;   /* branco puro em fundo escuro */
  --on-dark-body:   #F0E0F8;   /* corpo em seções escuras */
  --on-dark-muted:  #E4CCEE;   /* eyebrow light */
  --on-dark-sub:    #D8B8E8;   /* stat labels */
  --on-dark-subtle: #D4B0E8;   /* footer links / contato */
  --on-dark-meta:   #C49CD8;   /* footer copy, nota de stats */
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

input,
textarea,
select,
button {
  font-family: inherit;
}

::selection {
  background: var(--ink);
  color: var(--on-dark);
}

/* ANIMATIONS */
@keyframes floatGlow {
  0%, 100% { opacity: .4; }
  50%       { opacity: .7; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(22px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes submitPulse {
  0%, 100% { box-shadow: 0 4px 18px rgba(var(--ink-rgb),0.18), 0 0 0 0 rgba(var(--ink-rgb),0.22); }
  50%       { box-shadow: 0 4px 18px rgba(var(--ink-rgb),0.18), 0 0 0 10px rgba(var(--ink-rgb),0); }
}

@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance — one-shot on load */
.hero-anim {
  opacity: 0;
  animation: fadeInUp 0.65s ease-out forwards;
  animation-delay: var(--anim-delay, 0s);
}

.hero-anim--left {
  opacity: 0;
  animation: fadeInLeft 0.65s ease-out forwards;
  animation-delay: var(--anim-delay, 0s);
}

.hero-anim--right {
  opacity: 0;
  animation: fadeInRight 0.7s ease-out forwards;
  animation-delay: var(--anim-delay, 0.2s);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero-anim,
  .hero-anim--left,
  .hero-anim--right {
    opacity: 1;
  }
}

/* LAYOUT */
.page-wrapper {
  width: 100%;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 48px);
  padding-right: clamp(20px, 5vw, 48px);
}

.container--medium {
  max-width: 1100px;
}

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

.container--form {
  max-width: 780px;
}

.section-pad {
  padding-top: clamp(64px, 9vw, 118px);
  padding-bottom: clamp(64px, 9vw, 118px);
}

/* TYPOGRAPHY */
.eyebrow {
  display: block;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}

.eyebrow--light {
  color: var(--on-dark-muted);
}

.section-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 16px;
}

.section-heading--light {
  color: var(--on-dark);
}

.section-heading--hero {
  font-size: clamp(34px, 5vw, 50px);
  margin-top: 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.section-header--left {
  text-align: left;
  max-width: 680px;
}

.label-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.label-line__bar {
  width: 26px;
  height: 1px;
  background: var(--ink);
}

.label-line__bar--light {
  background: var(--on-dark);
}

.label-line__text {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}

.label-line__text--light {
  color: var(--on-dark-muted);
}

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  padding: 17px 30px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.25s, border-color 0.25s, transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--ink);
  color: var(--on-dark);
}

.btn--dark:hover {
  background: var(--ink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-soft);
}

.btn--outline:hover {
  border-color: var(--ink);
  background: var(--bg);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--on-dark);
  color: var(--ink);
}

.btn--white:hover {
  background: var(--border);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.btn--sm {
  padding: 13px 28px;
  font-size: 13px;
}

.btn--full {
  width: 100%;
  text-align: center;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease;
}

.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.site-header--scrolled .site-header__inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.site-header__logo {
  height: 18px;
  width: auto;
  filter: brightness(0);
}

/* HERO */
.hero {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  top: -15%;
  right: -10%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.06), transparent 68%);
  pointer-events: none;
  animation: floatGlow 9s ease-in-out infinite;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  position: relative;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.hero__label-bar {
  width: 26px;
  height: 1px;
  background: var(--ink);
}

.hero__label-text {
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 600;
}

.hero__body {
  margin-top: 26px;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: var(--text);
  max-width: 540px;
}

.hero__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__checklist {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  list-style: none;
}

.hero__check-item {
  font-size: 13px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 20px;
  animation: floaty 7s ease-in-out infinite;
}

/* DOR */
.dor {
  background: var(--surface);
}

.dor__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.dor__image {
  width: 100%;
  aspect-ratio: 5 / 6;
  object-fit: cover;
  border-radius: 20px;
}

.dor__body {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.75;
  color: var(--text);
  margin-top: 24px;
}

.dor__body + .dor__body {
  margin-top: 18px;
}

/* CRITERIA */
.criteria {
  background: var(--bg);
}

.criteria__grid {
  margin-top: clamp(36px, 5vw, 56px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.criteria-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.criteria-card:not(.criteria-card--cta):hover {
  box-shadow: 0 18px 44px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

.criteria-card--cta {
  background: var(--ink);
  justify-content: center;
}

.criteria-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  flex-shrink: 0;
}

.criteria-card__text {
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink-mid);
  font-weight: 500;
}

.criteria-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 21px;
  line-height: 1.3;
  color: var(--on-dark);
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* BENEFITS */
.benefits {
  background: var(--surface);
}

.benefits__grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.benefit-card {
  background: var(--bg);
  border-radius: 20px;
  padding: 32px 28px;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: start;
}

.benefit-card:hover {
  box-shadow: 0 18px 44px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

.benefit-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  grid-row: 1 / 3;
  align-self: start;
}

.benefit-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 0;
  letter-spacing: -0.01em;
  grid-column: 2;
  grid-row: 1;
}

.benefit-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-2);
  margin-top: 5px;
  grid-column: 2;
  grid-row: 2;
}

.section-cta {
  text-align: center;
  margin-top: clamp(40px, 5vw, 56px);
}

/* BRAND DARK */
.brand {
  background: var(--ink);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.brand__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.brand__body {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.78;
  color: var(--on-dark-body);
  margin-top: 24px;
}

.brand__body + .brand__body {
  margin-top: 18px;
}

.brand__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.stats-grid {
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.stat-card {
  background: var(--ink-soft);
  border-radius: 18px;
  padding: 32px 28px;
  text-align: center;
}

.stat-card__number {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--on-dark);
  line-height: 1;
}

.stat-card__number--md {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 6px;
}

.stat-card__label {
  font-size: 13px;
  color: var(--on-dark-sub);
  margin-top: 10px;
  letter-spacing: 0.02em;
}

.stats-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--on-dark-meta);
  text-align: center;
  letter-spacing: 0.02em;
}

/* HOW IT WORKS */
.how {
  background: var(--bg);
}

.how__grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.step-card {
  position: relative;
  padding: 32px 28px;
  background: var(--surface);
  border-radius: 20px;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}

.step-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}

.step-card__num {
  font-family: 'Sora', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: var(--bg-dim);
  line-height: 1;
}

.step-card__title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin-top: 18px;
}

.step-card__desc {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-2);
  margin-top: 8px;
}

/* FORM */
.form-section {
  background: var(--surface);
}

.form-section__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

.form-section__sub {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
}

.form-success {
  background: var(--ink);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 64px) 32px;
  text-align: center;
  color: var(--bg);
  display: none;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.form-success__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 34px);
  margin-top: 18px;
}

.form-success__body {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-dark-body);
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.reg-form {
  background: var(--bg);
  border-radius: 24px;
  padding: clamp(28px, 4vw, 44px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-mid);
  text-transform: uppercase;
}

.form-input {
  padding: 13px 15px;
  border: 1px solid var(--border-mid);
  border-radius: 14px;
  background: var(--surface);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus {
  border-color: var(--ink);
}

.form-input--error {
  border-color: #e03c3c !important;
  background: #fff8f8;
}

.field-error {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: #c0392b;
  line-height: 1.4;
}

.form-error {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff1f0;
  border: 1px solid #ffa39e;
  color: #a8071a;
  font-size: 14px;
  line-height: 1.5;
}

.form-submit {
  margin-top: 24px;
  width: 100%;
  background: var(--ink);
  color: var(--on-dark);
  border: none;
  padding: 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s ease;
  animation: submitPulse 2.6s ease-in-out infinite;
}

.form-submit:hover {
  background: var(--ink-hover);
  transform: translateY(-2px);
  animation-play-state: paused;
}

.form-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--text-4);
  text-align: center;
}

/* FAQ */
.faq-section {
  background: var(--bg);
}

.faq-section__header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: none;
  padding: 24px 26px;
  cursor: pointer;
  text-align: left;
}

.faq-btn__question {
  font-family: 'Sora', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}

.faq-btn__icon {
  font-size: 26px;
  color: var(--ink);
  line-height: 1;
  flex-shrink: 0;
  font-weight: 300;
  transition: transform 0.25s;
}

.faq-item.is-open .faq-btn__icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 26px;
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 400px;
  padding-bottom: 26px;
}

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: var(--on-dark-body);
}

.site-footer .section-pad {
  padding-top: clamp(36px, 5vw, 56px);
  padding-bottom: clamp(36px, 5vw, 56px);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.site-footer__logo {
  height: 24px;
  width: auto;
}

.site-footer__brand-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 14px;
  color: var(--on-dark-subtle);
  max-width: 300px;
}

.site-footer__col-title {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark);
  font-weight: 600;
  margin-bottom: 14px;
}

.site-footer__contact {
  font-size: 14px;
  line-height: 1.9;
  color: var(--on-dark-subtle);
}

.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.site-footer__social-link {
  text-decoration: none;
  color: var(--on-dark-subtle);
  font-size: 14px;
  transition: color 0.2s;
}

.site-footer__social-link:hover {
  color: var(--on-dark);
}

.site-footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--ink-mid);
  text-align: center;
}

.site-footer__copy {
  font-size: 12.5px;
  color: var(--on-dark-meta);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .benefit-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .benefit-card__icon {
    grid-row: auto;
  }

  .benefit-card__title {
    grid-column: 1;
    grid-row: auto;
    margin-top: 16px;
  }

  .benefit-card__desc {
    grid-column: 1;
    grid-row: auto;
  }
}
