/* RESET + FULL-SCREEN BACKGROUND */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #0a0a0a;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* Import fuente y variables de color */
@import url("https://fonts.googleapis.com/css2?family=Mozilla+Text:wght@400;700&display=swap");
:root {
  --font-base:    "Mozilla Text", sans-serif;
  --text-color:   #fff;

  --red-base:     #B50202;
  --red-vibrant:  #E10606;
  --gray-light:   #C0C0C0;
  --gray-medium:  #808080;
  --gray-dark:    #2E2E2E;
  --black:        #000000;
}

/* Hero full-viewport con fondo negro */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-color);
}

/* Contenedor de blobs */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Blobs circulares responsive y con mayor desplazamiento */
.blob {
  position: absolute;
  width: clamp(100px, 20vw, 200px);
  height: clamp(100px, 20vw, 200px);
  border-radius: 50%;
  opacity: 0.8;
  animation: floatLarge 12s ease-in-out infinite;
  z-index: 0;
}

.blob--one   { top: 10%;  left: 15%; background-color: var(--red-base);     animation-delay:  0s; }
.blob--two   { top: 20%;  right: 10%; background-color: var(--red-vibrant); animation-delay:  2s; }
.blob--three { top: 35%;  left: 60%; background-color: var(--gray-light);  animation-delay:  4s; }
.blob--four  { bottom:20%; right: 20%; background-color: var(--gray-medium);animation-delay:  6s; }
.blob--five  { bottom:10%; left: 30%; background-color: var(--gray-dark);   animation-delay:  8s; }
.blob--six   { top: 50%;  left: 50%; background-color: var(--black);       animation-delay: 10s; }

/* Keyframes para mayor “flotación” */
@keyframes floatLarge {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(40px, -30px); }
  50%      { transform: translate(-40px, 30px); }
  75%      { transform: translate(30px, 40px); }
}

/* Wrapper del logo: centrado absoluto y blur rojo detrás */
.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Pseudo-elemento para el “halo” de blur rojo base */
.hero__content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(200px, 40vw, 400px);
  height: clamp(200px, 40vw, 400px);
  background-color: var(--red-base);
  filter: blur(50px);
  border-radius: 50%;
  z-index: 1;
}

/* Logo perfectamente centrado y más grande */
.hero__logo {
  position: relative;
  z-index: 2;
  max-width: clamp(300px, 35vw, 450px);
  width: 100%;
  height: auto;
  display: block;
}




#locutores {
  padding: 4rem 0;
  background-image: url('https://static.vecteezy.com/system/resources/thumbnails/002/188/716/small/red-digital-sound-wave-low-and-hight-richter-scale-background-vector.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  font-family: 'Mozilla Text', serif;
}

.locutores__container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.locutores__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.locutores__item {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.locutores__item img {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.locutores__content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.locutores__name {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333333;
}

.locutores__waveform {
  width: 100%;
  height: 60px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.locutores__waveform canvas,
.locutores__waveform svg {
  height: 60px !important;
}

.locutores__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  background-color: transparent;
}

.locutores__controls button.play-btn {
  background: #c00;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.locutores__controls button.play-btn:hover {
  background: #900;
}

@media (max-width: 1024px) {
  .locutores__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .locutores__container {
    width: 100%;
    padding: 0 1rem;
  }
  .locutores__grid {
    grid-template-columns: 1fr;
  }
}



/*BOTON WSP*/

.locutores__whatsapp {
  text-align: center;
  margin-top: 0.75rem;
}

.locutores__whatsapp-btn {
  display: inline-flex;
  align-items: center;
  background-color: #25d366;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.locutores__whatsapp-btn i {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.locutores__whatsapp-btn:hover {
  background-color: #1ebe5d;
}

    .locutores__title {
  font-family: 'Mozilla Text', sans-serif;   /* Igual que el resto de tu branding */
  font-size: 2.5rem;   
  text-shadow: 2px 2px 2px #333;
  font-weight: bold;/* Ajusta según jerarquía visual */
  font-weight: 500;                          /* Semi-negrita para destacar sin saturar */
  text-align: center;
  color: #fff;                               /* O el color de tu paleta principal */
  margin-bottom: 1.5rem;                     /* Espacio antes del grid */
}





    /* ==========================================================================
   Sección Artística
   ========================================================================== */
#artistica {
  padding: 4rem 0;
  background-image: url('https://img.pikbest.com/ai/illus_our/20230427/bfed59b22a7122312c51ed1e2be7ffd4.jpg!w700wp');
  background-size: cover;
  background-position: center;
  font-family: 'Mozilla Text', serif;
  color: #333;
}

.artistica__container {
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
  background-color: transparent;
  border-radius: 6px;
}

.artistica__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #fff;
  text-shadow: 2px 2px 2px #333;
}

.artistica__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.artistica__item {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.artistica__item img {
  /* max-width: 180px; */  /* descomenta y ajusta si necesitas limitar ancho */
  width: 100%;
  height: auto;
  object-fit: cover;
}

.artistica__content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.artistica__name {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.artistica__description {
  flex: 1;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: #555;
}

.artistica__price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--red-base);
  margin-bottom: 0.75rem;
}

.artistica__waveform {
  width: 100%;
  height: 60px;
  margin-bottom: 0.75rem;
}

.artistica__waveform canvas {
  height: 60px !important;
}

.artistica__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75rem;
}

.artistica__play-btn {
  background: var(--red-base);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.artistica__play-btn:hover {
  background: #900;
}

.artistica__buy {
  text-align: center;
  margin-top: auto;
}

.artistica__buy-btn {
  display: inline-flex;
  align-items: center;
  background: var(--gray-medium);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.artistica__buy-btn i {
  margin-right: 0.5rem;
}

.artistica__buy-btn:hover {
  background: var(--gray-dark);
}

@media (max-width: 1024px) {
  .artistica__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .artistica__container {
    width: 100%;
    padding: 0 1rem;
  }
  .artistica__grid {
    grid-template-columns: 1fr;
  }
}

/* placeholder difuminado + hover */
.artistica__cover img {
  width: 45%;
  height: 100%;
  object-fit: cover;
  filter: blur(20px);
  transition:
    filter 0.5s ease-out,
    transform 0.3s ease,
    filter 0.3s ease;
}

.artistica__cover img.loaded {
  filter: none;
}

.artistica__cover:hover img {
  transform: scale(1.05);
  /*filter: brightness(0.9);*/
}





.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #fff;
}

.site-footer .footer__link {
  font-weight: bold;
  text-decoration: none;
  color: inherit;
}
