/* SINODE — Stylesheet compartido (sinode.org + landings)
 * v1 para preview.sinode.org → import a GHL via ghl-page-tools
 *
 * Paleta web original (chrome): blue + deep + sage + bg + gold
 * Tipografias: Playfair Display (display) + Source Serif 4 (body) + Crimson Text (versiculos) + Inter (UI)
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Crimson+Text:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --blue: #4a7fc4;
  --deep: #1a1a2e;
  --sage: #5e8a6e;
  --bg: #080a15;
  --bg-soft: #0f1320;
  --white: #ffffff;
  --white-soft: rgba(255, 255, 255, 0.85);
  --white-dim: rgba(255, 255, 255, 0.55);
  --gold: #c4a04a;
  --rule: rgba(255, 255, 255, 0.1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--white-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; transition: color 180ms ease; }
a:hover { color: var(--gold); }

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

/* === Layout primitives === */
.section {
  padding: 100px 24px;
  position: relative;
}
.section--alt { background: var(--bg-soft); }
.section--dark { background: var(--bg); }
.container { max-width: 1100px; margin: 0 auto; }
.container--narrow { max-width: 760px; margin: 0 auto; }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 16px;
}

/* === Headings === */
h1, h2, h3 { color: var(--white); font-weight: 400; }

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 18px;
}

h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 10px;
}

p { margin-bottom: 14px; max-width: 65ch; }

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 14px 32px;
  border-radius: 4px;
  border: 1.5px solid var(--sage);
  color: var(--sage);
  background: transparent;
  cursor: pointer;
  transition: all 200ms ease;
  text-decoration: none;
}
.btn:hover {
  background: var(--sage);
  color: var(--bg);
}
.btn--primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}
.btn--primary:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg);
}
.btn--gold:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.btn--lg { font-size: 17px; padding: 18px 42px; }

/* === Versiculos === */
.verse {
  font-family: 'Crimson Text', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--white-soft);
  border-left: 2px solid var(--sage);
  padding-left: 22px;
  margin: 24px 0;
}
.verse__ref {
  display: block;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--sage);
  margin-top: 10px;
  text-transform: uppercase;
}

/* === Cards === */
.cards {
  display: grid;
  gap: 24px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--6 { grid-template-columns: repeat(3, 1fr); }
.cards--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  transition: all 240ms ease;
  text-decoration: none;
  color: var(--white-soft);
}
.card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--sage);
  transform: translateY(-3px);
}
.card__icon {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--gold);
}
.card__title {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}
.card__teaser {
  font-size: 14px;
  line-height: 1.55;
  color: var(--white-dim);
}

/* === Persona buttons (S2) === */
.persona-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.persona-card {
  display: block;
  padding: 36px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid var(--rule);
  border-radius: 8px;
  text-decoration: none;
  transition: all 240ms ease;
}
.persona-card:hover {
  background: rgba(74, 127, 196, 0.1);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.persona-card__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 8px;
}
.persona-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--sage);
  text-transform: uppercase;
}

/* === FAQ === */
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 22px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.faq-a { color: var(--white-dim); font-size: 16px; line-height: 1.6; }

/* === Email subscribe === */
.subscribe-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 24px auto 0;
}
.subscribe-form input {
  flex: 1;
  padding: 14px 18px;
  font-family: 'Source Serif 4', serif;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--white);
}
.subscribe-form input::placeholder { color: var(--white-dim); }
.subscribe-form input:focus { outline: none; border-color: var(--sage); }

/* === Footer === */
.footer {
  background: #050709;
  padding: 70px 24px 30px;
  border-top: 1px solid var(--rule);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.footer__title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__tagline {
  font-style: italic;
  color: var(--white-dim);
  font-size: 14px;
}
.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer__list { list-style: none; }
.footer__list li { margin-bottom: 8px; font-size: 14px; }
.footer__list a { color: var(--white-dim); }
.footer__list a:hover { color: var(--gold); }
.footer__bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--white-dim);
}
.footer__plausible {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--sage);
}

/* === Hero === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #080a15 0%, #1a1a2e 60%, #0f1320 100%);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/sinode1.png');
  background-size: cover;
  background-position: center;
  opacity: 0.32;
  z-index: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, var(--bg) 80%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}
.hero__title { color: var(--white); }
.hero__title em { color: var(--blue); font-style: normal; }
.hero__sub {
  font-family: 'Crimson Text', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--white-soft);
  margin: 28px auto;
  max-width: 620px;
}
.hero__cta { margin-top: 36px; }

/* === Atrio block === */
.atrio-block {
  background: linear-gradient(135deg, rgba(196, 160, 74, 0.1), rgba(94, 138, 110, 0.06));
  border: 1px solid rgba(196, 160, 74, 0.25);
  border-radius: 10px;
  padding: 50px 40px;
  text-align: center;
}
.atrio-block h2 { color: var(--gold); }

/* === Resource cards === */
.resource-card {
  display: block;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 24px;
  text-decoration: none;
  transition: all 240ms ease;
}
.resource-card:hover {
  background: rgba(196, 160, 74, 0.08);
  border-color: var(--gold);
}
.resource-card__type {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.resource-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.resource-card__pages {
  font-size: 13px;
  color: var(--white-dim);
}

/* === Empty fallback (S9, S10) === */
.empty-fallback {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--rule);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  color: var(--white-dim);
  font-style: italic;
  font-family: 'Crimson Text', serif;
  font-size: 17px;
}
.empty-fallback__cta {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-style: normal;
  letter-spacing: 1px;
  color: var(--blue);
  text-transform: uppercase;
}

/* === Section headers === */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head--left { text-align: left; }

/* === Spotlight (S3) === */
.spotlight {
  text-align: center;
  padding: 60px 0;
}
.spotlight__quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.3;
  color: var(--white);
  max-width: 800px;
  margin: 0 auto;
}
.spotlight__quote em { color: var(--gold); font-style: italic; }

/* === Form embed wrapper (landings) === */
.form-embed {
  max-width: 600px;
  margin: 30px auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 14px;
}
.form-embed iframe {
  width: 100%;
  min-height: 480px;
  border: none;
  border-radius: 4px;
  display: block;
}

/* === Mid-page CTA strip (cierre, S19) === */
.cta-strip {
  text-align: center;
  padding: 80px 24px;
  background: linear-gradient(135deg, rgba(74, 127, 196, 0.12), rgba(196, 160, 74, 0.08));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

/* === Mientras tanto block (landings) === */
.mientras-tanto {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.mientras-tanto__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  text-align: center;
  margin-bottom: 28px;
}

/* === Responsive === */
@media (max-width: 900px) {
  .section { padding: 70px 22px; }
  .cards--3, .cards--6 { grid-template-columns: 1fr 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 60px 18px; }
  .cards--3, .cards--6 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .subscribe-form { flex-direction: column; }
  .verse { font-size: 19px; padding-left: 18px; }
  .hero { min-height: 80vh; padding: 100px 18px 60px; }
}
