/* Fontes */

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    margin:0px;
    scroll-behavior: smooth;
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
}

a, a:hover, a:focus, a:active {
    text-decoration: none;
}

.fw-900 {
    font-weight: 900 !important;
}
/* Cores */

:root {
    --azul-marinho: #182143;
    --azul-claro: #0072c1;
    --laranja: #ff8e1c;
}

/* Padrão negrito em h2 */

h2 {
    font-weight: 900;
}
/* Zerar Gutter */

.no-gutters {
    --bs-gutter-x:0px;
    --bs-gutter-y:0px;
}
/* Botões */

.primary-btn {
    display: inline-block;
    font-size: 15px;
    padding: 14px 40px 12px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--laranja);
    border-radius: 2px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}

.primary-btn:hover, .primary-btn:focus, .primary-btn:active {
    background-color: var(--azul-marinho);
    color: white;
}

.primary-btn-sm {
    display: inline-block;
    font-size: 13px;
    padding: 10px 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--laranja);
    border-radius: 2px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}


.primary-btn-sm:hover, .primary-btn-sm:focus, .primary-btn-sm:active {
    background-color: var(--azul-marinho);
    color: white;
}


.primary2-btn:hover, .primary2-btn:focus, .primary2-btn:active {
    background-color: var(--azul-claro);
    color: white;
}

.primary2-btn-sm {
    display: inline-block;
    font-size: 13px;
    padding: 10px 20px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background: var(--azul-marinho);
    border-radius: 2px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
}


.primary2-btn-sm:hover, .primary2-btn-sm:focus, .primary2-btn-sm:active {
    background-color: var(--azul-claro);
    color: white;
}


/* Barra do topo do site */

.TopoSite {
    height: 49px;
    background-color: var(--azul-marinho);
}


.LinksTopo {
    padding: 11px 0 14px;
    text-align: center;
}

.LinksTopo li {
    font-size: 15px;
    color: #ffffff;
    display: inline-block;
    margin-right: 50px;
    position: relative;
    list-style: none;
}

.LinksTopo li i {
    font-size: 18px;
    color: var(--laranja);
    margin-right: 8px;
}


nav.navbar {
    padding: 0px;
    background-color: white;
}

img.LogoMenu {
    display: block;
    height: 70px;
    width: auto;
    margin:5px auto;
}

.DesktopDireita {
    margin: 0px 0px 0px auto;
}

.navbar-nav li {
    list-style: none;
    display: inline-block;
    margin-left: 35px;
    position: relative;
}

.navbar-nav li a{
    font-size: 20px;
    color: var(--azul-marinho);
    font-weight: 900;
    display: block;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease-in-out;
    border-bottom: 3px solid transparent;
}

.navbar-nav li a:hover, .navbar-nav li a:focus {
    color: var(--laranja);
    border-bottom: 3px solid var(--laranja);
}
/* Capa */

section.Capa {
    background-color: var(--azul-marinho);
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../Images/FundoCapa.jpg);
    width: 100%;
    min-height: 700px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.BlocoCapa {
    display: block;
    max-width: 90%;
    width: 100%;
    margin:auto;
    text-align: center;
}

.BlocoCapa h1 {
    font-size: 3rem;
    font-weight: 600;
    color: white;
}

.BlocoCapa img {
    max-width: 100%;
}

/* Quem Somos */
section.QuemSomos {
    padding: 100px 0px;
}

.TextoSobre {
    padding-top: 40px;
}


.TituloLaranja {
    font-weight: 900;
    color: var(--laranja);
}
.TituloQuemSomos {
    text-align: left;
    margin-bottom: 60px;
}

.ItemQuemSomos {
    margin-bottom: 65px;
}
.ImagemQuemSomos {
    display: block;
    max-width: 100%;
    width: 100%;
}
.ImagemQuemSomos img{
    margin-top:30px;
    width: 100%;
    border-radius: 2px;
}

section.QuemSomos p {
    text-align: justify;
    line-height: 1.3rem;
}

/* Serviços */
section.Servicos {
	padding: 100px 0px;
    background: #f6f7f9;
}

.TituloServicos {
    margin-bottom: 80px;
    text-align: center;
}
.ListaServicos {
    margin-left: 0px;
    margin-right: 0px;
    overflow: hidden;
}

section.Servicos .container-fluid {
    padding-right: var(--bs-gutter-x,0rem);
    padding-left: var(--bs-gutter-x,0rem);
}

.ItemServicos {
    width: 20%;
    float: left;
    height: 480px;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    cursor: pointer;
}

.BgServicos {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.TextoItemServicos {
    position: absolute;
    left: 0;
    bottom: -320px;
    width: 100%;
    padding: 0 35px;
    -webkit-transition: all, 0.4s;
    -o-transition: all, 0.4s;
    transition: all, 0.4s;
    height: 400px;
}

.TextoItemServicos h4 {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 80px;
    -webkit-transition: all, 0.2s;
    -o-transition: all, 0.2s;
    transition: all, 0.2s;
}

.TextoItemServicos p {
    color: #ffffff;
    margin-bottom: 25px;
}

.ItemServicos:hover .TextoItemServicos {
	bottom: 10px;
}

.ItemServicos:hover .TextoItemServicos h4 {
	margin-bottom: 12px;
}

.ListaServicos span {
    color: var(--laranja);
}


/* Footer */

footer {
    display: block;
    background-color: var(--azul-claro);
    padding: 100px 0px 0px 0px;
}

.LogoFooter img{
    max-width: 230px;
    width: 100%;
    height: auto;
    margin: 0px auto 0px 0px;
}

.TextoSobreFooter {
    color: #e4e4e4;
    margin: 30px auto;
    text-align: left;
    padding:0px;
}
.TextoSobreFooter i {
    margin-right: 10px;
}

.SocialFooter ul {
    padding:0px;
}
.SocialFooter ul li{
    display: inline-block;
    list-style: none;
}

.SocialFooter li a {
    font-size: 30px;
    width: 50px;
    height: 50px;
    display: inline-flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: var(--laranja);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 25px;
    line-height: 40px !important;
    margin-right: 7px;
    color: #FFFFFF;
    line-height: 41px !important;
    transition: all 0.3s ease-in-out;
    border: solid 1px var(--laranja);
}

.SocialFooter li a:hover,.SocialFooter li a:focus, .SocialFooter li a:active  {
    color: white;
    background-color: var(--azul-claro);
    border: solid 1px white;
}

Footer h3{
    font-weight:600;
    color: #ffffff;
    margin-bottom: 30px;
}

Footer hr {
    color:white;
}
.FooterServicos ul {
    padding-left: 0px;
}
.FooterServicos ul li {
    list-style: none;
    margin-bottom: 15px;
}


.FooterServicos ul li a{
    color: white;
    text-align: left;
    font-size: 1.0rem;
    transition:  all 0.3s ease-in-out;
}
.FooterServicos ul li a:hover{
    color: var(--laranja);
    margin-left: 2px;
}

.RowFooter {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
}

.FooterCopy {
    height: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.FooterCopy h5 {
    display: table;
    font-size: 15px;
    font-weight: 400;
    color: white;
}

.FooterCopy a{
    color: white;
    transition: all 0.3s ease-in-out;
}

.FooterCopy a:hover{
    color: #87b038;
}

/* Notícias */

section.Noticias { 
    padding: 100px 0px;
}
section.Noticias h2.BlocoNoticiasTitulo, section.Noticias p.BlocoNoticiasTitulo {
    width: 100%;
    text-align: center;
}

.BlocoNoticiasImagem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 190px;
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}

.BlocoNoticiasImagem img{
    overflow: hidden;
    min-height: 190px;
    width: 100%;
}

.BlocoNoticia h4, .BlocoNoticia h6{
    margin-bottom: 2px;
}

.BlocoNoticia p {
color: gray;
display: block;
margin-top: 10px;
height: 95px;
overflow-y: hidden;
text-align: justify;
padding-bottom: 20px;
font-size:  .9rem;
line-height: 1rem;
margin-bottom: 40px;
}


h4.BNBold {
    font-weight: 700;
    font-size: 1.2rem;
}

h6.BNData {
    color: gray;
}

.BlocoNoticia {
    display: block;
    margin: auto;
    height: 100%;
    min-height: 500px;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    }

.BlocoNoticia a {
    position: absolute;
    right: 10px;
    bottom:10px;
}

.LeiaMais {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    background-color: var(--laranja);
    background-position:center;
    background-attachment: fixed;
    background-size:cover;
    background-repeat: no-repeat;
    padding: 50px 0px;
}

.LeiaMais h3 {
    text-align: center;
    color: var(--azul-marinho);
    font-size: 4rem;
    font-weight: 600;
}

.LeiaMais h4 {
    text-align: center;
    color: var(--azul-marinho);
    font-size: 1.2rem;
    font-weight: 600;
}

.LeiaMais a {
    text-decoration: underline;
    color: var(--azul-marinho);
    transition: all 0.3s ease-in-out;
}

.LeiaMais a:hover, .LeiaMais a:active {
    text-decoration: underline;
    color: var(--azul-marinho);
}

/* Contato */

section.Contato {
    display: block;
	padding: 100px 0px;
    background-color: #f6f7f9;
}

.FormularioContato {
    display: block;
    border-radius: 10px;
    padding: 30px;
    background-color: white;
}

.FormularioContato form label {
    font-size: 0.7rem;
    margin-top: 21px;
    text-transform: uppercase;
}

.FormularioContato form input {
    background-color: #f5f5f5;
    border-style:none;
}

.FormularioContato textarea {
    background-color: #f5f5f5;
    border-style:none;
}

input.primary-btn-sm {
    display: block;
    font-size: 13px;
    padding: 10px 25px;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 700;
    background-color: var(--laranja) !important;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: all 0.3s ease-in-out;
    margin: 5px 0px auto auto;
}


input.primary-btn-sm:hover, input.primary-btn-sm:focus, input.primary-btn-sm:active {
    background-color: var(--azul-marinho) !important;
    color: white;
}

.ContatoWhatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px auto 0px auto;
    padding: 80px 0px;
    height: auto;
    max-width:100%;
    width:100%;
    background-position:center;
    background-attachment: fixed;
    background-size:cover;
    background-repeat: no-repeat;
    background-image: url(../Images/FundoCapa.jpg);
}


.ContatoWhatsapp h3 {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 600;
}

.ContatoWhatsapp h4 {
    text-align: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.ContatoWhatsapp a {
    text-decoration: none;
    color: white;
    transition: all 0.3s ease-in-out;
}

.ContatoWhatsapp a:hover, .ContatoWhatsapp a:active {
    color: var(--laranja);
}

/* Section Mapa */

section.Mapa .row {
    padding:0px;
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin: 0px;
}
 

/* Botão Whatsapp */

.redes-sociais-fixo-whats {
	display: block;
	position: fixed;
	z-index: 99;
	bottom: 30px;
	right: 30px;
	height: 50px;
	width: 50px;
	background-color: transparent;
	border-radius: 50%;
	-webkit-box-shadow: 10px 10px 11px -3px rgba(0,0,0,0.56);
	-moz-box-shadow: 10px 10px 11px -3px rgba(0,0,0,0.56);
	box-shadow: 10px 10px 11px -3px rgba(0,0,0,0.56);
}

/* Section Video Abertura */

section.VideoAbertura {
    padding: 100px 0px;
    background-image: url(../Images/FundoVideoApresentacao.png);
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

iframe.Youtube {
    display: block;
    margin: 50px auto;
    width: 800px;
    height: 450px;
}

/* Blog */

section.Blog {
    padding: 70px 0px;
    margin:auto;

}

img.FotoBlogLista {
    max-height: 300px;
    overflow-y:hidden;
    max-width: 90%;
    width: 100%;
}
a.LinkNoticia {
    font-weight: bold;
    color: var(--azul-marinho);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

a.LinkNoticia:hover, a.LinkNoticia:active, a.LinkNoticia:focus {
    color: var(--laranja);
}


/* Arquivo do Blog */


.LinkArquivo {
    text-decoration: none;
    color: #212529;
    transition: all 0.3s ease-in-out;
}

.LinkArquivo:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* LGPD */

.BlocoLGPD {
    max-width: 100%;
    width: 100%;
    min-height: 100px;
    align-items: center;
    justify-content: center;
    background-color: rgb(34, 34, 59);
    position: fixed;
    z-index: 99;
    bottom: 0px;
    padding: 25px 10px;
}

.BlocoLGPD p {
    display: table;
    padding: 10px;
    font-size: 1rem;
    line-height: 1.1rem;
    color: white;
    text-align: left;
    margin-bottom: 0px;
}

a.ConfigCookie{ 
    color: white;
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    padding: 5px;
    transition: all 0.3s ease-in-out;
    margin: 0px 10px;
}
a.ConfigCookie:hover{ 
    color: white;
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    padding: 5px;
    text-decoration: underline;
}

a.ConfigCookieBotao{ 
    border: solid 1px white;
    border-radius: 0.25rem;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
    margin: 0px 10px;
}
a.ConfigCookieBotao:hover{ 
    border: solid 1px var(--laranja);
    border-radius: 0.25rem;
    color: var(--laranja);
    font-size: 1rem;
    text-decoration: none;
    display: inline-table;
    opacity: 0.8;
}

/* Modal Certidões */


.ModalCertidoes li {
    list-style: none;
}

.ModalCertidoes li a {
    color: black !important;
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px 5px;
    transition: all 0.3s ease-in-out;
}

.ModalCertidoes li a:hover {
    opacity: 0.5;
}