/* ============================================
   FULL IMAGE SECTION - Imagem em Tela Cheia
   Apenas Desktop
   ============================================ */

.full-image {
    display: none; /* Oculto por padrão (mobile) */
    width: 100%;
    height: 40vh;
    position: relative;
    overflow: hidden;
    background-color: #1a2328;
}

[data-theme="light"] .full-image {
    background-color: #ffffff;
}

.full-image__container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.full-image__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Apenas Desktop - mostrar a seção */
@media (min-width: 1024px) {
    .full-image {
        display: block;
    }
}

/* Ajustes para telas muito largas */
@media (min-width: 1920px) {
    .full-image__img {
        object-fit: cover;
    }
}

