/* Estilos específicos para a nova home page */

/* Imagem de fundo para toda a página */
body.home-page {
    background-color: var(--azul-marinho-solido);
    position: relative;
}

body.home-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

/* Container principal com fundo semi-transparente */
.home-container {
    position: relative;
    z-index: 1;
}

/* Hero Section ajustado */
.hero-section {
    padding: 6rem 2rem;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-image: url('assets/lab.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 3rem;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    color: var(--text-light);
}

/* Seção Aroeira com imagem real */
.aroeira-image {
    background-color: var(--light-color);
    height: 300px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.aroeira-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Remover placeholder quando imagem estiver presente */
.aroeira-image.has-image {
    color: transparent;
    background-color: transparent;
}

/* Ajustes para responsividade */
@media (max-width: 768px) {
    .aroeira-content {
        grid-template-columns: 1fr;
    }

    .aroeira-image {
        height: 250px;
        margin-top: 1rem;
    }

    .hero-section {
        background-attachment: scroll;
        padding: 4rem 1rem;
    }
}