body {
  font-family: 'Inter', sans-serif;
}

.logo-text,
.hero-title,
.section-title {
  font-family: 'Space Grotesk', sans-serif;
}

.glow {
  position: fixed;
  border-radius: 9999px;
  filter: blur(140px);
  z-index: -1;
  opacity: .25;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: #00F5D4;
  top: -120px;
  left: -120px;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background: #8B5CF6;
  right: -150px;
  top: 200px;
}

.gradient-text {
  background: linear-gradient(90deg, #00F5D4, #8B5CF6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 34px;
  border-radius: 20px;
  background: linear-gradient(90deg, #00F5D4, #8B5CF6);
  color: black;
  font-weight: 700;
  transition: .3s;
}

.cta-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.cta-secondary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 18px 34px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.03);
  transition: .3s;
}

.cta-secondary:hover {
  background: rgba(255,255,255,.07);
}

.music-player-card,
.music-card,
.step-card,
.cta-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
}

.music-player-card {
  padding: 35px;
  border-radius: 32px;
  box-shadow: 0 20px 80px rgba(0,0,0,.4);
}

.wave-container {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 80px;
}

.wave {
  width: 10px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(to top, #00F5D4, #8B5CF6);
  animation: wave 1s infinite ease-in-out;
}

.wave:nth-child(2) { animation-delay: .1s; }
.wave:nth-child(3) { animation-delay: .2s; }
.wave:nth-child(4) { animation-delay: .3s; }
.wave:nth-child(5) { animation-delay: .4s; }

@keyframes wave {
  0%,100% {
    height: 20px;
  }

  50% {
    height: 80px;
  }
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.section-subtitle {
  color: #A1A1AA;
  font-size: 1.15rem;
}

.music-card {
  border-radius: 28px;
  padding: 28px;
  transition: .3s;
}

.music-card:hover {
  transform: translateY(-6px);
}

.music-cover {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, #00F5D4, #8B5CF6);
  margin-bottom: 25px;
}

.music-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.music-desc {
  color: #A1A1AA;
  line-height: 1.7;
}

.step-card {
  padding: 40px;
  border-radius: 28px;
}

.step-number {
  font-size: 4rem;
  font-weight: 800;
  opacity: .15;
  margin-bottom: 20px;
}

.step-title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-desc {
  color: #A1A1AA;
  line-height: 1.8;
}

.cta-box {
  border-radius: 40px;
  padding: 80px 40px;
}


.glass-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  border-radius: 40px;
  padding: 50px;
}

.step-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0,245,212,.1);
  color: #00F5D4;
  margin-bottom: 20px;
  font-size: .95rem;
}

.form-title {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 14px;
}

.form-subtitle {
  color: #A1A1AA;
  font-size: 1.1rem;
}

.form-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  outline: none;
  transition: .3s;
}

.form-input:focus {
  border-color: #00F5D4;
  box-shadow: 0 0 0 4px rgba(0,245,212,.1);
}

.nav-btn {
  padding: 16px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: .3s;
}

.nav-btn:hover {
  background: rgba(255,255,255,.08);
}



.payment-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(24px);
  border-radius: 40px;
  padding: 50px;
}

.countdown-box,
.payment-info,
.qr-box {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 28px;
  padding: 30px;
}

.copy-btn {
  padding: 0 28px;
  border-radius: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, #00F5D4, #8B5CF6);
  color: black;
  transition: .3s;
}

.copy-btn:hover {
  transform: scale(1.03);
}

.confirm-btn {
  width: 100%;
  padding: 22px;
  border-radius: 24px;
  font-size: 1.1rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00F5D4, #8B5CF6);
  color: black;
  transition: .3s;
}

.confirm-btn:hover {
  transform: translateY(-3px);
}

.success-message {
  margin-top: 40px;
  text-align: center;
  padding: 50px;
  border-radius: 32px;
  background: rgba(0,245,212,.08);
  border: 1px solid rgba(0,245,212,.2);
}



.sidebar-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.04);
  transition: .3s;
}

.sidebar-link:hover {
  background: rgba(255,255,255,.06);
}

.dashboard-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 32px;
  padding: 35px;
}

.dashboard-label {
  color: #A1A1AA;
  margin-bottom: 18px;
}

.dashboard-number {
  font-size: 4rem;
  font-weight: 800;
}

.status-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0,245,212,.1);
  color: #00F5D4;
}

.table-btn {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: .3s;
}

.table-btn:hover {
  background: rgba(255,255,255,.08);
}

.detail-title {
  color: #A1A1AA;
  margin-bottom: 12px;
  font-size: .95rem;
}

.detail-text {
  font-size: 1.3rem;
  font-weight: 600;
}

.detail-paragraph {
  line-height: 1.9;
  color: #E4E4E7;
}


select {
    color: white;
}

select option {
    background: #111827;
    color: white;
}




/* FAQ */

.faq-question {

    width: 100%;
    padding: 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    font-size: 20px;
    font-weight: 600;

    color: white;

    background: transparent;

    border: none;

    cursor: pointer;

}

.faq-answer {

    max-height: 0;
    overflow: hidden;

    transition: all .4s ease;

}

.faq-answer p {

    padding: 0 28px 28px;
    color: #a1a1aa;
    line-height: 1.8;

}

.faq-item.active .faq-answer {

    max-height: 300px;

}

.faq-icon {

    font-size: 28px;
    transition: .3s;

}

.faq-item.active .faq-icon {

    transform: rotate(45deg);

}






.music-cover img {
    filter: drop-shadow(0 0 12px rgba(168,85,247,0.6));
}


.music-cover img {
    transition: transform 0.3s ease;
}

.music-card:hover .music-cover img {
    transform: scale(1.1) rotate(5deg);
}






.estilo-card{

background:rgba(255,255,255,.04);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

padding:22px;

cursor:pointer;

transition:.35s;

text-align:center;

}

.estilo-card h3{

font-size:18px;

font-weight:700;

margin-bottom:8px;

}

.estilo-card p{

font-size:13px;

opacity:.7;

}

.estilo-card:hover{

    transform:translateY(-6px);

    border-color:var(--card-color,#22d3ee);

    background:color-mix(in srgb, var(--card-color,#22d3ee) 8%, transparent);

    box-shadow:
        0 0 18px color-mix(in srgb, var(--card-color,#22d3ee) 45%, transparent),
        0 0 45px color-mix(in srgb, var(--card-color,#22d3ee) 20%, transparent);

}

.estilo-card.selected{

background:rgba(255,255,255,.12);

border-color:var(--accent-color,#22d3ee);

box-shadow:0 0 30px var(--accent-color,#22d3ee);

}



.subestilo-card{

padding:12px 18px;

border-radius:999px;

border:1px solid rgba(255,255,255,.08);

background:rgba(255,255,255,.04);

cursor:pointer;

transition:.25s;

font-size:14px;

}

.subestilo-card:hover{

transform:translateY(-2px);

border-color:#22d3ee;

box-shadow:0 0 15px rgba(34,211,238,.25);

}

.subestilo-card.selected{

background:#22d3ee;

color:#000;

font-weight:700;

border-color:#22d3ee;

}

.instagram-link{
    color:#a1a1aa;
    transition:.3s;
}

.instagram-link:hover{
    color:#E1306C;
    transform:scale(1.15);
}