body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}

    .gallery img {
        width: 100px;
        height: auto;
        cursor: pointer;
        transition: transform 0.2s;
    }

        .gallery img:hover {
            transform: scale(1.1);
        }

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
}

/*.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}*/

.close {
    position: absolute;
    bottom: 20px; /* Alterado para posicionar no final do modal */
    left: 50%; /* Centraliza horizontalmente */
    transform: translateX(-50%); /* Ajusta a centralização */
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #bbb;
        text-decoration: none;
        cursor: pointer;
    }



.home__title {
    font-size: 3.2em;
    color: #02126A;
}
.home__img{
    max-height: 325px;
    width: auto;

}
.particle3-small {
    width: 90px; 
    height: auto;
    margin-top: 70px;
    margin-left: 150px;
    display: inline-block;
    vertical-align: middle;
}

@media (max-width: 768px) {
    .particle3-small {
        width: 50px;
        margin-left: 10px;
    }
}
.home__input {
    margin-bottom: 1em;
    padding: 10px;
    border-radius: 6px;
    font-size: 18px;
}

.whatsapp__icon {
    position: fixed;
    width: 65px;
    height: auto;
    bottom: 35px;
    right: 40px;
    text-align: center;
    font-size: 30px;
    z-index: 1000;
}