*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial, Helvetica, sans-serif;
line-height:1.6;
background:#f4f4f4;
}

/* container */

.container{
width:92%;
max-width:1200px;
margin:auto;
}

/* header */

header{
background:#0e3d2b;
padding:12px 0;
}

.header{
display:flex;
align-items:center;
justify-content:space-between;
}

/* logo */

.logo{
width:180px;
height:auto;
}

/* menu */

nav{
display:flex;
gap:18px;
}

nav a{
color:white;
text-decoration:none;
font-weight:bold;
}

nav a:hover{
color:#3ee88f;
}

.menu-mobile{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* hero */

.hero{
background:url(img/banner.jpg) center/cover no-repeat;
height:420px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.hero-text{
background:rgba(0,0,0,0.55);
padding:30px;
border-radius:8px;
}

/* botão */

.btn{
background:#3ee88f;
color:white;
padding:12px 26px;
border-radius:6px;
text-decoration:none;
display:inline-block;
margin-top:15px;
}

/* seções */

.section{
padding:60px 0;
}

.section.light{
background:#ffffff;
}

.section.green{
background:#0e3d2b;
color:white;
}

.section h2{
margin-bottom:20px;
}

/* cards */

.cards{
display:flex;
gap:20px;
flex-wrap:wrap;
}

.card{
flex:1;
min-width:220px;
background:white;
color:#333;
padding:25px;
border-radius:8px;
text-align:center;
}

/* ministérios */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
margin-top:25px;
}

.grid div{
background:white;
padding:20px;
border-radius:8px;
text-align:center;
color:#333;
}

/* galeria */

.gallery{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:15px;
margin-top:25px;
}

.gallery img{
width:100%;
height:auto;
border-radius:10px;
}

/* mapa */

.map iframe{
width:100%;
height:300px;
border:0;
margin-top:20px;
}

/* footer */

footer{
background:#0e3d2b;
color:white;
text-align:center;
padding:20px;
}

/* whatsapp */

.whatsapp{
position:fixed;
bottom:18px;
right:18px;
background:#25D366;
color:white;
font-size:26px;
padding:14px 16px;
border-radius:50%;
text-decoration:none;
box-shadow:0 3px 8px rgba(0,0,0,0.3);
}

/* RESPONSIVO */

@media(max-width:768px){

.header{
flex-wrap:wrap;
}

.logo{
width:140px;
}

nav{
display:none;
flex-direction:column;
width:100%;
background:#0e3d2b;
padding:15px;
}

nav.active{
display:flex;
}

.menu-mobile{
display:block;
}

.hero{
height:300px;
}

.cards{
flex-direction:column;
}

.gallery{
grid-template-columns:repeat(2,1fr);
}

.gallery img{
height:140px;
}

}