:root {
  --bg-0: #16081e;
  --bg-1: #210a2c;
  --bg-2: #2a0f38;
  --primary: #4c1d6b;
  --violet: #7c3aed;
  --gold: #f59e0b;
  --gold-hover: #d97706;
  --text: #ffffff;
  --text-soft: #f3e8ff;
  --muted: #d8b4fe;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(216, 180, 254, 0.28);
  --whatsapp: #25d366;
  --radius: 1.15rem;
  --font-brand: "Oswald", system-ui, sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --header-h: 72px;
  --max: 1120px;
}

*, *::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);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(124, 58, 237, 0.28), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(76, 29, 107, 0.55), transparent 50%),
    linear-gradient(180deg, var(--bg-0), var(--bg-1) 40%, #140617);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-h);
  background: rgba(22, 8, 30, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(216, 180, 254, 0.12);
}

.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: grid;
  place-items: center;
  padding: 6px;
  overflow: visible;
  border-radius: 12px;
  background: linear-gradient(160deg, #4c1d6b, #210a2c 55%, #16081e);
  border: 1px solid rgba(167, 139, 250, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.brand-icon img {
  width: 32px;
  height: 42px;
  object-fit: contain;
  overflow: visible;
}

.brand-text { display: flex; flex-direction: column; min-width: 0; }
.brand-name {
  font-family: var(--font-brand);
  font-weight: 300;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
  line-height: 1.1;
  white-space: nowrap;
}
.brand-name strong { font-weight: 700; }
.brand-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.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; }

.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-gold { background: var(--gold); color: #1f0c2a; }
.btn-gold:hover { background: var(--gold-hover); }
.btn-whatsapp { background: var(--whatsapp); color: #052e16; }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--glass-border);
}

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

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

.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;
}

.hero h1 {
  font-family: var(--font-brand);
  font-size: clamp(2.15rem, 8vw, 4.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 0.85rem;
}

.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 {
  width: min(260px, 70vw);
  margin-inline: auto;
  overflow: visible;
  padding: 0.35rem 0.45rem 1rem;
  filter: drop-shadow(0 18px 40px rgba(124, 58, 237, 0.35));
}
.hero-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.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.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}
.section-head h2 {
  font-family: var(--font-brand);
  font-size: clamp(1.7rem, 5vw, 2.4rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.35rem;
}
.section-head p { color: var(--text-soft); }

.hub-grid {
  display: grid;
  gap: 0.85rem;
}

.hub-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.85rem;
  align-items: start;
  padding: 1.05rem 1.1rem;
  min-height: 48px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.55);
  background: rgba(255, 255, 255, 0.1);
}
.hub-icon {
  grid-row: 1 / span 3;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
}
.hub-icon svg { width: 22px; height: 22px; }
.hub-ig { background: #c026d3; }
.hub-yt { background: #dc2626; }
.hub-fb { background: #2563eb; }
.hub-wa { background: #16a34a; }
.hub-radio { background: var(--primary); }
.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(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}
.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);
}

.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:
    radial-gradient(900px 280px at 100% 0%, rgba(245, 158, 11, 0.18), transparent 55%),
    linear-gradient(165deg, #2a0f38 0%, #210a2c 55%, #16081e 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 12px 36px rgba(22, 8, 30, 0.35);
}
.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);
}

.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 6.5rem;
  border-top: 1px solid rgba(216, 180, 254, 0.12);
}
.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;
}

.btn-whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #052e16;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.btn-whatsapp-float svg { width: 30px; height: 30px; }
.wa-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-0);
}

@keyframes wa-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@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; }
  .hub-grid { grid-template-columns: 1fr 1fr; }
  .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(5, 1fr); }
  .hub-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hub-icon { grid-row: auto; margin-bottom: 0.6rem; }
}
