@charset "UTF-8";

/*=====================================================
RESET
=====================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


/*=====================================================
VARIÁVEIS DE CORES
=====================================================*/

:root{

    --azul-principal:#1D7882;
    --azul-escuro:#145963;
    --azul-hover:#0F4D55;
    --azul-claro:#EAF4F5;

    --branco:#FFFFFF;
    --cinza:#F5F7F8;
    --texto:#444444;
    --borda:#D9E3E5;

}


/*=====================================================
CONFIGURAÇÃO GERAL
=====================================================*/

html{

    scroll-behavior:smooth;

}


body{

    min-height:100vh;

    background:var(--branco);

    color:var(--texto);

    font-family:"Patua One",serif;

}



/*=====================================================
HEADER
=====================================================*/

.header{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:40px;

    padding:30px 40px;

    background:var(--branco);

    border-bottom:1px solid var(--borda);

}


/*=====================================================
LOGO
=====================================================*/

.logo{

    width:260px;

    height:auto;

    transition:.3s;

}


.logo:hover{

    transform:scale(1.04);

}



/*=====================================================
ÁREA DO TEXTO DO HEADER
=====================================================*/

.texto-header{

    display:flex;

    flex-direction:column;

    justify-content:center;

}



/*=====================================================
NOME
=====================================================*/

.titulo{

    font-family:"Times New Roman",serif;

    font-weight:bold;

    color:#C89B3C;

    font-size:clamp(36px,4vw,60px);

    line-height:1.05;

    text-align:center;

}


.titulo span{

    display:block;

    font-size:.72em;

    color:#C89B3C;

    margin-top:5px;

}



/*=====================================================
OAB
=====================================================*/

.oab{

    margin-top:10px;

    text-align:center;

    color:#C89B3C;

    font-size:20px;

    font-family:Georgia,serif;

    font-weight:bold;

}



/*=====================================================
MENU
=====================================================*/

.menu{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:25px;

    flex-wrap:wrap;

    padding:18px;

    background:var(--azul-principal);

}



/*=====================================================
LINKS MENU
=====================================================*/

.menu a{

    display:flex;

    align-items:center;

    justify-content:center;

    width:45px;

    height:45px;

    text-decoration:none;

    color:var(--branco);

    background:var(--azul-principal);

    border-radius:50%;

    font-size:22px;

    transition:.3s;

}

.menu a:hover{

    background:var(--azul-hover);

    transform:translateY(-5px);

}

/*=====================================================
RESPONSIVO HEADER
=====================================================*/

@media(max-width:768px){


.header{

    flex-direction:column;

    gap:15px;

    padding:25px 15px;

}


.logo{

    width:200px;

}


.titulo{

    font-size:32px;

}


.oab{

    text-align:center;

}


.menu{

    gap:10px;

}


.menu a{

    font-size:15px;

    padding:8px 12px;

}


}
/*=====================================================
NOTÍCIAS
=====================================================*/

.noticias{

    padding:50px 20px;

    background:var(--cinza);

}


.noticias h2{

    text-align:center;

    margin-bottom:35px;

    font-family:"Patua One",serif;

    color:var(--azul-principal);

    font-size:32px;

}



/* LISTA DE NOTÍCIAS */

.lista-noticias{

    display:flex;

    flex-direction:column;

    gap:25px;

    max-width:1100px;

    margin:auto;

}



/* CARD NOTÍCIA */

.noticia{

    display:flex;

    background:var(--branco);

    border-radius:12px;

    overflow:hidden;

    border:1px solid var(--borda);

    transition:.3s;

}



.noticia:hover{

    transform:translateY(-5px);

}



/* IMAGEM */

.noticia img{

    width:250px;

    height:180px;

    object-fit:cover;

}



/* CONTEÚDO */

.conteudo{

    padding:20px;

}


.conteudo h3{

    margin-bottom:10px;

    font-family:"Patua One",serif;

    color:var(--azul-principal);

}



.data{

    display:block;

    margin-bottom:10px;

    color:var(--azul-escuro);

    font-size:14px;

}



.conteudo p{

    font-size:15px;

    line-height:1.6;

    color:var(--texto);

}




/*=====================================================
ÁREAS DE ATUAÇÃO
=====================================================*/


.areas{

    padding:60px 20px;

    background:var(--branco);

    text-align:center;

}



.areas h2{

    margin-bottom:40px;

    font-family:"Patua One",serif;

    color:var(--azul-principal);

    font-size:32px;

}



/* GRID */

.lista-areas{

    display:flex;

    justify-content:center;

    gap:15px;

    max-width:1300px;

    margin:auto;

    flex-wrap:nowrap;

}



/* CARD */

.area{

    background:var(--azul-claro);

    padding:25px;

    border-radius:12px;

    border:1px solid var(--borda);

    transition:.3s;

}



.area:hover{

    transform:translateY(-6px);

    background:var(--azul-principal);

}



/* TÍTULO */

.area h3{

    margin-bottom:12px;

    color:var(--azul-principal);

    font-size:21px;

}



.area:hover h3{

    color:var(--branco);

}



/* TEXTO */

.area p{

    font-size:15px;

    line-height:1.6;

    color:var(--texto);

}



.area:hover p{

    color:var(--branco);

}
/*=====================================================
SEÇÕES GERAIS
=====================================================*/

section{

    padding-top:10vh;

    padding-bottom:10vh;

    padding-left:30px;

    padding-right:30px;

    line-height:2em;

    font-family:"Patua One",serif;

}



/*=====================================================
SEÇÃO NORMAL
=====================================================*/

section.normal{

    background:var(--branco);

    color:var(--azul-principal);

    font-size:clamp(18px,2vw,28px);

}



/*=====================================================
PARALLAX
=====================================================*/

section.imagem{

    background-color:#333;

    color:var(--branco);

    font-size:clamp(18px,2vw,28px);

    box-shadow:inset 6px 6px 20px #000;

    background-attachment:fixed;

    background-position:center;

    background-size:cover;

}



/* TEXTO SOBRE IMAGEM */

section.imagem > p{

    width:min(600px,90%);

    padding:20px;

    background:rgba(0,0,0,.45);

    border-radius:10px;

}



/* IMAGENS */

section#img01{

    background-image:url("../imagens/background001.jpg");

    background-position:right center;

}



section#img02{

    background-image:url("../imagens/background002.jpg");

}



/*=====================================================
VÍDEOS
=====================================================*/

.video-box{

    display:flex;

    gap:20px;

    background:var(--azul-claro);

    padding:20px;

    border-radius:12px;

    justify-content:center;

}



.video{

    flex:1;

}



.video iframe{

    width:100%;

    height:300px;

    border-radius:10px;

    border:none;

}



/*=====================================================
IGREJAS
=====================================================*/


.box-igreja{

    padding:30px;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:40px;

}



.box-igreja img{

    width:200px;

    height:200px;

    object-fit:cover;

    border-radius:10px;

}



/* TEXTO IGREJA */

.box-igreja .texto{

    max-width:900px;

    padding:20px;

    font-size:clamp(16px,1.5vw,22px);

    line-height:1.7;

    text-align:center;

    color:var(--azul-principal);

    font-family:"Patua One",serif;

    border-radius:10px;

    box-shadow:inset 0 0 15px var(--azul-principal);

}
/*=====================================================
CONTATO
=====================================================*/

.contato{

    padding:60px 20px;

    background:var(--cinza);

}



.contato h2{

    text-align:center;

    margin-bottom:35px;

    font-family:"Patua One",serif;

    color:var(--azul-principal);

    font-size:32px;

}



.contato form{

    max-width:700px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:15px;

}



.contato label{

    color:var(--azul-escuro);

    font-weight:bold;

}



.contato input,

.contato textarea{

    padding:14px;

    border:1px solid var(--borda);

    border-radius:8px;

    font-size:16px;

    font-family:Arial,sans-serif;

}



.contato textarea{

    min-height:150px;

    resize:vertical;

}



.contato button{

    padding:15px;

    background:var(--azul-principal);

    color:var(--branco);

    border:none;

    border-radius:8px;

    cursor:pointer;

    font-size:18px;

    transition:.3s;

}



.contato button:hover{

    background:var(--azul-hover);

}



/*=====================================================
RESPONSIVO GERAL
=====================================================*/


@media(max-width:768px){


/* NOTÍCIAS */

.noticia{

    flex-direction:column;

}



.noticia img{

    width:100%;

    height:220px;

}



/* VÍDEOS */

.video-box{

    flex-direction:column;

}



.video iframe{

    height:220px;

}



/* IGREJAS */

.box-igreja{

    flex-direction:column;

    text-align:center;

}



.box-igreja img{

    width:170px;

    height:170px;

}



/* SEÇÕES */

section{

    padding-left:15px;

    padding-right:15px;

}



section.imagem > p{

    width:100%;

}



/* MENU */

.menu{

    padding:12px;

}



}



/*=====================================================
TELAS PEQUENAS
=====================================================*/


@media(max-width:480px){


.titulo{

    font-size:28px;

}


.logo{

    width:170px;

}


.noticias h2,

.areas h2,

.contato h2{

    font-size:26px;

}


.area{

    padding:20px;

}


}