/* Estilos Desktop CORRIGIDOS */
.principal_cont {
    /* REMOVIDO: position: relative; e top: -12rem; */
    display: grid; 
    grid-template-columns: 1fr 1.5fr; 
    align-items: stretch;
    gap: var(--gap);
    min-height: calc(100vh - 65px); /* Altura da tela menos a altura do menu */
    padding-top: 4rem; 
    padding-bottom: 4rem;
}

.principal_text_content, .principal_img {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
}

.principal_text_content h2 {
    font-size: 6rem;
    margin-bottom: 5rem;
    text-transform: uppercase;
    line-height: 1;
}

.principal_img img {
    max-width: 100%;
    height: auto;
}

/* MEDIA QUERY ESPECÍFICA DA HOME */
@media (max-width: 800px) {
    .principal_cont {
        grid-template-columns: 1fr; 
        gap: 3rem;
        min-height: auto;
        padding-top: 4rem; 
    }
    .principal_text_content h2 {
        font-size: 4rem;
        text-align: center;
        margin-bottom: 2rem;
    }
    .principal_text_content {
        order: 2;
        text-align: center;
    }
    .principal_img {
        order: 1;
    }
}