
.secretariado-container {
    background-image: url("../img/fundo-mun4u.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    padding: 70px 10%;
    font-family: "Montserrat", sans-serif;
}

.page-title {
    text-align: center;
    font-size: 46px;
    color: white;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.2;
}


.secao {
    margin-bottom: 70px;
}

.secao h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: white;
    font-weight: 700;
}

.card-membro {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.card-membro:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

.card-membro img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.card-membro .info {
    padding: 28px 30px;
}

.card-membro .texto {
    font-size: 17px;
    color: #032a42;
    margin-bottom: 14px;
    text-align: justify;
    line-height: 1.65;
    font-weight: 400;
}

.card-membro h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #001325;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 900px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}

.lista-mun4u {
    margin: 18px 0 20px 22px;
    padding: 0;
}

.lista-mun4u li {
    font-size: 17px;
    color: #032a42;
    margin-bottom: 10px;
    line-height: 1.6;
}


.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: stretch;
}


.card-membro .social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.card-membro .social a {
    text-decoration: none;
    background: #01324a;
    padding: 8px 14px;
    color: white;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.25s;
}

.card-membro .social a:hover {
    background: #02557b;
}

.texto {
    color: white;
}


@media (max-width: 850px) {
    .cards-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 34px;
        margin-bottom: 45px;
    }

    .secao h2 {
        font-size: 26px;
    }

    .card-membro .info {
        padding: 22px 22px;
    }

    .card-membro .texto,
    .lista-mun4u li {
        font-size: 16px;
    }
}


.card-membro .social {
    display: flex;
    gap: 12px;
}

.card-membro .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #01324a;
    border-radius: 8px;
    transition: 0.25s;
}

.card-membro .social-icon:hover {
    background: #02557b;
}

.card-membro .social-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    filter: invert(1); 
}