/* ═══════════════════════════════════════
   O LIVRO DAS BENZEDEIRAS - STYLESHEET
   Estrutura profissional e responsiva
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores principais */
  --bg-dark: #0a0604;
  --bg-mid: #120d08;
  --bg-light: #1a130c;
  --terra: #c05a35;
  --terra-light: #d4714a;
  --ouro: #9a7b4f;
  --ouro-light: #c4a06a;
  --cream: #f7f0e3;
  --cream-dim: rgba(247, 240, 227, 0.68);
  --muted: rgba(247, 240, 227, 0.55);
  --border: rgba(192, 90, 53, 0.18);
  
  /* Layout */
  --max-w: 1100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg-dark);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

section {
  padding: 80px 22px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* ═══════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════ */
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
}

h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
}

h2 {
  font-size: clamp(26px, 4.5vw, 42px);
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
}

h1 em, h2 em {
  font-style: italic;
  color: var(--terra-light);
}

p {
  color: var(--cream-dim);
  font-size: 16px;
  line-height: 1.8;
}

.label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
  display: block;
  font-weight: 600;
}

.italic-note {
  font-style: italic;
  font-size: 15px;
  color: var(--ouro-light);
  margin-top: 20px;
}

.italic-big {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--cream);
  margin-top: 28px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terra);
  color: #fff;
  padding: 18px 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.btn:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192, 90, 53, 0.4);
}

.btn-lg {
  padding: 22px 50px;
  font-size: 17px;
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ═══════════════════════════════════════
   URGENCY BAR
═══════════════════════════════════════ */
.urgency-bar {
  background: var(--terra);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.urgency-bar b {
  font-weight: 700;
}

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
#hero {
  text-align: center;
  padding: 100px 22px 80px;
  background: var(--bg-mid);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(192, 90, 53, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 60%, rgba(154, 123, 79, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

#hero::after {
  content: '🌿';
  position: absolute;
  top: 50px;
  right: 10%;
  font-size: 80px;
  opacity: 0.05;
  pointer-events: none;
  transform: rotate(15deg);
}

.pre-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192, 90, 53, 0.1);
  border: 1px solid rgba(192, 90, 53, 0.3);
  padding: 8px 18px;
  font-size: 12px;
  color: var(--ouro-light);
  margin-bottom: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

.pre-tag svg {
  width: 14px;
  height: 14px;
  color: var(--terra);
}

#hero h1 {
  max-width: 800px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

#hero .sub {
  max-width: 650px;
  margin: 0 auto 14px;
  font-size: 17px;
  position: relative;
  z-index: 1;
}

.arrow-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
}

.arrow-down svg {
  width: 24px;
  height: 24px;
  color: var(--terra);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ═══════════════════════════════════════
   PHOTO STRIP
═══════════════════════════════════════ */
.photo-strip {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.photo-strip img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-strip .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 6, 4, 0.9) 0%, transparent 60%);
}

.photo-strip .caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 700px;
  text-align: center;
  padding: 0 20px;
}

.photo-strip .caption p {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   VSL SECTION
═══════════════════════════════════════ */
#vsl {
  background: var(--bg-light);
  padding: 0;
}

.vsl-top-band {
  background: var(--bg-mid);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--cream-dim);
}

.vsl-top-band span {
  color: var(--muted);
  font-size: 13px;
}

.vsl-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 22px;
}

.vsl-headline {
  text-align: center;
  margin-bottom: 50px;
}

.vsl-headline h2 {
  margin-bottom: 16px;
}

.vsl-headline p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
}

.vsl-player-wrap {
  margin-bottom: 50px;
  background: #000;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}

.vsl-cta-zone {
  text-align: center;
}

.cta-note {
  font-size: 16px;
  margin-bottom: 28px;
  color: var(--cream-dim);
}

.cta-note strong {
  color: var(--cream);
}

.vsl-cta-sub {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

.vsl-bullets {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

.vsl-bullets span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.vsl-bullets span::before {
  content: '✓';
  color: var(--terra);
}

/* ═══════════════════════════════════════
   SOCIAL PROOF BAR
═══════════════════════════════════════ */
.sp-bar {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 22px;
}

.sp-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.sp-item .num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--terra);
  margin-bottom: 8px;
}

.sp-item .desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   TWO COLUMN SECTIONS
═══════════════════════════════════════ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.illus-box img {
  width: 100%;
  border-radius: 4px;
}

/* ═══════════════════════════════════════
   BELIEF SECTION
═══════════════════════════════════════ */
#belief {
  text-align: center;
  background: var(--bg-light);
  position: relative;
}

#belief::before {
  content: '🕯️';
  position: absolute;
  top: 80px;
  left: 5%;
  font-size: 60px;
  opacity: 0.04;
  pointer-events: none;
}

#belief::after {
  content: '🌿';
  position: absolute;
  bottom: 80px;
  right: 5%;
  font-size: 60px;
  opacity: 0.04;
  pointer-events: none;
  transform: rotate(-15deg);
}

.belief-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.b-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 26px;
  text-align: left;
}

.b-icon {
  width: 44px;
  height: 44px;
  background: rgba(192, 90, 53, 0.1);
  border: 1px solid rgba(192, 90, 53, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--terra);
  position: relative;
}

.b-icon::before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192, 90, 53, 0.1) 0%, transparent 70%);
  z-index: -1;
}

.b-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.b-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.b-card p em {
  color: var(--cream-dim);
  font-style: italic;
}

/* ═══════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════ */
#benefits {
  text-align: center;
}

.ben-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 50px;
}

.ben-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 22px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ben-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(192, 90, 53, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ben-card:hover {
  border-color: rgba(192, 90, 53, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(192, 90, 53, 0.1);
}

.ben-card:hover::before {
  opacity: 1;
}

.ben-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.ben-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.ben-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#testimonials {
  background: var(--bg-light);
  text-align: center;
  position: relative;
}

#testimonials::before {
  content: '✨';
  position: absolute;
  top: 100px;
  right: 8%;
  font-size: 50px;
  opacity: 0.05;
  pointer-events: none;
}

#testimonials::after {
  content: '🍃';
  position: absolute;
  bottom: 100px;
  left: 8%;
  font-size: 50px;
  opacity: 0.05;
  pointer-events: none;
  transform: rotate(25deg);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 26px;
  margin-top: 50px;
}

.test-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 28px 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.test-card::after {
  content: '"';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 80px;
  font-family: 'Playfair Display', serif;
  color: var(--terra);
  opacity: 0.05;
  line-height: 1;
}

.test-card:hover {
  border-color: rgba(154, 123, 79, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(154, 123, 79, 0.08);
}

.test-stars {
  color: var(--ouro);
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.test-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-dim);
  margin-bottom: 18px;
  font-style: italic;
}

.test-name {
  font-weight: 600;
  color: var(--cream);
  font-size: 14px;
  margin-bottom: 4px;
}

.test-city {
  font-size: 12px;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   COUNTDOWN BAND
═══════════════════════════════════════ */
.cd-band {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 30px 22px;
  text-align: center;
}

.cd-band p {
  font-size: 15px;
  margin-bottom: 20px;
  color: var(--cream-dim);
}

.clock {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.cu {
  background: var(--bg-dark);
  border: 1px solid rgba(192, 90, 53, 0.3);
  padding: 12px 16px;
  min-width: 70px;
  text-align: center;
}

.cn {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--terra);
  display: block;
  line-height: 1;
}

.cl {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--muted);
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}

.csep {
  font-size: 28px;
  color: var(--terra);
  opacity: 0.6;
}

/* ═══════════════════════════════════════
   OFFER SECTION
═══════════════════════════════════════ */
#offer {
  text-align: center;
}

.offer-box {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 32px;
  margin-top: 50px;
}

.offer-head {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 24px;
  font-weight: 600;
}

.offer-lines {
  margin-bottom: 32px;
}

.o-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 15px;
}

.o-line:last-child {
  border-bottom: none;
}

.o-tag {
  font-size: 11px;
  background: rgba(192, 90, 53, 0.15);
  color: var(--terra);
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1px;
}

.offer-price {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 0;
  margin-bottom: 32px;
}

.p-from {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 8px;
}

.p-main {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--terra);
  line-height: 1;
}

.p-main sup {
  font-size: 24px;
  vertical-align: super;
}

.p-main sub {
  font-size: 28px;
  vertical-align: baseline;
}

.p-desc {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}

.offer-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

.guar-strip {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(192, 90, 53, 0.05);
  border: 1px solid rgba(192, 90, 53, 0.2);
  padding: 20px;
  margin-top: 32px;
  text-align: left;
}

.guar-icon {
  color: var(--terra);
  flex-shrink: 0;
}

.guar-text strong {
  display: block;
  color: var(--cream);
  margin-bottom: 6px;
  font-size: 14px;
}

.guar-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq {
  text-align: center;
  background: var(--bg-light);
}

.faq-list {
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 0;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 22px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-q:hover {
  color: var(--terra-light);
}

.faq-ic {
  flex-shrink: 0;
  color: var(--terra);
  transition: transform 0.3s;
}

.faq-item.open .faq-ic {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  padding: 0;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 0 22px 0;
}

/* ═══════════════════════════════════════
   DARK CTA
═══════════════════════════════════════ */
#dark-cta {
  background: var(--bg-dark);
  text-align: center;
}

#dark-cta h2 {
  max-width: 700px;
  margin: 0 auto 20px;
}

#dark-cta p {
  max-width: 650px;
  margin: 0 auto 40px;
}

.trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 40px 22px;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
}

footer strong {
  color: var(--cream);
  display: block;
  margin-bottom: 8px;
}

.disclaimer {
  display: block;
  margin-top: 16px;
  font-size: 11px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════
   STICKY MOBILE BAR
═══════════════════════════════════════ */
.sticky-mob {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-mid);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

.sm-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--terra);
}

.sm-price small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 400;
}

.sticky-mob .btn {
  padding: 14px 28px;
  font-size: 14px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   REVEAL ANIMATION
═══════════════════════════════════════ */
.rv {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.rv.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE DESIGN
═══════════════════════════════════════ */
@media (max-width: 768px) {
  section {
    padding: 60px 20px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sticky-mob {
    display: flex;
  }

  .belief-grid,
  .ben-grid {
    grid-template-columns: 1fr;
  }

  .sp-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .clock {
    gap: 8px;
  }

  .cu {
    min-width: 60px;
    padding: 10px 12px;
  }

  .cn {
    font-size: 24px;
  }

  .csep {
    font-size: 24px;
  }

  #hero {
    padding: 70px 20px 60px;
  }

  .photo-strip .caption {
    bottom: 20px;
  }

  .photo-strip .caption p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .btn-lg {
    padding: 18px 32px;
    font-size: 15px;
  }

  .test-grid {
    grid-template-columns: 1fr;
  }

  .vsl-inner {
    padding: 40px 20px;
  }

  .offer-box {
    padding: 30px 20px;
  }

  .p-main {
    font-size: 42px;
  }
}
