.section-gradient-black-to-brown {
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #0a0908 15%,
    #1d1914 40%,
    #241f19 100%
  );
  min-height: 250px;
}


.section-gradient-brown-to-black {
  background: linear-gradient(to bottom, #1d1914 10%, #000000 100%);
  min-height: 150px;
}

.guitarra-animada {
  max-width: 100%;
  width: 1000px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
  animation: pulse-sombra 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.guitarra-animada:hover {
  transform: scale(1.05);
}

@keyframes pulse-sombra {
  0% {
    filter: drop-shadow(0 10px 15px rgba(255, 102, 0, 0.2));
  }
  50% {
    filter: drop-shadow(0 10px 25px rgba(255, 102, 0, 0.5));
  }
  100% {
    filter: drop-shadow(0 10px 15px rgba(255, 102, 0, 0.2));
  }
}

.hero-section {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-text-column {
  flex: 0 0 60% !important;
  padding-right: 2rem;
}
.hero-image-column {
  flex: 0 0 40% !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-title {
  font-size: 6rem;
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
  animation: fadeUp 0.8s ease-out both;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 300;
  max-width: 95%;
  color: #eaeaea;
  animation: fadeUp 1.2s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-image-column img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255, 165, 0, 0.15));
  animation: fadeUp 1.4s ease-out both;
}

.hero-button {
  animation: fadeUp 1.6s ease-out both;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-section {
  animation: fadeUp 1s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
 

.podcast-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2rem 0;
}

.podcast-texto {
  flex: 1 1 50%;
  color: #fff;
}

.podcast-imagen {
  flex: 1 1 40%;
  text-align: right;
}

.podcast-animado {
  max-width: 100%;
  width: 450px;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.5));
  animation: pulse-sombra 6s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.podcast-animado:hover {
  transform: scale(1.05);
}

@keyframes pulse-sombra {
  0% {
    filter: drop-shadow(0 10px 15px rgba(255, 102, 0, 0.2));
  }
  50% {
    filter: drop-shadow(0 10px 25px rgba(255, 102, 0, 0.5));
  }
  100% {
    filter: drop-shadow(0 10px 15px rgba(255, 102, 0, 0.2));
  }
}

.podcast-boton {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2rem;
  background-color: #ff3c1f;
  color: #fff;
  border-radius: 2rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.podcast-boton:hover {
  background-color: #ff5722;
}



