@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
    --primary: #7c3aed;
    --accent: #c026d3;
    --dark: #0a0a0b;
    --light-text: #f1f0ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark);
    color: var(--light-text);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* ==================== NAVBAR ==================== */
.navbar {
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.9rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed, #c026d3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.desktop-menu {
    display: none;
    gap: 2.2rem;
    font-weight: 500;
}

.desktop-menu a {
    color: #e0dfff;
    text-decoration: none;
}

.desktop-menu a:hover {
    color: #c4b5fd;
}

.btn-premium {
    background: linear-gradient(90deg, #7c3aed, #c026d3);
    color: white;
    padding: 12px 26px;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.mobile-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 1.8rem 1.25rem;
    background: #111113;
    gap: 1.4rem;
    font-size: 1.15rem;
}

/* ==================== HERO ==================== */
.hero {
    background: linear-gradient(135deg, #1a1740 0%, #2c2566 100%);
    padding: 5.5rem 0 4.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 2.85rem;
}

.highlight {
    background: linear-gradient(to right, #c4b5fd, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.22rem;
    color: #d1d0ff;
    margin: 1.6rem 0 2.2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary {
    background: white;
    color: #1a1740;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid rgba(255,255,255,0.75);
    color: white;
    padding: 16px 32px;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.visual-card {
    background: rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 2.8rem 1.8rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
    overflow: hidden;
}

.wave-container {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 170px;
    gap: 11px;
    margin-bottom: 2rem;
}

.wave-bar {
    width: 17px;
    background: linear-gradient(#c4b5fd, #f472b6);
    border-radius: 9999px;
    animation: wave 1.5s infinite ease-in-out;
    animation-delay: var(--delay);
}

@keyframes wave {
    0%, 100% { height: 25px; }
    50% { height: 135px; }
}

/* ==================== SAMPLES + PLAYER ==================== */
.samples-section {
    padding: 4.5rem 0;
    background: #111113;
}

.section-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.section-tag {
    background: #7c3aed;
    color: white;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    align-self: flex-start;
}

.tracks-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.track-card {
    background: #1a1740;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(124,58,237,0.25);
    transition: all 0.4s ease;
}

.track-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.3);
}

.track-image {
    height: 230px;
    position: relative;
}

.track-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.track-category {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(0,0,0,0.75);
    color: white;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.85rem;
}

.track-info {
    padding: 1.6rem 1.6rem 0;
}

.track-info h3 {
    font-size: 1.45rem;
    margin-bottom: 0.6rem;
}

.track-description {
    color: #d1d0ff;
    margin-bottom: 1.4rem;
    font-size: 1.02rem;
}

/* PLAYER */
.audio-player {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.6rem;
    background: rgba(255,255,255,0.05);
    border-top: 1px solid rgba(124,58,237,0.2);
}

.play-pause-btn {
    width: 54px;
    height: 54px;
    background: #7c3aed;
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(124,58,237,0.45);
}

.progress-wrapper {
    flex: 1;
}

.progress-bar {
    height: 6px;
    background: #27272a;
    border-radius: 9999px;
    position: relative;
    cursor: pointer;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #7c3aed, #c026d3);
    width: 0%;
    border-radius: 9999px;
}

.times {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.84rem;
    color: #a5a3c0;
    font-family: monospace;
}

.buy-track-btn {
    background: linear-gradient(90deg, #7c3aed, #c026d3);
    color: white;
    padding: 12px 26px;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

/* ==================== OUTRAS SEÇÕES ==================== */
.process-section, .why-section {
    padding: 4.5rem 0;
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.8rem;
}

.process-step {
    background: rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 2.2rem;
    border: 1px solid rgba(124,58,237,0.15);
}

.step-number {
    font-size: 3.8rem;
    font-weight: 700;
    color: #7c3aed;
    opacity: 0.12;
    margin-bottom: 1rem;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
}

.why-list {
    list-style: none;
    margin-top: 1.5rem;
}

.why-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #080809;
    padding: 3.5rem 0 2rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #8a88a8;
    font-size: 0.95rem;
}

/* ==================== RESPONSIVIDADE ==================== */

@media (min-width: 640px) {
    .container { padding: 0 2rem; }
    .hero { padding: 6.5rem 0 5rem; }
    .hero-content h1 { font-size: 3.6rem; }
    .hero-buttons { flex-direction: row; }
    .tracks-grid { grid-template-columns: repeat(2, 1fr); }
    .section-header { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 1024px) {
    .desktop-menu { display: flex; }
    .mobile-menu-btn { display: none; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-content h1 { font-size: 4.9rem; }
    .tracks-grid { grid-template-columns: repeat(3, 1fr); }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .why-content { grid-template-columns: 1fr 1fr; text-align: left; }
    .footer-main { flex-direction: row; justify-content: space-between; align-items: flex-start; }
}

@media (min-width: 1280px) {
    .tracks-grid { grid-template-columns: repeat(4, 1fr); }
    .container { padding: 0 2.5rem; }
}




.link1{text-decoration: none;}
.link2{text-decoration: none;}
.link3{text-decoration: none;}
.linkmenu1{text-decoration: none;}
.linkmenu2{text-decoration: none;}
.linkmenu3{text-decoration: none;}
.linkmenu4{text-decoration: none;}
.section-link{text-decoration: none;}
