/* ============================================================
   365 DIAS DE FORÇA INTERIOR — Lucas Silva
   style.css
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

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

:root {
  --green-dark:    #0f1c0c;
  --green-main:    #1c2b18;
  --green-mid:     #243320;
  --green-border:  #c9a22720;
  --gold:          #c9a227;
  --gold-light:    #d4b84a;
  --gold-muted:    #8a7040;
  --beige:         #e8dcc0;
  --beige-mid:     #ddd0aa;
  --beige-dark:    #d4c49a;
  --text-light:    #f5f0e8;
  --text-muted:    #a89f8a;
  --text-dark:     #1c2b18;
  --text-body:     #3d3020;
  --text-sub:      #5a4a30;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--green-main);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ── Typography ── */
.serif {
  font-family: 'Playfair Display', serif;
}

h1, h2 {
  font-family: 'Playfair Display', serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

/* ── Layout ── */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--md {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 6rem 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: 0 4px 24px rgba(201,162,39,0.25);
}

.btn--primary:hover { opacity: 0.9; }

.btn--ghost {
  background: transparent;
  color: var(--text-light);
  border: 1px solid rgba(245,240,232,0.2);
}

.btn--ghost:hover { background: rgba(245,240,232,0.08); }

.btn--full { width: 100%; }

.btn--lg {
  font-size: 1.125rem;
  padding: 1.25rem 3rem;
  border-radius: 1rem;
  font-weight: 900;
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(201,162,39,0.27);
  background: rgba(201,162,39,0.04);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  margin-bottom: 2rem;
}

.badge__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ── Label ── */
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.label--gold  { color: var(--gold); }
.label--brown { color: var(--gold-muted); }

/* ── Leaf Divider ── */
.leaf-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.leaf-divider__line {
  height: 1px;
  width: 60px;
  background: rgba(201,162,39,0.25);
}

/* ── Check list ── */
.check-list {
  list-style: none;
  text-align: left;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
}

.check-list li + li {
  border-top: 1px solid rgba(201,162,39,0.08);
}

.check-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Cards ── */
.card {
  border-radius: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(201,162,39,0.18);
}

.card--beige {
  background: var(--beige-mid);
  border-color: rgba(201,162,39,0.19);
}

.card--dark {
  background: var(--green-main);
  border-color: rgba(201,162,39,0.12);
}

.card--mid {
  background: var(--green-mid);
  border-color: rgba(201,162,39,0.12);
}

/* ── Grid ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */

/* ── HERO ── */
#hero {
  background: linear-gradient(170deg, #0f1c0c 0%, #1c2b18 45%, #243320 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 0%, rgba(201,162,39,0.13) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201,162,39,0.05) 0%, transparent 50%);
}

.hero__dots {
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  opacity: 0.15;
  background-image: radial-gradient(circle, #c9a227 1px, transparent 1px);
  background-size: 12px 12px;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero__author {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero__h1 {
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero__h1 span { color: var(--gold); }

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__book {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero__book img {
  width: 220px;
  border-radius: 0.75rem;
  filter: drop-shadow(0 40px 80px rgba(201,162,39,0.22)) drop-shadow(0 20px 40px rgba(0,0,0,0.7));
}

.hero__stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: #6b7c63;
}

/* ── PROBLEM ── */
#problem {
  background: var(--beige);
  text-align: center;
}

#problem h2 { color: var(--text-dark); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
#problem .intro { color: var(--text-body); font-size: 1.1rem; line-height: 1.75; max-width: 680px; margin: 0 auto; text-align: left; }
#problem .intro p + p { margin-top: 1.25rem; }
#problem .pain-cards { margin-top: 3rem; }
#problem .pain-card { background: var(--beige-mid); border: 1px solid rgba(201,162,39,0.18); border-radius: 1rem; padding: 1.5rem; text-align: left; }
#problem .pain-card__emoji { font-size: 2rem; margin-bottom: 0.75rem; }
#problem .pain-card__text { color: #2d2010; font-weight: 500; line-height: 1.4; }

/* ── SOLUTION ── */
#solution {
  background: var(--green-main);
  text-align: center;
}

#solution h2 { color: var(--text-light); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 2rem; }
#solution .body { color: var(--text-muted); font-size: 1.1rem; line-height: 1.75; max-width: 680px; margin: 0 auto; }
#solution .body p + p { margin-top: 1.25rem; }
#solution .stats { margin-top: 3rem; }
#solution .stat-box { background: var(--green-mid); border: 1px solid rgba(201,162,39,0.18); border-radius: 1rem; padding: 2rem 1rem; }
#solution .stat-box__num { font-family: 'Playfair Display', serif; font-size: 2.5rem; font-weight: 900; color: var(--gold); margin-bottom: 0.5rem; }
#solution .stat-box__label { font-size: 0.85rem; color: #7a8f72; }

/* ── PRODUCT ── */
#product {
  background: var(--beige);
}

#product .header { text-align: center; margin-bottom: 3.5rem; }
#product h2 { color: var(--text-dark); font-size: clamp(2rem, 4vw, 3rem); }
#product .feature-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--beige-mid); border: 1px solid rgba(201,162,39,0.18); border-radius: 1rem; padding: 1.25rem; }
#product .feature-item span { color: var(--text-dark); font-weight: 500; line-height: 1.4; }
#product .quote-box { margin-top: 2.5rem; text-align: center; background: var(--beige-dark); border: 1px solid rgba(201,162,39,0.33); border-radius: 1rem; padding: 2rem 1.5rem; }
#product .quote-box p { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-dark); line-height: 1.5; }
#product .quote-box p + p { color: var(--text-sub); margin-top: 0.25rem; }
#product .cta-wrap { text-align: center; margin-top: 2.5rem; }

/* ── BENEFITS ── */
#benefits {
  background: var(--green-mid);
  text-align: center;
}

#benefits h2 { color: var(--text-light); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 3rem; }
#benefits .benefit-item { display: flex; align-items: flex-start; gap: 1rem; background: var(--green-main); border: 1px solid rgba(201,162,39,0.12); border-radius: 1rem; padding: 1.25rem; text-align: left; }
#benefits .benefit-item__title { color: var(--text-light); font-weight: 600; margin-bottom: 0.25rem; }
#benefits .benefit-item__desc { color: #7a8f72; font-size: 0.875rem; line-height: 1.6; }
#benefits .closing { margin-top: 3rem; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: var(--gold); }

/* ── AUTHORITY ── */
#authority {
  background: var(--beige);
}

#authority .header { text-align: center; margin-bottom: 3rem; }
#authority h2 { color: var(--text-dark); font-size: clamp(2rem, 4vw, 3rem); }
#authority .author-card { background: var(--beige-mid); border: 1px solid rgba(201,162,39,0.18); border-radius: 1.5rem; padding: 3rem; }
#authority .author-inner { display: flex; gap: 2rem; align-items: flex-start; }
#authority .author-photo { width: 120px; height: 120px; border-radius: 1rem; object-fit: cover; object-position: top; border: 2px solid rgba(201,162,39,0.25); flex-shrink: 0; }
#authority .author-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 1rem; }
#authority .author-text p { font-size: 1.05rem; line-height: 1.75; color: var(--text-body); margin-bottom: 1rem; }
#authority .author-text p:last-child { color: var(--text-sub); font-weight: 600; margin-bottom: 0; }

/* ── SAMPLE ── */
#sample {
  background: var(--green-main);
  text-align: center;
}

#sample h2 { color: var(--text-light); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 3rem; }
#sample .quotes { display: flex; flex-direction: column; gap: 1.25rem; text-align: left; }
#sample .quote-card {
  background: var(--green-mid);
  border: 1px solid rgba(201,162,39,0.12);
  border-left: 3px solid var(--gold);
  border-radius: 0 1rem 1rem 0;
  padding: 1.75rem;
}
#sample .quote-icon { color: var(--gold); opacity: 0.6; margin-bottom: 1rem; }
#sample .quote-text { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--text-light); font-weight: 600; line-height: 1.5; margin-bottom: 0.75rem; }
#sample .quote-day { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
#sample .cta-wrap { margin-top: 2.5rem; }

/* ── OFFER ── */
#offer {
  background: var(--beige);
}

#offer .header { text-align: center; margin-bottom: 3rem; }
#offer h2 { color: var(--text-dark); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
#offer .sub { color: var(--text-sub); font-size: 1.1rem; }

.offer-card {
  background: var(--beige-mid);
  border: 1px solid rgba(201,162,39,0.33);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.offer-card--dark {
  background: var(--green-main);
  border-color: rgba(201,162,39,0.2);
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.offer-tag--dark { background: var(--green-main); color: var(--gold); }
.offer-tag--gold { background: var(--gold); color: var(--green-dark); }

.offer-price {
  margin-bottom: 0.5rem;
}

.offer-price__old {
  text-decoration: line-through;
  color: #9a8a6a;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.offer-price__now {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
}

.offer-price-note {
  font-size: 0.8rem;
  color: #7a6a4a;
  margin-bottom: 1.5rem;
}

.offer-check-list { list-style: none; margin-bottom: 2rem; flex: 1; }
.offer-check-list li { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.6rem 0; font-size: 0.9rem; font-weight: 500; color: var(--text-dark); }
.offer-check-list li + li { border-top: 1px solid rgba(201,162,39,0.1); }

.offer-card--dark .offer-check-list li { color: var(--text-light); }

.offer-secure { font-size: 0.75rem; color: #9a8a6a; text-align: center; margin-top: 0.75rem; }

.store-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a8f72;
  margin-bottom: 0.75rem;
}

.store-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--green-mid);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: 1rem;
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
  text-decoration: none;
}

.store-btn:hover { border-color: rgba(201,162,39,0.55); }
.store-btn__left { display: flex; align-items: center; gap: 0.75rem; }
.store-btn__arrow { color: var(--gold); }
.store-avail { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; font-weight: 600; }

/* ── URGENCY ── */
#urgency {
  background: var(--green-mid);
  text-align: center;
}

#urgency h2 { color: var(--text-light); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1.5rem; }
#urgency h2 span { color: var(--gold); }
#urgency .body { color: var(--text-muted); font-size: 1.1rem; line-height: 1.75; margin-bottom: 1rem; }
#urgency .accent { color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; }
#urgency .note { display: inline-block; background: var(--green-main); border: 1px solid rgba(201,162,39,0.12); border-radius: 1rem; padding: 1rem 1.5rem; margin-top: 2rem; font-size: 0.875rem; color: #6b7c63; }

/* ── FINAL CTA ── */
#final-cta {
  background: linear-gradient(170deg, #0f1c0c 0%, #1c2b18 100%);
  border-top: 1px solid rgba(201,162,39,0.12);
  text-align: center;
  padding: 7rem 1.5rem;
}

#final-cta .divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

#final-cta .divider__line { height: 1px; width: 60px; background: rgba(201,162,39,0.25); }
#final-cta h2 { color: var(--text-light); font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 1.5rem; }
#final-cta .sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 2.5rem; }
#final-cta .note { color: #4a5e42; font-size: 0.875rem; margin-top: 1.5rem; }

/* ── FOOTER ── */
footer {
  background: var(--green-dark);
  border-top: 1px solid #1f2f1b;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: #3a4e34;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .hero__book img { width: 180px; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 340px; }

  #authority .author-inner { flex-direction: column; }
  #authority .author-photo { width: 100px; height: 100px; }

  .offer-card { padding: 1.5rem; }

  #final-cta { padding: 5rem 1.25rem; }
  #final-cta .btn--lg { width: 100%; max-width: 380px; font-size: 1rem; padding: 1.1rem 2rem; }
}

@media (max-width: 480px) {
  .hero__stats { gap: 1.5rem; }
  #authority .author-card { padding: 1.75rem; }
}

/* ============================================================
   FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}
