main{
    padding-top: 4rem;
}

.container_sites{
    background-color: #1B1F26B8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.espacador{
    width: 100%;
    height: 60px;
}

.lista_de_sites{
    border: 1px solid #E5D1D1;
    width: 70%;
    padding: 0 30px 16px;
}

.lista_de_sites h5{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    transform: translateY(10px);
}

.item_site{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
}

.item_site p{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

form button{
    font-family: 'Inter';
    font-weight: 400;
    font-size: 20px;
    color: #000;
    background-color: #EDB500;
    padding: 10px 24px;
    border-radius: 5px;
    cursor: pointer;
}

.sobre_primeiro{
    width: 100%;
    min-height: 85vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 60px 0;
    background-color: #1B1F26B8;
}

p{
    font-family: 'Inter';
    font-weight: 700;
    font-size: 28px;
}

.container_text{
    width: 25%;
}

.container_text p{
    color: #FFFFFF;
    font-size: 28px;
}

.container_img{
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container_img img{
    width: 100%;
    aspect-ratio: 1919/1079;
}

.slider{
    width: 100%;
    aspect-ratio: 1919/1079;
    overflow: hidden;
}

.list{
    position: relative;
    left: 0;
    display: flex;
    width: max-content;
    transition: 1s;
    overflow-y: hidden;
}

.list img{
    aspect-ratio: 1919/1079;
    width: 100%;
    max-width: 64.2vw;
    height: 100%;
    object-fit: cover;
}

.buttons{
    position: relative;
    left: 1%;
    top: 45%;
    width: 98%;
    display: flex;
    justify-content: space-between;
}

.buttons button{
    width: 50px;
    height: 50px;
    color: #000;
    background-color: transparent;
    font-family: monospace;
    font-weight: bold;
}

.dots{
    color: #000000;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0;
}

.dots li{
    list-style: none;
    width: 14px;
    height: 12px;
    background-color: #000000;
    margin: 12px 12px 0 12px;
    border-radius: 20px;
    transition: 1s;
    cursor: pointer;
}

.dots li.active{
    width: 32px;
}

.sobre_segundo{
    width: 100%;
    height: 65vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 200px 0;
}

.sobre_segundo p{
    width: 70%;
}

@media (max-width: 1800px){
    .container_text{
        width: 30%;
    }

    p{
        font-size: 26px;
    }

    .container_img{
        width: 60%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .list img{
        max-width: 59.2vw;
    }
}

@media (max-width: 1450px){
    .container_text p{
        font-size: 21px;
    }

    p{
        font-size: 23px;
    }
}