:root {
  /* --- 1. BÓVEDA CELESTE Y NOCHE ANDINA (Cielo y Toldo del Templo) --- */
  --sky-night: #060b1c;
  --sky-navy: #0a172e;
  --sky-cobalt: #0e203f;
  --sky-card: rgba(10, 23, 46, 0.72);

  /* --- 2. EL RESPLANDOR SAGRADO (Morado del Logo y Crepúsculo) --- */
  --purple-brand-dark: #180824;
  --purple-brand: #38114f;
  --twilight-violet: #6b21a8;
  --twilight-glow: #9333ea;

  /* --- 3. EL FUEGO Y LA GLORIA (Oro de la Llama y Luces de Santiago) --- */
  --gold-highlight: #fffbeb;
  --gold-light: #fde68a;
  --gold-main: #f59e0b;
  --gold-deep: #d97706;
  --gold-shadow: #92400e;
  --gold-border: rgba(245, 158, 11, 0.35);

  /* --- 4. LA TIERRA Y EL TEMPLO (Día, Lino y Acogida Fraternal) --- */
  --earth-cream: #fbf8f2;
  --earth-dark: #14081c;
  --text-main: #ffffff;
  --text-soft: #f8fafc;
  --text-muted: #cbd5e1;

  /* --- 5. TIPOGRAFÍAS OFICIALES --- */
  --font-serif-brand: "Cinzel", serif;
  --font-script: "Great Vibes", cursive;
  --font-display: "Montserrat", sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --font-brand: var(--font-serif-brand);

  --header-h: 72px;
  --max: 1120px;
  --radius: 1.15rem;

  /* Aliases de compatibilidad con reglas existentes */
  --bg-0: var(--sky-night);
  --bg-1: var(--sky-navy);
  --bg-2: var(--sky-cobalt);
  --primary: var(--purple-brand);
  --violet: var(--twilight-glow);
  --gold: var(--gold-main);
  --gold-hover: var(--gold-deep);
  --text: var(--text-main);
  --muted: var(--text-muted);
  --glass: var(--sky-card);
  --glass-border: var(--gold-border);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background:
    /* Resplandor morado andino más concentrado en la parte superior */
    radial-gradient(900px 360px at 70% 8%, rgba(107, 33, 168, 0.38), transparent 60%),
    /* Emergencia temprana del azul iglesia */
    radial-gradient(1100px 650px at 25% 22%, rgba(14, 39, 82, 0.65), transparent 65%),
    /* Gradiente vertical: Negro reducido (0-3%) -> Morado reducido (6-14%) -> Rápido al Azul (24%+) */
    linear-gradient(180deg,
      #020104 0%,          /* 1. Negro cósmico (la mitad) */
      #08030d 3%,
      #250833 6%,          /* 2. Morado ciruela (la mitad) */
      #4c1d6b 10%,         /*    Morado andino */
      #35124e 14%,
      #17193b 19%,         /* Transición rápida */
      #0e2247 24%,         /* 3. Azul de la iglesia dominante */
      #0a1833 45%,         /*    Azul marino profundo del templo */
      #071328 70%,
      #050c1a 88%,
      #02060d 100%
    );
  min-height: 100vh;
  line-height: 1.55;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Textura sutil de estrellas inspirada en el mural del altar */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(1px 1px at 35px 45px, #ffffff, transparent),
    radial-gradient(1px 1px at 120px 240px, rgba(253, 230, 138, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 260px 80px, #ffffff, transparent),
    radial-gradient(1px 1px at 340px 360px, rgba(254, 240, 138, 0.8), transparent),
    radial-gradient(2px 2px at 80px 480px, #ffffff, transparent),
    radial-gradient(1px 1px at 460px 160px, #ffffff, transparent),
    radial-gradient(1.5px 1.5px at 580px 410px, rgba(253, 230, 138, 0.9), transparent),
    radial-gradient(1px 1px at 720px 110px, #ffffff, transparent),
    radial-gradient(2px 2px at 840px 320px, #ffffff, transparent),
    radial-gradient(1px 1px at 940px 490px, rgba(254, 240, 138, 0.8), transparent);
  background-size: 520px 520px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.container {
  width: min(100% - 1.5rem, var(--max));
  margin-inline: auto;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  background: rgba(6, 11, 28, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(107, 33, 168, 0.28);
}

.site-header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  border-radius: 12px;
  background: linear-gradient(160deg, #38114f, #1e0929 55%, #14061a);
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  max-width: 34px;
  max-height: 34px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(245, 158, 11, 0.35));
}

.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--font-serif-brand);
  font-weight: 600;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-name strong { font-weight: 800; }
.brand-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.pastoral-tagline {
  margin-top: 0.28rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.ig-chip {
  display: none;
  align-items: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  font-size: 0.82rem;
  font-weight: 700;
}
.ig-chip svg { width: 16px; height: 16px; }

.fb-chip {
  display: none;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.12);
  border: 1px solid rgba(24, 119, 242, 0.4);
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.fb-chip svg {
  width: 16px;
  height: 16px;
  color: #3b82f6;
}
.fb-chip:hover {
  background: rgba(24, 119, 242, 0.24);
  border-color: rgba(24, 119, 242, 0.7);
  color: #ffffff;
}
@media (min-width: 640px) {
  .fb-chip { display: inline-flex; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { min-height: 52px; padding: 0.85rem 1.2rem; width: 100%; }
.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
  min-height: 40px;
}
.btn-gold {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #16081e;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.28);
}
.btn-gold:hover { background: linear-gradient(135deg, #fbbf24, #d97706); }
.btn-ghost {
  background: rgba(10, 23, 46, 0.7);
  color: #fde68a;
  border-color: rgba(245, 158, 11, 0.45);
}

/* Botón recatado de Diezmos y Ofrendas en tonos rosa suave y corazón */
.btn-rose-subtle {
  background: rgba(244, 114, 182, 0.08);
  color: #fbcfe8;
  border: 1px solid rgba(244, 114, 182, 0.32);
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.btn-rose-subtle:hover {
  background: rgba(244, 114, 182, 0.18);
  border-color: rgba(244, 114, 182, 0.6);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 114, 182, 0.15);
}
.heart-pulse {
  color: #f472b6;
  font-size: 1.15rem;
  line-height: 1;
  display: inline-block;
}

.hero {
  padding: 2.2rem 0 2.8rem;
}

/* Sección Días de Culto */
.section-cultos {
  padding: 2.5rem 0 3.5rem;
}
.cultos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cultos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.culto-card {
  position: relative;
  background: var(--sky-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.culto-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}
.culto-card-highlight {
  border-color: rgba(245, 158, 11, 0.5);
  background: linear-gradient(170deg, rgba(14, 32, 63, 0.95), rgba(10, 23, 46, 0.88));
}
.culto-badge {
  position: absolute;
  top: -10px;
  right: 18px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #16081e;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}
.culto-day-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}
.culto-icon {
  font-size: 1.7rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
}
.culto-card h3 {
  font-family: var(--font-serif-brand);
  font-size: 1.25rem;
  color: #ffffff;
  margin: 0;
}
.culto-time {
  color: var(--gold-main);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 0.1rem;
}
.culto-name {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.culto-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.45;
}
.cultos-bar {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.4rem;
  background: rgba(10, 23, 46, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
}
.cultos-bar-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.cultos-pin {
  font-size: 1rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.hero-anniversary-banner {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.1rem;
  background: rgba(10, 23, 46, 0.72);
  border: 1px solid rgba(245, 158, 11, 0.45);
  border-radius: 999px;
  font-size: 0.85rem;
  color: #fde68a;
  backdrop-filter: blur(12px);
}
.anniversary-pill {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #16081e;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  letter-spacing: 0.08em;
}
.hero-anniversary-banner .font-script {
  font-size: 1.15rem;
  color: #fef08a;
}
@media (max-width: 719px) {
  .hero-anniversary-banner {
    border-radius: 1.15rem;
    align-items: flex-start;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fde68a;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.eyebrow, .section-kicker, .badge, .bank-label {
  font-family: var(--font-display);
  letter-spacing: 0.14em;
}

.hero h1 {
  font-family: var(--font-serif-brand);
  font-size: clamp(2.15rem, 8vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 0.85rem;
  text-shadow: 0 4px 20px rgba(245, 158, 11, 0.2);
}

.lede {
  color: var(--text-soft);
  font-size: 1.05rem;
  max-width: 38rem;
  margin-bottom: 1.4rem;
}

.hero-cta {
  display: grid;
  gap: 0.7rem;
}

.hero-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 70vw);
  margin-inline: auto;
}
.hero-mark img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 35px rgba(245, 158, 11, 0.25)) drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.section { padding: 2.4rem 0 3rem; }

.section-head {
  text-align: center;
  margin-bottom: 1.5rem;
}
.section-head-left { text-align: left; }
.section-kicker {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}
.section-head h2 {
  font-family: var(--font-serif-brand);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}
.section-head p { color: var(--text-soft); }
.font-script {
  font-family: var(--font-script);
  font-weight: 400;
  font-style: normal;
}
.anniversary-script {
  font-family: var(--font-script);
  font-size: 1.85rem;
  color: #fde68a;
  line-height: 1.2;
  display: block;
  margin-top: 0.25rem;
}
.section-verse {
  font-family: var(--font-script);
  font-size: 1.35rem;
  color: #d8b4fe;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0.55rem auto 0;
  max-width: 40rem;
}

.hub-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr 1fr;
}

.hub-card {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 1.05rem 1.1rem;
  min-height: 48px;
  border-radius: var(--radius);
  background: var(--sky-card);
  border: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.65);
  box-shadow: 0 12px 32px rgba(107, 33, 168, 0.25), 0 4px 14px rgba(245, 158, 11, 0.18);
}
.hub-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.6rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.hub-icon svg { width: 22px; height: 22px; }
.hub-ig { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.hub-yt { background: #dc2626; }
.hub-fb { background: #1877f2; }
.hub-ofrendas {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1f0c2a;
}
.hub-card-ofrendas .hub-ofrendas {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #1f0c2a;
}
.hub-card-primary {
  border-color: rgba(59, 130, 246, 0.42);
}
.hub-badge-pioneer {
  display: inline-flex;
  align-self: start;
  padding: 0.18rem 0.55rem;
  margin-bottom: 0.35rem;
  border-radius: 999px;
  background: rgba(24, 119, 242, 0.18);
  border: 1px solid rgba(59, 130, 246, 0.45);
  color: #93c5fd;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hub-card-ofrendas-recatada .hub-heart {
  background: linear-gradient(135deg, #ec4899, #db2777);
  color: #ffffff;
}
.hub-card-ofrendas-recatada:hover {
  border-color: rgba(244, 114, 182, 0.5);
  box-shadow: 0 12px 30px rgba(236, 72, 153, 0.15);
}
.text-rose {
  color: #f472b6 !important;
}
.hub-card-ig-compact {
  opacity: 0.88;
}
.hub-card-ig-compact:hover {
  opacity: 1;
}
.hub-card h3 { font-size: 1.05rem; }
.hub-handle { color: var(--muted); font-size: 0.82rem; font-weight: 700; }
.hub-card p:last-child { color: var(--text-soft); font-size: 0.9rem; }

.feed-grid {
  display: grid;
  gap: 0.9rem;
}

.feed-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--sky-card);
  border: 1px solid rgba(245, 158, 11, 0.22);
  backdrop-filter: blur(12px);
}
.feed-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #2a0f38;
}
.feed-body { padding: 1rem 1.05rem 1.15rem; }
.feed-meta {
  display: inline-flex;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 0.4rem;
}
.feed-card h3 { font-size: 1.08rem; margin-bottom: 0.35rem; }
.feed-card p { color: var(--text-soft); font-size: 0.92rem; margin-bottom: 0.9rem; }
.feed-loading, .feed-error { text-align: center; color: var(--muted); }
.feed-card-birthday {
  border-color: rgba(245, 158, 11, 0.45);
}
.feed-card-anniversary {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid rgba(245, 158, 11, 0.55);
  box-shadow: 0 12px 34px rgba(107, 33, 168, 0.22), 0 8px 22px rgba(245, 158, 11, 0.18);
}
.feed-card-anniversary img {
  width: 100%;
  height: auto;
  max-height: 480px;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: rgba(14, 32, 63, 0.7);
}

/* ==========================================================================
   Sección: Nuestros Ministerios (Rescatada de Staging 1 y Reestilizada)
   ========================================================================== */
.section-ministerios {
  padding: 3rem 0;
}
.ministries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) {
  .ministries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ministries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ministry-card {
  background: var(--sky-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.ministry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
.ministry-header {
  padding: 1.5rem 1.4rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ministry-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(107, 33, 168, 0.25);
  border: 1px solid rgba(107, 33, 168, 0.45);
  color: #c084fc;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.ministry-icon.accent-icon {
  background: rgba(245, 158, 11, 0.15);
  border-color: rgba(245, 158, 11, 0.35);
  color: var(--gold-main);
}
.ministry-icon svg {
  width: 24px;
  height: 24px;
}
.ministry-title {
  font-family: var(--font-serif-brand);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}
.ministry-badge {
  display: block;
  font-size: 0.75rem;
  color: var(--gold-main);
  font-weight: 600;
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.ministry-body {
  padding: 0 1.4rem 1.4rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.1rem;
}
.ministry-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.55;
}
.ministry-schedule {
  font-size: 0.82rem;
  font-weight: 600;
  color: #93c5fd;
  background: rgba(14, 34, 71, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
}
.ministry-schedule svg {
  color: #60a5fa;
  flex-shrink: 0;
}

.section-birthday { padding-top: 0.4rem; }
.birthday-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem 1.2rem 1.5rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background: linear-gradient(135deg, rgba(56, 17, 79, 0.82), rgba(10, 23, 46, 0.88));
  border: 1px solid rgba(245, 158, 11, 0.45);
  box-shadow: 0 12px 36px rgba(6, 11, 28, 0.4), 0 0 18px rgba(245, 158, 11, 0.12);
}
.birthday-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(251, 191, 36, 0.45);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.birthday-title {
  font-family: var(--font-brand);
  font-size: clamp(1.55rem, 5vw, 2.15rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.birthday-verse {
  font-style: italic;
  color: #d8b4fe;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  max-width: 46rem;
}
.birthday-text {
  color: var(--text-soft);
  margin-bottom: 1.15rem;
  max-width: 46rem;
}
.birthday-actions { display: grid; gap: 0.65rem; }
.btn-birthday {
  background: var(--gold);
  color: #1f0c2a;
  min-height: 48px;
  width: 100%;
}
.btn-birthday:hover {
  background: #fbbf24;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.22);
}

.section-donaciones { padding-top: 0.6rem; }
.donation-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: linear-gradient(150deg, #0a172e, #140d28 65%, #1c0a2a);
  border: 1px solid rgba(245, 158, 11, 0.42);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45), 0 0 20px rgba(245, 158, 11, 0.1);
}
.donation-header { margin-bottom: 1.15rem; }
.donation-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.28rem 0.8rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde68a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.donation-lead {
  color: var(--text-soft);
  font-size: 0.95rem;
}
.bank-details-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}
.bank-item {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(216, 180, 254, 0.12);
}
.bank-item-highlight {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.07);
}
.bank-item-full { grid-column: 1 / -1; }
.bank-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fde68a;
  margin-bottom: 0.35rem;
}
.bank-value {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  word-break: break-word;
}
.text-muted-confirm {
  color: #fde68a;
  font-style: italic;
  font-weight: 500;
}
.donation-note {
  margin-bottom: 0.75rem;
}
.copyable-field {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}
.btn-copy {
  min-height: 40px;
  padding: 0.4rem 0.75rem;
  flex: 0 0 auto;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fde68a;
  font-size: 0.82rem;
}
.btn-copy:hover {
  background: rgba(245, 158, 11, 0.32);
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.18);
}
.btn-copy.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(74, 222, 128, 0.55);
  color: #bbf7d0;
}
.donation-footer {
  margin-top: 1.15rem;
  color: var(--text-soft);
  font-size: 0.92rem;
}

#ubicacion {
  background: transparent;
}
.location-grid { display: grid; gap: 1.4rem; }
.schedule-list {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  margin: 1rem 0 1.2rem;
}
.schedule-list li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
}
.schedule-list span { color: var(--text-soft); }
.map-actions { display: grid; gap: 0.65rem; }
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  min-height: 260px;
}
.map-embed iframe { width: 100%; height: 280px; border: 0; }

.site-footer {
  padding: 2rem 0 2.4rem;
  background: #14081c;
  border-top: 1px solid rgba(245, 158, 11, 0.18);
}
.footer-row, .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer-brand { display: flex; gap: 0.75rem; align-items: center; }
.footer-social { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.footer-social a { min-height: 48px; display: inline-flex; align-items: center; color: var(--muted); font-weight: 700; }
.footer-bottom { color: var(--muted); font-size: 0.85rem; padding-top: 1rem; }
.vx1-seal {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}
.vx1-seal:hover {
  color: #f1f5f9;
  opacity: 1;
  text-decoration: underline;
}

@media (min-width: 600px) {
  .bank-details-grid { grid-template-columns: 1fr 1fr; }
  .donation-card { padding: 2rem; }
}

@media (min-width: 720px) {
  .ig-chip { display: inline-flex; }
  .btn-lg { width: auto; }
  .hero-cta, .map-actions { grid-template-columns: 1fr 1fr; }
  .btn-birthday { width: auto; }
  .birthday-card { padding: 1.8rem 1.8rem 1.9rem; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
  .footer-row, .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .hero { padding-top: 3.2rem; }
  .hero-grid { grid-template-columns: 1.3fr 0.7fr; }
}

@media (min-width: 980px) {
  .hub-grid { grid-template-columns: repeat(4, 1fr); }
  .hub-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hub-icon { grid-row: auto; margin-bottom: 0.6rem; }
}
