body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4; /* Cor de fundo mais clara */
    color: #333; /* Cor de texto principal */
}

header {
    background: #272727;
    color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidade */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header .logo {
    width: 50px;
    height: auto;
}

header ion-icon {
    font-size: 24px;
    cursor: pointer;
}

.page-title {
    text-align: center;
    margin: -30px 0 20px 0; /* Margem superior negativa e margem inferior */
    font-size: 36px;
    color: #333;
    font-weight: 700;
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.content {
    padding: 20px;
    margin-top: 20px; /* Margem para afastar o conteúdo do topo */
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hierarchy {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.position {
    margin-bottom: 40px; /* Aumentar a margem para melhor espaçamento */
}

.position-title {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
    border-bottom: 2px solid #333; /* Linha abaixo do título para destaque */
    padding-bottom: 10px; /* Espaçamento abaixo da linha */
    text-align: center;
    animation: slideIn 1s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dual-section {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.left-section,
.right-section {
    width: 48%; /* Define a largura das seções esquerda e direita */
}

.member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member img {
    width: 180px; /* Largura da imagem */
    height: 240px; /* Altura da imagem para manter a proporção 3:4 */
    object-fit: cover; /* Ajusta a imagem para cobrir a área */
    border-radius: 8px; /* Borda arredondada */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Sombra para um efeito de profundidade */
    margin-bottom: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transições suaves para hover */
}

.member img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.member p {
    font-size: 20px;
    font-weight: bold;
    color: #555; /* Cor de texto mais suave */
}

.members-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; /* Permite que os itens se movam para a linha seguinte se necessário */
}

.members-list .member {
    width: 180px;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidade */
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease; /* Transição suave para hover */
}

footer a:hover {
    color: #ffcc00; /* Mudança de cor ao passar o mouse */
    text-decoration: underline; /* Efeito de hover para links */
}
