.secoes{
    display: flex;
    width: 80%;
    margin: 5vh auto;
}

.secao{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.secao__cabecalho{
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
    padding: 0 3px;
    color: #464646;
}

.secao__cabecalho--titulo{
    font-size: 2rem;
}

.secao__cabecalho--adicionar{
    height: 3rem;
    width: 170px;
    border: none;
    color: white;
    background-color: #2A7AE4;
    cursor: pointer;
    transition: .4s;
}

.secao__cabecalho--adicionar:hover{
    background-color: #114992;
}

.secao__cabecalho--mais{
    color: #2A7AE4;
    font-weight: bold;
    text-decoration: none;
}

.secao__conteudo{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-bottom: 10vh;
}

.secao__unidade{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 15%;
    aspect-ratio: 1/1.5;
    margin-right: calc(1.52% - 4px);
    margin-bottom: 2rem;
    padding: .2%;
    border: solid #ffffff00 2px;
    transition: .1s;
    cursor: pointer;
}

.secao__unidade:nth-child(6n){
    margin-right: 0;
}

.secao__unidade:hover{
    background-color: #FFFFFF;
    box-shadow: 0 0 20px;
    transform: scale(1.1);
}

.secao__unidade--imagem{
    width: 100%;
    aspect-ratio: 1/1;

    background-color: #FFFFFF;
    object-fit: contain;
}

.secao__unidade--valor{
    font-weight: bold;
}

.secao__unidade--mais{
    color: #2A7AE4;
    font-weight: bold;
    text-decoration: none;
}

.secao__unidade--editar, .secao__unidade--deletar{
    position: absolute;
    top: 5%;
    filter: drop-shadow(0 0 5px #22222280);
}

.secao__unidade--editar{
    right: 5%;
}

.secao__unidade--deletar{
    right: 25%;
}

.secao__unidade--editar:hover, .secao__unidade--deletar:hover{
    transform: scale(1.2);
    filter: brightness(75%);
}

.esconder{
    display: none;
}

@media screen and (max-width: 768px) {
    .secoes{
        width: 95%;
    }

    .secao__cabecalho--titulo{
        font-size: 1.5rem;
    }

    .secao__conteudo{
        justify-content: flex-start;
    }

    .secao__unidade{
        width: 23%;
        margin-right: 1.4%;
    }

    .secao__unidade:nth-child(4n) {
        margin-right: 0;
    }

    .secao__unidade:hover{
        background-color: transparent;
        box-shadow: none;
        transform: scale(1.0);
    }

    .secao__unidade--nome{
        font-size: .9rem;
    }
}

@media screen and (max-width: 430px) {
    .secoes{
        width: 90%;
    }

    .secao__cabecalho--titulo{
        font-size: 1.25rem;
    }

    .secao__conteudo{
        justify-content: space-between;
    }

    .secao__unidade{
        width: 46%;
        margin: 0;
    }
}