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

:root {
  --yellow: #FFD93D;
  --yellow-dark: #E6B800;
  --coral: #FF6B6B;
  --coral-dark: #e04f4f;
  --mint: #6BCB77;
  --sky: #4ECDC4;
  --purple: #845EC2;
  --peach: #FFF3E0;
  --cream: #FFFDF5;
  --white: #ffffff;
  --dark: #2D2D2D;
  --gray: #000000;
  --light-gray: #F9F9F7;
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  scroll-behavior: smooth;
}
/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #FFF8E1 0%, #FFE8E8 50%, #E8F5E9 100%);
  padding: 80px 5% 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 217, 61, .25) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 107, .2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-family: 'Fredoka', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 22px;
  letter-spacing: .5px;
  animation: fadeDown .6s ease both;
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 20px;
  animation: fadeDown .7s .1s ease both;
}

.hero h1 .accent {
  color: var(--coral);
}

.hero p {
  font-size: 1.15rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto 36px;
  animation: fadeDown .7s .2s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeDown .7s .3s ease both;
}

.btn-primary {
  background: var(--coral);
  color: white;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(255, 107, 107, .35);
}

.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, .45);
}

.btn-secondary {
  background: white;
  color: var(--coral);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--coral);
  transition: all .2s;
}

.btn-secondary:hover {
  background: var(--coral);
  color: white;
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeDown .7s .4s ease both;
}

.hero-badge {
  background: white;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-green {
  background: var(--mint);
}

.dot-coral {
  background: var(--coral);
}

.dot-yellow {
  background: var(--yellow-dark);
}

.dot-purple {
  background: var(--purple);
}

/* floating confetti */
.confetti-wrap {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.conf {
  position: absolute;
  border-radius: 2px;
  animation: fall linear infinite;
  opacity: .7;
}

@keyframes fall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: .8;
  }

  100% {
    transform: translateY(120vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--dark);
  color: white;
  padding: 18px 5%;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .95rem;
  font-weight: 600;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  font-size: 1.3rem;
}

/* ── SECTION SHARED ── */
section {
  padding: 72px 5%;
}

.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── THEMES ── */
.themes {
  background: var(--white);
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;

}

.theme-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
  cursor: default;
  border: 2px solid transparent;
}

.theme-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
  border-color: var(--yellow);
}

.theme-emoji {
  font-size: 2.8rem;
  display: block;
  margin-bottom: 10px;
}

.theme-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
}

.theme-desc {
  font-size: .85rem;
  color: var(--gray);
  margin-top: 4px;
}
@media (max-width: 768px) {
  .themes-grid {
    grid-template-columns: 1fr;
  }
}
/* ── WHAT'S INCLUDED ── */
.included {
  background: var(--cream);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.included-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border-left: 5px solid var(--coral);
  box-shadow: 0 2px 14px rgba(0, 0, 0, .06);
  transition: transform .2s;
}

.included-card:hover {
  transform: translateY(-3px);
}

.included-card:nth-child(2) {
  border-left-color: var(--mint);
}

.included-card:nth-child(3) {
  border-left-color: var(--yellow-dark);
}

.included-card:nth-child(4) {
  border-left-color: var(--purple);
}

.included-card:nth-child(5) {
  border-left-color: var(--sky);
}

.included-card:nth-child(6) {
  border-left-color: var(--coral);
}

.included-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.included-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.included-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── ADD-ONS ── */
.addons {
  background: #FFF8F8;
}

.addons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
}

.addon-pill {
  background: white;
  border: 2px solid #FFD3D3;
  border-radius: 50px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
}

.addon-pill:hover {
  border-color: var(--coral);
  background: #FFF0F0;
  transform: scale(1.04);
}

/* ── WHY US ── */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.why-item {
  text-align: center;
}

.why-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--yellow);
  border-radius: 50%;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 auto 14px;
}

.why-item h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.why-item p {
  font-size: .9rem;
  color: var(--gray);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: linear-gradient(135deg, #FFF3E0, #FFE8E8);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}

.test-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .07);
  position: relative;
}

.test-stars {
  color: #FFB800;
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.test-card p {
  font-size: .95rem;
  color: #444;
  line-height: 1.65;
  margin-bottom: 18px;
  font-style: italic;
}

.test-author {
  font-weight: 700;
  font-size: .9rem;
  color: var(--dark);
}

.test-role {
  font-size: .8rem;
  color: var(--gray);
}

.test-quote {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: #FFE8E8;
  line-height: 1;
  font-weight: 700;
}

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

.steps {
  display: flex;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  flex-wrap: wrap;
}

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--yellow) 0, var(--yellow) 16px, transparent 16px, transparent 24px);
}

.step {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: white;
  border: 4px solid var(--yellow);
  border-radius: 50%;
  font-family: 'Fredoka', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--coral);
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.step h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step p {
  font-size: .85rem;
  color: var(--gray);
}

/* ── FAQ ── */
.faq {
  background: white;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1.5px solid #F0EDE6;
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--coral);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-item.open .faq-q::after {
  transform: rotate(45deg);
}

.faq-a {
  font-size: .95rem;
  color: var(--gray);
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .25s;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 12px;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--coral);
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, .12), transparent 60%),
    radial-gradient(circle at 70% 50%, rgba(0, 0, 0, .06), transparent 60%);
}

.cta-banner h2 {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  position: relative;
}

.cta-banner p {
  color: rgba(255, 255, 255, .9);
  font-size: 1.1rem;
  margin-bottom: 36px;
  position: relative;
}

.cta-contacts {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-contact-btn {
  background: white;
  color: var(--coral);
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.cta-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .18);
}

.cta-contact-btn.whatsapp {
  background: #25D366;
  color: white;
}

.cta-contact-btn.whatsapp:hover {
  background: #1db954;
}

/* ── INFO BAR ── */
.info-bar {
  background: var(--dark);
  color: white;
  padding: 28px 5%;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: .95rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item a {
  color: var(--yellow);
  text-decoration: none;
  font-weight: 600;
}

.info-icon {
  font-size: 1.3rem;
}

/* ── FOOTER ── */
footer {
  background: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 24px 5%;
  font-size: .87rem;
}

footer a {
  color: var(--yellow);
  text-decoration: none;
}

@media (max-width: 600px) {
  .steps::before {
    display: none;
  }

  nav .nav-links {
    display: none;
  }
}
.reel-frame {
  width: 100%;
  height: 600px;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.carousel-item {
  text-align: center;
}