/* ===== Reset básico ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --verde-oliva: #5F6F52;
  --verde-oliva-escuro: #414B38;
  --creme: #F5F0E6;
  --creme-claro: #FBF8F2;
  --dourado: #C9A961;
  --texto-escuro: #2E2A24;
  --texto-claro: #FBF8F2;
  --branco: #FFFFFF;

  --fonte-titulo: 'Playfair Display', Georgia, serif;
  --fonte-texto: 'Poppins', Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fonte-texto);
  color: var(--texto-escuro);
  background: var(--branco);
  line-height: 1.6;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

h1, h2, h3 {
  font-family: var(--fonte-titulo);
  color: var(--verde-oliva-escuro);
  line-height: 1.25;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2.4vw, 1.5rem); margin-bottom: 0.75rem; }

.section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
}

.section--cream { background: var(--creme); }
.section--dark {
  background: var(--verde-oliva-escuro);
  color: var(--texto-claro);
}
.section--dark h2, .section--dark h3 { color: var(--creme-claro); }

.section__lead {
  font-weight: 600;
  margin-bottom: 1rem;
}
.section__text {
  max-width: 65ch;
  margin: 0 0 1rem;
}
.section__text--highlight {
  font-weight: 600;
  color: var(--verde-oliva-escuro);
}
.section__title-spaced {
  margin-top: 3rem;
}

.divider {
  height: 1px;
  background: var(--dourado);
  opacity: 0.5;
  margin: 2.5rem 0;
}
.divider--light {
  background: var(--dourado);
  opacity: 0.6;
}

/* ===== Botões ===== */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--fonte-texto);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.95rem 2.2rem;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn--primary {
  background: var(--dourado);
  color: var(--texto-escuro);
  box-shadow: 0 6px 18px rgba(201, 169, 97, 0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(201, 169, 97, 0.5);
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(180deg, var(--creme-claro) 0%, var(--creme) 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
}
.hero__inner {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  flex-wrap: wrap;
}
.hero__text {
  flex: 1 1 420px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dourado);
  margin-bottom: 1rem;
}
h1 span {
  color: var(--dourado);
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  max-width: 52ch;
  margin: 1.25rem 0 1.75rem;
}
.hero__note {
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: var(--verde-oliva-escuro);
  opacity: 0.8;
}

.hero__image {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.product-mock {
  width: min(320px, 100%);
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--verde-oliva) 0%, var(--verde-oliva-escuro) 100%);
  border-radius: 20px;
  color: var(--creme-claro);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(65, 75, 56, 0.3);
  border: 1px solid var(--dourado);
}
.product-mock__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.1rem;
  padding: 2.25rem 1.75rem 1.5rem;
}
.product-mock__title {
  font-family: var(--fonte-titulo);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.product-mock__rule {
  width: 44px;
  height: 2px;
  background: var(--dourado);
  border-radius: 2px;
}
.product-mock__desc {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--creme-claro);
  background: rgba(251, 248, 242, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.5);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
}
.product-mock__wave {
  background: var(--creme-claro);
  color: var(--verde-oliva-escuro);
  border-radius: 50% 50% 0 0 / 26px 26px 0 0;
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.product-mock__photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dourado);
  flex: 0 0 auto;
}
.product-mock__author {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ===== Listas de check ===== */
.check-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}
.check-list li {
  padding: 0.4rem 0 0.4rem 1.4rem;
  font-size: 1.05rem;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--dourado);
  border-radius: 50%;
}
.check-list--two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 1.5rem;
}

/* ===== Mission card ===== */
.mission-card {
  background: var(--creme);
  border-left: 4px solid var(--dourado);
  border-radius: 8px;
  padding: 1.75rem;
  margin: 1.5rem 0 2.5rem;
}
.mission-card__tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--verde-oliva);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.mission-card__list {
  list-style: none;
  margin-top: 0.75rem;
}
.mission-card__list li {
  padding: 0.3rem 0;
}

/* ===== Benefícios ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.benefit {
  background: var(--creme);
  border-radius: 10px;
  padding: 1.25rem 1.25rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}
.benefit::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--verde-oliva);
  border-radius: 50%;
}

/* ===== Mensagem da professora ===== */
.teacher-message {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.teacher-message__photo {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--dourado);
}
.teacher-message p {
  max-width: 60ch;
  font-style: italic;
}

/* ===== Depoimentos ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.testimonial {
  background: rgba(251, 248, 242, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 10px;
  padding: 1.25rem;
  font-style: italic;
  font-size: 0.95rem;
}
.testimonial span {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== Oferta ===== */
.offer-list {
  list-style: none;
  margin: 1.25rem 0 2.5rem;
}
.offer-list li {
  padding: 0.5rem 0 0.5rem 1.4rem;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
  position: relative;
}
.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  background: var(--dourado);
  border-radius: 50%;
}

.price-box {
  background: var(--creme-claro);
  color: var(--texto-escuro);
  border-radius: 14px;
  padding: 2.5rem;
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}
.price-box__label {
  font-size: 0.95rem;
  opacity: 0.75;
}
.price-box__price {
  font-family: var(--fonte-titulo);
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  color: var(--verde-oliva-escuro);
  margin: 0.25rem 0 1.25rem;
}
.price-box__note {
  margin-top: 1rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== FAQ ===== */
.faq {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq details {
  background: var(--branco);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(95, 111, 82, 0.15);
}
.faq summary {
  font-weight: 600;
  cursor: pointer;
  color: var(--verde-oliva-escuro);
}
.faq p {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

/* ===== CTA final ===== */
.final-cta {
  background: var(--verde-oliva);
}
.final-cta__inner {
  text-align: center;
  color: var(--creme-claro);
}
.final-cta h2 {
  color: var(--creme-claro);
}
.final-cta p {
  margin: 0.75rem 0 1.75rem;
  font-size: 1.1rem;
}

/* ===== Rodapé ===== */
.footer {
  background: var(--verde-oliva-escuro);
  color: rgba(251, 248, 242, 0.8);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.9rem;
}
.footer__inner p {
  margin: 0.2rem 0;
}
.footer__small {
  margin-top: 0.75rem;
  opacity: 0.7;
  font-size: 0.8rem;
}

/* ===== Responsivo ===== */
@media (max-width: 640px) {
  .hero__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .check-list--two-col {
    grid-template-columns: 1fr;
  }
  .teacher-message {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .teacher-message__photo {
    margin: 0 auto;
  }
  .teacher-message p {
    max-width: none;
  }
}
img[src="1000244579.png"] {
  display: block;
  width: 90%;
  max-width: 500px;
  height: auto;
  margin: 40px auto 60px;
}