:root {
    --primary-color: #053e88; /* Azul */
    --secondary-color: #333; /* Cor escura para o texto */
    --background-light: #f9f9f9;
    --white: #fff;
    --accent-green: #34A853; /* Verde para botões */
}


.container {
    width: 80%;
    margin: auto;
    padding: 50px 0;
    text-align: center;
}
h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    
}
.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.member {
    background: white;
    padding: 20px;
    border-radius: 2px;
    text-align: center;
    width: 300px;
    transition: transform 0.5s;
}
.member:hover {
    transform: scale(1.1);
}
.member img {
    width: 100%;
    height: 400px;
    border-radius: 2%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);

}
.name {
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
}
.role {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
}
.status {
    font-size: 14px;
    color: #333;
    font-weight: bold;
}
.description {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}
.social {
    margin-top: 10px;
}
.social a:hover {
    color: var(--accent-green);
}
.social a {
    text-decoration: none;
    margin: 0 5px;
    color: var(--primary-color);
    font-size: 18px;

}
.contact {
    font-size: 14px;
    color: #444;
    margin-top: 10px;
}


@media (max-width: 768px) {
    .team {
        flex-direction: column;
        align-items: center;
    }
    

     
    
}