/******************************************************
 *  SAMBA QUADRADO — TEMA NEON + GLASS BLUR
 *  Cores principais:
 *  Rosa Neon:   #ff0099
 *  Verde Neon:  #39ff14
 *  Azul Neon:   #00eaff
 *  Amarelo:     #ffe600
 ******************************************************/

/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY */
body {
    background: #0a0a0a;
    color: #fff;
    font-family: "Segoe UI", Arial, sans-serif;
    padding-bottom: 85px;
    overflow-x: hidden;
}

/**********************************************
 *  NEON GLOW UTILIDADES
 **********************************************/
.neon-pink {
    color: #ff0099;
    text-shadow: 0 0 6px #ff0099, 0 0 12px #ff4fb9, 0 0 18px #ff77cc;
}

.neon-green {
    color: #39ff14;
    text-shadow: 0 0 6px #39ff14, 0 0 10px #5dff3f;
}

.neon-blue {
    color: #00eaff;
    text-shadow: 0 0 6px #00eaff, 0 0 10px #4af6ff;
}

.neon-yellow {
    color: #ffe600;
    text-shadow: 0 0 6px #ffe600, 0 0 12px #fff06a;
}

/**********************************************
 * GLASS BLUR PADRÃO
 **********************************************/
.glass {
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/**********************************************
 * NAVBAR SUPERIOR — GLASS + NEON
 **********************************************/
nav {
    background: rgba(8, 8, 16, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 0, 153, 0.35);
    box-shadow: 0 2px 14px rgba(255, 0, 153, 0.25);
    z-index: 9999 !important;
}

nav a.menu-link {
    color: #ddd;
    transition: 0.2s ease-in-out;
}

nav a.menu-link.active {
    color: #39ff14 !important;
    text-shadow: 0 0 8px #39ff14;
}

nav a.menu-link:hover {
    color: #fff;
}

/**********************************************
 *  SEÇÃO HOME / CAPA
 **********************************************/
#bgCover {
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 420px;
    filter: brightness(0.65);
}

.bg-mask {
    margin-top: -420px;
    padding-bottom: 40px;
}

/**********************************************
 *  AGENDA DA SEMANA (CARD FIXO)
 **********************************************/
#agenda-semana-box {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9000;
    width: 95%;
    max-width: 580px;
}

.agenda-card {
    background: rgba(0, 0, 0, 0.55);
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(255, 0, 153, 0.25);
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.4);
    backdrop-filter: blur(14px);
}

.agenda-card h2 {
    text-align: center;
    font-size: 20px;
    color: #ff0099;
    text-shadow: 0 0 10px #ff0099;
    margin-bottom: 12px;
}

.agenda-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(0, 0, 0, 0.4);
    padding: 12px 16px;
    margin-bottom: 12px;
    border-left: 4px solid #ff0099;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(255, 0, 153, 0.4);
}

.agenda-date {
    font-size: 1.2rem;
    font-weight: 700;
    color: #39ff14;
    text-shadow: 0 0 6px #39ff14;
}

.agenda-title {
    font-weight: 600;
    color: #00eaff;
    text-shadow: 0 0 8px #00eaff;
}

/**********************************************
 * CALENDÁRIO COMPLETO — NEON + GLASS
 **********************************************/
.calendar-month {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 153, 0.15);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 12px rgba(255, 0, 153, 0.25);
}

.calendar-title {
    background: linear-gradient(90deg, #ff0099, #00eaff);
    color: #fff;
    padding: 10px 14px;
    font-size: 18px;
    border-radius: 10px;
    text-transform: uppercase;
}

.calendar-table td {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.2s;
}

.calendar-table td:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* EVENTOS */
.event-pill {
    color: #fff;
    padding: 4px 6px;
    border-radius: 6px;
    margin-top: 3px;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 0 10px #0006;
}

/* cores */
.event-santo { background: #00a878; }
.event-praiano { background: #ff8c00; }
.event-onca { background: #c2185b; }
.event-vanda { background: #3f51b5; }
.event-guara { background: #8e24aa; }

/**********************************************
 * FOOTER PLAYER — GLASS + NEON + SOMBRA RGB
 **********************************************/
#footer-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 18px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(15px);
    border-top: 2px solid rgba(255, 0, 153, 0.45);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 99999;
    box-shadow: 0 -4px 25px rgba(255, 0, 153, 0.35);
}

#fp-cover {
    width: 55px;
    height: 55px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 2px solid #ff0099;
    box-shadow: 0 0 12px #ff0099;
}

.fp-info {
    flex: 1;
}

#fp-song {
    font-size: 16px;
    font-weight: bold;
    color: #39ff14;
    text-shadow: 0 0 8px #39ff14;
}

#fp-artist {
    opacity: 0.85;
}

#fp-playbtn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 0, 153, 0.4);
    color: white;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 0 12px #ff0099;
    transition: 0.2s;
}

#fp-playbtn:hover {
    transform: scale(1.12);
}

.fp-social {
    display: flex;
    gap: 12px;
}

.fp-social i {
    font-size: 22px;
    transition: 0.2s;
}

.fp-social i:hover {
    color: #ff0099;
    text-shadow: 0 0 10px #ff0099;
}

/**********************************************
 * RESPONSIVIDADE
 **********************************************/
@media (max-width: 768px) {
    #agenda-semana-box {
        top: 100px;
        padding: 0 10px;
    }

    #footer-player {
        padding: 10px;
        gap: 10px;
    }

    #fp-cover {
        width: 46px;
        height: 46px;
    }
}
