/* Seção Sobre Nós */
#sobre {
    background-color: #f8f9fa;
}

.about-images-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
}

.about-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border: 5px solid white; /* Borda branca ao redor da imagem */
    border-radius: 10px; /* Bordas arredondadas */
    transition: transform 0.3s, box-shadow 0.3s; /* Transições suaves */
}

.about-image-container:hover .about-image {
    transform: scale(1.1); /* Amplia a imagem ao passar o mouse */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3); /* Sombra mais pronunciada ao passar o mouse */
    z-index: 10;
    border-width: 3px;
}

@media (max-width: 992px) {
    .about-images-wrapper {
        margin-top: 15px;
        width: 400px;
        height: 400px;
    }

    .about-image-container {
        margin-left: -35px;
    }
}

@media (max-width: 768px) {
    .about-images-wrapper {
        margin-top: 15px;
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .about-images-wrapper {
        margin-top: 15px;
        width: 200px;
        height: 200px;
        margin-left: 15px;
    }
}
