:root {
    --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --neon-pink: #ff00ff;
    --neon-blue: #00f2ff;
    --gold: #ffcf40;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styling */
.main-header {
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 0, 255, 0.2);
}

.logo {
    width: 120px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

.brand-name {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(to bottom, #fff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
    filter: drop-shadow(0 0 5px rgba(255, 207, 64, 0.5));
}

.subtitle {
    font-size: 1.2rem;
    color: var(--neon-pink);
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
}

.instruction {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item:hover {
    color: var(--gold);
}

.contact-item svg {
    color: var(--neon-pink);
}

/* Search Area */
.search-area {
    margin: 40px 0;
}

.search-box {
    display: flex;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 15px 25px;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.search-box select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0 20px;
    border-radius: 50px;
    outline: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

.search-box select option {
    background: #1a1a2e;
}

.results-count {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ff00ca;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid System */
.songs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

/* Card Styling */
.song-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 0, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
    overflow: hidden;
}

.song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--neon-pink);
    opacity: 0.6;
}

.song-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.song-code {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 5px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    box-shadow: 0 0 10px rgba(255, 207, 64, 0.3);
}

.song-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.song-artist {
    font-size: 0.9rem;
    color: var(--neon-blue);
    margin-bottom: 12px;
}

.song-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Footer */
.footer-simple {
    text-align: center;
    padding: 40px;
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Responsiveness */
@media (max-width: 1200px) {
    .songs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .songs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .search-box {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .search-box select {
        padding: 15px;
    }
}

@media (max-width: 600px) {
    .songs-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-name {
        font-size: 2.2rem;
    }
    
    .main-header {
        padding: 40px 15px 30px;
    }
    
    .contact-info {
        gap: 15px;
    }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f0c29;
}

::-webkit-scrollbar-thumb {
    background: var(--neon-pink);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-blue);
}



/* ===== HEADER COM BANNER ===== */

.main-header {
    height: 280px;
    background: url("BANNER.jpg") center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay escuro para contraste */
.main-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(20,0,40,0.7), rgba(10,0,30,0.9));
}

.banner-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* LOGO MAIOR */
.logo {
    width: 340px; /* aumenta aqui */
    max-width: 90%;
    filter: drop-shadow(0 0 25px rgba(255,0,200,0.6));
}

/* ===== TÍTULO DA PÁGINA ===== */

.page-title {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-title h1 {
    font-size: 32px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff00cc, #00f7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
}

.page-title .instruction {
    color: #bbb;
    margin-top: 8px;
}


@media (max-width: 768px) {

    .main-header {
        height: 300px;
    }

    .logo {
        width: 180px;
    }

    .page-title h1 {
        font-size: 24px;
    }

}

.song-code {
    font-size: 22px;
    font-weight: 800;
    color: #000000;
    background: rgb(247 219 0 / 94%);
    padding: 6px 12px;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 6px;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fav-star {
    font-size: 26px;
    cursor: pointer;
    color: #555;
    transition: 0.3s;
}

.fav-star.active {
    color: gold;
    text-shadow: 0 0 10px gold;
}

.contact-btn {
    background: linear-gradient(90deg,#ff00cc,#3333ff);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

/* FUNDO ESCURO */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;              /* escondido por padrão */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* CARD DE CONTATOS */
.modal-content {
    background: linear-gradient(135deg, #350635, #260226);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    color: white;
    width: 280px;

    animation: modalFade 0.35s ease-out; /* 🔥 AQUI */
}

/* LOGO */
.modal-logo {
    width: 140px;
    margin-bottom: 15px;
}

/* TEXTO */
.contact-item {
    font-size: 15px;
    margin: 8px 0;
    opacity: 0.95;
}

/* BOTÃO FECHAR */
.close-btn {
    margin-top: 20px;
    background: linear-gradient(135deg, #ff2bd6, #ff008c);
    color: #fff;
    border: none;
    padding: 10px 26px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 0, 140, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.close-btn:hover {
    transform: scale(1.07);
    box-shadow: 0 12px 30px rgba(255, 0, 140, 0.6);
}

/* ANIMAÇÃO */
@keyframes modalFade {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.song-card {
    background: #7a7a7a;
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 10px;
}

.song-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.song-card {
    background: #8c12941c;
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 10px;
}

.song-line {
    display: flex;
    align-items: center;
    gap: 12px;
}

.song-code {
    font-size: 22px;
    font-weight: 800;
    color: #35246c;
    min-width: 70px;
    text-align: right;
}

.song-text {
    flex: 1;
}

.song-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.song-artist {
    font-size: 13px;
    color: #ffcc66;
}

.fav-star {
    font-size: 22px;
    cursor: pointer;
    color: #bbb;
}

.fav-star.active {
    color: #e1b54d;
}

.contact-btn {
    display: block;
    margin: 20px auto 30px auto;
    background: linear-gradient(135deg, #59256b, #3c032b);
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 0, 140, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(255, 0, 140, 0.6);
}