/*
Theme Name: Twenty Twenty-Five Child
Template: twentytwentyfive
Version: 1.0
*/

/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
color:#333;
line-height:1.6;
}

/* limpa containers do tema */

.wp-site-blocks{
padding:0!important;
margin:0!important;
}

.wp-block-group{
margin:0!important;
padding:0!important;
}

/* container */

.container{
width:100%;
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* imagens responsivas */

img{
max-width:100%;
height:auto;
display:block;
}

/* remove header e footer do tema */

#header,#footer,hr{
display:none!important;
}

/* HEADER */

header{
background:white;
box-shadow:0 2px 5px rgba(0,0,0,0.1);
position:sticky;
top:0;
z-index:1000;
}

.header-container{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo img{
height:150px;
}

nav{
display:flex;
}

nav a{
margin-left:20px;
text-decoration:none;
color:#333;
font-weight:bold;
transition:0.3s;
}

nav a:hover{
color:#0b4fa2;
}

/* HERO */

.hero{
background:#0b4fa2;
color:white;
text-align:center;
padding:120px 20px;
}

.hero h1{
font-size:40px;
margin-bottom:20px;
}

.hero p{
max-width:700px;
margin:auto;
}

.btn{
background:white;
color:#0b4fa2;
padding:12px 25px;
display:inline-block;
margin-top:25px;
text-decoration:none;
font-weight:bold;
border-radius:4px;
transition:0.3s;
}

.btn:hover{
background:#e6e6e6;
}

/* DIFERENCIAIS */

.diferenciais{
padding:80px 0;
text-align:center;
}

.cards{
display:flex;
gap:40px;
margin-top:40px;
}

.card{
background:#f4f4f4;
padding:30px;
border-radius:6px;
flex:1;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.card a{
display:inline-block;
margin-top:15px;
font-weight:bold;
text-decoration:none;
color:#0b4fa2;
}

/* SOBRE */

#sobre{
padding:80px 0;
background:#fafafa;
}

.sobre-container{
display:flex;
align-items:center;
gap:60px;
}

.sobre-texto{
flex:1;
}

.sobre-imagem{
flex:1;
}

.sobre-imagem img{
width:100%;
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* NUMEROS */

.numeros{
background:#0b4fa2;
color:white;
padding:60px 0;
}

.numeros-container{
display:flex;
justify-content:space-between;
text-align:center;
}

.numero{
display:flex;
flex-direction:column;
align-items:center;
gap:10px;
}

.numero i{
font-size:42px;
}

.numero h3{
font-size:40px;
}

/* NOTICIAS */

#noticias{
padding:80px 0;
text-align:center;
}

.posts{
display:flex;
gap:40px;
margin-top:40px;
}

.post{
background:#f4f4f4;
padding:30px;
border-radius:6px;
flex:1;
transition:0.3s;
}

.post:hover{
transform:translateY(-5px);
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

/* PARCERIA */

.parceria{
background:#eee;
padding:80px 0;
text-align:center;
}

/* FOOTER */

footer{
background:#111;
color:white;
padding:30px;
text-align:center;
}

/* SCROLL ANIMATION */

.reveal{
opacity:0;
transform:translateY(40px);
transition:all 0.8s ease;
}

.reveal.show{
opacity:1;
transform:translateY(0);
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
gap:5px;
z-index:1100;
}

.hamburger span{
width:28px;
height:3px;
background:#333;
transition:0.4s;
}

/* HAMBURGER → X */

.hamburger.active span:nth-child(1){
transform:rotate(45deg) translate(5px,5px);
}

.hamburger.active span:nth-child(2){
opacity:0;
}

.hamburger.active span:nth-child(3){
transform:rotate(-45deg) translate(6px,-6px);
}

/* MOBILE */

@media(max-width:900px){

nav{
position:fixed;
top:0;
right:-260px;
width:260px;
height:100vh;
background:white;
flex-direction:column;
padding-top:120px;
gap:30px;
align-items:center;
transition:0.4s;
box-shadow:-5px 0 20px rgba(0,0,0,0.1);
}

nav.active{
right:0;
}

nav a{
margin:0;
font-size:18px;
}

.hamburger{
display:flex;
}

.cards{
flex-direction:column;
}

.posts{
flex-direction:column;
}

.numeros-container{
flex-direction:column;
gap:40px;
}

.sobre-container{
flex-direction:column;
}

.hero{
padding:80px 20px;
}

.hero h1{
font-size:30px;
}

.logo img{
height:110px;
}

}