/* ============================================================
   Deus Diário — Landing page
   Visual: fundo claro · azul profundo + dourado suave · cards arredondados
   Sem JS, sem fontes externas (rápido e leve). Responsivo (920 / 560).
   ============================================================ */

:root {
  --bg: #fffaf2;
  --bg-soft: #f8efe2;
  --card: #ffffff;
  --text: #252525;
  --muted: #666666;
  --primary: #234b6d;
  --primary-dark: #18364f;
  --accent: #d6a756;
  --accent-soft: #fff1d2;
  --border: #eadfce;
  --shadow: 0 18px 45px rgba(35, 75, 109, 0.12);
  --radius: 24px;
  --max-width: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

.container { width: min(100% - 32px, var(--max-width)); margin: 0 auto; }

/* ===== Header ===== */
header {
  padding: 22px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(234, 223, 206, 0.7);
}

.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.25rem; color: var(--primary); }

.logo-mark {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid; place-items: center;
  color: #fff; font-weight: 800;
  box-shadow: 0 10px 25px rgba(35, 75, 109, 0.2);
}

.nav-links {
  display: flex; align-items: center; gap: 24px;
  font-size: 0.95rem; color: var(--muted);
  margin-left: auto;
}

.nav-links a:hover { color: var(--primary); }

/* Link "Entrar" visível apenas no mobile (desktop usa nav-links) */
.nav-login { display: none; font-size: 0.9rem; font-weight: 600; color: var(--muted); white-space: nowrap; }
.nav-login:hover { color: var(--primary); }

.nav-cta {
  background: var(--primary); color: #fff;
  padding: 11px 18px; border-radius: 999px;
  font-weight: 700; transition: 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ===== Hero ===== */
.hero { padding: 76px 0 70px; position: relative; overflow: hidden; }

.hero::before {
  content: ""; position: absolute;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(214, 167, 86, 0.28), transparent 68%);
  top: -150px; right: -160px; pointer-events: none;
}

.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: #7a5520;
  padding: 8px 14px; border-radius: 999px;
  font-size: 0.92rem; font-weight: 700; margin-bottom: 20px;
  border: 1px solid rgba(214, 167, 86, 0.35);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1.05; letter-spacing: -0.055em;
  color: var(--primary-dark); margin-bottom: 22px;
}

.hero h1 span { color: var(--accent); }

.hero p { font-size: 1.18rem; color: var(--muted); max-width: 600px; margin-bottom: 30px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 28px; }

.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  font-weight: 800; transition: 0.2s ease; cursor: pointer; border: none;
}

.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 15px 30px rgba(35, 75, 109, 0.22); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }

.btn-secondary { background: #fff; color: var(--primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-2px); }

.hero-note { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: 0.95rem; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }

.hero-trust { margin-top: 46px; position: relative; z-index: 1; }

/* ===== CTA inline (entre seções) ===== */
.inline-cta { text-align: center; margin-top: 42px; }

/* ===== Hero — prévia do app ===== */
.phone-card {
  background: linear-gradient(180deg, #ffffff, #f5ead9);
  border: 1px solid var(--border); border-radius: 36px;
  padding: 24px; box-shadow: var(--shadow);
  max-width: 410px; margin-left: auto; position: relative;
}

.phone-card::after {
  content: ""; position: absolute; inset: 18px;
  border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.8); pointer-events: none;
}

.phone { background: #101820; border-radius: 34px; padding: 14px; box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25); }

.phone-screen { background: #fffaf2; border-radius: 26px; overflow: hidden; min-height: 620px; }

.app-top { background: linear-gradient(135deg, var(--primary), #2e6f9f); color: #fff; padding: 26px 22px; }
.app-top small { opacity: 0.85; display: block; margin-bottom: 8px; }
.app-top h3 { font-size: 1.35rem; line-height: 1.2; }

.app-content { padding: 22px; }

.verse-card {
  background: #ffffff; border: 1px solid var(--border); border-radius: 22px;
  padding: 20px; margin-bottom: 16px; box-shadow: 0 12px 28px rgba(35, 75, 109, 0.08);
}

.verse-card .tag {
  display: inline-block; font-size: 0.78rem; font-weight: 800;
  color: #7a5520; background: var(--accent-soft);
  padding: 5px 10px; border-radius: 999px; margin-bottom: 12px;
}

.verse-card h4 { color: var(--primary-dark); margin-bottom: 10px; font-size: 1.15rem; }
.verse-card p { font-size: 0.95rem; margin-bottom: 0; }

.prayer-box { background: var(--primary); color: #fff; border-radius: 20px; padding: 18px; }
.prayer-box strong { display: block; margin-bottom: 8px; }
.prayer-box p { color: rgba(255, 255, 255, 0.86); font-size: 0.92rem; margin-bottom: 0; }

/* ===== Sections ===== */
section { padding: 74px 0; }

.section-header { text-align: center; max-width: 720px; margin: 0 auto 42px; }

.section-header .label {
  color: var(--accent); font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 0.82rem; margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.12;
  letter-spacing: -0.04em; color: var(--primary-dark); margin-bottom: 14px;
}

.section-header p { color: var(--muted); font-size: 1.05rem; }

.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
  box-shadow: 0 14px 35px rgba(35, 75, 109, 0.07);
}

.icon {
  width: 52px; height: 52px; border-radius: 17px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: #8a6124;
  font-size: 1.35rem; margin-bottom: 18px; font-weight: 800;
}

.card h3 { color: var(--primary-dark); font-size: 1.25rem; margin-bottom: 10px; line-height: 1.25; }
.card p { color: var(--muted); font-size: 0.98rem; }

.soft-section { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ===== Benefícios ===== */
.benefits-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; align-items: center; }

.benefits-panel { background: #fff; border: 1px solid var(--border); border-radius: 32px; padding: 34px; box-shadow: var(--shadow); }

.benefits-panel h2 {
  color: var(--primary-dark); font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12; letter-spacing: -0.04em; margin-bottom: 16px;
}

.benefits-panel p { color: var(--muted); margin-bottom: 24px; }

.benefit-list { display: grid; gap: 14px; }

.benefit-item {
  display: flex; gap: 12px; align-items: flex-start; color: var(--text);
  background: rgba(255, 250, 242, 0.75); border: 1px solid var(--border);
  border-radius: 16px; padding: 14px;
}

.check {
  width: 24px; height: 24px; border-radius: 999px;
  background: var(--primary); color: #fff; display: grid; place-items: center;
  font-size: 0.82rem; flex: 0 0 auto; margin-top: 2px;
}

.daily-card {
  background: linear-gradient(135deg, var(--primary), #2e6f9f); color: #fff;
  border-radius: 34px; padding: 38px; min-height: 420px;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}

.daily-card::before {
  content: ""; width: 300px; height: 300px; position: absolute;
  right: -100px; top: -100px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
}

.daily-card h3 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; position: relative; }
.daily-card p { color: rgba(255, 255, 255, 0.86); position: relative; }

.daily-list { display: grid; gap: 12px; position: relative; }

.daily-list div {
  background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 13px 15px; border-radius: 16px; font-weight: 700;
}

/* ===== Assinatura ===== */
.pricing-card {
  max-width: 760px; margin: 0 auto; background: #fff;
  border: 1px solid var(--border); border-radius: 34px; padding: 42px;
  box-shadow: var(--shadow); text-align: center; position: relative; overflow: hidden;
}

.pricing-card::before {
  content: ""; position: absolute; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(214, 167, 86, 0.20), transparent 68%);
  top: -170px; left: 50%; transform: translateX(-50%);
}

.pricing-content { position: relative; z-index: 1; }

.pricing-badge {
  display: inline-flex; background: var(--accent-soft); color: #7a5520;
  border: 1px solid rgba(214, 167, 86, 0.35); border-radius: 999px;
  padding: 8px 14px; font-weight: 800; margin-bottom: 18px;
}

.pricing-card h2 {
  color: var(--primary-dark); font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em; line-height: 1.1; margin-bottom: 12px;
}

.pricing-card p { color: var(--muted); max-width: 560px; margin: 0 auto 28px; }

.trust-row {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 24px; color: var(--muted); font-size: 0.92rem;
}

.trust-row span { background: var(--bg); border: 1px solid var(--border); border-radius: 999px; padding: 8px 12px; }

/* ===== FAQ ===== */
.faq { max-width: 840px; margin: 0 auto; display: grid; gap: 14px; }

details {
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: 20px 22px; box-shadow: 0 10px 28px rgba(35, 75, 109, 0.05);
}

summary { cursor: pointer; font-weight: 800; color: var(--primary-dark); list-style: none; }
summary::-webkit-details-marker { display: none; }

details p { color: var(--muted); margin-top: 12px; }
details p a { color: var(--primary); font-weight: 700; }

/* ===== CTA final ===== */
.final-cta {
  background: var(--primary-dark); color: #fff; border-radius: 36px;
  padding: 54px 34px; text-align: center; box-shadow: var(--shadow);
}

.final-cta h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 14px; }
.final-cta p { color: rgba(255, 255, 255, 0.82); max-width: 620px; margin: 0 auto 28px; }

.final-cta .btn-primary { background: #fff; color: var(--primary-dark); }
.final-cta .btn-primary:hover { background: var(--accent-soft); }

.final-cta-login {
  display: inline-block; margin-top: 18px;
  color: rgba(255, 255, 255, 0.82); font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4); padding-bottom: 2px;
}
.final-cta-login:hover { color: #fff; }

/* ===== CTA fixo mobile ===== */
.mobile-sticky-cta { display: none; }

/* ===== Rodapé ===== */
footer { padding: 40px 0; color: var(--muted); font-size: 0.92rem; text-align: center; }
.footer-brand { font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; margin-bottom: 14px; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { color: var(--muted); }

/* ===== Responsivo ===== */
@media (max-width: 920px) {
  .hero-grid, .benefits-grid { grid-template-columns: 1fr; }
  .phone-card { margin: 0 auto; }
  .cards-3 { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-login { display: inline; }

  .mobile-sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 250, 242, 0.96); backdrop-filter: blur(12px);
    border-top: 1px solid rgba(234, 223, 206, 0.9);
    box-shadow: 0 -8px 24px rgba(35, 75, 109, 0.10);
  }
  .mobile-sticky-cta .btn { width: 100%; }
  body { padding-bottom: 78px; }
}

@media (max-width: 560px) {
  .hero { padding: 52px 0 48px; }
  section { padding: 56px 0; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .btn { padding: 0 18px; }
  .phone-screen { min-height: 540px; }
  .pricing-card, .benefits-panel, .daily-card { padding: 26px; border-radius: 26px; }
  .card { padding: 24px; }
  .final-cta { padding: 40px 24px; }
  .nav-cta { padding: 9px 14px; font-size: 0.9rem; }
}
