/* Estilos da Navbar e Links */
.custom-hover-link {
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
}

.custom-hover-link:hover {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
}

/* PADRONIZAÇÃO DA IMAGEM (Seção Empresa) */
.img-container {
    width: 100%;
    height: 450px; /* Altura fixa para a foto da empresa */
    overflow: hidden;
    border-radius: 15px;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher sem esticar */
    object-position: center;
    transition: transform 0.5s ease;
}

.img-container img:hover {
    transform: scale(1.05);
}

/* PADRONIZAÇÃO DOS CARDS (Caso use nesta página ou em modelos.php) */
.card-img-container {
    width: 100%;
    height: 220px; /* Altura fixa para cards menores */
    overflow: hidden;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsividade para Celular */
@media (max-width: 991px) {
    .img-container {
        height: 300px; /* No celular a imagem fica um pouco menor */
    }
}