main {
    display: flex;
    justify-content: center;
    align-items:start;
    align-content: start;
    flex-flow: row wrap;
    width: 100%;
    min-height: 600px;
    height: auto;
    background-color: white;
    gap: 50px;
    padding: 100px 5% 5% 5%;
}

.empreendimento-card {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    position: relative;
    width: 320px;
    min-height: 535px;
    max-height: 535px;
    border: 1px solid #ccc;
    gap: 10px;
    border-radius: 4px;
    overflow: hidden;
    transition: 250ms;

}

.empreendimento-image {
    width: 100%;            /* Ocupa toda a largura disponível do container */
    height: 400px;          /* Fixa a altura desejada direto, sem precisar de min/max */
    object-fit: cover;      /* Mantém a proporção cortando os excessos */
    object-position: center;/* Foca no meio da foto */
}

.empreendimento-details {
    width: 100%;
    border-top: none;
    padding: 20px;
}

.empreendimento-link {
    display:flex;
    justify-content: center;
    align-items: center;
    flex-flow: row wrap;
    width: 100%;
    text-decoration: none;
    max-height: 700px;
}

.empreendimento-link:hover {
    .empreendimento-title {
        color: black;
    }
}

.empreendimento-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 1px;
    height: 50px;
    color: #1b1b1b;
    transition: 250ms;
}

.empreendimento-info {
    display: flex;
    justify-content: start;
    align-items: center;
    width: 100%;
    font-size: 16px;
    color: #1b1b1b;
    text-shadow: 1px 0px 0px #1b1b1b;
    text-transform: lowercase;
    text-align: start;
}

.empreendimento-info2 {
    display: flex;
    justify-content:start;
    align-items: center;
    width: 100%;
    font-size: 13px;
    color: rgb(90, 90, 90);
    font-weight: bolder;
    margin-top: 10px;
    line-height: 20px;
}