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

:root {
  --yellow:  #FFE500;
  --orange:  #FF6B00;
  --black:   #1A1A1A;
  --white:   #ffffff;
  --green:   #25D366;
  --green-dk:#128C7E;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--yellow);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .logo {
  font-family: 'Nunito', system-ui, sans-serif;
}

.container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 22px;
}

/* ===== ABELHINHAS ===== */
.bee-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  overflow: hidden;
}

.bee {
  position: absolute;
  font-size: 1.6rem;
  will-change: transform;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.15));
}

.bee--1 { top: 12%;  left: 6%;   animation: fly-a 13s 0s   infinite ease-in-out; }
.bee--2 { top: 65%;  left: 82%;  animation: fly-b 11s 2.5s infinite ease-in-out; }
.bee--3 { top: 35%;  left: 48%;  animation: fly-c 16s 5s   infinite ease-in-out; }
.bee--4 { top: 78%;  left: 22%;  animation: fly-a 14s 3.5s infinite ease-in-out; }
.bee--5 { top: 22%;  left: 74%;  animation: fly-b  9s 7s   infinite ease-in-out; }
.bee--6 { top: 50%;  left: 10%;  animation: fly-c 12s 1s   infinite ease-in-out; }

@keyframes fly-a {
  0%   { transform: translate(0px,   0px)  rotate(0deg);   }
  20%  { transform: translate(80px, -55px) rotate(-14deg); }
  40%  { transform: translate(155px, 28px) rotate(9deg);   }
  60%  { transform: translate(95px, -75px) rotate(-6deg);  }
  80%  { transform: translate(38px,  18px) rotate(10deg);  }
  100% { transform: translate(0px,   0px)  rotate(0deg);   }
}

@keyframes fly-b {
  0%   { transform: translate(0px,    0px)  rotate(4deg);   }
  25%  { transform: translate(-75px, -62px) rotate(-11deg); }
  50%  { transform: translate(-140px, 42px) rotate(13deg);  }
  75%  { transform: translate(-55px, -32px) rotate(-7deg);  }
  100% { transform: translate(0px,    0px)  rotate(4deg);   }
}

@keyframes fly-c {
  0%   { transform: translate(0px,   0px)   rotate(-3deg); }
  30%  { transform: translate(52px,  65px)  rotate(9deg);  }
  55%  { transform: translate(-65px, 102px) rotate(-13deg);}
  80%  { transform: translate(-28px, 32px)  rotate(6deg);  }
  100% { transform: translate(0px,   0px)   rotate(-3deg); }
}

/* ===== BOTÕES ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', system-ui, sans-serif;
  font-weight: 800;
  border: none;
  cursor: pointer;
  text-decoration: none;
  border-radius: 100px;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover  { transform: translateY(-3px) scale(1.03); }
.btn:active { transform: translateY(0) scale(1); }

.btn--main {
  background: var(--green);
  color: var(--white);
  font-size: 1.1rem;
  padding: 16px 34px;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.btn--main:hover { background: var(--green-dk); box-shadow: 0 10px 32px rgba(37,211,102,.5); }

.btn--large { font-size: 1.2rem; padding: 20px 44px; }

.btn--header {
  display: none;
  background: var(--orange);
  color: var(--white);
  font-size: .9rem;
  padding: 10px 22px;
  box-shadow: 0 3px 12px rgba(255,107,0,.35);
}
.btn--header:hover { background: #e05c00; }

.btn__icon { width: 22px; height: 22px; flex-shrink: 0; }

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--black);
  border-bottom: 3px solid var(--yellow);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -.01em;
}
.logo strong { color: var(--orange); }

/* ===== HERO ===== */
.hero {
  background: var(--yellow);
  padding: 72px 0 48px;
  text-align: center;
  position: relative;
}

.badge {
  display: inline-block;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: .85rem;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 30px;
  letter-spacing: .2px;
}

.hero__title {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--black);
  margin-bottom: 22px;
}

.hero__title--orange { color: var(--orange); }

.hero__sub {
  max-width: 540px;
  margin: 0 auto 38px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
}

.hero__disclaimer {
  margin-top: 16px;
  font-size: .82rem;
  color: #555;
  letter-spacing: .3px;
}

/* ===== WAVE ===== */
.wave {
  display: block;
  line-height: 0;
  margin-bottom: -1px;
}
.wave svg { display: block; width: 100%; height: 80px; }

/* ===== BENEFITS ===== */
.benefits {
  background: var(--black);
  padding: 72px 0 80px;
}

.section__title {
  text-align: center;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 48px;
}

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

.card {
  background: #272727;
  border: 2px solid #333;
  border-radius: 18px;
  padding: 34px 24px;
  text-align: center;
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-6px) rotate(-1deg);
  border-color: var(--orange);
}

.card__icon { font-size: 2.4rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; font-weight: 800; color: var(--yellow); margin-bottom: 10px; }
.card p  { font-size: .9rem; color: #aaa; line-height: 1.6; }

/* ===== PROOF ===== */
.proof {
  background: var(--orange);
  padding: 64px 0;
}

.proof__numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof__item { text-align: center; }
.proof__num  {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
}
.proof__label { font-size: .88rem; font-weight: 600; color: #fff; margin-top: 4px; }

.proof__divider { font-size: 1.8rem; opacity: .6; }

/* ===== CTA FINAL ===== */
.cta-section {
  background: var(--yellow);
  padding: 80px 0 88px;
}

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

.cta-section__emoji {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 18px;
  animation: bounce 2s ease-in-out infinite;
}

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

.cta-section__title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: var(--black);
  margin-bottom: 14px;
}

.cta-section__sub {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 38px;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  padding: 28px 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer__copy { font-size: .82rem; color: #666; }

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
  .btn--header { display: inline-flex; }
}

@media (max-width: 680px) {
  .benefits__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .wave svg { height: 50px; }
  .proof__numbers { gap: 22px; }
  .proof__num { font-size: 1.7rem; }
  .footer__inner { justify-content: center; text-align: center; }
}

@media (max-width: 420px) {
  .hero { padding: 52px 0 36px; }
  .proof__divider { display: none; }
  .proof__numbers { gap: 30px; }
  .bee--3, .bee--6 { display: none; }
}

/* ===== SECTION TITLE VARIANT (light bg) ===== */
.section__title--dark { color: var(--black); }
.section__sub {
  text-align: center;
  font-size: 1rem;
  color: #444;
  margin: -32px auto 36px;
  max-width: 540px;
}

/* ===== OFERTAS EXEMPLO ===== */
.ofertas {
  background: var(--orange);
  padding: 72px 0 80px;
}
.ofertas .section__title--dark { color: var(--black); }
.ofertas .section__sub { color: rgba(0,0,0,.7); }

.ofertas__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.oferta-card {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform .2s ease;
}
.oferta-card:hover { transform: translateY(-4px); }

.oferta-card__emoji { font-size: 2.6rem; margin-bottom: 6px; }

.oferta-card__discount {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--black);
  color: var(--yellow);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: .85rem;
  padding: 4px 10px;
  border-radius: 100px;
}

.oferta-card h3 {
  font-size: .92rem;
  font-weight: 800;
  color: var(--black);
  margin: 6px 0 12px;
  min-height: 38px;
  line-height: 1.25;
}

.oferta-card__price-old {
  font-size: .82rem;
  color: #888;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.oferta-card__price-new {
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #1d8a3a;
}

.ofertas__cta-text {
  text-align: center;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 600;
}

/* ===== COMO FUNCIONA ===== */
.howto {
  background: var(--yellow);
  padding: 72px 0 80px;
}

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

.howto__step {
  text-align: center;
  padding: 18px 12px;
}

.howto__num {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.7rem;
}

.howto__step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}
.howto__step p { font-size: .95rem; color: #444; }

/* ===== DEPOIMENTOS ===== */
.depoimentos {
  background: var(--yellow);
  padding: 72px 0 80px;
}

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

.depo-card {
  background: var(--white);
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  border-left: 4px solid var(--orange);
}

.depo-card__text {
  font-size: .98rem;
  color: #222;
  line-height: 1.55;
  margin-bottom: 12px;
}

.depo-card__author {
  font-size: .85rem;
  font-weight: 700;
  color: #666;
}

/* ===== FAQ ===== */
.faq {
  background: var(--black);
  padding: 72px 0 88px;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #272727;
  border: 2px solid #333;
  border-radius: 14px;
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--orange); }

.faq-item summary {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--yellow);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--orange);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
  margin-top: 14px;
  color: #ccc;
  font-size: .95rem;
  line-height: 1.65;
}

/* ===== FLOATING CTA (mobile) ===== */
.float-cta {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(37,211,102,.55);
  z-index: 600;
  animation: pulse 2.4s ease-in-out infinite;
}
.float-cta svg { width: 22px; height: 22px; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,.55); }
  50%       { box-shadow: 0 8px 36px rgba(37,211,102,.85); }
}

/* ===== FOOTER LINKS ===== */
.footer__links {
  display: flex;
  gap: 18px;
}
.footer__links a {
  color: #aaa;
  font-size: .82rem;
  text-decoration: none;
  transition: color .15s ease;
}
.footer__links a:hover { color: var(--yellow); }

/* ===== RESPONSIVE: new sections ===== */
@media (max-width: 900px) {
  .ofertas__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .howto__steps { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; gap: 18px; }
  .depoimentos__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .float-cta { display: inline-flex; }
  /* dá espaço pro botão flutuante não cobrir o footer */
  .footer { padding-bottom: 88px; }
  .footer__inner { justify-content: center; text-align: center; }
  .section__sub { margin: -20px auto 28px; padding: 0 16px; }
}

@media (max-width: 420px) {
  .ofertas__grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto 28px; }
  .oferta-card h3 { min-height: 0; }
}

/* ===== PÁGINA OBRIGADO ===== */
.obrigado-body { background: var(--yellow); min-height: 100vh; display: flex; flex-direction: column; }

.obrigado {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
}

.obrigado__inner { text-align: center; max-width: 600px; }

.obrigado__emoji {
  font-size: 3rem;
  margin-bottom: 14px;
  animation: bounce 2s ease-in-out infinite;
}

.obrigado__title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}

.obrigado__sub {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.65;
  margin-bottom: 32px;
}

.obrigado__tip {
  margin-top: 32px;
  background: rgba(0,0,0,.06);
  border-radius: 14px;
  padding: 18px 22px;
  font-size: .95rem;
  color: var(--black);
  line-height: 1.5;
}

.obrigado__back {
  display: inline-block;
  margin-top: 26px;
  font-size: .9rem;
  color: #555;
  text-decoration: none;
  font-weight: 600;
}
.obrigado__back:hover { color: var(--black); }

/* ===== PÁGINAS LEGAIS (privacidade / termos) ===== */
.legal {
  background: var(--white);
  min-height: 100vh;
  padding: 60px 0 80px;
}
.legal .container { max-width: 720px; }
.legal h1 {
  font-family: 'Nunito', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
}
.legal .legal__date { color: #888; font-size: .9rem; margin-bottom: 32px; }
.legal h2 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--black);
  margin-top: 28px;
  margin-bottom: 10px;
}
.legal p, .legal li { color: #333; font-size: 1rem; line-height: 1.7; }
.legal ul { padding-left: 22px; margin-bottom: 10px; }
.legal a { color: var(--orange); }
.legal .legal__back {
  display: inline-block;
  margin-top: 32px;
  color: #555;
  text-decoration: none;
  font-weight: 600;
}
