body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #1cc7b6, #0e8c99);
  color: white;
  font-family: 'Poppins', sans-serif;
}

/* ================= HERO ================= */
.hero-section {
  padding: 80px 0;
}

.hero-logo {
  max-width: 420px;
}

.hero-text {
  text-align: left;
}

/* TEXTOS HERO */
.hero-small {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 5px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: #ffb300;
}

.hero-genre {
  font-size: 24px;
  font-weight: 700;
  color: #ff2d2d;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.35);
}

/* BOTÓN PLAY */
#playBtn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#playBtn:hover {
  transform: scale(1.05);
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(255,193,7,0.6); }
  50% { box-shadow: 0 0 25px rgba(255,193,7,0.9); }
  100% { box-shadow: 0 0 0 rgba(255,193,7,0.6); }
}

.playing {
  animation: pulseGlow 1.5s infinite;
}

/* ================= INFO ================= */
.info-section {
  background-color: #1faca0;
  padding: 100px 0;
}

.info-card {
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 50px;
  height: 100%;
  display: flex;
  align-items: center;
}

.info-left {
  justify-content: center;
  text-align: center;
}

.info-title {
  font-size: 36px;
  font-weight: 700;
  color: #ff2d2d;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.35);
}

.info-right {
  justify-content: center;
}

.info-text {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
}

/* ================= FEATURES ================= */
.features-section {
  background-color: #1faca0;
  padding: 100px 0;
}

.feature-card {
  background: rgba(255,255,255,0.08);
  border-radius: 25px;
  padding: 30px 35px;
  margin-bottom: 25px;
}

.feature-title {
  font-size: 22px;
  font-weight: 800;
  color: #ffb300;
  text-shadow: 2px 2px 0 rgba(0,0,0,0.35);
  margin-bottom: 10px;
}

.feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

.feature-img {
  border-radius: 30px;
  max-width: 100%;
}

/* ================= CONTACTO ================= */
.contact-section {
  background-color: #1faca0;
  padding: 100px 0;
}

/* CARD CONTACTO */
.contact-card {
  background: rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 50px;
}

.contact-title {
  font-size: 42px;
  font-weight: 800;
  color: #1e63ff;
  margin-bottom: 30px;
}

.contact-text {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
}

/* ICONOS TEXTO */
.contact-text i {
  color: #ffb300;
  margin-right: 12px;
  font-size: 20px;
}

/* ICONOS REDES (FONT AWESOME) */
.contact-social a {
  font-size: 42px;
  color: #ffffff;
  margin-right: 22px;
  transition: transform 0.25s ease, color 0.25s ease;
}

.contact-social a:hover {
  transform: scale(1.15);
}

/* COLORES BRAND */
.contact-social .fa-instagram:hover { color: #e1306c; }
.contact-social .fa-facebook-f:hover { color: #1877f2; }
.contact-social .fa-youtube:hover { color: #ff0000; }
.contact-social .fa-whatsapp:hover { color: #25d366; }

.contact-img {
  border-radius: 30px;
}


/* ANIMACIONES SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

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