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

:root {
  --purple:     #5B21B6;
  --purple-lt:  #7C3AED;
  --purple-pale:#F5F0FF;
  --yellow:     #F5C800;
  --yellow-dk:  #D4A900;
  --yellow-pale:#FFFBEB;
  --text:       #1A1A2E;
  --muted:      #6B7280;
  --white:      #FFFFFF;
  --card-bg:    #FAFAFA;
  --border:     #E5E7EB;
  --radius:     18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}

/* ── HEADER ─────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 2px solid var(--yellow);
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap img {
  height: 80px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 0 4px 18px rgba(220,39,67,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-instagram:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(220,39,67,.45); }

header a.cta-mini {
  background: linear-gradient(135deg, var(--purple), var(--purple-lt));
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 800;
  font-size: .88rem;
  box-shadow: 0 4px 18px rgba(91,33,182,.3);
  transition: transform .2s, box-shadow .2s;
}
header a.cta-mini:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(91,33,182,.4); }

/* ── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #F5F0FF 0%, #FFFBEB 100%);
}

.hero-mascote-bg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  padding: 0;
}

.hero-mascote-bg img {
  height: 560px;
  max-height: 72vh;
  width: auto;
  object-fit: contain;
  object-position: bottom center;
  display: block;
  will-change: opacity, transform;
}

.hero-left {
  padding: 40px 40px 40px 10%;
  position: relative;
  z-index: 2;
}

/* decorative blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  opacity: .4;
}
.blob-1 { width: 360px; height: 360px; background: var(--purple-lt); top: -80px; right: 0; }
.blob-2 { width: 260px; height: 260px; background: var(--yellow); bottom: 0; right: 30%; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--yellow);
  color: var(--purple);
  font-size: .82rem;
  font-weight: 900;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: .3px;
  box-shadow: 0 3px 14px rgba(245,200,0,.4);
  animation: fadeUp .5s ease both;
  will-change: opacity, transform;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
  animation: fadeUp .5s .08s ease both;
  will-change: opacity, transform;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 strong { color: var(--yellow-dk); }

.hero p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 32px;
  animation: fadeUp .5s .16s ease both;
  will-change: opacity, transform;
}

.btn-hero-anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--purple), var(--purple-lt));
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 8px 28px rgba(91,33,182,.35);
  transition: transform .2s, box-shadow .2s;
  animation: fadeUp .5s .24s ease both;
}
.btn-hero-anchor:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 38px rgba(91,33,182,.45); }

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 44px;
  animation: fadeUp .5s .32s ease both;
}

.stat { display: flex; align-items: center; gap: 10px; }
.stat-icon { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.stat-text strong { display: block; font-size: 1.1rem; font-weight: 900; color: var(--purple); }
.stat-text span { font-size: .8rem; color: var(--muted); }

/* ── STRIP ───────────────────────────── */
.strip {
  background: linear-gradient(135deg, var(--purple), var(--purple-lt));
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  font-weight: 800;
  font-size: .92rem;
}
.strip-item { display: flex; align-items: center; gap: 8px; }
.strip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }

/* ── SECTION COMMONS ─────────────────── */
.section-label {
  display: inline-block;
  background: var(--yellow-pale);
  color: var(--yellow-dk);
  border: 1.5px solid var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -.8px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(90deg, var(--purple), var(--purple-lt));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
}

/* ── GROUPS ──────────────────────────── */
.groups {
  padding: 90px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.groups-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.group-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.group-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 56px rgba(91,33,182,.14);
  border-color: var(--purple-lt);
}

.group-card.featured { border-color: var(--yellow); box-shadow: 0 6px 28px rgba(245,200,0,.2); }
.group-card.featured:hover { border-color: var(--yellow-dk); box-shadow: 0 20px 56px rgba(245,200,0,.3); }

.group-banner {
  height: 140px;
  max-height: 140px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.group-banner img {
  width: 100%;
  height: 140px;
  max-height: 140px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .4s ease;
}
.group-card:hover .group-banner img { transform: scale(1.06); }

.group-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--yellow);
  color: var(--purple);
  font-size: .72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 50px;
}

.group-body { padding: 22px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.group-body h3 { font-size: 1.1rem; font-weight: 900; margin-bottom: 6px; }
.group-body p { color: var(--muted); font-size: .9rem; line-height: 1.6; margin-bottom: 18px; }
.group-body .btn-whatsapp { margin-top: auto; }

.group-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.meta-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--purple-pale);
  color: var(--purple);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  text-decoration: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: 900;
  font-size: .95rem;
  box-shadow: 0 5px 18px rgba(37,211,102,.3);
  transition: transform .2s, box-shadow .2s;
}
.btn-whatsapp:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(37,211,102,.4); }
.btn-whatsapp svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }

/* ── PARTNERS CAROUSEL ───────────────── */
.partners {
  padding: 48px 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.partners-track-wrap {
  overflow: hidden;
  position: relative;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.partners-track-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.partners-track-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }

.partners-track {
  display: flex;
  gap: 32px;
  width: max-content;
  will-change: transform;
}

.partners-track:hover { animation-play-state: paused; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 72px;
  padding: 12px 20px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--border);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
  overflow: hidden;
}
.partner-logo:hover { transform: scale(1.06); box-shadow: 0 6px 20px rgba(0,0,0,.08); }

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter .2s;
}
.partner-logo:hover img { filter: grayscale(0%); }

/* ── BENEFITS ────────────────────────── */
.benefits {
  padding: 90px 24px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
  margin-top: 52px;
  text-align: left;
}

.benefit-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple-lt);
  box-shadow: 0 10px 36px rgba(91,33,182,.1);
}

.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.benefit-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 8px; }
.benefit-card p { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────── */
.testimonials {
  padding: 90px 24px;
  background: var(--purple-pale);
}

.testi-inner { max-width: 1100px; margin: 0 auto; text-align: center; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 52px;
  text-align: left;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 20px rgba(91,33,182,.07);
}

.stars { color: var(--yellow-dk); font-size: 1.1rem; margin-bottom: 14px; }
.testi-card blockquote { color: #4B5563; font-size: .93rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 12px; }

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}

.testi-author strong { display: block; font-size: .92rem; font-weight: 800; }
.testi-author span { color: var(--muted); font-size: .8rem; }

/* ── FINAL CTA ───────────────────────── */
.final-cta {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-lt) 100%);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.final-cta-mascote {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 85%;
  max-height: 420px;
  object-fit: contain;
  object-position: bottom;
  opacity: .18;
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  max-width: 600px;
  margin: 0 auto 16px;
  line-height: 1.2;
  position: relative;
}

.final-cta h2 span { color: var(--yellow); }

.final-cta p {
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-size: 1.02rem;
  position: relative;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--yellow);
  color: var(--purple);
  text-decoration: none;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.btn-cta-white:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 40px rgba(0,0,0,.3); }

/* ── FOOTER ──────────────────────────── */
footer {
  background: var(--text);
  color: rgba(255,255,255,.55);
  padding: 36px 24px;
  text-align: center;
  font-size: .84rem;
  line-height: 1.9;
}

footer .footer-logo img { height: 48px; object-fit: contain; margin-bottom: 14px; }
footer a { color: var(--yellow); text-decoration: none; }
footer a:hover { text-decoration: underline; }

/* ── ANIMATIONS ──────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────── */

/* Tablet grande */
@media (max-width: 1024px) {
  .groups-grid { grid-template-columns: repeat(3, 1fr); }

  .hero-left { padding: 40px 32px 40px 6%; }

  .hero-mascote-bg img {
    height: 420px;
    max-height: 56vh;
  }
}

/* Tablet / mobile */
@media (max-width: 768px) {
  /* Header */
  header { padding: 10px 16px; }
  .logo-wrap img { height: 56px; }
  header a.cta-mini { display: none; }
  .btn-instagram { padding: 8px 14px; font-size: .8rem; }

  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
  }
  .hero-left {
    padding: 36px 20px 32px;
    text-align: center;
  }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-mascote-bg { display: none; }
  .blob-1, .blob-2 { display: none; }
  .hero-stats {
    justify-content: center;
    gap: 16px;
  }
  .btn-hero-anchor {
    width: 100%;
    justify-content: center;
  }

  /* Strip */
  .strip {
    gap: 14px;
    font-size: .82rem;
    padding: 14px 16px;
  }

  /* Groups */
  .groups { padding: 60px 16px; }
  .groups-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }

  /* Partners */
  .partners { padding: 36px 0; }

  /* Benefits */
  .benefits { padding: 60px 16px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }

  /* Testimonials */
  .testimonials { padding: 60px 16px; }
  .testi-grid { margin-top: 36px; }

  /* Final CTA */
  .final-cta { padding: 72px 20px; }
  .final-cta-mascote { display: none; }
  .final-cta h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); }

  /* Footer */
  footer { padding: 28px 16px; }
}

/* Mobile pequeno */
@media (max-width: 480px) {
  /* Header */
  .btn-instagram span { display: none; }
  .btn-instagram { width: 38px; height: 38px; padding: 0; border-radius: 50%; justify-content: center; }

  /* Hero */
  .hero-left { padding: 28px 16px 24px; }
  .hero h1 { font-size: clamp(1.7rem, 7.5vw, 2.2rem); }
  .hero p { font-size: .95rem; }
  .hero-stats { gap: 12px; }
  .stat-text strong { font-size: 1rem; }

  /* Strip — esconde itens menos importantes */
  .strip-item:nth-child(3),
  .strip-item:nth-child(4) { display: none; }

  /* Groups — 1 coluna */
  .groups { padding: 48px 14px; }
  .groups-grid { grid-template-columns: 1fr; }

  /* Benefits — 1 coluna */
  .benefits { padding: 48px 14px; }
  .benefits-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials { padding: 48px 14px; }

  /* Section titles */
  .section-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }

  /* Final CTA */
  .final-cta { padding: 56px 16px; }
  .btn-cta-white { width: 100%; justify-content: center; font-size: .98rem; }
}
