.map-carousel-container {
    padding: 40px 0;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.map-member-card {
    background: #fff;
    border: 2px solid #000080; /* Azul escuro conforme a imagem */
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10px;
}

.map-member-card:hover {
    transform: translateY(-5px);
}

.map-member-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #444; /* Borda cinza ao redor da foto */
}

.map-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin: 10px 0 5px;
    font-family: 'Montserrat', sans-serif;
}

.map-member-role {
    font-size: 1rem;
    color: #000080; /* Azul do cargo */
    margin: 0;
    font-weight: 500;
}

/* Ajustes Swiper */
.map-members-swiper {
    padding: 20px 50px !important;
}

.swiper-button-next, .swiper-button-prev {
    color: #000080 !important;
}

.swiper-pagination-bullet-active {
    background: #000080 !important;
}
