/* ── ROCHEDO ONLINE – SHARED STYLES ──────────────────────── */
:root {
  --black:      #0D0D0D;
  --dark:       #141414;
  --card-bg:    #1A1A1A;
  --border:     #2A2A2A;
  --orange:     #FF5000;
  --orange-dim: #D44200;
  --navy:       #1E1F3E;
  --forest:     #275316;
  --white:      #F5F5F5;
  --muted:      #AEAEAE;
  --radius:     6px;
  --max:        1140px;
  --font-head:  'Syne', sans-serif;
  --font-body:  'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── LAYOUT ──────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--dark { background: var(--dark); }
.section--navy { background: var(--navy); }
.eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 16px;
}
.section-sub { color: var(--muted); max-width: 560px; margin-bottom: 48px; font-size: 15px; }
.divider { width: 40px; height: 3px; background: var(--orange); margin: 16px 0 40px; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.15s; border: none;
}
.btn--primary { background: var(--orange); color: var(--white); }
.btn--primary:hover { background: var(--orange-dim); }
.btn--outline { background: transparent; border: 1px solid var(--border); color: var(--white); }
.btn--outline:hover { border-color: var(--orange); color: var(--orange); }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--max); margin: 0 auto; padding: 0 24px;
}
.nav__logo { font-family: var(--font-head); font-size: 20px; font-weight: 800; letter-spacing: -0.03em; }
.nav__logo span { color: var(--orange); }
.nav__links { display: flex; gap: 4px; list-style: none; position: relative; }
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: block; padding: 8px 14px;
  font-size: 13px; font-weight: 500;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.15s;
}
.nav__links > li > a:hover { background: var(--card-bg); color: var(--orange); }
.nav__links > li > a.active { color: var(--orange); }
.nav__dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: var(--radius); min-width: 200px;
  list-style: none; padding: 6px 0; z-index: 200;
  margin-top: 0;
}
.nav__links > li.open .nav__dropdown { display: block; }
.nav__dropdown li a {
  display: block; padding: 9px 18px;
  font-size: 13px; color: var(--muted);
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown li a:hover { color: var(--white); background: var(--border); }
.nav__burger {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
}
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
.nav__cta {
  background: var(--orange); color: var(--white) !important;
  border-radius: var(--radius); padding: 8px 18px !important;
  font-weight: 600 !important; transition: background 0.15s !important;
}
.nav__cta:hover { background: var(--orange-dim) !important; color: var(--white) !important; }
.nav__mobile {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: var(--dark); overflow-y: auto; z-index: 99; padding: 24px;
}
.nav__mobile.open { display: block; }
.nav__mobile-group { margin-bottom: 24px; }
.nav__mobile-group-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
}
.nav__mobile-group a {
  display: block; padding: 10px 0;
  font-size: 15px; border-bottom: 1px solid var(--border); color: var(--muted);
}
.nav__mobile-group a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 88px 24px 44px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(232,93,4,0.08) 0%, transparent 70%);
}
.page-hero__inner { max-width: var(--max); margin: 0 auto; position: relative; }
.page-hero__breadcrumb {
  font-size: 12px; color: var(--muted); margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: var(--orange); }
.page-hero__breadcrumb a:hover { text-decoration: underline; }
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-hero__sub {
  margin-top: 16px; font-size: 16px;
  color: var(--muted); max-width: 560px; line-height: 1.7;
}

/* ── PROSE CONTENT ───────────────────────────────────────── */
.prose {
  max-width: 760px;
  font-size: 16px; line-height: 1.8; color: #CCC;
}
.prose p { margin-bottom: 20px; }
.prose h2 {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 700;
  color: var(--white); margin: 40px 0 16px;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 600;
  color: var(--orange); margin: 32px 0 12px;
}
.prose strong { color: var(--white); font-weight: 600; }
.prose ol { padding-left: 24px; margin-bottom: 20px; }
.prose ol li { margin-bottom: 16px; }
.prose blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px; margin: 32px 0;
  background: var(--card-bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--muted);
}
.prose blockquote cite {
  display: block; margin-top: 8px;
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  font-style: normal;
}

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 6px; top: 8px; bottom: 8px;
  width: 2px; background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item::before {
  content: ''; position: absolute; left: -28px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange); border: 2px solid var(--black);
}
.timeline-item__year {
  font-family: var(--font-head); font-size: 13px; font-weight: 700;
  color: var(--orange); letter-spacing: 0.1em; margin-bottom: 6px;
}
.timeline-item__title {
  font-size: 17px; font-weight: 600; margin-bottom: 8px;
}
.timeline-item__text { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── CRENÇA CARDS ────────────────────────────────────────── */
.crenca-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.crenca-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.15s;
}
.crenca-card:hover { border-color: var(--orange); }
.crenca-card__num {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 800;
  color: var(--border); line-height: 1; margin-bottom: 12px;
}
.crenca-card__title {
  font-size: 15px; font-weight: 600; margin-bottom: 8px;
}
.crenca-card__text { font-size: 13px; color: var(--muted); line-height: 1.7; }
.crenca-card__ref {
  margin-top: 12px; font-size: 11px;
  color: var(--orange); font-weight: 600;
  letter-spacing: 0.08em;
}

/* ── PASTOR ──────────────────────────────────────────────── */
.pastor-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: start;
}
.pastor-avatar {
  background: linear-gradient(135deg, var(--navy), #0E0E1C);
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  border: 1px solid var(--border);
}
.pastor-name {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800; margin-bottom: 4px;
}
.pastor-role { font-size: 14px; color: var(--orange); font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px; }
.pastor-verse {
  border-left: 3px solid var(--orange);
  padding: 16px 20px; margin: 32px 0;
  background: var(--card-bg); border-radius: 0 var(--radius) var(--radius) 0;
}
.pastor-verse__text { font-size: 15px; color: var(--muted); line-height: 1.7; font-style: italic; }
.pastor-verse__ref { font-size: 11px; color: var(--orange); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: #3A3A3A; border-top: 1px solid var(--border);
  padding: 48px 24px 24px;
}
.footer__inner { max-width: var(--max); margin: 0 auto; }
.footer__top {
  display: flex; flex-wrap: wrap; gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.footer__brand { max-width: 280px; }
.footer__logo { font-family: var(--font-head); font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.footer__logo span { color: var(--orange); }
.footer__desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.footer__contact { margin-top: 20px; }
.footer__contact a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-bottom: 8px; transition: color 0.15s;
}
.footer__contact a:hover { color: var(--orange); }
.footer__col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links li a { font-size: 13px; color: var(--muted); transition: color 0.15s; }
.footer__links li a:hover { color: var(--white); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 12px; color: var(--muted);
}
.footer__bottom a { color: var(--orange); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .section { padding: 56px 0; }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .pastor-layout { grid-template-columns: 1fr; }
  .pastor-avatar { max-width: 240px; }
  .crenca-grid { grid-template-columns: 1fr; }
  /* Colapsa layouts conteudo+barra-lateral no celular (evita overflow) */
  .layout-split { grid-template-columns: 1fr !important; gap: 32px !important; }
}

/* ── ICONES SVG (substituem os antigos emojis) ───────────── */
.ico {
  width: 1.05em; height: 1.05em;
  display: inline-block; vertical-align: -0.15em;
  flex: none;
  fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
  overflow: visible;
}
/* Alguns contextos usam icone maior/isolado */
.ico--lg { width: 1.6em; height: 1.6em; }
