* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: #05070a;
    color: #ffffff;
}

/* CAPA */
.authority-cover {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.authority-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), #05070a);
}

/* CONTEÚDO */
.authority-content {
    max-width: 900px;
    margin: -80px auto 0;
    padding: 0 20px 80px;
    text-align: center;
    position: relative;
    z-index: 5;
}

/* AVATAR */
.authority-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;

    object-fit: cover;
    object-position: center;

    margin-bottom: 10px;
    position: relative;
    z-index: 10;
}

/* TEXTOS */
.subtitle {
    margin-top: 6px;
    color: #bfc2cc;
}

.authority-description {
    margin: 18px auto 40px;
    max-width: 600px;
    color: #a9acb5;
    line-height: 1.6;
}

/* AÇÕES */
.authority-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.action-icon {
    width: 44px;
    height: 44px;
    background: #141a26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.action-icon:hover {
    background: #22c55e;
}

/* CARDS */
.section-title {
    margin-bottom: 30px;
}

.authority-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 60px;
}

.authority-card {
    background: #0c0f14;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.authority-card:hover {
    transform: translateY(-4px);
    border-color: rgba(34,197,94,0.4);
}

.authority-card h3 {
    color: #22c55e;
    margin-bottom: 6px;
}

/* GALERIA */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 60px;
}

.gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
}

/* CTA */
.cta-button {
    padding: 12px 26px;
    border-radius: 25px;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    color: black;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}
.authority-cta h2 {
    margin-bottom: 20px;
}

.cta-button {
    margin-top: 10px;
}

/* ANIMAÇÃO */
.reveal-item,
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s;
}

.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */
@media (min-width: 768px) {
    .authority-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}