#banner{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 50px;
    background: linear-gradient(to right, #00C0FF, #ececec);
}

.ladoE{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.ladoE h1{
    font-size: 40px;
    letter-spacing: 1px;
    line-height: 50px;
    color: #ffffff;
}

.ladoE p {
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    color: #ececec;
    flex-wrap: wrap;
}

.ladoE button{
    margin-top: 50px;
    background-color: #ececec;
    padding: 10px;
    border-radius: 5px;
}

.ladoE button:hover{
    box-shadow: 5px 5px 10px #555555;
    background-color: #0051DB ;
}

.ladoE a {
    text-decoration: none;
    color: #555555;
}
.ladoE a:hover {
    text-decoration: none;
    color: #ffffff;
}

.separator{
    width: 50px;
    border:  solid 1px #00C0FF;
    background: #00C0FF;
    margin-top: 10px;
    margin-bottom: 30px;
}

.sobre{
    padding: 100px 0;
    display: flex;
    flex-direction: row;
}

.info-ladoD{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-ladoD h2{
    font-size: 36px;
    line-height: 45px;
    letter-spacing: 1px;
    color: #222;
}

.info-ladoD p{
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    color: #555555;
}

#clientes{
    background: linear-gradient(to right, #f5f5f5, #ececec);

}

.partners{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 100px 0;
    flex-wrap: wrap;

}

.partners h2{
    text-align: center;
}

.partners div{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.partners div img{
    padding: 5px;
}

.galeria{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    padding: 100px 0;
    flex-wrap: wrap;
}

.galeria h2{
    text-align: center;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.gallery a {
    flex: 1 1 calc(25% - 10px); /* 3 imagens por linha */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.gallery img {
    width: 100%;
    height: auto;
    display: block;
}

#eventos{
    background: linear-gradient(to right, #00C0FF, #00C0FF);
    padding: 50px 0;
    flex-wrap: wrap;
}

#eventos h2{
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 1px;
    color: #222;
}

#eventos p{
    font-size: 16px;
    line-height: 25px;
    letter-spacing: 1px;
    color: #555;
}

.box-eventos{
    background-color: #f5f5f5;
    padding: 50px;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.lado-btn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.lado-btn button{
    font-size: 16px;
    padding: 10px;
    background-color: #00C0FF;
    border-radius: 5px;
}

.lado-btn button:hover{
    background: #0051DB;
    box-shadow: 0px 2px 2px #999;
}

.lado-btn button a {
    color: #fff;
    text-decoration: none;
}


/* Responsivo */
@media (min-width: 320px) {

    .ladoD{
        display: none;
    }

    .ladoE {
        padding: 20px;
    }
   
    #eventos{
        padding: 50px 15px;
    }

}