/* =============================================================
   T3D — Stylesheet (CSS vanilla)
   Design: Playful Premium · mais movimento · sem emojis
   ============================================================= */

:root {
  --color-orange: #E8832D;
  --color-orange-deep: #D46A1A;
  --color-orange-soft: #F4A868;
  --color-charcoal: #2B2E33;
  --color-charcoal-soft: #3D4148;
  --color-cream: #FBEFD9;
  --color-cream-light: #FFF8EC;
  --color-white: #FFFFFF;
  --color-bg: #FFF8EC;
  --color-text: #2B2E33;
  --color-text-muted: #6B7280;
  --color-success: #2F9E6B;
  --color-error: #D93B3B;
  --color-gold: #F5B03A;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-io: cubic-bezier(0.65, 0, 0.35, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; padding: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--color-text);
}

p { margin: 0 0 16px; }

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

:focus-visible {
  outline: 3px solid var(--color-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

::selection { background: var(--color-orange); color: #fff; }

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

/* =============================================================
   EYEBROW · BADGE
   ============================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-orange-deep);
  background: rgba(232, 131, 45, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.eyebrow--center { margin-inline: auto; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "JetBrains Mono", ui-monospace, Menlo, monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.badge--soft     { background: rgba(232, 131, 45, 0.12); color: var(--color-orange-deep); }
.badge--contrast { background: var(--color-orange);      color: #fff; }

/* =============================================================
   BUTTONS · shimmer · arrow translate
   ============================================================= */

.btn {
  --btn-bg: var(--color-orange);
  --btn-fg: #fff;
  --btn-shadow: 0 20px 40px -12px rgba(232, 131, 45, 0.25);

  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 999px;
  box-shadow: var(--btn-shadow);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms var(--ease), box-shadow 280ms var(--ease), background-color 180ms var(--ease);
  will-change: transform;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 48px -12px rgba(232, 131, 45, 0.45);
  background: var(--color-orange-deep);
}
.btn:active { transform: scale(0.98); }
.btn[disabled], .btn.is-loading { cursor: not-allowed; opacity: 0.88; }

.btn__label { position: relative; z-index: 1; }

/* Shimmer varrendo o botão no hover */
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,0.4) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform 750ms ease;
  z-index: 0;
  pointer-events: none;
}
.btn--primary:hover::before { transform: translateX(120%); }

/* Variants */
.btn--invert {
  --btn-bg: #fff;
  --btn-fg: var(--color-orange-deep);
  --btn-shadow: 0 16px 36px -14px rgba(0, 0, 0, 0.35);
}
.btn--invert:hover { background: var(--color-cream-light); color: var(--color-orange-deep); }

.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--color-charcoal);
  --btn-shadow: none;
  border: 1.5px solid rgba(43, 46, 51, 0.14);
}
.btn--ghost:hover {
  background: rgba(232, 131, 45, 0.1);
  color: var(--color-orange-deep);
  border-color: rgba(232, 131, 45, 0.4);
}

.btn--sm    { padding: 10px 18px; font-size: 14px; gap: 6px; }
.btn--lg    { padding: 18px 32px; font-size: 17px; }
.btn--block { width: 100%; }

.btn .btn__spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  animation: btn-spin 0.7s linear infinite;
  display: none;
  position: relative;
  z-index: 1;
}
.btn.is-loading .btn__label::after { content: "..."; }
.btn.is-loading .btn__spinner      { display: inline-block; }

@keyframes btn-spin { to { transform: rotate(360deg); } }

/* =============================================================
   CARDS
   ============================================================= */

.card {
  position: relative;
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 2px 6px rgba(43, 46, 51, 0.06);
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
  overflow: hidden;
}
.card::after {
  content: "";
  position: absolute;
  top: -80%; left: -30%;
  width: 160%; height: 60%;
  background: radial-gradient(circle, rgba(232,131,45,0.14), transparent 70%);
  opacity: 0;
  transition: opacity 400ms var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -16px rgba(43, 46, 51, 0.22);
}
.card:hover::after { opacity: 1; }

.card__title {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}
.card__text {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.card--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
  gap: 16px;
}
.card--brand:hover       { transform: none; }
.card--brand:hover::after{ opacity: 0; }
.card--brand img {
  width: 100%;
  max-width: 160px;
  height: auto;
  animation: bob 5s var(--ease-io) infinite;
}
.card__brand-text {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: var(--color-orange-deep);
  margin: 0;
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-6px) rotate(2deg); }
}

/* =============================================================
   FORMS
   ============================================================= */

.form { display: grid; gap: 24px; }

.form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__field label {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-charcoal);
}
.form__field input {
  padding: 14px 16px;
  font-size: 16px;
  color: var(--color-text);
  background: #fff;
  border: 1.5px solid rgba(43, 46, 51, 0.14);
  border-radius: 10px;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}
.form__field input::placeholder { color: var(--color-text-muted); opacity: 0.7; }
.form__field input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(232, 131, 45, 0.18);
  transform: translateY(-1px);
}
.form__field.is-invalid input {
  border-color: var(--color-error);
  box-shadow: 0 0 0 4px rgba(217, 59, 59, 0.12);
  animation: field-shake 280ms var(--ease);
}
.form__error {
  min-height: 18px;
  color: var(--color-error);
  font-size: 13px;
  font-weight: 500;
}
.form__privacy {
  text-align: center;
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.form__status {
  text-align: center;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}
.form__status--error { color: var(--color-error); min-height: 18px; }

@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  25%      { transform: translateX(-5px); }
  75%      { transform: translateX(5px); }
}

/* =============================================================
   REVEAL-ON-SCROLL  (com stagger via --stagger)
   ============================================================= */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 600ms var(--ease),
    transform 600ms var(--ease);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* =============================================================
   HEADER
   ============================================================= */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  background: transparent;
  transition: background-color 280ms var(--ease), box-shadow 280ms var(--ease), padding 280ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(255, 248, 236, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px -12px rgba(43, 46, 51, 0.12);
  padding: 8px 0;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__logo { display: inline-flex; align-items: center; }
.site-header__logo img {
  height: 48px;
  width: auto;
  transition: transform 280ms var(--ease);
}
.site-header__logo:hover img { transform: rotate(-4deg) scale(1.04); }
.site-header__logo-fallback {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: 22px;
  color: var(--color-orange-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.site-header__logo-fallback em { color: var(--color-charcoal); font-style: normal; opacity: 0.35; }

/* =============================================================
   SECTION HEAD
   ============================================================= */

.section-head {
  text-align: center;
  max-width: 780px;
  margin-inline: auto;
  margin-bottom: 64px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  margin-bottom: 12px;
}
.section-head__subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin: 0;
}

/* =============================================================
   HERO  ·  blobs com morph  ·  parallax do mascote
   ============================================================= */

.hero {
  position: relative;
  padding: calc(96px + 60px) 0 96px;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform, border-radius;
}
.hero__blob--a {
  top: 10%;
  right: -10%;
  width: 560px;
  height: 560px;
  background: var(--color-orange-soft);
  opacity: 0.38;
  animation: blob-morph 14s ease-in-out infinite alternate;
}
.hero__blob--b {
  bottom: -25%;
  left: -15%;
  width: 460px;
  height: 460px;
  background: var(--color-cream);
  filter: blur(110px);
  opacity: 0.8;
  animation: blob-morph 18s 2s ease-in-out infinite alternate-reverse;
}

@keyframes blob-morph {
  0%   { border-radius: 58% 42% 45% 55% / 52% 48% 52% 48%; transform: scale(1) rotate(0deg); }
  50%  { border-radius: 40% 60% 65% 35% / 45% 55% 45% 55%; transform: scale(1.08) rotate(18deg); }
  100% { border-radius: 65% 35% 40% 60% / 58% 42% 58% 42%; transform: scale(0.94) rotate(-10deg); }
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 16px;
}
.hero__title em {
  font-style: italic;
  color: var(--color-orange-deep);
  background: linear-gradient(180deg, transparent 55%, rgba(232, 131, 45, 0.22) 55%);
  padding: 0 6px;
  display: inline-block;
  transform-origin: center;
  animation: wobble 7s ease-in-out infinite;
}

@keyframes wobble {
  0%, 100% { transform: rotate(-1deg); }
  50%      { transform: rotate(1.5deg); }
}

.hero__subtitle {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 500;
  color: var(--color-charcoal);
  max-width: 58ch;
  margin-bottom: 16px;
}
.hero__support {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 58ch;
  margin-bottom: 32px;
}

.hero__social-proof {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal-soft);
}
.hero__social-proof li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.counter {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--color-charcoal);
}

.hero__art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}
.hero__art--placeholder {
  background: linear-gradient(160deg, var(--color-cream) 0%, var(--color-cream-light) 100%);
  border-radius: 24px;
  padding: 48px;
}

/* Wrap recebe o parallax do mouse via --mx/--my injetados no JS */
.hero__mascot-wrap {
  --mx: 0px;
  --my: 0px;
  transform: translate3d(var(--mx), var(--my), 0);
  transition: transform 260ms cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform;
}
.hero__mascot {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(43, 46, 51, 0.18));
  animation: mascot-float 5s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes mascot-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}

.hero__art-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 13px;
  color: var(--color-text-muted);
}
.hero__art--placeholder .hero__art-fallback { display: flex; }

/* =============================================================
   BENEFITS
   ============================================================= */

.benefits { padding: 96px 0; }
.benefits__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px)  { .benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits__grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   PAINS
   ============================================================= */

.pains {
  background: var(--color-cream);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.pains__list {
  list-style: none;
  padding: 0;
  margin: 0 auto 48px;
  display: grid;
  gap: 16px;
  max-width: 780px;
}
.pains__quote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  color: var(--color-charcoal);
}
.pains__quote em { font-style: italic; color: var(--color-orange-deep); }

.pain {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 16px 24px;
  border-radius: 16px;
  box-shadow: 0 2px 6px rgba(43, 46, 51, 0.06);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
.pain:hover {
  transform: translateX(6px);
  box-shadow: 0 12px 28px -12px rgba(43, 46, 51, 0.18);
}
.pain p { margin: 0; font-size: 17px; font-weight: 500; color: var(--color-charcoal); }

/* =============================================================
   SOLUTION
   ============================================================= */

.solution { padding: 96px 0; }
.solution__inner { max-width: 780px; text-align: center; }
.solution__inner h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin: 16px 0 16px; }
.solution__inner p  { font-size: 18px; color: var(--color-text-muted); margin-bottom: 32px; }

/* =============================================================
   FORM SECTION
   ============================================================= */

.form-section {
  position: relative;
  background: var(--color-charcoal);
  color: var(--color-cream-light);
  padding: 96px 0;
  overflow: hidden;
}
.form-section::before, .form-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
  animation: blob-morph 22s ease-in-out infinite alternate;
}
.form-section::before {
  width: 400px; height: 400px;
  background: rgba(232, 131, 45, 0.32);
  top: -100px; left: -100px;
}
.form-section::after {
  width: 320px; height: 320px;
  background: rgba(251, 239, 217, 0.14);
  bottom: -80px; right: -80px;
  animation-delay: 3s;
  animation-direction: alternate-reverse;
}
.form-section__bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.06) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.form-section__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-inline: auto;
}
.form-section__head {
  text-align: center;
  margin-bottom: 48px;
}
.form-section__head h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.6vw, 2.5rem);
  margin: 16px 0 0;
}

.form-card {
  background: #fff;
  color: var(--color-text);
  border-radius: 24px;
  padding: 48px 32px;
  box-shadow: 0 32px 60px -16px rgba(232, 131, 45, 0.45);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-orange), var(--color-orange-deep), var(--color-orange));
  background-size: 200% 100%;
  animation: bar-slide 4s linear infinite;
}

@keyframes bar-slide {
  from { background-position: 0% 0; }
  to   { background-position: 200% 0; }
}

/* Success state */
.form-success {
  text-align: center;
  padding: 16px 0;
  animation: success-pop 520ms var(--ease) both;
}
.form-success h3 { font-size: 28px; margin-bottom: 12px; }
.form-success p  { color: var(--color-text-muted); margin-bottom: 32px; }

@keyframes success-pop {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* =============================================================
   AUTHORITY
   ============================================================= */

.authority { padding: 96px 0; }
.authority__inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.authority__mascot img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  animation: bob 6s var(--ease-io) infinite;
}
.authority__quote { margin: 0; position: relative; }
.authority__quote p {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2.2vw, 1.5rem);
  line-height: 1.45;
  color: var(--color-charcoal);
  margin: 0 0 16px;
}
.authority__quote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange-deep);
}

/* =============================================================
   CTA FINAL  · dot pattern
   ============================================================= */

.cta-final {
  position: relative;
  padding: 96px 0;
  background: linear-gradient(135deg, var(--color-orange) 0%, var(--color-orange-deep) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.cta-final__pattern {
  position: absolute;
  inset: -10%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.22) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
  opacity: 0.8;
  pointer-events: none;
  animation: drift 24s linear infinite;
}
@keyframes drift {
  from { transform: translate(0, 0); }
  to   { transform: translate(-26px, -26px); }
}
.cta-final__inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin-inline: auto;
}
.cta-final__inner h2 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3rem);
  margin-bottom: 12px;
}
.cta-final__inner p {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
}

/* =============================================================
   FOOTER
   ============================================================= */

.site-footer {
  background: var(--color-charcoal);
  color: rgba(251, 239, 217, 0.72);
  padding: 64px 0 24px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(251, 239, 217, 0.12);
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; }
}
.site-footer h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-cream);
  margin-bottom: 16px;
}
.site-footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(1.1);
}
.site-footer__brand p { font-size: 15px; max-width: 28ch; }
.site-footer__brand-fallback {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--color-orange);
  margin-bottom: 12px;
}
.site-footer__links ul, .site-footer__social ul { list-style: none; padding: 0; margin: 0; }
.site-footer__links li { margin-bottom: 8px; }
.site-footer__links a {
  font-size: 15px;
  transition: color 180ms var(--ease);
}
.site-footer__links a:hover { color: var(--color-orange-soft); }

.site-footer__legal {
  padding-top: 24px;
  font-size: 13px;
  color: rgba(251, 239, 217, 0.5);
}
.site-footer__legal a { color: inherit; text-decoration: underline; }

.svg-sprite {
  position: absolute;
  width: 0; height: 0;
  overflow: hidden;
}

.socials { display: flex; gap: 12px; }
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(251, 239, 217, 0.08);
  color: var(--color-cream);
  transition: background-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}
.social-icon { width: 20px; height: 20px; }
.socials a:hover {
  background: var(--color-orange);
  color: #fff;
  transform: translateY(-3px) rotate(-4deg);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */

@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1.35fr 1fr; gap: 64px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .hero {
    padding-top: calc(64px + 60px);
    padding-bottom: 64px;
  }
  .hero__social-proof { gap: 12px; font-size: 13px; }
  .form-card { padding: 32px 18px; }
  .site-header__nav .btn--sm { padding: 8px 14px; font-size: 13px; }
  .pain { padding: 14px 18px; }
  .pain p { font-size: 15px; }
}

@media (max-width: 768px) {
  .hero__art { order: -1; min-height: 260px; }
  .hero__mascot { max-width: 320px; }
  .hero__blob--a { width: 360px; height: 360px; top: 5%; }
  .hero__blob--b { width: 300px; height: 300px; }
  .section-head { margin-bottom: 48px; }
  .benefits,
  .pains,
  .solution,
  .form-section,
  .authority,
  .cta-final { padding: 64px 0; }
  .site-footer__grid { text-align: left; }
}

@media (min-width: 1280px) {
  .hero {
    padding-top: calc(128px + 40px);
    padding-bottom: 128px;
  }
  .hero__blob--a { width: 640px; height: 640px; }
}

@media (hover: none) {
  .btn:hover { transform: none; box-shadow: var(--btn-shadow); }
  .card:hover { transform: none; }
  .pain:hover { transform: none; }
  .btn--primary:hover::before { transform: translateX(-120%); }
}

/* =============================================================
   EXTRA — confetti, dot-pulse, eyebrow dot, float cards,
   hero ring, marquee, how section, orbit, solution peek,
   cta mascot, filament, card num, pain bullet
   ============================================================= */

/* Eyebrow dot */
.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange);
  box-shadow: 0 0 0 4px rgba(232, 131, 45, 0.18);
  animation: dot-pulse 1.8s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.3); opacity: 0.6; }
}

/* Dot pulse usado no social-proof */
.dot-pulse {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 0 0 rgba(47, 158, 107, 0.55);
  animation: dot-ping 1.8s ease-out infinite;
}
@keyframes dot-ping {
  0%   { box-shadow: 0 0 0 0 rgba(47, 158, 107, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(47, 158, 107, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 158, 107, 0); }
}

/* Confetti caindo no hero */
.confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.confetti__bit {
  position: absolute;
  top: -20px;
  left: var(--x);
  width: 10px;
  height: 14px;
  background: var(--c);
  border-radius: 2px;
  opacity: 0.85;
  animation: confetti-fall 7s linear infinite;
  animation-delay: var(--d);
  transform-origin: center;
}
.confetti__bit:nth-child(2n) { width: 8px; height: 8px; border-radius: 50%; }
.confetti__bit:nth-child(3n) { width: 12px; height: 4px; border-radius: 4px; }

@keyframes confetti-fall {
  0%   { transform: translateY(-40px) rotate(0); opacity: 0; }
  10%  { opacity: 1; }
  100% { transform: translateY(110vh) rotate(540deg); opacity: 0.4; }
}

/* Anel girando atrás do mascote */
.hero__ring {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 110%;
  height: 110%;
  max-width: 560px;
  max-height: 560px;
  animation: ring-spin 32s linear infinite;
  z-index: 0;
  pointer-events: none;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* Float cards ao redor do mascote */
.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 14px 30px -12px rgba(43, 46, 51, 0.2);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-charcoal);
  z-index: 2;
  animation: float-bob 5s var(--ease-io) infinite;
}
.float-card__label {
  display: block;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 2px;
}
.float-card__value {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-orange-deep);
  font-variant-numeric: tabular-nums;
}
.float-card--price  { top: 8%;  left: -4%; animation-delay: 0s; }
.float-card--weight { bottom: 18%; right: -2%; animation-delay: 1.2s; }
.float-card--check  {
  bottom: 4%; left: 10%;
  background: var(--color-orange);
  color: #fff;
  animation-delay: 2.4s;
}
.float-card--check svg {
  width: 18px; height: 18px;
  color: #fff;
}

@keyframes float-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Marquee de categorias */
.marquee {
  margin-top: 64px;
  overflow: hidden;
  padding: 18px 0;
  border-top: 1px solid rgba(43, 46, 51, 0.08);
  border-bottom: 1px solid rgba(43, 46, 51, 0.08);
  position: relative;
  z-index: 1;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee__track {
  display: flex;
  gap: 28px;
  white-space: nowrap;
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-charcoal);
  animation: marquee-slide 28s linear infinite;
  width: max-content;
}
.marquee__dot { color: var(--color-orange); }
@keyframes marquee-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Card numerado (benefits) */
.card__num {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-orange);
  background: linear-gradient(135deg, #E8832D, #F5B03A);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
  transition: transform 400ms var(--ease);
}
.card:hover .card__num {
  transform: translateY(-4px) scale(1.05);
}

/* Card--brand ajustado pra acomodar mascote maior */
.card--brand__img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  animation: bob 5s var(--ease-io) infinite;
}

/* =============================================================
   SEÇÃO — COMO FUNCIONA
   ============================================================= */
.how {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-cream-light) 100%);
  position: relative;
}
.how__grid {
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .how__grid { grid-template-columns: repeat(3, 1fr); }
}
.how__step {
  position: relative;
  background: #fff;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid rgba(43, 46, 51, 0.06);
  text-align: center;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease);
}
.how__step:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px -20px rgba(43, 46, 51, 0.2);
}
.how__illu {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.illu {
  width: 100%;
  max-width: 220px;
  height: auto;
}
.how__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  font-family: "Fraunces", serif;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
}
.how__step h3 {
  font-family: "Fraunces", serif;
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--color-charcoal);
}
.how__step p {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* Animações das ilustrações */
.illu__head {
  animation: head-slide 3s var(--ease-io) infinite;
  transform-origin: center;
}
@keyframes head-slide {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(30px); }
}

.illu__layers rect {
  transform-origin: center;
  animation: layer-pop 2.4s var(--ease) infinite;
}
.illu__layers rect:nth-child(1) { animation-delay: 0s; }
.illu__layers rect:nth-child(2) { animation-delay: 0.3s; }
.illu__layers rect:nth-child(3) { animation-delay: 0.6s; }
.illu__layers rect:nth-child(4) { animation-delay: 0.9s; }
.illu__layers rect:nth-child(5) { animation-delay: 1.2s; }
@keyframes layer-pop {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

.illu__bar {
  animation: bar-grow 2.8s var(--ease) infinite;
}
.illu__bar--a { animation-delay: 0s; }
.illu__bar--b { animation-delay: 0.3s; }
.illu__bar--c { animation-delay: 0.6s; }
@keyframes bar-grow {
  0%, 100% { width: 0; }
  30%, 70% { width: 100px; }
}

.illu__coin {
  transform-origin: 110px 80px;
  animation: coin-flip 4s var(--ease-io) infinite;
}
@keyframes coin-flip {
  0%, 100% { transform: scaleX(1); }
  50%      { transform: scaleX(-1); }
}

.illu__sparks path {
  transform-origin: center;
  animation: sparkle 2.2s ease-in-out infinite;
}
.illu__sparks path:nth-child(1) { animation-delay: 0s; }
.illu__sparks path:nth-child(2) { animation-delay: 0.5s; }
.illu__sparks path:nth-child(3) { animation-delay: 1s; }
.illu__sparks path:nth-child(4) { animation-delay: 1.5s; }
@keyframes sparkle {
  0%, 100% { transform: scale(1)   rotate(0);  opacity: 1; }
  50%      { transform: scale(0.4) rotate(45deg); opacity: 0.3; }
}

/* Pain bullet (em X removido; agora é um traço animado) */
.pain__bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-error);
  box-shadow: 0 0 0 4px rgba(217, 59, 59, 0.16);
  animation: dot-pulse 2.2s ease-in-out infinite;
}

/* Solution — mascote espreitando */
.solution { position: relative; overflow: hidden; }
.solution__peek {
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 180px;
  height: auto;
  opacity: 0.85;
  transform: rotate(-12deg);
  animation: peek-wave 6s var(--ease-io) infinite;
  pointer-events: none;
}
@keyframes peek-wave {
  0%, 100% { transform: rotate(-12deg) translateY(0); }
  50%      { transform: rotate(-6deg)  translateY(-14px); }
}
@media (max-width: 767px) {
  .solution__peek { display: none; }
}

/* Form section — filamento serpenteando */
.form-section__filament {
  position: absolute;
  inset: auto 0 0 0;
  width: 100%;
  height: 200px;
  z-index: 0;
  animation: filament-dash 30s linear infinite;
  stroke-dasharray: 6 8;
}
@keyframes filament-dash {
  to { stroke-dashoffset: -280; }
}

/* CTA final — mascote + orbit */
.cta-final { position: relative; overflow: hidden; }
.cta-final__mascot {
  width: 120px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  animation: mascot-spin-wave 7s var(--ease-io) infinite;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.25));
}
@keyframes mascot-spin-wave {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(6deg)  translateY(-10px); }
}

.orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 420px;
  height: 420px;
  margin: -210px 0 0 -210px;
  pointer-events: none;
  animation: orbit-rotate 18s linear infinite;
  z-index: 0;
}
.orbit__bit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: rgba(245, 176, 58, 0.8);
  box-shadow: 0 0 18px rgba(245, 176, 58, 0.6);
  animation: orbit-bit 6s linear infinite;
  animation-delay: var(--d);
}
.orbit__bit:nth-child(2) { background: rgba(232, 131, 45, 0.8); }
.orbit__bit:nth-child(3) { background: rgba(244, 168, 104, 0.8); }
.orbit__bit:nth-child(4) { background: rgba(245, 176, 58, 0.6); }

@keyframes orbit-rotate {
  to { transform: rotate(360deg); }
}
@keyframes orbit-bit {
  0%   { transform: rotate(0)      translateX(180px); }
  100% { transform: rotate(360deg) translateX(180px); }
}

/* Authority — mascote animado */
.authority__mascot img {
  animation: mascot-spin-wave 7s var(--ease-io) infinite;
  filter: drop-shadow(0 16px 24px rgba(232, 131, 45, 0.25));
}

/* Reduced motion — pausa todas as animações "vivas" */
@media (prefers-reduced-motion: reduce) {
  .confetti__bit,
  .hero__ring,
  .float-card,
  .marquee__track,
  .dot-pulse,
  .eyebrow__dot,
  .pain__bullet,
  .illu__head,
  .illu__layers rect,
  .illu__bar,
  .illu__coin,
  .illu__sparks path,
  .solution__peek,
  .cta-final__mascot,
  .authority__mascot img,
  .orbit,
  .orbit__bit,
  .card--brand__img,
  .form-section__filament {
    animation: none !important;
  }
}

/* Responsive — float cards em mobile ficam mais compactos */
@media (max-width: 767px) {
  .float-card          { font-size: 11px; padding: 8px 10px; }
  .float-card__value   { font-size: 14px; }
  .float-card--price   { top: 4%;  left: 0; }
  .float-card--weight  { bottom: 10%; right: 0; }
  .float-card--check   { bottom: 0; left: 50%; transform: translateX(-50%); }
  .hero__ring          { display: none; }
  .marquee             { font-size: 16px; }
  .marquee__track      { font-size: 16px; gap: 20px; }
}
