/* ── La Búsqueda de Cristo — Shared Stylesheet ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400;1,600&family=Inter:wght@300;400;500&display=swap');

:root {
  --red:    #8B1A2A;
  --gold:   #A87830;
  --text:   #111111;
  --muted:  #888888;
  --border: #E8E4DF;
  --bg:     #FAFAF8;
  --white:  #FFFFFF;
  --nav-h:  64px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.nav-logo-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--text); }
.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a { font-size: 13px; font-weight: 400; color: var(--muted); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links .nav-cta { color: var(--white); background: var(--red); padding: 9px 22px; border-radius: 4px; font-weight: 500; font-size: 13px; letter-spacing: 0.03em; transition: opacity 0.2s; }
.nav-links .nav-cta:hover { opacity: 0.85; color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 0 20px; z-index: 99; }
.mobile-menu a { padding: 14px 40px; font-size: 15px; color: var(--text); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border-bottom: none; margin: 16px 40px 0; padding: 12px 0; background: var(--red); color: var(--white); text-align: center; border-radius: 4px; }
.mobile-menu.open { display: flex; }

/* ── PAGE HEADER ── */
.page-header {
  margin-top: var(--nav-h);
  padding: 72px 40px 64px;
  border-bottom: 1px solid var(--border);
}
.page-header .eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.page-header h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 6vw, 64px); font-weight: 400; line-height: 1.1; color: var(--text); margin-bottom: 16px; }
.page-header p { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; max-width: 520px; }

/* ── LAYOUT ── */
.container { max-width: 1080px; margin: 0 auto; }
section { padding: 80px 40px; }
.eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: var(--text); line-height: 1.15; margin-bottom: 16px; }
.lead { font-size: 15px; color: var(--muted); line-height: 1.8; font-weight: 300; max-width: 520px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; border-radius: 4px; padding: 13px 28px; text-decoration: none; transition: opacity 0.2s, background 0.2s; }
.btn-filled { background: var(--red); color: var(--white); }
.btn-filled:hover { opacity: 0.85; }
.btn-outline { color: var(--text); border: 1px solid var(--border); background: transparent; }
.btn-outline:hover { border-color: #ccc; background: var(--bg); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { opacity: 0.85; }

/* ── DIVIDER ROWS ── */
.divider-row { display: flex; gap: 0; border: 1px solid var(--border); border-radius: 2px; overflow: hidden; }
.divider-row > * { flex: 1; padding: 36px 32px; border-right: 1px solid var(--border); }
.divider-row > *:last-child { border-right: none; }

/* ── FOOTER ── */
footer { border-top: 1px solid var(--border); padding: 48px 40px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-left { display: flex; align-items: center; gap: 12px; }
.footer-left img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; opacity: 0.75; }
.footer-left span { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 840px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .page-header { padding: 56px 24px 48px; }
  section { padding: 60px 24px; }
  footer { flex-direction: column; align-items: flex-start; padding: 36px 24px; }
  .divider-row { flex-direction: column; }
  .divider-row > * { border-right: none; border-bottom: 1px solid var(--border); }
  .divider-row > *:last-child { border-bottom: none; }
}
