.portoes__main {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.portoes__titulo__container {
    text-align: center;
}

.portoes__titulo__container h1 {
    font-weight: 700;
    font-size: 2.5rem;
}

.portoes__titulo__container h1 strong {
    color: var(--cor-amarelo);
}

.portoes__texto {
    max-width: 700px;
    margin: 2rem auto;
    text-align: center;
}

.portoes__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.portoes__card {
    width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.2rem;
    color: var(--cor-texto);
    position: relative;
}

.portoes__card h3 {
    font-size: 1.2rem;
    text-align: center;
    margin-top: .5rem;
}

.portoes__card img {
    width: 100%;
    transition: 0.3s;
}

.portoes__portao--hover {
    background-color: var(--azul-padrao-bg);
    padding: .5rem 1.2rem;
    color: white;
    position: absolute;
    top: 27%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.3s;
}

.portoes__portao--hover i {
    margin-top: 1rem;
    font-size: 2rem;
}

.portoes__portao--hover p {
    margin-top: .5rem;
    font-size: 1rem;
}

.portoes__card:hover img {
    filter: blur(2px);
}

.portoes__card:hover .portoes__portao--hover {
    opacity: .9;
}

.portoes__filtros__container {
    margin: 3rem 0;
    text-align: center;
}

.portoes__filtros__container a {
    color: var(--cor-texto);
    padding: .2rem;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin: 0 .2rem;
}

.portoes__filtros__separador {
    font-size: 1.5rem;
}

.portoes__botao__filtro:hover {
    font-weight: 700;
}

.portoes__botao__filtro--ativo {
    font-weight: 800;
}

.portoes__cards__nenhum {
    text-align: center;
    margin: 4rem 1rem;
}