/* ============================================================
   Parroquia San José — Santa Marta, Magdalena
   style.css
   ============================================================ */

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

:root {
  --ivory: #FDFAF6;
  --sky: #C8DCF0;
  --sky-deep: #A8C4E0;
  --gold: #C8A84B;
  --gold-light: #EDD98A;
  --lilac: #D8C8E8;
  --mint: #C0DDD0;
  --warm-white: #F7F0E6;
  --text-dark: #2C2440;
  --text-mid: #5A5070;
  --text-soft: #8A8098;
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── TICKER ── */
.ticker-bar {
  background: linear-gradient(90deg, #2C2440 0%, #4A3A6A 50%, #2C2440 100%);
  color: var(--gold-light);
  padding: 11px 0;
  overflow: hidden;
  position: relative;
  z-index: 100;
  cursor: default;
}
.ticker-bar::before, .ticker-bar::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.ticker-bar::before { left: 0;  background: linear-gradient(90deg, #2C2440, transparent); }
.ticker-bar::after  { right: 0; background: linear-gradient(-90deg, #2C2440, transparent); }
.ticker-track {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }
.ticker-track span {
  font-family: 'Lato', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 0 56px;
  line-height: 1;
}
.ticker-track span::before {
  content: "✦";
  margin-right: 14px;
  color: var(--gold);
  font-size: 9px;
  vertical-align: middle;
}

/* ── HEADER ── */
header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200,168,75,0.25);
  padding: 0 5vw;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .cross-icon { font-size: 20px; color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 32px; }
nav ul a {
  font-family: 'Lato', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.3s;
}
nav ul a:hover { color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(160deg, #F0EAF8 0%, #E8F0FA 40%, #E8F5EE 100%);
  text-align: center;
  padding: 80px 5vw 60px;
  /* sin overflow:hidden para que el dropdown no se corte */
}
.hero-bg-photo {
  position: absolute;
  inset: 0;
  background-image: url('../img/cupula.jpg');
  background-size: cover;
  background-position: center 20%;
  opacity: 0.13;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(700px, 120vw);
  height: min(700px, 120vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,217,138,0.28) 0%, rgba(200,220,240,0.18) 40%, transparent 70%);
  animation: halo-pulse 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
@keyframes halo-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%,-50%) scale(1.12); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; max-width: 780px; }
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Cinzel Decorative', serif;
  font-size: clamp(32px, 6vw, 72px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 12px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  font-family: 'Cinzel', serif;
  font-size: clamp(14px, 2vw, 18px);
  color: var(--text-mid);
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-bottom: 36px;
}
.hero-verse {
  font-family: 'Lato', sans-serif;
  font-size: 15px;
  font-style: italic;
  color: var(--text-soft);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #2C2440;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(200,168,75,0.35);
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,168,75,0.45); }
.hero-cta.secondary {
  background: rgba(255,255,255,0.85);
  color: var(--text-dark);
  border: 2px solid rgba(200,168,75,0.45);
  box-shadow: 0 4px 16px rgba(44,36,64,0.1);
}
.hero-cta.secondary:hover { background: white; border-color: var(--gold); box-shadow: 0 8px 24px rgba(44,36,64,0.15); }
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* ── DROPDOWN ── */
.dropdown { position: relative; display: inline-block; }
.dropdown-content {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(44,36,64,0.18);
  border: 1px solid rgba(200,168,75,0.2);
  min-width: 180px;
  z-index: 9999;
  overflow: visible;
  animation: fadeDown 0.2s ease;
}
.dropdown-content.open { display: block; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.dropdown-content a {
  display: block;
  padding: 13px 20px;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(200,168,75,0.1);
  transition: background 0.2s, color 0.2s;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: rgba(200,168,75,0.1); color: var(--gold); }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,36,64,0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
  background: var(--ivory);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 80px rgba(44,36,64,0.3);
  animation: modalIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-soft);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text-dark); }
.floating-cross {
  position: absolute;
  font-size: clamp(120px, 22vw, 280px);
  opacity: 0.04;
  user-select: none;
  pointer-events: none;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: serif;
  line-height: 1;
  color: var(--text-dark);
}

/* ── SECTIONS ── */
section { padding: 90px 5vw; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 14px; line-height: 1.2;
}
.section-lead { font-size: 16px; color: var(--text-soft); line-height: 1.7; max-width: 540px; margin-bottom: 56px; }
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 16px 0 32px; }

/* ── HORARIOS ── */
#horarios { background: var(--warm-white); }
.schedule-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.schedule-card {
  background: white; border-radius: var(--radius); padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(44,36,64,0.06); border: 1px solid rgba(200,168,75,0.15);
  transition: transform 0.3s, box-shadow 0.3s; position: relative; overflow: hidden;
}
.schedule-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 2px 0 0 2px;
}
.schedule-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(44,36,64,0.1); }
.schedule-card .day-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.schedule-card h3 { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; }
.mass-time { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(44,36,64,0.06); font-size: 15px; color: var(--text-mid); }
.mass-time:last-child { border-bottom: none; }
.mass-time .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.adoracion-card { background: linear-gradient(135deg, #2C2440, #4A3A6A); color: white; grid-column: 1 / -1; }
.adoracion-card::before { background: linear-gradient(180deg, var(--gold-light), var(--gold)); }
.adoracion-card h3, .adoracion-card .mass-time { color: rgba(255,255,255,0.9); }
.adoracion-card .mass-time { border-bottom-color: rgba(255,255,255,0.1); }
.adoracion-card .dot { background: var(--gold-light); }

/* ── CARISMÁS ── */
#carismas { background: var(--ivory); }
.carousel-wrap { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.carisma-slide {
  min-width: 100%; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; min-height: 480px; border-radius: var(--radius); overflow: hidden;
  background: white; box-shadow: 0 8px 48px rgba(44,36,64,0.08);
}
.carisma-photo {
  background: var(--sky); display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative; overflow: hidden; min-height: 280px;
}
.carisma-photo .photo-placeholder { display: flex; flex-direction: column; align-items: center; gap: 12px; opacity: 0.5; }
.carisma-photo .photo-placeholder p { font-size: 13px; color: var(--text-mid); font-family: 'Lato', sans-serif; }
.upload-hint {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-family: 'Lato', sans-serif; color: var(--text-soft);
  background: rgba(255,255,255,0.8); padding: 4px 12px; border-radius: 20px; white-space: nowrap;
}
.carisma-info { padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.carisma-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px; background: rgba(200,168,75,0.1);
  padding: 6px 14px; border-radius: 50px; width: fit-content;
}
.carisma-info h3 { font-family: 'Cinzel', serif; font-size: 26px; font-weight: 600; color: var(--text-dark); margin-bottom: 16px; line-height: 1.2; }
.carisma-info p { font-size: 15px; line-height: 1.8; color: var(--text-mid); margin-bottom: 28px; }
.carisma-join {
  display: inline-flex; align-items: center; gap: 8px; color: var(--gold);
  font-weight: 700; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; background: none; border: none; padding: 0;
  font-family: 'Lato', sans-serif; transition: gap 0.3s;
}
.carisma-join:hover { gap: 14px; }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 36px; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(200,168,75,0.4);
  background: white; color: var(--gold); font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: all 0.3s;
}
.carousel-btn:hover { background: var(--gold); color: white; border-color: var(--gold); }
.carousel-dots { display: flex; gap: 8px; }
.c-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(200,168,75,0.3); cursor: pointer; transition: all 0.3s; }
.c-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ── PADRES ── */
#padres { background: var(--warm-white); }
.padres-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; max-width: 900px; }
.padre-card {
  text-align: center; background: white; border-radius: var(--radius);
  padding: 36px 24px; box-shadow: 0 4px 20px rgba(44,36,64,0.05);
  border: 1px solid rgba(200,168,75,0.12); transition: transform 0.3s;
}
.padre-card:hover { transform: translateY(-5px); }
.padre-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--sky), var(--lilac));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; border: 3px solid var(--gold-light); position: relative;
}
.padre-avatar img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.padre-card h4 { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.padre-card .padre-role { font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.padre-card .padre-desc { font-size: 13px; color: var(--text-soft); margin-top: 10px; line-height: 1.6; }

/* ── STREAMING ── */
#streaming { background: var(--ivory); }
.streaming-hero {
  background: linear-gradient(135deg, #1A1A2E 0%, #2C2440 50%, #1E3A5F 100%);
  border-radius: var(--radius); padding: 56px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; flex-wrap: wrap; margin-bottom: 40px; position: relative; overflow: hidden;
}
.streaming-hero::before {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%);
  right: 60px; bottom: -80px; pointer-events: none;
}
.streaming-text h3 { font-family: 'Cinzel', serif; font-size: clamp(20px,3vw,30px); font-weight: 600; color: white; margin-bottom: 10px; }
.streaming-text p { font-size: 15px; color: rgba(255,255,255,0.55); max-width: 420px; line-height: 1.7; }
.streaming-platforms { display: flex; gap: 16px; flex-wrap: wrap; }
.platform-btn {
  display: flex; align-items: center; gap: 11px; padding: 14px 24px; border-radius: 50px;
  text-decoration: none; font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700;
  transition: transform 0.25s, box-shadow 0.25s, filter 0.25s; white-space: nowrap;
}
.platform-btn:hover { transform: translateY(-3px); filter: brightness(1.1); }
.platform-btn.spotify  { background: #1DB954; color: white; box-shadow: 0 6px 24px rgba(29,185,84,0.4); }
.platform-btn.youtube  { background: #FF0000; color: white; box-shadow: 0 6px 24px rgba(255,0,0,0.35); }
.platform-btn.apple    { background: linear-gradient(135deg,#FC3C44,#FA233B); color: white; box-shadow: 0 6px 24px rgba(252,60,68,0.35); }
.platform-btn svg { width: 22px; height: 22px; flex-shrink: 0; fill: white; }
.episodes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 20px; }
.episode-card {
  background: white; border-radius: var(--radius-sm); padding: 22px;
  border: 1px solid rgba(200,168,75,0.12); display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
}
.episode-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(44,36,64,0.09); }
.ep-thumb { width: 52px; height: 52px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.ep-body h4 { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 5px; line-height: 1.3; }
.ep-body p  { font-size: 12px; color: var(--text-soft); line-height: 1.5; }
.ep-meta { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-top: 8px; }

/* ── TIENDA ── */
#tienda { background: var(--warm-white); }
.store-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr)); gap: 24px; }
.product-card {
  background: white; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 4px 20px rgba(44,36,64,0.06); border: 1px solid rgba(200,168,75,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(44,36,64,0.12); }
.product-img { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; font-size: 56px; position: relative; overflow: hidden; }
.product-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: white; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; }
.product-body { padding: 20px 22px 24px; }
.product-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-name { font-family: 'Cinzel', serif; font-size: 16px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; line-height: 1.3; }
.product-desc { font-size: 13px; color: var(--text-soft); line-height: 1.6; margin-bottom: 18px; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Cinzel', serif; font-size: 18px; font-weight: 700; color: var(--text-dark); }
.product-price span { font-size: 12px; color: var(--text-soft); font-family: 'Lato', sans-serif; font-weight: 400; }
.add-cart-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #2C2440;
  border: none; padding: 10px 18px; border-radius: 50px; font-family: 'Lato', sans-serif;
  font-size: 12px; font-weight: 700; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.add-cart-btn:hover { transform: scale(1.05); box-shadow: 0 6px 20px rgba(200,168,75,0.4); }
.store-note {
  text-align: center; margin-top: 40px; padding: 24px;
  background: rgba(200,168,75,0.08); border-radius: var(--radius-sm);
  border: 1px dashed rgba(200,168,75,0.35); font-size: 14px; color: var(--text-soft); font-style: italic;
}

/* ── DONACIONES ── */
#donaciones { background: linear-gradient(135deg, #2C2440 0%, #3A2D58 50%, #2C3A50 100%); color: white; }
#donaciones .section-title { color: white; }
#donaciones .section-lead { color: rgba(255,255,255,0.6); }
#donaciones .section-tag { color: var(--gold-light); }
.donation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; margin-bottom: 40px; }
.bank-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 32px 28px; backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s; position: relative; overflow: hidden;
}
.bank-card::after {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(237,217,138,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.bank-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.bank-logo-area { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.bank-icon {
  width: 160px; height: 52px; display: flex; align-items: center; justify-content: flex-start;
  background: white; border-radius: 10px; padding: 8px 14px; flex-shrink: 0;
}
.bank-icon svg { width: 100%; height: 100%; object-fit: contain; }
.bank-number { font-family: 'Lato', sans-serif; font-size: 26px; font-weight: 700; color: var(--gold-light); letter-spacing: 0.05em; margin-bottom: 6px; cursor: pointer; transition: opacity 0.2s; }
.bank-number:hover { opacity: 0.75; }
.bank-type { font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.copy-btn {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.6); padding: 6px 12px; border-radius: 8px;
  font-size: 11px; cursor: pointer; font-family: 'Lato', sans-serif;
  font-weight: 700; letter-spacing: 0.1em; transition: all 0.2s;
}
.copy-btn:hover { background: var(--gold); color: var(--text-dark); border-color: var(--gold); }
.donation-note { text-align: center; font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 8px; font-style: italic; }
.nit-info {
  text-align: center; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm); padding: 20px; font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.05em;
}
.nit-info strong { color: rgba(255,255,255,0.8); }

/* ── CONTACTO ── */
#contacto { background: var(--ivory); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--sky), var(--mint)); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-info h4 { font-family: 'Cinzel', serif; font-size: 14px; font-weight: 600; color: var(--text-dark); margin-bottom: 4px; }
.contact-info p, .contact-info a { font-size: 14px; color: var(--text-soft); text-decoration: none; transition: color 0.2s; line-height: 1.6; }
.contact-info a:hover { color: var(--gold); }
.social-links { display: flex; gap: 14px; margin-top: 8px; }
.social-link {
  display: flex; align-items: center; gap: 8px; background: white;
  border: 1px solid rgba(200,168,75,0.25); border-radius: 50px; padding: 10px 20px;
  text-decoration: none; color: var(--text-mid); font-size: 13px; font-weight: 700; transition: all 0.3s;
}
.social-link:hover { background: var(--gold); color: white; border-color: var(--gold); }
.contact-map-wrap { border-radius: var(--radius); overflow: hidden; }
.contact-map-wrap iframe { display: block; }

/* ── FOOTER ── */
footer { background: #2C2440; color: rgba(255,255,255,0.5); text-align: center; padding: 36px 5vw; font-size: 13px; line-height: 1.8; }
footer strong { color: var(--gold-light); }

/* ── FLOATING BUTTONS ── */
.fab-stack { position: fixed; right: 24px; bottom: 24px; z-index: 200; display: flex; flex-direction: column; gap: 14px; align-items: center; }
.fab { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; text-decoration: none; box-shadow: 0 6px 24px rgba(44,36,64,0.25); transition: transform 0.3s, box-shadow 0.3s, opacity 0.3s, visibility 0.3s; }
.fab:hover { transform: translateY(-3px) scale(1.06); box-shadow: 0 10px 32px rgba(44,36,64,0.32); }
.fab svg { width: 26px; height: 26px; }
.fab-whatsapp { background: #25D366; }
.fab-whatsapp svg { fill: white; width: 28px; height: 28px; }
.fab-scrollup { background: linear-gradient(135deg, var(--gold), var(--gold-light)); opacity: 0; visibility: hidden; transform: translateY(10px); }
.fab-scrollup.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.fab-scrollup svg { stroke: #2C2440; }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav ul { display: none; }
  .carisma-slide { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .carisma-info { padding: 32px 24px; }
  .fab-stack { right: 16px; bottom: 16px; }
  .fab { width: 48px; height: 48px; }
}
@media (prefers-reduced-motion: reduce) {
  .halo { animation: none; }
  .reveal { transition: none; }
}
