:root {
  --bg:#FFFFFF;
  --fg:#0D0D0D;
  --muted:#555555;
  --brand:#D4AF37;
  --card:#F9F9F9;
  --line:#E2E2E2;
  --radius:18px;
}

* { box-sizing:border-box }
html,body { margin:0; padding:0; background:var(--bg); color:var(--fg); font-family:Inter,system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif }
a { color:inherit; text-decoration:none }

.container { max-width:1200px; margin:0 auto; padding:0 20px }

header { position:sticky; top:0; z-index:40; background:rgba(255,255,255,.9); backdrop-filter:saturate(140%) blur(10px); border-bottom:1px solid var(--line) }
.nav { display:flex; align-items:center; justify-content:space-between; height:70px }
.logo { display:flex; align-items:center; gap:12px; font-weight:800; letter-spacing:.5px; color:var(--brand) }
.menu { display:flex; gap:22px }
.menu a { color:var(--fg); font-weight:600 }
.menu a:hover { color:var(--brand) }

.hero { display:grid; grid-template-columns:1.2fr .8fr; gap:28px; align-items:center; padding:56px 0 }
.hero .title { font-size:clamp(34px,6vw,58px); line-height:1.05; margin:0 0 10px; font-weight:800 }
.hero .title span { color:var(--brand) }
.hero .subtitle { color:var(--muted); font-size:clamp(15px,2.2vw,18px) }
.hero .actions { display:flex; gap:12px; margin-top:22px }
.btn { background:var(--brand); color:#fff; padding:12px 18px; border-radius:12px; font-weight:700; border:none; cursor:pointer; display:inline-block }
.btn.secondary { background:transparent; color:var(--brand); border:1px solid var(--brand) }
.hero-card { background:var(--card); border:1px solid var(--line); border-radius:var(--radius); padding:18px }
.tag { display:inline-block; font-size:12px; padding:6px 10px; border:1px solid var(--brand); border-radius:999px; color:var(--brand) }

.section { padding:36px 0 }
.grid { display:grid; gap:16px }
.grid.cols-3 { grid-template-columns:repeat(3,1fr) }
@media (max-width:900px){
  .hero{grid-template-columns:1fr}
  .grid.cols-3{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .grid.cols-3{grid-template-columns:1fr}
  .menu{display:none}
}

footer { border-top:1px solid var(--line); padding:30px 0; color:var(--muted); background:var(--card) }
.cols { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:16px }
@media (max-width:900px){.cols{grid-template-columns:1fr 1fr}}

/* --- Carrusel Spotify --- */
.spotify-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

.spotify-tracklist {
  display: flex;
  gap: 20px;
  scroll-behavior: smooth;
  overflow-x: hidden; /* ocultamos scroll manual */
  padding: 0;
  margin: 0;
}

.spotify-item { flex: 0 0 auto }
.spotify-item iframe {
  width: 300px;
  height: 380px;
  border: none;
  border-radius: 12px;
  display: block;
}

/* Botones carrusel */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0.9;
  transition: background 0.2s, transform 0.2s;
}
.carousel-btn:hover {
  background: #b8902d;
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn.left { left: 10px }
.carousel-btn.right { right: 10px }

/* Botón flotante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366; /* color oficial WhatsApp */
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background: #20ba5a; /* un poco más oscuro al hover */
}

/* --- Carrusel de eventos (imágenes) --- */
.event-carousel {
  overflow: hidden;
  width: 100%;
  margin-top: 20px;
}

.event-track {
  display: flex;
  gap: 20px;
  transform: translateX(0);
  will-change: transform;
}

.event-item {
  flex: 0 0 auto;
  width: 500px;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.event-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

@media (max-width:900px) {
  .event-item { width: 400px; height: 280px; }
}

@media (max-width:560px) {
  .event-item { width: 300px; height: 200px; }
}

