/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #1a4731;
  --green-main:  #2d7a4f;
  --green-light: #4caf7d;
  --green-pale:  #e8f5ee;
  --gold:        #e8b84b;
  --gold-light:  #fdf3d7;
  --text-dark:   #1c2b22;
  --text-mid:    #3d5246;
  --text-light:  #6b8577;
  --white:       #ffffff;
  --bg-off:      #f7faf8;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(45,122,79,.10);
  --shadow-md:   0 8px 32px rgba(45,122,79,.15);
  --shadow-lg:   0 20px 60px rgba(45,122,79,.20);
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── TYPOGRAPHY ── */
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-main);
  background: var(--green-pale);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section-title span { color: var(--green-main); }
.section-title.white { color: var(--white); }
.section-title .gold { color: var(--gold); }
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.6;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
  justify-content: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green-main), var(--green-light));
  color: var(--white);
  box-shadow: 0 6px 24px rgba(45,122,79,.4);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 36px rgba(45,122,79,.5);
}
.btn-primary:active { transform: translateY(0) scale(.99); }
.btn-hero { width: 100%; font-size: 1.1rem; padding: 18px 32px; }
.btn-buy  { width: 100%; font-size: 1.15rem; padding: 20px 32px; }

/* ── TOP BAR ── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--green-dark);
  color: var(--white);
  font-size: .82rem;
  transform: translateY(0);
  transition: var(--transition);
}
.topbar.hidden { transform: translateY(-100%); }
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 16px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar-emoji { font-size: 1rem; }
.topbar-btn {
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: .78rem;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
  transition: var(--transition);
}
.topbar-btn:hover { background: #f5c96a; }

/* ── HERO ── */
.hero {
  padding: 100px 0 60px;
  background: linear-gradient(160deg, #f0faf5 0%, #e8f5ee 60%, #d4eddf 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,175,125,.15) 0%, transparent 70%);
  top: -150px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1.5px solid var(--green-light);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--green-dark);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .6; transform: scale(1.3); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 8vw, 3.2rem);
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 18px;
}
.hero-title em {
  font-style: italic;
  color: var(--green-main);
}
.hero-sub {
  font-size: clamp(.95rem, 3vw, 1.1rem);
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}

.hero-img-wrap {
  position: relative;
  margin: 0 auto 32px;
  max-width: 400px;
}
.hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.stat {
  flex: 1; min-width: 70px;
  padding: 18px 12px;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-main);
}
.stat small { font-size: .72rem; color: var(--text-light); }
.stat-divider { width: 1px; height: 40px; background: #e0ece5; }

/* ── PROBLEM ── */
.problem {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 36px;
}
.problem-card {
  background: #fff5f5;
  border: 1.5px solid #ffd5d5;
  border-radius: var(--radius-md);
  padding: 18px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  transition: var(--transition);
}
.problem-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.prob-icon { font-size: 1.6rem; flex-shrink: 0; }
.problem-card p { font-size: .9rem; line-height: 1.4; color: var(--text-mid); }
.problem-cta-box {
  background: linear-gradient(135deg, var(--green-dark), var(--green-main));
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: var(--white);
}
.problem-cta-text { font-size: .9rem; opacity: .85; margin-bottom: 8px; }
.problem-cta-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; line-height: 1.3; }

/* ── PRODUCT ── */
.product {
  padding: 72px 0;
  background: var(--bg-off);
}
.product-inner {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.product-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); max-width: 340px; }
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-list li:hover { transform: translateX(4px); }
.feat-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 1px; }
.feature-list strong { display: block; font-size: .95rem; color: var(--text-dark); }
.feature-list small { font-size: .8rem; color: var(--text-light); }

/* ── GALLERY CAROUSEL ── */
.gallery {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
  overflow: hidden;
}
.carousel-container {
  margin: 0 -20px;
  position: relative;
}
.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 16px;
  padding: 10px 20px 30px;
  -webkit-overflow-scrolling: touch;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-item {
  flex: 0 0 280px;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--bg-off);
  aspect-ratio: 4/5;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.carousel-item:hover img { transform: scale(1.05); }

.carousel-hint {
  font-size: .8rem;
  color: var(--text-light);
  margin-top: -10px;
  animation: pulse 2s infinite;
}

/* ── RECIPES ── */
.recipes {
  padding: 72px 0;
  background: var(--white);
  text-align: center;
}
.recipes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.recipe-card {
  background: var(--bg-off);
  border: 1.5px solid #dff0e7;
  border-radius: var(--radius-md);
  padding: 20px 14px;
  text-align: center;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
}
.recipe-card.visible { opacity: 1; transform: translateY(0); }
.recipe-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-light); }
.recipe-emoji { font-size: 2rem; margin-bottom: 8px; }
.recipe-card h4 { font-size: .9rem; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.recipe-card small { font-size: .78rem; color: var(--text-light); }
.recipe-tags { display: flex; gap: 6px; justify-content: center; margin-top: 10px; flex-wrap: wrap; }
.tag { font-size: .72rem; font-weight: 700; padding: 3px 10px; border-radius: 999px; }
.tag-green { background: var(--green-pale); color: var(--green-dark); }
.tag-orange { background: #fff3e0; color: #e65100; }
.recipe-card-more { background: linear-gradient(135deg, var(--green-pale), #d4eddf); border-color: var(--green-light); }

/* ── BONUS ── */
.bonus {
  padding: 72px 0;
  background: linear-gradient(150deg, var(--green-dark) 0%, #1f5c38 100%);
  text-align: center;
}
.bonus-label { background: rgba(255,255,255,.15); color: var(--white); }
.bonus-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.bonus-card {
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.bonus-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.12); }
.bonus-img { width: 100%; height: 180px; object-fit: cover; }
.bonus-img-placeholder {
  width: 100%; height: 140px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.bonus-shots { background: linear-gradient(135deg, #fff7e0, #ffe082); }
.bonus-water { background: linear-gradient(135deg, #e3f2fd, #90caf9); }
.bonus-card-body { padding: 20px; text-align: left; }
.bonus-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--green-dark);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}
.bonus-card-body h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 6px; }
.bonus-card-body p  { color: rgba(255,255,255,.75); font-size: .85rem; line-height: 1.5; margin-bottom: 12px; }
.bonus-price { display: flex; align-items: center; gap: 10px; }
.price-old  { font-size: .82rem; color: rgba(255,255,255,.5); text-decoration: line-through; }
.price-free { font-size: 1rem; font-weight: 800; color: var(--gold); }
.bonus-total { color: rgba(255,255,255,.85); font-size: .9rem; }
.bonus-total strong { color: var(--gold); }

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 72px 0;
  background: var(--bg-off);
  text-align: center;
}
.testi-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: left;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid #e8f0eb;
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-md); }
.testi-featured {
  border-color: var(--green-light);
  box-shadow: 0 4px 20px rgba(45,122,79,.12);
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green-pale);
  flex-shrink: 0;
}
.testi-avatar-placeholder {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green-main);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  flex-shrink: 0;
}
.testi-header strong { display: block; font-size: .9rem; }
.testi-stars { color: #f59e0b; font-size: .85rem; }
.testi-verified { margin-left: auto; font-size: .72rem; color: var(--green-main); background: var(--green-pale); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.testi-card p { font-size: .9rem; line-height: 1.65; color: var(--text-mid); }

/* ── AUTHOR ── */
.author { padding: 72px 0; background: var(--white); }
.author-inner { display: flex; flex-direction: column; gap: 32px; align-items: center; text-align: center; }
.author-img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--green-pale);
}
.author-bio { font-size: .95rem; line-height: 1.7; color: var(--text-mid); margin-bottom: 14px; }

/* ── GUARANTEE ── */
.guarantee { padding: 56px 0; background: var(--bg-off); }
.guarantee-box {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  box-shadow: var(--shadow-md);
  border: 2px dashed var(--green-light);
}
.guarantee-icon-wrap { 
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.guarantee-svg {
  filter: drop-shadow(0 4px 12px rgba(232,184,75,.3));
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.guarantee-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--text-dark);
}
.guarantee-box h3 span { color: var(--green-main); }
.guarantee-box p { font-size: .92rem; line-height: 1.7; color: var(--text-mid); }

/* ── BUY ── */
.buy {
  padding: 72px 0;
  background: linear-gradient(150deg, var(--green-dark), #163d28);
  text-align: center;
}
/* ── PLANS GRID ── */
.plans-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}
.plan-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.plan-card.featured {
  border: 3px solid var(--gold);
  transform: scale(1.02);
  z-index: 2;
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-header { margin-bottom: 24px; }
.plan-name { font-size: 1.4rem; color: var(--green-dark); margin-bottom: 4px; }
.plan-desc { font-size: .85rem; color: var(--text-light); }

.plan-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  color: var(--green-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.p-currency { font-size: 1.2rem; font-weight: 700; padding-top: 8px; }
.p-value { font-size: 4rem; font-weight: 900; }
.p-cents { font-size: 1.5rem; font-weight: 700; padding-top: 10px; }
.plan-installments { font-size: .85rem; color: var(--text-light); margin-bottom: 24px; }

.plan-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  color: var(--text-dark);
}
.plan-features li.disabled { color: var(--text-light); opacity: 0.6; }

.btn-plan { width: 100%; padding: 18px 24px; font-size: 1.1rem; }
.btn-outline {
  background: transparent;
  border: 2px solid var(--green-main);
  color: var(--green-main);
}
.btn-outline:hover {
  background: var(--green-pale);
}

/* ── FAQ ── */
.faq { padding: 72px 0; background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.faq-item {
  background: var(--bg-off);
  border: 1.5px solid #e0ece5;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item[open] { border-color: var(--green-light); background: var(--white); }
.faq-item summary {
  cursor: pointer;
  padding: 16px 20px;
  font-weight: 600;
  font-size: .95rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--green-main);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p { padding: 0 20px 18px; font-size: .9rem; line-height: 1.7; color: var(--text-mid); }

/* ── FOOTER CTA ── */
.footer-cta {
  padding: 64px 0;
  background: var(--green-pale);
  text-align: center;
}
.footer-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 5vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 10px;
}
.footer-cta p { font-size: .95rem; color: var(--text-mid); margin-bottom: 28px; }
.footer-guarantee { font-size: .82rem; color: var(--text-light); margin-top: 16px; }

/* ── FOOTER ── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.6);
  text-align: center;
  padding: 24px 20px 80px;
  font-size: .8rem;
}
.footer p { margin-bottom: 6px; }
.footer-links a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-links a:hover { color: var(--white); }



/* ── ANIMATE ON SCROLL ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── DESKTOP ── */
@media (min-width: 640px) {
  .problem-grid { grid-template-columns: 1fr 1fr 1fr; }
  .recipes-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { flex-direction: row; }
  .bonus-card { flex: 1; }
  .testi-grid { flex-direction: row; }
  .product-inner { flex-direction: row; align-items: flex-start; text-align: left; }
  .product-img-col { flex-shrink: 0; }
  .author-img-col { flex-shrink: 0; }
  .author-inner { flex-direction: row; text-align: left; gap: 48px; align-items: flex-start; }
  .plans-grid { flex-direction: row; align-items: stretch; }
  .plan-card { flex: 1; }
  .plan-card { flex: 1; }
}
