/* 7 Dias Com Deus — Landing premium */
* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #c9a24a;
  --gold-2: #e6c277;
  --gold-3: #b6862c;
  --cream: #fbf6ec;
  --cream-2: #f4ead4;
  --bg: #fffaf0;
  --ink: #2b2417;
  --ink-soft: #5a4d34;
  --white: #ffffff;
  --shadow: 0 18px 50px -18px rgba(120, 85, 20, .35);
  --shadow-soft: 0 8px 25px -10px rgba(120, 85, 20, .25);
  --radius: 16px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; line-height: 1.15; color: var(--ink); letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 6vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }
p { color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
section { padding: 70px 0; position: relative; }

/* Botão dourado */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-2), var(--gold), var(--gold-3));
  color: #1f1808;
  font-weight: 700;
  padding: 18px 30px;
  border-radius: 999px;
  font-size: 1.05rem;
  letter-spacing: .2px;
  box-shadow: 0 12px 30px -10px rgba(180, 130, 30, .55), inset 0 1px 0 rgba(255,255,255,.5);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn-gold::after {
  content: ""; position: absolute; top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-20deg);
  animation: shine 3.5s infinite;
}
@keyframes shine { 0% { left: -75%; } 60%, 100% { left: 130%; } }
.btn-gold:hover { transform: translateY(-2px); filter: brightness(1.05); box-shadow: 0 18px 40px -12px rgba(180,130,30,.7); }
.btn-lg { padding: 22px 36px; font-size: 1.15rem; }

/* HERO */
.hero {
  background:
    radial-gradient(1000px 500px at 50% -100px, rgba(230,194,119,.55), transparent 60%),
    linear-gradient(180deg, #fff8e6 0%, #fbeec9 100%);
  padding: 80px 0 60px;
  text-align: center;
  overflow: hidden;
}
.hero .eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(201,162,74,.4);
  color: var(--gold-3);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 span { background: linear-gradient(135deg, var(--gold-3), var(--gold-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.15rem; max-width: 640px; margin: 18px auto 28px; color: var(--ink-soft); }
.hero-mockup {
  margin: 30px auto 0;
  max-width: 640px;
  filter: drop-shadow(0 30px 40px rgba(140,100,30,.35));
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-benefits {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 18px;
  margin-top: 28px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.hero-benefits span {
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(201,162,74,.35);
  color: var(--ink);
  padding: 8px 14px; border-radius: 999px;
  font-size: .92rem; font-weight: 500;
}

/* Seção emocional */
.emotional { background: var(--white); }
.emotional .container { max-width: 760px; text-align: center; }
.emotional h2 { margin-bottom: 18px; }
.emotional p { font-size: 1.08rem; margin-bottom: 14px; }
.emotional .divider { width: 60px; height: 3px; background: var(--gold); margin: 18px auto 26px; border-radius: 999px; }

/* Cards "O que vai encontrar" */
.features { background: linear-gradient(180deg, #fff8e6, #fbeec9); }
.section-title { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-title h2 { margin-bottom: 12px; }
.cards-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid rgba(201,162,74,.25);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.2rem; margin-bottom: 14px;
  box-shadow: 0 6px 14px -6px rgba(180,130,30,.6);
}
.card h3 { font-family: 'Inter', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.card p { font-size: .95rem; }

/* Mockup + benefícios */
.product { background: var(--white); }
.product-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.product-img { filter: drop-shadow(0 25px 35px rgba(140,100,30,.3)); }
.product ul { list-style: none; margin-top: 18px; }
.product ul li { padding: 10px 0 10px 32px; position: relative; color: var(--ink); }
.product ul li::before {
  content: "✔"; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff; font-size: .75rem; display: flex; align-items: center; justify-content: center;
}
.product .btn-gold { margin-top: 26px; }

/* Depoimentos */
.testimonials { background: linear-gradient(180deg, #fbeec9, #fff8e6); }
.t-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.t-card {
  background: var(--white); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-soft);
  border: 1px solid rgba(201,162,74,.2);
}
.t-card .stars { color: var(--gold); margin-bottom: 8px; letter-spacing: 2px; }
.t-card p { color: var(--ink); font-style: italic; margin-bottom: 14px; }
.t-card .who { display: flex; align-items: center; gap: 12px; }
.t-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.t-card .who small { color: var(--ink-soft); }

/* Salmo 91 bônus */
.bonus {
  background:
    radial-gradient(800px 400px at 50% 0%, rgba(255,235,170,.7), transparent 70%),
    linear-gradient(180deg, #2b2417 0%, #1a140a 100%);
  color: #fff8e6;
  text-align: center;
}
.bonus .badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #1f1808; font-weight: 700;
  padding: 8px 18px; border-radius: 999px;
  letter-spacing: .15em; text-transform: uppercase; font-size: .8rem;
  margin-bottom: 18px;
}
.bonus h2 { color: #fff; }
.bonus h2 span { background: linear-gradient(135deg, var(--gold-2), #fff3c8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.bonus p { color: #f3e2b6; max-width: 640px; margin: 18px auto 0; font-size: 1.08rem; }
.bonus-quote {
  margin: 30px auto 0; max-width: 600px;
  padding: 26px; border: 1px solid rgba(230,194,119,.4);
  border-radius: var(--radius); background: rgba(255,255,255,.04);
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.15rem;
  color: #fff3c8;
}

/* Oferta */
.offer { background: linear-gradient(180deg, #fff8e6, #fbeec9); text-align: center; }
.offer-card {
  max-width: 560px; margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 22px;
  padding: 40px 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.offer-card .tag {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #1f1808; font-weight: 700; font-size: .8rem; letter-spacing: .15em;
  padding: 8px 16px; border-radius: 999px; text-transform: uppercase;
}
.price-old { text-decoration: line-through; color: #a08555; font-size: 1.1rem; }
.price-new { font-family: 'Cormorant Garamond', serif; font-size: 3.4rem; font-weight: 700; color: var(--gold-3); line-height: 1; margin: 6px 0; }
.price-new small { font-size: 1.1rem; color: var(--ink-soft); font-weight: 500; font-family: 'Inter', sans-serif; }
.offer-card .sub { color: var(--ink-soft); margin-bottom: 20px; }
.offer-card ul { list-style: none; margin: 24px 0; text-align: left; max-width: 340px; margin-left: auto; margin-right: auto; }
.offer-card ul li { padding: 8px 0 8px 28px; position: relative; }
.offer-card ul li::before {
  content: "✔"; position: absolute; left: 0; top: 8px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--gold); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: .7rem;
}
.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 28px; color: var(--ink-soft); font-size: .9rem;
}
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }

/* Garantia */
.guarantee { background: var(--white); text-align: center; }
.guarantee-box {
  max-width: 720px; margin: 0 auto;
  display: flex; gap: 24px; align-items: center;
  background: var(--cream); border: 1px solid rgba(201,162,74,.3);
  border-radius: var(--radius); padding: 26px;
}
.guarantee-seal {
  flex-shrink: 0; width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold-3));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-weight: 700; line-height: 1; text-align: center;
  box-shadow: 0 10px 25px -10px rgba(180,130,30,.6);
}
.guarantee-seal strong { font-size: 1.8rem; display: block; }
.guarantee-seal small { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.guarantee-text { text-align: left; }
.guarantee-text h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 6px; }

/* FAQ */
.faq { background: linear-gradient(180deg, #fbeec9, #fff8e6); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid rgba(201,162,74,.25);
  border-radius: 12px; margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.faq-q {
  width: 100%; text-align: left; padding: 18px 22px; background: transparent;
  border: 0; cursor: pointer; font-weight: 600; color: var(--ink); font-size: 1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-q::after { content: "+"; color: var(--gold-3); font-size: 1.4rem; transition: transform .2s ease; }
.faq-item.open .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; padding: 0 22px; color: var(--ink-soft); }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 18px; }

/* Final CTA */
.final-cta { background: var(--white); text-align: center; padding-bottom: 100px; }
.final-cta h2 { max-width: 720px; margin: 0 auto 16px; }
.final-cta p { max-width: 600px; margin: 0 auto 26px; }

/* Footer */
footer { background: #1a140a; color: #d8c79a; padding: 50px 0 30px; text-align: center; }
footer h4 { color: #fff; margin-bottom: 12px; font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; }
footer .links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 22px; margin: 16px 0; }
footer .links a { color: #e6c277; font-size: .95rem; }
footer .links a:hover { color: #fff; }
footer small { color: #a3956c; display: block; margin-top: 14px; font-size: .82rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Botão flutuante mobile */
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0;
  background: rgba(255, 248, 230, .96); backdrop-filter: blur(10px);
  padding: 12px 14px env(safe-area-inset-bottom, 12px);
  box-shadow: 0 -10px 30px -10px rgba(120,85,20,.3);
  z-index: 90;
  border-top: 1px solid rgba(201,162,74,.3);
}
.mobile-cta .btn-gold { width: 100%; padding: 16px; font-size: 1rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 760px) {
  section { padding: 55px 0; }
  .product-grid { grid-template-columns: 1fr; text-align: center; }
  .product ul { display: inline-block; text-align: left; }
  .guarantee-box { flex-direction: column; text-align: center; }
  .guarantee-text { text-align: center; }
  .mobile-cta { display: block; }
  body { padding-bottom: 90px; }
}

/* Páginas legais */
.legal { background: var(--white); padding: 80px 0; }
.legal .container { max-width: 820px; }
.legal h1 { margin-bottom: 24px; }
.legal h2 { font-size: 1.4rem; margin: 28px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
.legal .back { display: inline-block; margin-top: 30px; color: var(--gold-3); font-weight: 600; }
