body {
    background-color: #00254a;
}
.container {
    width: 1000px;
    max-width: 1000px;
}
header {
    background-color: #6699cc;
    padding: 15px;
}

header span {
    color: #fff;
    font-style: italic;
    display: inline-flex;
    margin-top: 10vh;
    font-weight: 500;
}

.menu-principal {
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #283882;
}

.menu-ativo {
    background-color: #00254a;
}

.menu-principal li {
    display: inline;
    list-style: none;
}

.menu-principal li a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    font-size: 13px;
    display: inline-block;
    border-left: 1px solid;
    border-color: #6699cc;
}

.content {
    padding: 4rem;
    background-color: #ffffff;
}

.content h2,
.content h4 {
    color: #283882;
    line-height: 1.5;
    text-transform: uppercase;
    font-weight: 800;
}

.content .listagem {
    margin: 5vh 0;
    padding: 0;
}

.content .listagem li {
    list-style: none;
    font-weight: 500;
    font-size: 1.5rem;
}

.content .listagem li a {
    color: #283882;
    text-decoration: none;
    font-size: 1.3rem;
}

.espaco {
    display: block;
    padding: 15vh;
}

.espaco2 {
    display: block;
    padding: 4vh;
}

/*---- BOX LOGOTIPOS ----*/
.box-logotipos {
    display: flex;
    flex-wrap: wrap; /* Adiciona quebra de linha */
    gap: 30px;
    padding: 2rem;
    justify-content: center;
}

.logotipos {
    width: 160px;
    height: auto;
    display: block;
    text-align: center;
    flex: 0 1 calc(20% - 30px);
    box-sizing: border-box;
    text-decoration: none;
    color: #283882;
}

@media only screen and (max-width: 768px) {
    .logotipos {
        width: 100px; /* Ajuste o tamanho conforme necessário */
        flex: 0 1 calc(50% - 15px); /* Ajuste o flex conforme necessário */
        margin-bottom: 15px; /* Adicione espaçamento entre os elementos, se necessário */
    }
}

@media only screen and (max-width: 480px) {
    .logotipos {
        width: 80px; /* Ajuste o tamanho conforme necessário */
        flex: 0 1 calc(100% - 10px); /* Ajuste o flex conforme necessário */
        margin-bottom: 10px; /* Adicione espaçamento entre os elementos, se necessário */
    }
}

.logotipos span {
    font-weight: bold;
    line-height: 2.2;
    font-size: 14px;
}

.box-logotipos img {
    max-width: 140px;
    object-fit: contain;
    aspect-ratio: 4 / 3;
    transition: all 0.3s;
}

.box-logotipos:hover img {
    filter: grayscale(1) opacity(0.5);
}

.box-logotipos img:hover {
    filter: grayscale(0) opacity(1);
    transition: all 0.3s;
}