* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Exo 2", sans-serif;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: #fff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: relative;
  overflow-x: hidden;
}

img{
  width: 60px;
}
.packages2 {
  width: 900px;
 margin-top: 100px;
}

.packages2 h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  margin: 5rem 0;
  color: #00ccff;
}

/*
.container-carousel {
  position: relative;
  width: 1000px;
  height: 500px;
  background-color: #e0e0e0;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.66);
  border-radius: 15px;
  overflow: hidden;
}

.carruseles {
  width: 100%;
  height: 100%;
  display: flex;

}
.slider-section{
  width: calc(100% /3);
  height: 100%;
}
.slider-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.btn-left, 
.btn-right {
  display:flex;
  position: absolute;
  top: 50%;
  font-size: 1.5rem;
  background-color: transparent;
  border-radius: 50%;
  padding: 5px;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff81;
  transform: translate(0, -50%);
  transition: .5s ease;
  user-select: none;
}
  .btn-left:hover,
  .btn-right:hover {
    background-color: #333333d4;
    color: #fff;
  }

  .btn-left {
    left: 10px;
  }
  .btn-right {
    right: 10px;
  } */
header {
  /*background: rgba(0, 0, 0, 0.7);
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);*/
  display: grid;
  /*place-items: center;*/
  /*height: 70px;*/
  /*margin-bottom: 3rem;*/
}
.navvar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 64px;
  background-color: #424242;
  position: relative;
}
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  transition: all 0.5s ease;
}
.nav-links li {
  margin-left: 24px;
}
.nav-links a{
  text-decoration: none;
  color: #ffffff;
  background-color: #f3b406;
  font-size: 20px;
  padding: 8px 24px;
  border-radius: 30px;
  transition: background-color 0.3s ease;
}

.nav-links a:hover {
  background-color: #e91e63;
}
.menu-icon {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.menu-icon .line {
  width: 30px;
  height: 3px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: all 0.3s ease;
}
#menu-toggle {
  display: none;
}

/*nav {
  display: flex;
  gap: 2rem;
}
nav a{
  text-decoration: none;
  font-size: 1.5rem;
  color: #00ccff;
}
nav a:hover {
  color: rgb(241, 59, 4);
}*/

.divisor {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 4rem;
}

.divisor img{
  width: 25%;
}

.boton {
  /*display: block;*/
  text-align: center;
  width: 120px;
  font-weight: 700;
  border-radius: 10px;
  /*margin: 10px 10px;*/
  padding: 15px 30px;
  text-decoration: none;
  background-color: rgb(240, 102, 3);
}
.boton:hover {
  transform: translateY(-10px);
  background-color: #e91e63;
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}
.espacios {
  padding: 10px 0px 25px 0px;
}
.btn-wsp {
  position: fixed;
  width: 100px;
  height: 100px;
  vertical-align: top;
  line-height: 55px;
  bottom: 0px;
  left: 0;
  margin: 43px;
  animation-name: animwhatsapp;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

/* Efectos de audio visualizer */
.audio-visualizer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.3;
}


.bar {
  position: absolute;
  bottom: 0;
  width: 10px;
  background: linear-gradient(to top, #ff00cc, #3333ff);
  border-radius: 5px 5px 0 0;
  animation: equalizer 1.5s infinite ease-in-out;
}
/*Menu Hamburguesa responsive*/
@media(max-width: 768px) {
  .navvar {
    padding: 16px;
  }
  .logo {
    width: 410px;
  }
  .packages2 {
  width: 380px;
}
  .menu-icon {
    display: flex;
  }
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    height: 0;
    overflow: hidden;
    flex-direction: column;
    background-color: #424242;
    text-align: center;
    transition: heigth 0.5s ease;
  }
  .nav-links li {
    margin: 0;
    padding: 20px 0;
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 10px 20px;
  }

  #menu-toggle:checked + .menu-icon + .nav-links {
    height: 100vh;
  }
  #menu-toggle:checked + .menu-icon .line:nth-child(1) {
    transform: rotate(45deg) translate(15px, 3px);
  }
  #menu-toggle:checked + .menu-icon .line:nth-child(2) {
    transform: scale(0);
  }
  #menu-toggle:checked + .menu-icon .line:nth-child(3) {
    transform: rotate(-45deg) translate(15px, -4px);
  }

}
@keyframes equalizer {
  0%,
  100% {
    height: 10px;
  }
  50% {
    height: 80px;
  }
}

/* Partículas flotantes (notas musicales) */
.music-note {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.3;
  animation: floatNote 20s infinite linear;
}

@keyframes floatNote {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Contenedor principal */
.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: 0 0 50px rgba(255, 0, 204, 0.3);
  border: 2px solid rgba(255, 0, 204, 0.2);
  z-index: 1;
  position: relative;
  overflow: hidden;
}

.container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 0, 204, 0.1) 0%,
    transparent 70%
  );
  z-index: -1;
}

/* Logo estilo musical */
/*.logo {
  margin-bottom: 5px;
}*/

.logo h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #ff00cc, #3333ff, #00ccff);
  /*-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  text-shadow: 0 0 30px rgba(255, 0, 204, 0.5);
  letter-spacing: 2px;
}

.logo .tagline {
  font-size: 1.6rem;
  color: #00ccff;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Icono de DJ/mezcladora */
.dj-icon {
  font-size: 6rem;
  margin: 30px 0;
  color: #ff00cc;
  filter: drop-shadow(0 0 20px rgba(255, 0, 204, 0.7));
  animation:
    spin 10s infinite linear,
    pulse 2s infinite alternate;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

/* Mensaje principal */
.message {
  margin-bottom: 50px;
  position: relative;
}

.message h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #00ccff;
  text-shadow: 0 0 15px rgba(0, 204, 255, 0.5);
}

.message p {
  font-size: 1.3rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 20px;
  color: #ccccff;
}

.highlight {
  color: #FAE349;
  font-weight: 600;
}

/* Player de muestra */
.sample-player {
  background: rgba(20, 20, 40, 0.8);
  border-radius: 15px;
  padding: 25px;
  margin: 40px auto;
  max-width: 600px;
  border: 1px solid rgba(0, 204, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 204, 255, 0.2);
}

.player-title {
  font-family: "Orbitron", sans-serif;
  color: #00ccff;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.player-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.player-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255, 0, 204, 0.7);
}

.progress-bar {
  flex-grow: 1;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.progress {
  height: 100%;
  width: 30%;
  background: linear-gradient(to right, #ff00cc, #3333ff);
  border-radius: 4px;
}

/* Paquetes que ofreceremos */
/*.packages {
  margin: 50px 0;
}*/

.packages h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 4rem;
  margin: 5rem 0;
  color: #00ccff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.packages2 .packages2-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  gap: 25px;
  margin-top: 30px;
}
.package-item {
  background: rgba(30, 30, 60, 0.7);
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 204, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.package-item:hover {
  transform: translateY(-10px);
  border-color: #00ccff;
  box-shadow: 0 10px 30px rgba(0, 204, 255, 0.3);
}

.package-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #ff00cc, #3333ff);
}

.package-icon {
  font-size: 2.5rem;
  color: #ff00cc;
  margin-bottom: 20px;
}

.package-item h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #00ccff;
}

.package-item p {
  color: #ccccff;
  font-size: 0.95rem;
}

.package-item ul li{
  list-style: none;
  text-align: justify;
  line-height: 2rem;
}

.package-item ul{
 margin-bottom: 3rem;
}

/* Newsletter con estilo musical */
.newsletter {
  margin: 50px 0 40px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  border: 1px solid rgba(255, 0, 204, 0.2);
}

.newsletter h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #00ccff;
}

.newsletter p {
  color: #ccccff;
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.newsletter-input {
  flex: 1;
  padding: 18px 25px;
  border: none;
  font-size: 1rem;
  font-family: "Exo 2", sans-serif;
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-button {
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  color: white;
  border: none;
  padding: 0 30px;
  font-size: 1.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Orbitron", sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 25px;
}

.newsletter-button:hover {
  background: linear-gradient(45deg, #ff00cc, #00ccff);
  letter-spacing: 2px;
}

/* Redes sociales */
.social-media {
  margin: 40px 0 30px;
}

.social-media h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #00ccff;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-link:hover {
  background: rgba(255, 0, 204, 0.2);
  border-color: #ff00cc;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 0, 204, 0.4);
}

/* Footer */
footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 0, 204, 0.2);
  font-size: 0.9rem;
  color: #8888cc;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #00ccff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff00cc;
}
/*ajuste de la portada*/
.portada {
  background-size: cover;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
}
.membresia {
  display: block;
  margin: 0 auto;
  background-size: cover;
  width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 768px) {
  .logo h1 {
    font-size: 3rem;
  }

  .packages h3 {
    font-size: 2.3rem;
  }
    .packages2 h3 {
    font-size: 2.3rem;
  }
  .dj-icon {
    font-size: 4.5rem;
  }

  .message h2 {
    font-size: 2.2rem;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sample-player {
    padding: 20px;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 10px;
  }

  .newsletter-input,
  .newsletter-button {
    width: 100%;
    border-radius: 0;
    padding: 15px;
  }
}
@keyframes animwhatsapp{
  0% {
    transform: scale(1, 1) rotate(0deg);
  }
  50% {
    transform: scale(0.85, 0.85) rotate(5deg);
  }
}
@media (max-width: 480px) {
  .container {
    padding: 30px 20px;
  }

  .logo h1 {
    font-size: 2.5rem;
  }

  .message h2 {
    font-size: 1.8rem;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .dj-icon {
    font-size: 4rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

form {
        background: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0,0,0,0.1);
        font-family: Arial, sans-serif;
    }
    label {
        display: block;
        margin-top: 10px;
        font-weight: bold;
    }
    input, textarea, button {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
    }
    button {
        background-color: #007BFF;
        color: white;
        border: none;
        cursor: pointer;
        margin-top: 15px;
    }
    button:hover {
        background-color: #0056b3;
    }

