﻿/* Seção quem somos */
.quem {
    padding-top: 6rem;
    padding-bottom: 1rem;
    background-color:var(--bg1-color);
}
.quem p {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.quem .logo {
    max-width: 80%;  
    width: 100%; 
    display: block;
    margin: 0 auto;  
    margin-bottom: 3rem;
}

.quem .foto {
    max-width: 100%;  
    width: 100%;
    height:100%;
}

@media (max-width: 767px) {
    .quem img {
        max-width: 100%; 
    }
}

/* equipe */

.equipe {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background-color:var(--bg1-color);
}
.equipe .card {
    margin: 5px;
    background-color:var(--bg1-color);
    transition: transform 0.4s ease-in-out;
}
.equipe .card:hover {
    transform: scale(1.1);
    cursor: pointer;
    border-color: var(--secondary-color);
}.equipe h5 {
    font-size: small;
}

 .modal-fullscreen .modal-dialog {
    max-width: 100vw;
    margin: 0;
}

.modal-fullscreen .modal-content {
    width: 100vw;
    height: 100vh;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
}

#lightboxImage {
    height: 80vh;
    object-fit: contain;
}

.modal-body .btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 10px 20px;
}

.modal-body .btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
 .image-container {
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
 .image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
}
  .image-container:hover img {
    transform: scale(1.1);