@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins",Arial, Helvetica, sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;

}


:root {
    --green: rgb(0, 61, 40);
    --yellow: rgb(246, 246, 38);
    --fundoVerde:rgb(4, 19, 3);
    --greenclaro: rgb(0, 135, 90);
}


.header {
    background-color: var(--fundoVerde);
}


#menuMobile {
    background-color: var(--green);
}




.sidebar{
    position: fixed;
    left:0;
    top:0;

    width:80px;
    height:100vh;
    z-index: 999;

    background:var(--green);

    transition:.3s;

    overflow:hidden;

    display:flex;
    flex-direction:column;
    border-radius: 10px;
}

.sidebar:hover {
    width:350px;
}

.sidebar > ul > li {
    list-style: none;
}




.menu {
    display: flex;
    padding: 6px;
    color: white;    
    overflow:hidden;
    white-space:nowrap;
    justify-content: space-evenly;
    align-items:center;
    gap: 40px;

}

.menu img{
    
    min-width:40px;
    margin-left: 20px;
    
}

.img-fluid
{
    border-radius: 50%;
}

.title {
    margin-top: 25px;
}


.menu-item{

    color:white;
    text-decoration:none;

    display:flex;
    align-items:center;

    gap:20px;

    padding:15px 0px;

    white-space:nowrap;

    transition:.2s;
}

.menu-item:hover{
    background: rgba(255, 255, 255, 0.131);
}

.menu-item i {

    font-size:22px;
    min-width:30px;

    text-align:center;
}


.redes {
    
    font-size: 2em;   
    display: flex;    
    flex-direction: column;
    overflow: hidden;
    justify-content: space-around;
    width: 180px;
    margin-top: 50px;

}


.sidebar:hover .redes {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}



.redes-cel {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}



.redes > a > i {
     color: white;
}

.redes > a > i:hover {
    color: var(--yellow);
    transition: .2;
}



.date-box {
    background-color: #f9c74f;
    color: #1a2b1f;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 8px;
}

.date-box .day {
    font-size: 2.2rem;
    line-height: 1;
}

.event-card {
    border: none;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.badge-proximo { 
    background-color: #1a2b1f; 
}

.badge-inscricoes { 

    background-color: #1a8c3d; 
}






/* CALENDARIO */


.calendar-wrapper{
    background:#fff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* tira a borda padrão */

.fc-theme-standard td,
.fc-theme-standard th,
.fc-theme-standard .fc-scrollgrid{
    border:1px solid #ececec;
}

/* mês */

.fc-toolbar-title{
    font-size:2rem !important;
    font-weight:800;
    text-transform:uppercase;
    color:#071c33;
}

/* botões */

.fc-button{

    background:#00844d !important;
    border:none !important;
    box-shadow:none !important;
}

.fc-button:hover{

    background:#01663c !important;

}

.fc-button:focus{

    box-shadow:none !important;

}

/* domingo...sábado */

.fc-col-header-cell{

    padding:12px 0;
    font-weight:700;
    text-transform:uppercase;

}

/* células */

.fc-daygrid-day{

    height:130px;

}

/* número do dia */

.fc-daygrid-day-number{

    font-weight:bold;
    color:#444;
}

/* hoje */

.fc-day-today{

    background:#e9fff6 !important;

}

/* evento */

.fc-event{

    border:none;
    border-radius:4px;
    padding:3px;
    font-size:.80rem;
    cursor:pointer;

}




.titulo-section{

    color:#002b2a;
    letter-spacing:4px;
    font-weight:700;

}

.evento-realizado{

    background:#fff;
    box-shadow:0 8px 20px rgba(0, 0, 0, 0.104);
    

}

.imagem{

    position:relative;
    overflow:hidden;

}

.imagem img{

    width:100%;
    height:280px;
    background-size:cover;
    transition:.4s;

}

.evento-realizado:hover img{

    transform:scale(1.08);

}

.data{

    position:absolute;
    left:16px;
    bottom:16px;
    color:#fff;
    font-size:.9rem;

}

.conteudo{

    padding:24px;

}

.conteudo h4{

    font-size:1.5rem;
    font-weight:800;
    margin-bottom:25px;
    text-transform:uppercase;

}

.resultado{

    background:#f7f2e7;
    border-left:4px solid #ffc107;
    padding:14px 18px;
    font-weight:700;
    color:#01352d;

}




footer 
{
    margin-left: 40px;    
    background-color: var(--green);
}


.CT {
    display: flex; 
    align-items: center; 
    flex-shrink: 0;
}

.CT > div > i 
{
    font-size: 1.5em;
}

