/* Bíblia Doodles — site oficial */

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

:root {
  --bg: #FAF6EF;
  --bg-card: #FFFFFF;
  --bg-soft: #FFF1D6;
  --text: #2C2C2C;
  --text-soft: #8B6F47;
  --text-muted: #A99B85;
  --accent: #D4A574;
  --accent-soft: #FFE9D6;
  --primary: #2C2C2C;
  --red: #FF6B6B;
  --yellow: #FFE66D;
  --green: #A8E6CF;
  --blue: #54A0FF;
  --border: #E6E0D4;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header */
.header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
}
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.brand b { color: var(--accent); font-weight: 800; }
.nav { display: flex; gap: 20px; }
.nav a { color: var(--text); font-weight: 600; font-size: 14px; }
.nav a:hover { color: var(--accent); text-decoration: none; }

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero */
.hero {
  padding: 80px 20px 60px;
  text-align: center;
}
.hero .mascot {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  filter: drop-shadow(0 8px 24px rgba(212, 165, 116, 0.25));
}
.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero h1 b { color: var(--accent); font-weight: 900; }
.hero .tagline {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-soft);
  max-width: 560px;
  margin: 0 auto 32px;
}
.btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.15s;
  text-decoration: none !important;
}
.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(44, 44, 44, 0.25);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(44, 44, 44, 0.32); }
.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--bg-card); }
.btn-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

/* Features grid */
.section {
  padding: 80px 0;
}
.section-title {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section-sub {
  text-align: center;
  color: var(--text-soft);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.feature {
  background: var(--bg-card);
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.06);
  transition: transform 0.15s;
}
.feature:hover { transform: translateY(-4px); }
.feature .emoji {
  font-size: 40px;
  margin-bottom: 14px;
  display: block;
}
.feature h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}
.feature p {
  color: var(--text-soft);
  font-size: 14px;
}

/* Soft section */
.section-soft {
  background: var(--bg-soft);
}

/* Quote */
.quote {
  background: var(--bg-card);
  border-left: 4px solid var(--accent);
  padding: 24px 28px;
  border-radius: 12px;
  font-style: italic;
  font-size: 16px;
  color: var(--text);
  margin: 32px 0;
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.06);
}
.quote .ref { display: block; font-style: normal; color: var(--text-soft); font-size: 13px; font-weight: 700; margin-top: 8px; }

/* Footer */
.footer {
  background: var(--text);
  color: white;
  padding: 60px 20px 32px;
  margin-top: 80px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.7;
}
.footer a {
  display: block;
  color: white;
  opacity: 0.7;
  font-size: 14px;
  padding: 4px 0;
}
.footer a:hover { opacity: 1; text-decoration: none; }
.footer p { font-size: 14px; opacity: 0.7; line-height: 1.6; }
.footer .brand b { color: var(--accent); }
.footer .copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 12px;
  opacity: 0.5;
  text-align: center;
}

/* Legal pages (privacy, terms) */
.legal-page {
  padding: 48px 0 80px;
}
.legal-page h1 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.legal-page .meta {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 32px;
}
.legal-page h2 {
  font-size: 22px;
  margin-top: 36px;
  color: var(--text-soft);
  font-weight: 800;
}
.legal-page h3 {
  font-size: 17px;
  margin-top: 22px;
  font-weight: 700;
}
.legal-page p, .legal-page li {
  font-size: 15px;
}
.legal-page ul { padding-left: 22px; margin: 12px 0; }
.legal-page li { margin-bottom: 6px; }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  background: var(--bg-card);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.legal-page th, .legal-page td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.legal-page th { background: var(--bg-soft); font-size: 13px; font-weight: 800; }
.legal-page tr:last-child td { border-bottom: none; }
.legal-page .highlight {
  background: var(--bg-soft);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 20px 0;
  font-size: 14px;
}

/* Steps (como funciona) */
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(139, 111, 71, 0.06);
}
.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 900;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 17px; font-weight: 800; margin-bottom: 4px; }
.step p { color: var(--text-soft); font-size: 14px; }

/* Activities grid */
.activities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.activity {
  background: var(--bg-card);
  padding: 18px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.15s;
}
.activity:hover { transform: translateY(-3px); }
.activity .ico { font-size: 32px; display: block; margin-bottom: 8px; }
.activity b { display: block; font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.activity p { font-size: 12px; color: var(--text-soft); }

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.price-card {
  background: var(--bg-card);
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
  position: relative;
}
.price-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-soft);
  margin-bottom: 8px;
}
.price-card .price {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 20px;
}
.price-card .price small {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
}
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  padding: 6px 0;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-list li:last-child { border-bottom: none; }
.price-featured {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.04);
}
.price-featured h3 { color: var(--accent); }
.price-featured .price { color: white; }
.price-featured .price small { color: rgba(255,255,255,0.7); }
.price-featured .price-list li {
  color: white;
  border-bottom-color: rgba(255,255,255,0.1);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

/* Mobile */
@media (max-width: 700px) {
  .nav { gap: 12px; font-size: 13px; }
  .nav a { font-size: 13px; }
  .hero { padding: 60px 16px 40px; }
  .hero .mascot { width: 140px; height: 140px; }
  .section { padding: 56px 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .price-featured { transform: none; }
  .step { padding: 18px; gap: 14px; }
  .step-num { width: 36px; height: 36px; font-size: 16px; }
}
