:root {
  --verde-escuro: #3c4526;
  --verde: #6b7a49;
  --verde-claro: #96a672;
  --creme: #f7f2e7;
  --creme-escuro: #efe6d3;
  --branco: #fffdf9;
  --terracota: #b6552f;
  --terracota-escuro: #953f1f;
  --texto: #362f22;
  --texto-suave: #6b6250;
  --dourado: #a9822f;
  --sombra: rgba(60, 45, 20, 0.12);

  --fonte-titulo: "Fraunces", serif;
  --fonte-texto: "Poppins", sans-serif;
  --fonte-logo: "Playball", cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fonte-texto);
  color: var(--texto);
  background: var(--creme);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--fonte-titulo);
  color: var(--verde-escuro);
  margin: 0 0 16px;
  line-height: 1.15;
}

h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: 1.2rem; font-weight: 600; }

p { margin: 0 0 16px; color: var(--texto); }

.center { text-align: center; margin-left: auto; margin-right: auto; }

.eyebrow {
  font-family: var(--fonte-texto);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--terracota);
  margin-bottom: 10px;
}
.eyebrow.center { text-align: center; }

.section { padding: 80px 0; }

/* BUTTONS */
.btn {
  display: inline-block;
  text-decoration: none;
  font-family: var(--fonte-texto);
  font-weight: 600;
  border-radius: 100px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terracota);
  color: var(--branco);
  box-shadow: 0 8px 20px rgba(149, 63, 31, 0.3);
}
.btn-primary:hover {
  background: var(--terracota-escuro);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(149, 63, 31, 0.35);
}
.btn-large { padding: 18px 38px; font-size: 1.05rem; }
.btn-small { padding: 11px 22px; font-size: 0.9rem; }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 242, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--creme-escuro);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 54px;
  width: auto;
}

/* HERO */
.hero { padding: 60px 0 70px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-sub { font-size: 1.08rem; color: var(--texto-suave); max-width: 52ch; }
.hero h1 em { font-style: normal; color: var(--terracota); font-style: italic; }
.hero-trust {
  margin-top: 18px;
  font-size: 0.85rem;
  color: var(--texto-suave);
}
.hero-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 30px 60px var(--sombra);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.img-missing {
  aspect-ratio: 4/5;
  border-radius: 24px;
  background: linear-gradient(145deg, var(--verde-claro), var(--verde));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px var(--sombra);
}
.img-missing::after {
  content: "🍽";
  font-size: 3rem;
  opacity: 0.7;
}
.img-missing img { display: none; }

/* AGITATION */
.agitation { background: var(--branco); }
.agitation h2 { text-align: center; margin-bottom: 32px; }
.check-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 800px;
}
.check-list.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--creme-escuro);
  color: var(--texto);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--verde);
  font-weight: 700;
  background: var(--creme-escuro);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}
.bridge {
  text-align: center;
  font-family: var(--fonte-titulo);
  font-size: 1.3rem;
  color: var(--verde-escuro);
  margin-top: 32px;
}

/* ABOUT */
.about-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 40px var(--sombra);
  aspect-ratio: 1/1;
  object-fit: cover;
}
.about-image.img-missing,
.about-image .img-missing {
  aspect-ratio: 1/1;
  border-radius: 20px;
}

/* CARDS GRID */
.cards-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.modules-grid { grid-template-columns: repeat(3, 1fr); }
.recipes-grid { grid-template-columns: repeat(4, 1fr); }
.testimonials-grid { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--branco);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 26px var(--sombra);
}
.card-number {
  font-family: var(--fonte-titulo);
  font-size: 1.6rem;
  color: var(--verde-claro);
  font-weight: 700;
}
.card h3 { margin-top: 8px; }
.card p { color: var(--texto-suave); margin-bottom: 0; font-size: 0.95rem; }

/* RECIPES */
.recipes { background: var(--branco); }
.recipe-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px var(--sombra);
  background: var(--creme);
}
.recipe-card img { aspect-ratio: 1/1; object-fit: cover; }
.recipe-card .img-missing { aspect-ratio: 1/1; border-radius: 0; }
.recipe-card figcaption {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--verde-escuro);
  text-align: center;
}
.recipes-note {
  text-align: center;
  color: var(--texto-suave);
  margin-top: 28px;
  font-style: italic;
}

/* INCLUDED */
.included-inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.included .check-list li { border-bottom: none; padding-bottom: 14px; }

/* TESTIMONIALS */
.testimonial-card {
  background: var(--branco);
  border-radius: 18px;
  padding: 28px;
  margin: 0;
  box-shadow: 0 10px 26px var(--sombra);
  border-left: 4px solid var(--terracota);
}
.testimonial-card p {
  font-style: italic;
  color: var(--texto);
  margin-bottom: 14px;
}
.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--verde-escuro);
  font-size: 0.9rem;
}

/* OFFER */
.offer {
  background: var(--verde-escuro);
  color: var(--branco);
  border-radius: 32px;
  margin: 0 auto;
  max-width: 1100px;
  padding: 64px 24px;
}
.offer h2, .offer .eyebrow { color: var(--branco); }
.offer-box { text-align: center; }
.offer-desc { color: #d9ddc9; max-width: 50ch; margin-left: auto; margin-right: auto; }
.price { margin: 24px 0 16px; }
.price-main {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--branco);
}
.price-alt {
  display: block;
  color: #c7cdb2;
  font-size: 1rem;
  margin-top: 4px;
}
.coupon {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.4);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.9rem;
  margin-bottom: 28px;
}
.coupon strong { color: #f0d489; letter-spacing: 0.04em; }
.guarantee { margin-top: 20px; color: #c7cdb2; font-size: 0.9rem; }

/* FAQ */
.faq-inner { max-width: 760px; }
.accordion { margin-top: 32px; }
.accordion details {
  background: var(--branco);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px var(--sombra);
}
.accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--verde-escuro);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--terracota);
  margin-left: 12px;
}
.accordion details[open] summary::after { content: "–"; }
.accordion details p { margin: 14px 0 0; color: var(--texto-suave); }

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding-bottom: 120px;
}
.final-cta p { color: var(--texto-suave); max-width: 50ch; margin: 0 auto 28px; }

/* FOOTER */
.site-footer {
  background: var(--verde-escuro);
  color: #cfd6bd;
  padding: 36px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  height: 46px;
  width: auto;
  margin: 0;
}
.site-footer p { margin: 0; font-size: 0.85rem; }
.site-footer a {
  color: var(--branco);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--verde-claro);
  padding-bottom: 2px;
}

/* STICKY MOBILE CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--branco);
  padding: 12px 16px;
  box-shadow: 0 -8px 24px var(--sombra);
  z-index: 200;
}
.sticky-cta .btn { width: 100%; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image img, .about-image .img-missing { max-width: 280px; margin: 0 auto; }
  .included-inner { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .sticky-cta { display: block; }
  body { padding-bottom: 72px; }
  .price-main { font-size: 1.9rem; }
}

@media (max-width: 480px) {
  .modules-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr 1fr; }
  .header-inner .btn-small { padding: 9px 16px; font-size: 0.8rem; }
}
