body {
    font-family: Arial, sans-serif;
    margin: 20px;
}

.projetos-container {
            display: flex;
            justify-content: space-between;
            gap: 20px;
        }

        .projeto-card {
            background-color: white;
            box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
            border-radius: 8px;
            overflow: hidden;
            width: 30%;
            position: relative;
            color: white;
        }

        .projeto-card img {
            width: 100%;
            height: 300px;
			object-fit: cover;
            	object-fit: cover;
        }

.projeto-conteudo {
    padding: 60px;
    background-color: rgba(91 80 80 / 70%);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

        .projeto-conteudo h3 {
            margin: 0;
            font-size: 20px;
        }

        .projeto-conteudo p {
            margin-top: 10px;
            font-size: 14px;
        }

        .botao-verde, .botao-laranja, .botao-azul {
            display: block;
            margin-top: 10px;
            padding: 10px;
            color: white;
            text-align: center;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
        }

.botao-verde {
    background-color: #73B1D6;
}
.botao-laranja {
    background-color: #4BC385;
}
.botao-azul {
    background-color: #091B25;
}

li.group:hover > ul {
    display: block;
}

.header {
    display: flex;
    flex-direction: column; /* Empilha os elementos verticalmente */
    align-items: center; /* Centraliza os itens */
}


.logo-cei-container {
    margin-top: 1rem; /* Move duas linhas abaixo */
    text-align: center;
}

.logo-cei-container img {
    width: 20px;
    height: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo-tnc {
    max-width: 60%;
}
.destaque {
    font-weight: bold;
    color: #000000; 
    font-size: 1.05em; /* Um pouco maior, opcional */
}

@media (max-width: 768px) {
    .projetos-container {
        flex-direction: column;
        align-items: center;
    }

    .projeto-card {
        width: 90%;
    }

    .projeto-conteudo {
        padding: 30px;
    }

    .header {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }

        .logo-container img {
            max-width: 80%;
            height: auto;
        }
}