:root {
  --bg: #f6eff4;
  --bg-soft: #fff9fc;
  --text: #342534;
  --muted: #736371;
  --primary: #7d33a6;
  --primary-dark: #5a1f7c;
  --accent: #d8b36a;
  --accent-soft: #f1e2b5;
  --card: rgba(255,255,255,0.8);
  --border: rgba(125, 51, 166, 0.12);
  --shadow: 0 18px 50px rgba(92, 39, 116, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(125,51,166,0.08), transparent 30%),
    linear-gradient(180deg, #fff, var(--bg));
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1140px, calc(100% - 32px)); margin: 0 auto; }

.hero {
  min-height: 100vh;
  position: relative;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(43,17,56,0.86), rgba(87,35,103,0.68) 45%, rgba(222,166,190,0.30)),
    url('assets/portada.png') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25, 10, 31, 0.4), transparent 40%);
  pointer-events: none;
}
.topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}
.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 96px);
  padding: 28px 0 72px;
}
.hero-copy {
  max-width: 700px;
}
.glass {
  background: rgba(37, 14, 48, 0.38);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 18px 45px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 32px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--primary);
}
.eyebrow.light { color: #f8d99e; }
.hero .eyebrow { color: #f4d49c; }
.hero h1,
.section-heading h2,
.featured-band h2,
.contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.95;
}
.hero h1 {
  font-size: clamp(3.2rem, 8vw, 6rem);
  margin: 0;
  text-wrap: balance;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255,255,255,0.95);
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 30px;
}
.hero-badges span,
.pill-grid span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.95rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0d9a7);
  color: #3d2f1c;
  box-shadow: 0 16px 30px rgba(216,179,106,0.28);
}
.btn-secondary {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

section { padding: 88px 0; }
.section-heading { margin-bottom: 30px; }
.section-heading h2,
.featured-band h2,
.contact-section h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin: 0;
  color: var(--primary-dark);
}
.soft-card {
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card { padding: 28px; }
.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: var(--primary-dark);
}
.card p { line-height: 1.8; color: var(--muted); }

.featured-band {
  background: linear-gradient(135deg, var(--primary-dark), #8b43b1 65%, #c98eba);
  color: #fff;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}
.featured-band h2 { color: #fff; margin: 0 0 16px; }
.featured-band p { color: rgba(255,255,255,0.92); line-height: 1.8; }
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.social-card:hover,
.gallery-item:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(92, 39, 116, 0.18); }
.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  flex-shrink: 0;
}
.social-card h3 { margin: 0 0 8px; color: var(--primary-dark); }
.social-card p { margin: 0; color: var(--muted); line-height: 1.7; }

.gallery-section {
  background: linear-gradient(180deg, rgba(125,51,166,0.03), rgba(255,255,255,0.65));
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: none;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.video-wrapper {
  overflow: hidden;
  padding: 0;
}
.video-wrapper iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.contact-section {
  background: linear-gradient(180deg, #fff, #f8eff7);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.contact-list a {
  padding: 16px 18px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  font-weight: 600;
}
.contact-form {
  padding: 28px;
}
.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary-dark);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(125,51,166,0.18);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(125, 51, 166, 0.08);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 0;
}

.site-footer {
  background: #2b1836;
  color: rgba(255,255,255,0.8);
  padding: 26px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.site-footer a { color: #f5d69f; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #22c55e, #1ca14e);
  box-shadow: 0 18px 30px rgba(34,197,94,0.3);
}
.whatsapp-float svg { width: 33px; height: 33px; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 10, 30, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 120;
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: min(92vw, 920px);
  max-height: 84vh;
  border-radius: 20px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}

@media (max-width: 980px) {
  .intro-grid,
  .featured-grid,
  .social-grid,
  .contact-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .hero { min-height: auto; }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .nav-links { gap: 10px; }
  .hero-content { min-height: auto; padding-top: 18px; }
  .glass { padding: 24px; }
  .hero h1 { font-size: clamp(2.6rem, 14vw, 4.2rem); }
  section { padding: 70px 0; }
  .intro-grid,
  .featured-grid,
  .social-grid,
  .gallery-grid,
  .field-row {
    grid-template-columns: 1fr;
  }
  .section-heading h2,
  .featured-band h2,
  .contact-section h2 {
    font-size: clamp(2.1rem, 10vw, 3.2rem);
  }
  .footer-content { flex-direction: column; align-items: flex-start; }
}
