
:root
{
    --azul-medio: #3d92ca;
    --azul-escuro: #2e85be;
    --cinza-escuro: rgb(48, 47, 47);
    --cinza-medio: rgba(95, 95, 95, 0.692);
    --cinza-claro: #f4f4f4;
}


.main-banner 
{
    background-image: url(../img/home/fundo-outdoor.jpg);
    width: 100%;
    height: 30rem;
}
.texto-superior
{
    font-size: 1.8rem;
}

.texto-inferior
{
    font-size: 3rem;
}
.texto-inferior, .texto-superior
{
    color: white;
    text-align: left;
    margin-left: 10rem;
}

.main-texto
{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
}

.boxes
{
    width: 80%;
    display: flex;
    justify-content:space-between;
}

.content-boxes
{
    display: flex;
    justify-content: space-around;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

.box-image
{
    width: 6rem;
    height: 6rem;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box-image img
{
    width: 6rem;
    height: 6rem;
}
.box-info
{
    width: 20rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.texto-info p
{
    text-align: justify; 
    text-indent: 50px;
}

.label-info
{
    color: var(--azul-medio);
    font-weight: 600;
    font-size: 15px;
    margin-top: 0.5rem;
}

.texto-info
{
    color: var(--cinza-escuro);
    font-size: 13px;
}

@media screen and (max-width: 1024px)
{
    .boxes
    {
        width: 100%;
    }

    .content-boxes
    {
        padding: 2rem;
    }

    .box-info
    {
        width: 18rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}

@media screen and (max-width: 768px)
{
    .boxes
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .box-info
    {
        margin-top: 1rem;
        width: 30rem;
    }
    .main-banner 
    {
        width: 100%;
        height: 20rem;
    }
    .texto-superior
    {
        font-size: 1rem;
    }

    .texto-inferior
    {
        font-size: 2rem;
    }
    .texto-inferior, .texto-superior
    {
        margin-left: 3rem;
    }
}

@media screen and (max-width: 425px)
{
    .boxes
    {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .box-info
    {
        margin-top: 1rem;
        width: 20rem;
    }
    .main-banner 
    {
        width: 100%;
        height: 15rem;
    }
    .texto-superior
    {
        font-size: 1rem;
    }

    .texto-inferior
    {
        font-size: 1.5rem;
    }

    .top-itens
    {
        display: none;
    }

    .texto-inferior, .texto-superior
    {
        margin-left: 1rem;
    }
    .content-boxes
    {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 320px)
{

    .texto-superior
    {
        font-size: 0.9rem;
    }

    .texto-inferior
    {
        font-size: 1.2rem;
    }

    .texto-inferior, .texto-superior
    {
        margin-left: 0.5rem;
    }

    .box-info
    {
        width: 16rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

}