/* =====================================================
   DIGITAL DISCOS — Hoja de estilos principal
   ===================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- Fuente local: Gilroy Bold (para "Discos" en navbar y footer) --- */
@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* =====================================================
   VARIABLES
   ===================================================== */
:root {
  --accent:        #ff7f00;
  --accent-dark:   #d96a00;
  --accent-glow:   rgba(255, 127, 0, 0.25);
  --dark:          #0f0f0f;
  --dark-2:        #1a1a1a;
  --dark-3:        #242424;
  --light:         #f7f7f7;
  --white:         #ffffff;
  --gray:          #888;
  --gray-light:    #e0e0e0;
  --text:          #2c2c2c;
  --text-muted:    #666;
  --font-heading:  'Audiowide', cursive;
  --font-body:     'Poppins', sans-serif;
  --radius:        12px;
  --radius-sm:     8px;
  --shadow:        0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md:     0 8px 30px rgba(0, 0, 0, 0.14);
  --shadow-dark:   0 4px 20px rgba(0, 0, 0, 0.35);
  --transition:    0.3s ease;
  --nav-height:    68px;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   NAVBAR
   ===================================================== */
.navbar {
  background: rgba(15, 15, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(15, 15, 15, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Texto del logo en la navbar */
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  line-height: 1;
}

.logo-digital {
  color: var(--accent);
}

.logo-discos {
  font-family: 'Gilroy', 'Arial Black', sans-serif;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}

[data-theme="light"] .logo-discos {
  color: var(--dark-2);
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.4px;
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav-link.active {
  color: var(--accent);
  background: rgba(255, 127, 0, 0.1);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
}

.bar {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =====================================================
   HERO + CAROUSEL
   ===================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(15, 15, 15, 0.65) 100%
  );
}

.carousel-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 3;
  transform: translateY(-50%);
  pointer-events: none;
}

.carousel-btn {
  pointer-events: all;
  background: rgba(255, 127, 0, 0.65);
  color: var(--white);
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.dot.active {
  background: var(--accent);
  transform: scale(1.4);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 24px;
}

/* Logo principal en el hero */
.hero-logo-img {
  display: block;
  width: clamp(200px, 32vw, 300px);
  height: auto;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 28px rgba(0, 0, 0, 0.8));
  animation: fadeInUp 0.8s ease-out both;
}

/* Tagline principal — debajo del logo */
.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
  font-weight: 400;
  line-height: 1.6;
}

/* Eyebrow — debajo del tagline, antes de los botones */
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
  animation: fadeInUp 0.8s ease-out 0.35s both;
  opacity: 0.85;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

/* Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--white);
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(255, 127, 0, 0.35);
}

.cta-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(255, 127, 0, 0.5);
}

.cta-button.outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: none;
}

.cta-button.outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  box-shadow: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   SECTION HEADERS
   ===================================================== */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--dark-2);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray);
  font-size: 0.97rem;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 400;
}

.section-divider {
  width: 44px;
  height: 3px;
  background: var(--accent);
  margin: 0.9rem auto 0;
  border-radius: 2px;
}

/* =====================================================
   FEATURES
   ===================================================== */
.features {
  padding: 5.5rem 0;
  background: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
  border-top: 3px solid transparent;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent);
}

.feature i {
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
  color: var(--dark-2);
}

.feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* =====================================================
   GENRES
   ===================================================== */
.genres {
  padding: 5.5rem 0;
  background: var(--dark-2);
}

.genres .section-header h2 {
  color: var(--white);
}

.genres .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.genres .section-divider {
  background: var(--accent);
}

.genres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(128px, 1fr));
  gap: 1rem;
}

.genre-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: all var(--transition);
  cursor: default;
  text-align: center;
}

.genre-card:hover {
  background: rgba(255, 127, 0, 0.12);
  border-color: rgba(255, 127, 0, 0.35);
  color: var(--white);
  transform: translateY(-4px);
}

.genre-card i {
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  transition: transform var(--transition);
}

.genre-card:hover i {
  transform: scale(1.15);
}

.genre-card h3 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
}

/* =====================================================
   PAGE HEADER (Productos / Servicios / Contacto)
   ===================================================== */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  color: var(--white);
  padding: 7.5rem 0 4.5rem;
  text-align: center;
  margin-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 580px;
  margin: 0 auto;
  font-weight: 400;
}

/* =====================================================
   PRODUCTS
   ===================================================== */
.products {
  padding: 5.5rem 0;
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--accent);
}

.product-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-item i,
.product-item svg {
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.product-item svg {
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.product-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--dark-2);
}

.product-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.product-item ul {
  text-align: left;
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 400;
}

.product-item ul li {
  padding: 0.28rem 0 0.28rem 1.2rem;
  position: relative;
}

.product-item ul li::before {
  content: '▸';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.35rem;
}

/* =====================================================
   SERVICES
   ===================================================== */
.services {
  padding: 5.5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--accent);
}

.service-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-item i {
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.service-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--dark-2);
}

.service-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 400;
  line-height: 1.55;
}

.service-item ul {
  text-align: left;
  font-size: 0.86rem;
  color: var(--text);
  font-weight: 400;
}

.service-item ul li {
  padding: 0.28rem 0 0.28rem 1.2rem;
  position: relative;
}

.service-item ul li::before {
  content: '▸';
  color: var(--accent);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 0.35rem;
}

/* =====================================================
   CTA SECTION (banners internos)
   ===================================================== */
.cta-section {
  background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark-3) 100%);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 2rem;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
}

.cta-section h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--white);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 580px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
  font-size: 0.97rem;
}

.cta-section a.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.cta-section a.inline-link:hover {
  text-decoration: underline;
}

/* =====================================================
   CONTACT
   ===================================================== */
.contact {
  padding: 5.5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  font-size: 1.2rem;
  color: var(--dark-2);
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item i {
  font-size: 1.1rem;
  color: var(--accent);
  margin-top: 0.25rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 0.3rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-item p {
  font-size: 0.93rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.6;
}

.contact-item a {
  color: var(--text);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--accent);
}

.horario {
  font-weight: 600;
  color: var(--accent);
}

/* Contact Form */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark-2);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius-sm);
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 127, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  font-family: var(--font-body);
  transition: background var(--transition), transform var(--transition);
  width: 100%;
  letter-spacing: 0.3px;
}

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

#success-msg {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 160, 80, 0.1);
  border: 1px solid rgba(0, 160, 80, 0.3);
  border-radius: var(--radius-sm);
  color: #008040;
  font-weight: 500;
  font-size: 0.9rem;
  text-align: center;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 0;
  border-top: 3px solid var(--accent);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2.5rem;
}

.footer-section h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.logo-img-footer {
  height: 46px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-section > p {
  font-size: 0.88rem;
  line-height: 1.7;
  font-weight: 400;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 400;
  transition: color var(--transition);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-section a i {
  margin-right: 0.5rem;
  width: 14px;
}

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1rem;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
}

.social-links a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 1.5rem 24px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.3);
}

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 62px;
  }

  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: -100%;
    flex-direction: column;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(12px);
    width: 100%;
    padding: 1rem 0;
    transition: left var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    gap: 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    display: block;
    padding: 0.9rem 2rem;
    border-radius: 0;
    font-size: 0.95rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-button {
    width: 220px;
  }

  .page-header {
    padding: 6.5rem 0 3.5rem;
  }

  .hero-heading {
    font-size: 2rem;
  }

  .genres-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .genres-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid,
  .products-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
  }
}

/* =====================================================
   THEME TOGGLE BUTTON
   ===================================================== */
.theme-toggle {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.65);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: all var(--transition);
  flex-shrink: 0;
}

.theme-toggle:hover {
  background: rgba(255, 127, 0, 0.15);
  color: var(--accent);
  border-color: rgba(255, 127, 0, 0.3);
}

/* Badge "Próximo" en nav */
.nav-badge {
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 1px 5px;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 4px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =====================================================
   LIGHT THEME
   ===================================================== */
[data-theme="light"] body {
  background: #f9f9f9;
  color: var(--text);
}

/* Navbar */
[data-theme="light"] .navbar {
  background: rgba(250, 250, 250, 0.94);
  border-bottom-color: rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(250, 250, 250, 0.99);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .nav-link {
  color: rgba(20, 20, 20, 0.68);
}

[data-theme="light"] .nav-link:hover {
  color: var(--dark);
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .nav-link.active {
  color: var(--accent-dark);
  background: rgba(255, 127, 0, 0.08);
}

[data-theme="light"] .bar {
  background: var(--dark-2);
}

[data-theme="light"] .nav-menu {
  background: rgba(250, 250, 250, 0.99);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .theme-toggle {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(20, 20, 20, 0.55);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(255, 127, 0, 0.1);
  color: var(--accent-dark);
  border-color: rgba(255, 127, 0, 0.25);
}

/* Sección géneros (único bloque oscuro en home) */
[data-theme="light"] .genres {
  background: #e6e6e6;
}

[data-theme="light"] .genres .section-header h2 {
  color: var(--dark-2);
}

[data-theme="light"] .genres .section-header p {
  color: var(--text-muted);
}

[data-theme="light"] .genres .section-divider {
  background: var(--accent-dark);
}

[data-theme="light"] .genre-card {
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.09);
}

[data-theme="light"] .genre-card:hover {
  background: rgba(255, 127, 0, 0.1);
  border-color: rgba(255, 127, 0, 0.35);
  color: var(--dark);
}

[data-theme="light"] .genre-card i {
  color: var(--accent-dark);
}
