@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');

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


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




#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;
    
}

.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;    
    overflow: hidden;
    justify-content: space-around;
    flex-direction: column;
    width: 180px;
    margin: 50px -5px;
    
}

.sidebar:hover .redes {
    display: flex;
    flex-direction: row;
       
}


.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;
}


#inicio 
{
    margin-left: 80px;
}


#esquerda 
{
    background-color: var(--fundoVerde);
}


.title-1 {
    color: white;
}


#carouselEsportes{
    height:100vh;
}

#carouselEsportes .carousel-inner{
    height:100%;
}

#carouselEsportes .carousel-item{
    height:100%;
}

#carouselEsportes img{
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.col-lg-5{
    position:relative;
    overflow:hidden;
}

.col-lg-5::before{

    content:"";
    position:absolute;
    left:0;
    top:0;
    width:150px;
    height:100%;
    z-index:2;
    pointer-events:none;
    background:linear-gradient(
        to right,
        #08150f 0%,
        rgba(8,21,15,.95) 15%,
        rgba(8,21,15,.75) 40%,
        rgba(8,21,15,.35) 70%,
        transparent 100%
    );
}




.marquee{

   position: relative;
    z-index: 99;
    overflow: hidden;
    white-space: nowrap;
    background: var(--fundoVerde);

}

.marquee-content{

    display:inline-flex;
    gap:40px;
    animation:scroll 20s linear infinite;
    color: white;
    font-size: 1.2em;
    padding: 8px;
    

}

@keyframes scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}




#sobre {
    margin-left: 101px;
}


.title-green {
    color: var(--green);
}


.link-historia {
    text-decoration: none;
    color: var(--green);  
    border-bottom: 3px solid rgb(255, 248, 45);
      
}


.link-historia:hover {
   font-weight: bold;
   border-bottom: 5px solid yellow;
   
}


#divisao {
    padding: 20px;
    background-color: var(--green);
}



.dados {
    display: flex;
    justify-content: space-around;
    
}

.dados > div > i {
    font-size: 2.5em;
    color: white;
    padding: 10px;
}

.moda {
    margin-left: 10px;
}


.agenda {
    border-left: 2px solid --green;
}



#galeria {

    border-bottom: 5px solid var(--yellow);
}


.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; 
}



.modalidade{

    position: relative;
    overflow: hidden;
    border-radius: 12px;
}


.modalidade img{

    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: .3s;
}

.modalidade-overlay{

    position: absolute;
    inset: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 20px;
    background: rgba(0, 135, 90, 0.88);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}


.modalidade-overlay
{
    color: white;
    font-weight: bold;
    margin: 0;
}



.modalidade:hover img{

    transform:scale(1.08);
    filter:brightness(.45);    
    
}

.modalidade:hover .modalidade-overlay{

    opacity:0.7;
    
}

.modalidade:hover .modalidade-info{

    transform:translateY(0);
}


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


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

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

