/* ==== CONFIGURACIÓN GENERAL ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'BBH Sans Bartle', sans-serif;
  background-color: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

}

/* ==== CABECERA ==== */
.cabecera {
  background-color: #111;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
  border-bottom: 2px solid #ffcc00;
}

.cabecera .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1);
}

.menu 
{
  display: flex;
  gap: 20px;
}

.menu a {
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #ffcc00;
}

/* Menú Responsive */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 20px 0;
  }

  .menu.activo {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ==== BANNER ==== */
#banner {
  position: relative;
  margin-top: 90px;
}

.banner-home {
  width: 100%;
  filter: brightness(0.6);
}

#banner .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  color: #fff;
}

#banner h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 10px #000;
}

#banner p 
{

  max-width: 700px;
  margin: auto;
  color: #c1c1c1;
}

.vinilo {
  width: 180px;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: bold;
}

.boton-transparente {
  border: 2px solid #ffcc00;
  color: #ffcc00;
}

.boton-transparente:hover {
  background: #ffcc00;
  color: #111;
}

.boton-amarillo {
  background: #ffcc00;
  color: #111;
}

.boton-amarillo:hover {
  background: #ffdb4d;
}

/* ==== SECCIÓN PRODUCTOS ==== */
.seccion {
  padding: 80px 0;
  background: #1a1a1a;
}

.seccion h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ffcc00;
}

/* Cuadrícula de productos */
.fila {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.columna-50 {
  flex: 1 1 calc(50% - 20px);
}

.columna-100 {
  flex: 1 1 100%;
}

.sin-pading {
  padding: 0;
}

/* ==== CONTENEDORES DE BEATS ==== */
.contenedor-cuadrado {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.contenedor-cuadrado img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.contenedor-cuadrado:hover img {
  transform: scale(1.1);
}

.contenido-cuadrado {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.contenedor-cuadrado:hover .contenido-cuadrado {
  opacity: 1;
}

.contenido-cuadrado h2 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* ==== AUDIO Y PRODUCTOS ==== */
.productos audio,
.productos1 audio,
.productos2 audio,
.productos3 audio,
.productos4 audio {
  width: 100%;
  margin: 10px 0;
}

/* ==== FOOTER ==== */
footer {
  background: #000;
  padding: 40px 0;
  color: #ccc;
  text-align: center;
}

.iconos-sociales a {
  margin: 0 15px;
  color: #ffcc00;
  font-size: 1.8rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.iconos-sociales a:hover {
  color: #fff;
  transform: scale(1.2);
}

footer h4 {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #777;
}

/* ===== RESET GENERAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Titan One', sans-serif;
  background-color: #0b0b0b;
  color: #f0f0f0;
  line-height: 1.5;
  overflow-x: hidden;
}

/* ===== CONTENEDORES ===== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== CABECERA ===== */
.cabecera {

  background: #0d0d0d85;
  border-bottom: 1px solid #ffcc00;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  padding: 10px 0;
}

.cabecera .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 60px;
}

.menu {
  display: flex;
  gap: 25px;
}

.menu a {
  color: #F8F4EC;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.3s ease;
  font-family: 'Arial Black';
}

.menu a:hover {
  color: #ffcc00;
}

/* ===== BOTÓN MENU RESPONSIVO ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* ===== BANNER ===== */
#banner {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.banner-home 
{
  width: 100%; 
  height: auto;
 display: block;
}

#banner .container {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffcc00f0;
  padding: 20px;
}

#banner h1 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 5px #000000d4;
}

#banner p {
  font-size: 20px;
  margin-top: 15px;
  max-width: 700px;
  margin-inline: auto;
  font-family: 'Arial';
}

.vinilo 
{
  width: 180px;
  margin: 20px 0;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 30px;
  transition: 0.3s;
  text-transform: uppercase;
  font-weight: bold;
}

.boton-transparente {
  border: 2px solid #ffcc00;
  color: #ffcc00;
}

.boton-transparente:hover {
  background: #ffcc00;
  color: #111;
}

.boton-amarillo {
  background: #ffcc00;
  color: #111;
}

.boton-amarillo:hover {
  background: #ffdb4d;
}

/* ===== SECCIÓN PRODUCTOS ===== */
.seccion {
  padding: 80px 0;
  background: #1a1a1a;
}

.seccion h2 {
  text-align: center;
  color: #ffcc00;
  margin-bottom: 30px;
}

.fila {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.columna-50 {
  flex: 1 1 calc(50% - 20px);
}

.columna-100 {
  flex: 1 1 100%;
}

.sin-pading {
  padding: 0;
}

/* ===== CONTENEDORES DE BEATS ===== */
.contenedor-cuadrado {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.contenedor-cuadrado img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.contenedor-cuadrado:hover img {
  transform: scale(1.08);
}

.contenido-cuadrado {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contenedor-cuadrado:hover .contenido-cuadrado {
  opacity: 1;
}

.contenido-cuadrado h2 {
  color: #ffcc00;
  margin-bottom: 10px;
}

/* ===== PRODUCTOS INDIVIDUALES ===== */
section[class^="productos"] {
  padding: 60px 0;
  background-color: #111;
  text-align: center;
}

section[class^="productos"] h2 {
  color: #ffcc00;
  margin-bottom: 20px;
}

section[class^="productos"] audio {
  width: 90%;
  max-width: 400px;
  margin: 10px 0;
}

/* ===== FOOTER ===== */
footer {
  background: #aba9a96b;
  padding: 40px 0;
  color: #ccc;
  text-align: center;
}

.iconos-sociales a {
  color: #ffcc00;
  font-size: 1.8rem;
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.iconos-sociales a:hover {
  color: #fff;
  transform: scale(1.2);
}

footer h4 {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
}

/* ===== DISEÑO RESPONSIVO ===== */

/* --- Tablets (hasta 992px) --- */
@media (max-width: 992px) {
  #banner h1 {
    font-size: 2rem;
  }

  .menu a {
    font-size: 0.95rem;
  }

  .columna-50 {
    flex: 1 1 100%;
  }
}

/* --- Móviles (hasta 768px) --- */
@media (max-width: 768px) {
  .cabecera .container {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 15px 0;
  }

  .menu.activo {
    display: flex;
  }

  #banner h1 {
    font-size: 1.6rem;
  }

  #banner p {
    font-size: 0.9rem;
  }

  .vinilo {
    width: 120px;
  }

  .seccion {
    padding: 50px 0;
  }
}

/* --- Smartphones pequeños (hasta 480px) --- */
@media (max-width: 480px) {
  #banner h1 {
    font-size: 1.4rem;
  }

  #banner p {
    font-size: 0.8rem;
  }

  .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }

  .iconos-sociales a {
    font-size: 1.5rem;
    margin: 0 10px;
  }
}

