/* Es lo que AI — estilos propios */

:root {
  --rojo: #c0392b;
  --dorado: #f39c12;
  --fondo: #0f0303;
  --fondo2: #1a0505;
}

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

body {
  background: var(--fondo);
  color: #fff;
  font-family: 'Inter', sans-serif;
  margin: 0;
  overflow: hidden;
}

#main-nav {
  background: rgba(10, 2, 2, 0.85);
  backdrop-filter: blur(8px);
  z-index: 1030;
}

.mobile-nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  transition: color .2s;
}
.mobile-nav-link:hover { color: var(--dorado); }

#mobile-menu.show { display: flex !important; }

/* Scroll container */
#scroll-container {
  height: 100svh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  scroll-padding-top: 56px;
}

.snap-section {
  height: 100svh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  overflow: hidden;
}

/* Dots nav */
#dots-nav {
  position: fixed;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1020;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5a1a1a;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.dot.active {
  background: var(--dorado);
  transform: scale(1.3);
}

/* Hero section */
.hero-section {
  background: linear-gradient(180deg, #1a0505 0%, #3d0b0b 50%, #1a0505 100%);
  gap: 1.25rem;
  text-align: center;
  padding: 1rem 1.5rem 4rem;
}

.hero-cover {
  width: min(340px, 70vw);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 16px 64px rgba(0,0,0,.7);
}

.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  line-height: 1;
}

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  color: var(--dorado);
  letter-spacing: 4px;
  margin: 0;
}

.scroll-arrow {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  opacity: .5;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Quiénes somos section */
.quienes-section {
  background: var(--fondo);
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  overflow-y: auto;
}

.quienes-dialogo {
  font-style: italic;
  color: #fff;
  padding-left: 1.25rem;
  border-left: 3px solid var(--rojo);
  margin: .25rem 0 1rem;
  line-height: 2;
}

.section-inner {
  max-width: 560px;
  width: 100%;
  padding-right: 2rem;
}

.section-line {
  width: 48px;
  height: 4px;
  background: var(--rojo);
  margin-bottom: 1.25rem;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.quienes-text {
  color: #aaa;
  font-size: clamp(.9rem, 2.5vw, 1rem);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.quienes-text strong { color: var(--dorado); font-weight: 600; }
.quienes-text em     { color: #fff; font-style: normal; }

.quienes-label {
  font-size: .7rem;
  color: var(--rojo);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: .5rem;
  margin-bottom: 0;
}

/* Singles section */
.singles-section {
  background: linear-gradient(180deg, var(--fondo2) 0%, var(--fondo) 100%);
  align-items: flex-start;
  justify-content: flex-start;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  overflow-y: auto;
}

.single-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.single-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0,0,0,.5);
}

.single-name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
.single-artist {
  font-size: .8rem;
  color: #888;
  margin: 0;
}

.platform-btns {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  width: 100%;
  max-width: 320px;
}

.platform-btn {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.25rem;
  border-radius: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  color: #fff;
  transition: opacity .2s, transform .2s;
}
.platform-btn:hover { opacity: .85; transform: translateX(4px); color: #fff; }

.platform-icon { width: 22px; height: 22px; flex-shrink: 0; }

.platform-btn.spotify       { background: #1db954; }
.platform-btn.apple         { background: #fc3c44; }
.platform-btn.itunes        { background: #fc3c44; opacity: .85; }
.platform-btn.youtube       { background: #ff0000; }
.platform-btn.amazon-music  { background: #00a8e1; }
.platform-btn.youtube-music { background: #212121; }
.platform-btn.deezer        { background: #a238ff; }

.video-embed {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (min-width: 768px) {
  .platform-btns { flex-direction: row; max-width: 100%; flex-wrap: wrap; gap: .75rem; }
  .platform-btn  { flex: 0 0 calc(33.333% - .5rem); justify-content: center; }
}

/* Merch section */
.merch-section {
  background: var(--fondo);
}

.merch-toro {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 12px rgba(192,57,43,.4));
}

.merch-soon {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--dorado);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin: 1rem 0 .5rem;
}

.merch-sub {
  color: #666;
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.merch-btn {
  background: #3a1010;
  color: #555 !important;
  cursor: not-allowed;
  pointer-events: none;
  border: 1px solid #5a1a1a;
  letter-spacing: 3px;
  font-size: .85rem;
  display: inline-flex;
  justify-content: center;
  max-width: 200px;
  margin: 0 auto;
}

.merch-section .section-line {
  margin-bottom: 1.25rem;
}

.merch-section .section-title {
  margin-bottom: 0;
}

/* Polish final */

/* Dots hidden on very small screens */
@media (max-width: 360px) {
  #dots-nav { display: none; }
}

/* Desktop nav links */
#main-nav .nav-link {
  font-family: 'Oswald', sans-serif;
  letter-spacing: 1px;
  font-size: .85rem;
  text-transform: uppercase;
  opacity: .75;
  transition: opacity .2s;
}
#main-nav .nav-link:hover { opacity: 1; }

/* Smooth scroll fallback */
html { scroll-behavior: smooth; }

/* Text selection color */
::selection { background: var(--rojo); color: #fff; }
