/*AGENDA COMPLETA*/
.full-agenda-section {
    padding: 40px 5% 100px 5%;
    display: flex;
    justify-content: center;
    width: 100%;
}

.agenda-container {
    max-width: 900px; 
    width: 100%;
}

.agenda-header {
    text-align: center;
    margin-bottom: 50px;
}

.agenda-header h2 {
    font-family: 'Poppins', sans-serif;
    color: #f5f5f5;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.agenda-header p {
    font-family: 'Poppins', sans-serif;
    color: #cccccc;
    font-size: 1rem;
}

/*  1. LISTA */
.agenda-list {
    display: flex;
    flex-direction: column;
    gap: 15px; 
}

/*  2. CARD DO EVENTO */
.agenda-item {
    background-color: #0a0a0a;
    border-left: 5px solid #fc4c02; 
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.agenda-item:hover {
    transform: scale(1.02); 
    box-shadow: 0 5px 15px rgba(252, 76, 2, 0.2);
    border-left-color: #ffffff; 
}

/*  3. DATA */
.agenda-data {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 6px;
    min-width: 80px;
    font-weight: 700;
}

.agenda-data .dia {
    font-family: 'Poppins', sans-serif; 
    color: #ffffff;
    font-size: 2rem;
    line-height: 1;
}

.agenda-data .mes {
    font-family: 'Poppins', sans-serif;
    color: #fc4c02;
    font-weight: 800;
    font-size: 0.9rem;
}

/*  4. DETALHES */
.agenda-detalhes {
    flex: 1; 
    padding: 0 30px;
    display: flex;
    flex-direction: column;
}

.agenda-detalhes .campeonato {
    font-family: 'Poppins', sans-serif;
    color: #aaaaaa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.agenda-detalhes h3 {
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.agenda-detalhes .vs {
    color: #fc4c02; 
    font-style: italic;
    font-weight: 400;
    margin: 0 5px;
}

/*  5. HORA */
.agenda-hora {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    background-color: #fc4c02;
    padding: 10px 20px;
    border-radius: 50px; 
}

/*  6. EVENTOS */
.agenda-item.evento-passado {
    opacity: 0.5; 
    filter: grayscale(100%); 
    cursor: default; 
}

.agenda-item.evento-passado:hover {
    transform: none;
    box-shadow: none;
    border-left-color: #fc4c02; 
}

.agenda-item.evento-hoje {
    background-color: #fc4c02; 
    border-left: 5px solid #ffffff;; 
    box-shadow: 0 0 25px rgba(252, 76, 2, 0.5); 
}

.agenda-item.evento-hoje * {
    color: #ffffff !important;
}

.agenda-item.evento-hoje .agenda-data {
    background-color: rgba(255, 255, 255, 0.1); 
    border-radius: 8px;
}

.agenda-item.evento-hoje .agenda-hora {
    background-color: #0a0a0a; 
    color: #ffffff !important; 
}
.agenda-item.evento-hoje .agenda-data .dia,
.agenda-item.evento-hoje .agenda-data .mes,
.agenda-item.evento-hoje .agenda-detalhes h3,
.agenda-item.evento-hoje .agenda-detalhes .campeonato {
    color: #ffffff !important;
}

.competitive-section .team-header h2,
.competitive-section .team-header p {
    color: #ffffff !important;
}

.mensagem-vazia {
    text-align: center;
    color: #cccccc;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    width: 100%;
    padding: 60px 20px;
    background-color: #0a0a0a; 
    border-radius: 8px;
    border: 1px dashed #fc4c02;
    margin: 0 auto;
}
/*  RESPONSIVIDADE GERAL */

/*  1. TABLETS NA VERTICAL  */  
@media (max-width: 900px) {
    .full-agenda-section {
        padding-left: 5%;
        padding-right: 5%;
    }

    .agenda-item {
        padding: 15px 20px;
    }

    .agenda-detalhes {
        padding: 0 15px; 
    }
    .agenda-detalhes h3 {
        font-size: 1.2rem;
    }
    
    .agenda-hora {
        font-size: 1.1rem;
        padding: 8px 15px;
    }
}

/*  2. CELULARES */
@media (max-width: 600px) {
    .full-agenda-section {
        padding-top: 40px;
        padding-bottom: 80px;
    }

    .agenda-header h2 {
        font-size: 2rem;
    }

    .agenda-item {
        flex-direction: column; 
        gap: 15px; 
        text-align: center; 
        padding: 25px 20px;
    }

    .agenda-data {
        width: 100%; 
        flex-direction: row; 
        gap: 10px;
    }
    .agenda-data .dia { font-size: 1.5rem; }
    .agenda-data .mes { font-size: 1rem; }

    .agenda-detalhes {
        padding: 0; 
        width: 100%;
    }
    .agenda-detalhes h3 { font-size: 1.3rem; }

    .agenda-hora {
        width: 100%; 
        justify-content: center;
        font-size: 1.1rem;
    }
}