#grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px; /* Altura base */
    grid-auto-flow: dense;
    gap: 0.5em;
    margin: 20px 0 0 0;
}

#grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.span-2 {
    grid-row: span 2;
    height: 500px; /* Altura ajustada para imagens maiores */
}

.secmaps {
    width: 100%;
    margin: 0;
    padding: 0;
}

/* Ajustar o iframe para ocupar 100% da largura da seção */
iframe {
    width: 100%;
    height: 450px; /* Pode ajustar conforme necessário */
    border: 0;
}

.containerimg {
    width: 100%;
    height: 500px; /* Altura padrão para telas maiores */
    overflow: hidden;
    position: relative;
}

.containerimg img {
    width: 100%;
    height: 100%; /* Ocupa toda a altura da div */
    object-fit: cover;
}

.desktop-img {
    display: block; /* Exibição padrão */
}

.mobile-img {
    display: none; /* Inicialmente escondida */
}

@media (max-width: 768px) {
    .desktop-img {
        display: none; /* Esconde na versão mobile */
    }
    .mobile-img {
        display: block; /* Exibe na versão mobile */
    }
}