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

body{
background:#BD4B5C;
color:#ffffff;
}

/* CAPA */

.authority-cover{
height:260px;
width:100%;
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.05), #BD4B5C);
z-index:1;
}

/* CONTEÚDO */

.authority-content{
max-width:900px;
margin:-70px auto 0;
padding:0 20px 100px;
text-align:center;
}

/* AVATAR */

.authority-avatar{
width:130px;
height:130px;
border-radius:50%;
object-fit:cover;
border:4px solid #ffffff;
margin:0 auto 15px;
display:block;
z-index:2;
position:relative;
}

/* TEXTOS */

h1{
font-size:32px;
margin-bottom:6px;
}

.subtitle{
color:#ffffffcc;
font-weight:400;
margin-bottom:20px;
}

.authority-description{
max-width:600px;
margin:0 auto 45px;
line-height:1.6;
color:#ffffffd9;
}

/* ÍCONES */

.authority-actions{
display:flex;
justify-content:center;
gap:18px;
margin-bottom:60px;
flex-wrap:wrap;
}

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

.action-icon:hover{
background:#ffffff;
color:#75192D;
transform:translateY(-3px);
}

/* TÍTULOS */

.section-title{
font-size:24px;
margin-bottom:40px;
}

/* CARDS */

.authority-cards{
display:grid;
grid-template-columns:1fr;
gap:25px;
margin-bottom:80px;
}

.authority-card{
background:#ffffff;
padding:28px;
border-radius:16px;
color:#75192D;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
transition:0.3s;
}

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

.authority-card h3{
margin-bottom:10px;
}

/* GALERIA */

.gallery{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:12px;
margin-bottom:80px;
}

.gallery img{
width:100%;
border-radius:10px;
}

/* CTA */

.authority-cta{
margin-top:40px;
}

.authority-cta h2{
margin-bottom:30px;
}

.cta-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.cta-button{
padding:12px 28px;
border-radius:30px;
text-decoration:none;
font-weight:500;
background:#75192D;
color:white;
transition:0.3s;
}

.cta-button:hover{
transform:translateY(-3px);
box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

/* 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);
}

.gallery{
grid-template-columns:repeat(3,1fr);
}

}