
:root {
  --bg: #fbf7fb;
  --bg-soft: #fffafd;
  --text: #2f2132;
  --muted: #6d5d70;
  --primary: #7f34a5;
  --primary-dark: #5d1f7f;
  --accent: #d9ba7d;
  --accent-strong: #c89a3e;
  --line: rgba(127, 52, 165, 0.14);
  --card: rgba(255,255,255,0.82);
  --shadow: 0 16px 48px rgba(95, 31, 127, 0.13);
  --radius-xl: 30px;
  --radius-lg: 22px;
}
* { 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(127,52,165,0.06), transparent 25%),
    linear-gradient(180deg, #ffffff, var(--bg));
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: -60px;
  left: 10px;
  background: #fff;
  padding: 10px 16px;
  z-index: 999;
  border-radius: 12px;
}
.skip-link:focus { top: 10px; }

.hero {
  min-height: 100vh;
  position: relative;
  color: #fff;
  background:
    linear-gradient(118deg, rgba(47,19,57,0.86), rgba(94,31,127,0.64) 42%, rgba(246,203,220,0.26)),
    url('assets/portada.png') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 10, 35, 0.48), rgba(27, 10, 35, 0.08));
}
.topbar, .hero-content { position: relative; z-index: 2; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}
.brand strong {
  display: block;
  font-size: 1.1rem;
}
.brand span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 14px;
}
.nav-shell {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.nav-links a, .lang-btn {
  border-radius: 999px;
  padding: 11px 15px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  color: #fff;
}
.lang-switch { display: flex; gap: 8px; }
.lang-btn { cursor: pointer; }
.lang-btn.active {
  background: linear-gradient(135deg, var(--accent), #eacb90);
  color: #3d2a0d;
  border-color: transparent;
  font-weight: 700;
}
.hero-content {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 94px);
  padding: 40px 0 76px;
}
.hero-copy { max-width: 740px; }
.glass {
  background: rgba(39, 15, 52, 0.43);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 32px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  padding: 34px;
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 800;
  color: var(--primary);
}
.eyebrow.light, .hero .eyebrow { color: #f6d89a; }
.hero h1, .section-heading h2, .featured-band h2, .contact-section h2 {
  font-family: 'Cormorant Garamond', serif;
  line-height: .94;
}
.hero h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 0;
  text-wrap: balance;
}
.lead {
  font-size: 1.12rem;
  line-height: 1.8;
  max-width: 680px;
  color: rgba(255,255,255,0.95);
  margin: 20px 0 0;
}
.hero-badges, .pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-badges { margin: 28px 0 30px; }
.hero-badges span, .pill-grid span {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.12);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #f0d9a7);
  color: #3f3014;
  box-shadow: 0 16px 32px rgba(216,179,106,.28);
}
.btn-secondary {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}
section { padding: 92px 0; }
.section-heading { margin-bottom: 28px; }
.section-copy {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.8;
}
.section-heading h2, .featured-band h2, .contact-section h2 {
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  margin: 0;
  color: var(--primary-dark);
}
.soft-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card { padding: 30px; }
.card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-dark);
}
.card p, .contact-copy { color: var(--muted); line-height: 1.85; }
.featured-band {
  background: linear-gradient(135deg, var(--primary-dark), #8740b0 55%, #d495b1);
  color: #fff;
}
.featured-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 34px;
  align-items: center;
}
.featured-band h2 { color: #fff; margin-bottom: 12px; }
.featured-band p { line-height: 1.8; color: rgba(255,255,255,.94); }
.gallery-section {
  background: linear-gradient(180deg, rgba(127,52,165,0.04), rgba(255,255,255,0.8));
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item {
  padding: 0;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery-item:hover, .social-card:hover { transform: translateY(-4px); }
.gallery-item img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.social-icon {
  width: 58px;
  height: 58px;
  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; line-height: 1.75; color: var(--muted); }
.video-wrapper {
  padding: 16px;
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  min-height: 560px;
  border: 0;
  border-radius: 22px;
}
.contact-section {
  background: linear-gradient(180deg, rgba(217,186,125,0.1), rgba(255,255,255,0));
}
.contact-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: start;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.contact-form { padding: 28px; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: var(--primary-dark);
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(93,31,127,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.92);
  color: var(--text);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}
input:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(127,52,165,0.1);
}
.form-note {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.7;
}
.site-footer {
  background: #2f1738;
  color: rgba(255,255,255,.88);
  padding: 30px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-content p { margin: 0; line-height: 1.8; }
.footer-content a { color: #f0d59b; }
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(18, 9, 23, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1000;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: min(100%, 1050px);
  max-height: 86vh;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.whatsapp-float-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
}
.whatsapp-float {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  padding: 14px 18px;
  box-shadow: 0 14px 34px rgba(37,211,102,0.34);
  font-weight: 800;
}
.whatsapp-float svg { width: 22px; height: 22px; }
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 980px) {
  .intro-grid, .social-grid, .gallery-grid, .featured-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .video-wrapper iframe { min-height: 420px; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-grid; place-items: center; }
  .nav-shell {
    position: fixed;
    top: 82px;
    left: 16px;
    right: 16px;
    background: rgba(45,17,59,0.96);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 18px 44px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-shell.active { display: flex; }
  .nav-links { flex-direction: column; }
  .lang-switch { justify-content: center; }
  .hero { min-height: auto; }
  .hero-content { min-height: auto; padding-top: 24px; }
  .glass { padding: 26px; }
  section { padding: 74px 0; }
  .intro-grid, .social-grid, .gallery-grid, .featured-grid, .contact-grid, .field-row { grid-template-columns: 1fr; }
  .video-wrapper iframe { min-height: 300px; }
  .footer-content { flex-direction: column; }
}
