* { box-sizing: border-box; }

body {
  margin: 0;
  background: #f6f7f9;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: Poppins, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: #16a34a; text-decoration: none; }
a:hover { color: #15803d; }

.page {
  min-height: 100vh;
  background: #f6f7f9;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 520px;
  background: #ffffff;
  padding: 22px 16px 0;
  color: #1f2937;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Buttons */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #22c55e;
  color: #ffffff;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: 14px;
}
.cta-btn:hover { background: #16a34a; color: #ffffff; }

.pill-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #374151;
  font-family: Poppins, sans-serif;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.pill-btn:hover { background: #f9fafb; color: #111827; }

/* Benefit / step pill rows */
.pill-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 12px;
}
.pill-icon {
  flex: 0 0 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}
.pill-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #374151;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 14px;
  padding: 12px;
}
.step-num {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 11px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
}

/* "Ideal for" fit rows */
.fit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 14px;
  padding: 11px 12px;
  box-shadow: 0 2px 8px rgba(17, 24, 39, .05);
}
.fit-icon {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.fit-text {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  color: #374151;
}
.fit-heart { color: #fb7185; font-size: 15px; }

/* Classroom photo grid */
.classroom-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Carousel */
.slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 1055 / 1491;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .15);
  color: #374151;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* "O que vem no kit" checklist */
.check-row { display: flex; gap: 10px; }
.check-mark {
  flex: 0 0 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}
.check-title { display: block; font-size: 15px; font-weight: 800; color: #111827; }
.check-desc { display: block; margin-top: 2px; font-size: 14.5px; font-weight: 600; line-height: 1.5; color: #9ca3af; }

/* Offer cards */
.offer-feature { display: flex; gap: 6px; }
.offer-feature span:last-child { font-size: 14px; font-weight: 700; line-height: 1.4; color: #4b5563; }
.offer-check { color: #22c55e; font-size: 12px; font-weight: 900; margin-top: 1px; }

/* FAQ */
.faq-item {
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(17, 24, 39, .04);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: transparent;
  border: none;
  padding: 16px 14px;
  cursor: pointer;
  min-height: 56px;
  text-align: left;
  font-family: Poppins, sans-serif;
}
.faq-q-text { font-size: 15px; font-weight: 800; color: #374151; line-height: 1.4; }
.faq-arrow { flex: 0 0 auto; font-size: 13px; color: #9ca3af; }
.faq-answer {
  margin: 0;
  padding: 0 14px 14px;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.6;
  color: #6b7280;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
