/* ============================================================
   100 Receitas de Sobremesas — landing page
   Fontes: Playfair Display (títulos) + Inter (corpo)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

/* -------------------- VARIÁVEIS DE COR -------------------- */
:root {
  --background: #FEFCF5;
  --foreground: #2C1810;
  --card: #FFFFFF;
  --primary: #E04E2A;          /* vermelho/laranja CTA */
  --primary-light: #FCE6DC;
  --primary-foreground: #FFFFFF;
  --secondary: #FBEDD9;        /* creme quente */
  --muted-foreground: #7E665A;
  --accent: #E5A555;           /* mel/dourado */
  --border: #EFE3D2;
  --cream: #FBF4E8;
  --cocoa: #3D1F14;            /* marrom escuro */

  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 1.75rem;

  --shadow-warm: 0 20px 50px -20px rgba(176, 60, 30, 0.35);
  --shadow-cta: 0 10px 30px -10px rgba(224, 78, 42, 0.5);
  --shadow-cta-strong: 0 15px 40px -10px rgba(224, 78, 42, 0.7);
}

/* -------------------- RESET LEVE -------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; border: 0 solid var(--border); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; }
ul { list-style: none; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--cocoa);
}

/* -------------------- HELPERS -------------------- */
.container { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1.25rem; }
.container-sm { max-width: 48rem; margin: 0 auto; padding: 0 1.25rem; }
.container-md { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem; }
.text-center { text-align: center; }
.italic { font-style: italic; }
.strong { font-weight: 700; color: var(--foreground); }
.text-primary { color: var(--primary); }
.line-through { text-decoration: line-through; }

/* -------------------- CTA BUTTON -------------------- */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #E85A36 0%, #C03A1E 100%);
  color: var(--primary-foreground);
  padding: 1.05rem 2rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-cta);
  animation: pulse-cta 2s ease-in-out infinite;
  transition: opacity 0.2s;
}
.cta:hover { opacity: 0.95; }
.cta svg { width: 1.25rem; height: 1.25rem; }

@keyframes pulse-cta {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-cta); }
  50%      { transform: scale(1.03); box-shadow: var(--shadow-cta-strong); }
}

/* -------------------- HERO -------------------- */
.hero {
  background: linear-gradient(135deg, #FCE9CF 0%, #F6D4A8 100%);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding: 3rem 0 4rem;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 5rem 0 6rem; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.badge svg { width: 1rem; height: 1rem; fill: var(--primary); }
@media (min-width: 640px) { .badge { font-size: 0.875rem; } }

.hero h1 {
  margin-top: 1.25rem;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.05;
}
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero h1 .accent-text { color: var(--primary); font-style: italic; }

.hero-lede {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

.hero-cta-wrap { margin-top: 1.75rem; }

.hero-social {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.stars { display: flex; gap: 0.125rem; }
.stars svg { width: 1rem; height: 1rem; fill: var(--accent); color: var(--accent); }

.hero-img-wrap { position: relative; }
.hero-img-wrap img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-warm);
}
.hero-floating-card {
  position: absolute;
  bottom: -1.5rem;
  left: -1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-warm);
  max-width: 14rem;
}
@media (min-width: 640px) { .hero-floating-card { left: -2rem; } }
.hero-floating-card .row { display: flex; align-items: center; gap: 0.5rem; }
.hero-floating-card .row svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.hero-floating-card .row span { font-weight: 700; }
.hero-floating-card p { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* -------------------- STORY -------------------- */
.story { padding: 5rem 0; }
@media (min-width: 640px) { .story { padding: 6rem 0; } }
.story h2 {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 640px) { .story h2 { font-size: 2.25rem; } }
.story-body {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* -------------------- WHAT'S INSIDE -------------------- */
.inside {
  background: rgba(251, 237, 217, 0.4);
  padding: 5rem 0;
  scroll-margin-top: 4rem;
}
@media (min-width: 640px) { .inside { padding: 6rem 0; } }

.section-head { max-width: 36rem; margin: 0 auto; text-align: center; }
.section-head h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
.section-head p { margin-top: 1rem; font-size: 1.125rem; color: var(--muted-foreground); }

.cards-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .cards-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-warm); }
.feature-card .icon-box {
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card .icon-box svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.feature-card h3 { margin-top: 1rem; font-size: 1.25rem; font-weight: 700; }
.feature-card p { margin-top: 0.5rem; color: var(--muted-foreground); }

/* -------------------- PREVIEW GRID -------------------- */
.preview { padding: 5rem 0; }
@media (min-width: 640px) { .preview { padding: 6rem 0; } }

.preview-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 640px) { .preview-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .preview-grid { grid-template-columns: repeat(5, 1fr); } }

.preview-card {
  background: var(--card);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
}
.preview-card .img-wrap { overflow: hidden; }
.preview-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s;
}
.preview-card:hover img { transform: scale(1.05); }
.preview-card figcaption {
  padding: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--cocoa);
}

/* -------------------- BONUS -------------------- */
.bonus {
  background: var(--cocoa);
  color: var(--cream);
  padding: 5rem 0;
  text-align: center;
}
@media (min-width: 640px) { .bonus { padding: 6rem 0; } }
.bonus-inner { max-width: 56rem; margin: 0 auto; padding: 0 1.25rem; }
.bonus .badge-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(229, 165, 85, 0.2);
  color: var(--accent);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.bonus .badge-accent svg { width: 1rem; height: 1rem; }
.bonus h2 {
  color: var(--cream);
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 640px) { .bonus h2 { font-size: 2.25rem; } }
.bonus p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: rgba(251, 244, 232, 0.8);
  line-height: 1.625;
}

/* -------------------- OFFER -------------------- */
.offer { padding: 5rem 0; }
@media (min-width: 640px) { .offer { padding: 6rem 0; } }
.offer-card {
  background: var(--card);
  border: 2px solid rgba(224, 78, 42, 0.2);
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-warm);
  padding: 2rem;
  text-align: center;
}
@media (min-width: 640px) { .offer-card { padding: 3rem; } }
.offer-card .pill {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.offer-card h2 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 640px) { .offer-card h2 { font-size: 2.25rem; } }
.offer-card .sub { margin-top: 0.75rem; color: var(--muted-foreground); }

.benefits {
  margin: 2rem auto 0;
  max-width: 28rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.benefits li { display: flex; align-items: flex-start; gap: 0.75rem; }
.benefits svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.price-box { margin-top: 2.5rem; }
.price-box .old-price { color: var(--muted-foreground); text-decoration: line-through; }
.price-box .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}
@media (min-width: 640px) { .price-box .price { font-size: 3.75rem; } }
.price-box .pay { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }

.offer-cta-wrap { margin-top: 2rem; }

.trust {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .trust { grid-template-columns: repeat(3, 1fr); } }
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: rgba(251, 237, 217, 0.5);
}
.trust-item svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.trust-item span { font-weight: 600; font-size: 0.875rem; }

/* -------------------- GUARANTEE -------------------- */
.guarantee {
  background: rgba(251, 237, 217, 0.4);
  padding: 5rem 0;
  text-align: center;
}
.guarantee-shield {
  display: inline-flex;
  width: 5rem;
  height: 5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-warm);
}
.guarantee-shield svg { width: 2.5rem; height: 2.5rem; }
.guarantee h2 {
  margin-top: 1.5rem;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 640px) { .guarantee h2 { font-size: 2.25rem; } }
.guarantee p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}

/* -------------------- FINAL -------------------- */
.final { padding: 5rem 0; text-align: center; }
@media (min-width: 640px) { .final { padding: 6rem 0; } }
.final h2 { font-size: 1.875rem; font-weight: 700; }
@media (min-width: 640px) { .final h2 { font-size: 2.25rem; } }
.final p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.625;
}
.final .cta-wrap { margin-top: 2.5rem; }
.final .signoff { margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* -------------------- FOOTER -------------------- */
footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding: 2rem 0;
}
footer .container {
  text-align: center;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
