/* ----------------------------------------------------------
    :: Template Name: GPS Corretora de seguros
    :: Author: Marca Site - Carlos Augusto
    :: Author URL: 
    :: Version: 1.0.0
    :: Created: 25 Julho 2023
    ----------------------------------------------------------

/***************************************************************************
       Cores
****************************************************************************

	Branco			= #ffffff
	Cinza 			= #272727
	Preto 			= #000000
	Azul 			= #0170b9
	
/***************************************************************************
       Fonts
***************************************************************************/

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

/***************************************************************************
       Variáveis
***************************************************************************/

	:root {
		--cor-branco: 		#ffffff;
		--cor-cinza:			#272727;
		--cor-preto:	 		#000000;
		--cor-azul:	 		#0170b9;

		--font-light: 		300;
		--font-regular: 		400;
		--font-semibold:		600;
		--font-bold: 			700;
		--font-black:			800; 
	}

/***************************************************************************
        All
***************************************************************************/
	.grow { 
	transition: all .2s ease-in-out; 
	}

	.grow:hover { 
	transform: scale(1.1); 
	}

	html{
		margin-top: 0px!important;
	}
	body{
		margin: 0;
		overflow-x: clip;
	}
	*{
		margin: 0;
		box-shadow: 0 0 0 0;
		border: 0 none;
		outline: 0;
		font-family: 'Montserrat', sans-serif;
	} 

	a{
		text-decoration: none !important; 
		cursor: pointer;
	}
	button:focus { outline: none; }

	.mobile{ display: none; }

	.transition_on *,
	.transition_on{ transition: ease .8s all !important; }
	.transition_off *,
	.transition_off{ transition: none!important; }

	.mrg-0{ margin: 0px; }

	.mrg-top-30{ margin-top: 30px; }
	.mrg-top-45{ margin-top: 45px; }
	.mrg-top-50{ margin-top: 50px; }

	.mrg-bot-30{ margin-bottom: 30px; }
	.mrg-bot-50{ margin-bottom: 50px; }
	.mrg-bot-75{ margin-bottom: 75px; }

	.pdd-0{ padding: 0!important; }
	.pdd-0-15{ padding: 0 15px!important; }
	.pdd-50-0{ padding: 50px 0 !important; }
	.pdd-25-0-0{ padding: 25px 0 0 !important; }
	.pdd-0-15-0-0{ padding: 0 15px 0 0  !important; }

	.pdd-lef-30{ padding-left: 30px !important; }
	.pdd-lef-35{ padding-left: 35px !important; }
	.pdd-lef-40{ padding-left: 40px !important; }
	.pdd-lef-45{ padding-left: 45px !important; }
	.pdd-lef-50{ padding-left: 50px !important; }
	.pdd-lef-55{ padding-left: 55px !important; }
	.pdd-lef-60{ padding-left: 60px !important; }
	.pdd-lef-65{ padding-left: 65px !important; }
	.pdd-lef-70{ padding-left: 70px !important; }
	.pdd-lef-75{ padding-left: 75px !important; }
	.pdd-lef-80{ padding-left: 80px !important; }
	.pdd-lef-85{ padding-left: 85px !important; }
	.pdd-lef-90{ padding-left: 90px !important; }
	.pdd-lef-95{ padding-left: 95px !important; }
	.pdd-lef-100{ padding-left: 100px !important; }
	.pdd-lef-105{ padding-left: 105px !important; }
	.pdd-lef-110{ padding-left: 110px !important; }
	.pdd-lef-115{ padding-left: 115px !important; }
	.pdd-lef-120{ padding-left: 120px !important; }
	.pdd-lef-125{ padding-left: 125px !important; }
	.pdd-lef-150{ padding-left: 150px !important; }

	.txt-center{ text-align: center !important; }
	.txt-right{ text-align: right !important; }

	.nao-quebrar{ white-space: nowrap; }

	.align_self-center{ align-self: center; }

	.dpy-flex{ display: flex; }

	.flt-left{ float: left; }
	.flt-right{ float: right; }

	.bgd-branco{ background: var(--cor-branco) !important; }


	.scroll::-webkit-scrollbar-track{
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
		background-color: #F5F5F5;
	}
	.scroll::-webkit-scrollbar{
		width: 10px;
		background-color: #F5F5F5;
	}
	.scroll::-webkit-scrollbar-thumb{
		border-radius: 10px;
		background-image: -webkit-gradient(linear,
			left bottom,
			left top,
			color-stop(0.25, var(--cor-cinza)),
			color-stop(0.75, var(--cor-preto)));
	}


	.fundo-escuro h2,
	.fundo-escuro p{
		color: var(--cor-branco);
	}
	.fundo-claro h2,
	.fundo-claro p{
		color: var(--cor-branco);
	}

	h2{
		font-weight: var(--font-black);
		font-size: 31px;
	}
	p{
		font-weight: var(--font-regular);
		color:	#a7a7a7;
	}

	.btnEnv{
	        background: var(--cor-azul)!important;
    width: 100%;
    /* max-width: initial; */
    border-radius: 50px!important;
    color: var(--cor-branco)!important;
    font-weight: var(--font-semibold)!important;
    margin-top: 30px!important;
    width: 250px!important;
    padding: 8px!important;
	   
	}
	.btnEnv:hover{
		color: var(--cor-branco)!important;
	}


	/***************************************************************************

	Menu

***************************************************************************/
	 .contact-info {
            display: flex;
            align-items: center;
/*            float: right;*/
        }
        .contact-info i {
            font-size: 24px;
            margin-right: 10px;
        }
        .contact-details {
            display: flex;
            flex-direction: column;
        }
        .contact-details h3 {
            margin: 0;
            font-size: 26px;
            text-align: left;
            font-family: var(--passion-one);
            color: #58585a;

        }
        #menu-primeiro .contact-details a{
        	font-size: 18px!important;
        }
        .contact-details p {
            margin: 0;
            font-size: 18px;
                position: relative;
    top: -5px;
        }
	#menu-primeiro .btn-tercerize{

		background:  #f8831f;

		color: var(--cor-branco);

		border: solid 2px  #f8831f;

		border-radius: 20px;

		display: flex;

		transition: ease .5s all !important;

		width: 100%;

		max-width: 270px;

		height: 37px;

		font-weight: 400;

		font-size: 14px;

		justify-content: center;

		align-items: center;
		margin-top: 0px;


	}

	#menu-primeiro .btn-tercerize:hover{

		background:transparent;

		color: #fff;

	}
	#menu-primeiro .btn-tercerize:hover .proximo{
		filter: invert(0);
		transition: ease .5s all !important;

	}
	#menu-primeiro .proximo{
		background-image: url(../img/user.png);
	    background-repeat: no-repeat;
	    background-position: center;
	    background-size: cover;
	    height: 12px;
	    margin-left: 10px;
	    color: transparent!important;
	    transition: ease .5s all !important;
	}


	header{

		position: relative;

		width: 100%;

		height: 110px;

		top: 0px;

		z-index: 999;

	}
	#menu-primeiro img{
		width: 35px;
		height: 35px;
		object-fit: contain;
	}
	#menu-primeiro{
		 /* margin-bottom: 15px; */
    /* padding-top: 35px; */
    /* align-items: end; */
    position: relative;
    top: 35px;
    margin-top: -20px;
    z-index: 99999;

	}

	#menu-primeiro .contato{
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 0.7rem;
	}


	#menu-primeiro .contato i, #menu-primeiro .contato img{

	    font-size: 16px;
	    color: #fff;
	    background: #2e384f;
	    border-radius: 50px;
	    width: 30px;
	    height: 30px;
	    text-align: center;
	   
	    align-content: center;

	}	

#menu-primeiro .contato img {
background: transparent;
}

	#menu-primeiro .social{

		padding: 0;

		display: flex;

	}

	#menu-primeiro a{

		color: #848484;

		font-weight: var(--font-medium);

		font-size: 15px;

		gap: 0.7rem;

		text-align-last: center;

	}

	#menu-primeiro i{

		font-size: 22px;

	}

	#menu-primeiro a{

		line-height: 22px;

		display: inline-flex;
		    align-items: center;

	}





	#menu-segundo{

		padding-top: 0px;

	}

	#menu-segundo .logomenu{

	    height: 190px;
	    display: flex;
	    margin-top: -62px;
/*	    width: 212px;*/
	    /* padding: 10px;*/
	}


	#menu-segundo .logomenu img{

		width: 100%;

		padding: 0 11px;

		object-fit: contain;

	}

	#menu-segundo ul{
		    width: 100%;
    display: inline-flex;
    height: 65px;
    flex-direction: row;
    text-align: center;
    /* float: right; */
    /* margin-top: 10px; */
    align-items: end;
    /*background: #fff;
    border-radius: 10px;*/
    /*padding-right: 20px;
    padding-left: 30px;*/
/*    border: 1px solid #cdccccf4;*/
position: relative;
    left: 35px;

	}

	#menu-segundo ul li{

/*		margin-top: 10px;*/

	}

	#menu-segundo ul li a{

		color:#404040;

		font-weight: var(--font-medium);

		font-size: 15px;

		margin: 0 0 0 20px;		

	}

	#menu-segundo ul li:hover a,

	#menu-segundo ul li .submenu li:hover a{

		color: #fff;
		background: #148aa6;

	}

	#menu-segundo ul li a span{

		font-size: 11px;

	}


	#menu-segundo ul li .submenu a{
		margin: 0!important;
	}
	#menu-segundo ul li .submenu {

		position: absolute;
	    z-index: -1;
	    background: #fff;
	    /* background-image: url(../img/menu-dropdown.png); */
	    /* min-width: 120px; */
	    width: auto;
	    height: auto;
	    transition: 0.3s;
	    top: 75px;
	    padding: 20px 20px 20px 15px;
	    opacity: 0;
	    visibility: hidden;
	    margin-left: 27px;
	    border-radius: 10px;
	  	flex-direction: column;
	    text-align: left;
	    border: 1px solid #ececec;
	    display: block;

	}
	
	#menu-segundo ul li .submenu li::before {
    content: "•";
    /* align-items: center; */
    /* align-content: center; */
    /* display: inline-block; */
    position: relative;
    line-height: 0px;
    /* height: 1px; */
    font-size: 50px;
    color: #ffca16;
    margin-right: 5px;
    top: 10px;
}
	#menu-segundo ul li:hover .submenu {

		opacity: 1;

		z-index: 1;

		visibility: visible;

	}

	#menu-segundo ul li .submenu a{

		color: var(--cor-cinza);

	}

	#menu-segundo ul li .submenu li{

		display: block;

		margin-top: 0;

	}

























	





	.btn{
	 background: #1fa650;
    width: 100%;
    /* max-width: initial; */
    border-radius: 50px;
    color: var(--cor-branco);
    font-weight: var(--font-semibold);
    margin-top: 10px;
    width: 400px;
    margin: auto;
    display: block;
	}
	/*.btn::after{
		content: "→";
		margin-left: 5px;
		font-size: 20px;
		transition: ease .8s all;
		font-weight: var(--font-black);
	}*/
	.btn:hover{
		color: var(--cor-branco);
	}
	.btn:hover::after{
		margin-left: 25px;
	}

	.ponto-de-retorno{
		position: absolute;
		margin-top: -160px;
	}

	.img_seta_menu{
		position: relative;
	    left: 30px;
	    /* top: 0px; */
	    width: 40px;
	}
	.infos_menu{
		margin-top: 30px;
	}
	.banner_btn_ocb{
	 float: right;
    margin-top: 0px;
    font-size: 10px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 10px;
    font-weight: 700;
    border-radius: 40px;
    border: 2px solid #000;
    transition: 0.8s;
    width: 175px;
    text-align: center;
	}
	.banner_btn_ocb:hover{
		border: 2px solid #000;
		background: #fff;
		color: #000;
		transition: 0.8s;
	}
	.icones_topo{
		margin-top: 50px;
	}
/***************************************************************************
	Banner
***************************************************************************/
	.linha{
		width: 64px;
	    height: 3px;
	    background-color: #148aa6;
	    margin: 1.5rem 0;
	}
	/*.imag_topo{
		width: 220px;
    height: 85px;
    object-fit: contain;
	}
	.banner_btn{
	 float: right;
    margin-top: 0px;
    font-size: 10px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    padding: 10px;
    font-weight: 700;
    border-radius: 40px;
    border: 2px solid #000;
    transition: 0.8s;
	}
	.banner_btn:hover{
		border: 2px solid #000;
		background: #fff;
		color: #000;
		transition: 0.8s;

	}


	#banner{
		background: url("../img/banner-topo.png")no-repeat;

		min-height: 680px;
		background-position: center;
		background-size: cover;
		
	}

	#banner input{
		width: 100%;
		max-width: 355px;
		min-height: 40px;
		color: #fff;
		border: solid 1px #fff;
		background: #0000;
		padding: 7px 20px;
		font-weight: var(--font-light);
		border-radius: 5px;
		font-size: 12px;
		margin-bottom: 9px;
	}
	#banner input::placeholder{
		color: #fff;
	}
	#banner iframe{
		padding: 0 30px;
	}

	#banner p{
		margin: 0px 0;
		font-size: 20px;
		line-height: 30px;
		color: #727272;
		margin-top: 25px;
	}
	#banner h2{
		font-size: 40px;
		color: #000;
		border-left: 4px solid #d53a49;
		font-weight:700;
		padding-left: 10px;
		margin-top: 50px;
		
	}*/

	.btn_contato{
		background: #000;
		font-size: 14px;	
	   padding: 7px 15px 0px 15px;
	   border-radius: 40px;
	   color: #fff;
	   width: 220px;
      text-align: center;
      margin-right:5px ;
      border:2px solid #000;
      transition: 0.8s;
      font-weight: 700;
	}

	.btn_contato:hover{
		background: #fff;
		font-size: 14px;	
	   color: #000;
	   font-weight: 700;
	   transition: 0.8s;
	   
	}
	
	
	#banner span{
		color:#cd1426 ;
	}



	.slid-card{
		background: #fff;
		padding: 20px 15px;
		border-radius: 15px;
		border: 1px solid #00000026;
		height: 145px;
		display: flex;
		align-items: center;
	}
	.slid-card img{
		width: 100%;
		height: 60px;
		object-fit: contain;

	}
	#galeria{
	     position: relative;
	    top: -53px;
	    margin-bottom: -90px;
	}
/***************************************************************************
	quem somos
***************************************************************************/
	#quem_somos{
		margin-top: 80px;
	}
	#quem_somos img{
		width: 100%;
	}
	#quem_somos .txtquem{
		font-size: 15px;

	}
	#quem_somos hr{
		margin: 0px;
	}
	#quem_somos .titulo{
		color: #000;
		border-left: 4px solid #d53a49;
		font-weight:700;
		padding-left: 10px;

	}
	#quem_somos .rednumber{
		font-size:30px;
		text-align: right;
		color: #cd1426;
		font-weight: 700;

	}
	#quem_somos .contador_side h4{
		font-size:15px;
		text-align: right;
		font-weight: 700;
	}
	#quem_somos .contador_side p{
		font-size:14px;
		text-align: right;
	}
/***************************************************************************
	serviços
***************************************************************************/
	
	#servicos{
		background:#f3f3f3;
	}
	#servicos{
		margin-top: 80px;
		padding-bottom: 80px;
	}
	
.btnslide1_digital_depoimentos{
	background: url("../img/seta-direita.png") no-repeat!important;
	width: 50px;
	display: block;
	color: transparent;
	min-height: 40px;
	cursor: pointer;
	position: relative;
   left: -10px;
}
.btnslide2_digital_depoimentos{
	background: url("../img/seta-esquerda.png") no-repeat!important;
	width: 50px;
	display: block;
	color: transparent;
	min-height: 40px;
	cursor: pointer;
}


#servicos .card{
 border: none;
}
#servicos .card:hover .slide_img{
	transition: 0.8s;
   filter: brightness(0.5);
   transition: 0.8s;
}
#servicos .card_text{
   width: 200px;
   text-align: center;
   margin: auto;
   color: #fff;
   display: none;
   position: relative;
   top: -200px;
   z-index: 9999999;
   transition: 0.8s;
   margin-bottom: -144px;
}
#servicos .card:hover .card_text {
   transition: 0.8s;
   display: block!important;
}
#servicos .bloco_baixo .icone_baixo{
	 width: 90px;
    background: #cd1426;
    padding: 10px 20px 10px 20px;
    border-bottom-left-radius: 20px;
}
#servicos .bloco_baixo{
	position: relative;
    top: -30px;
    
}
#servicos .bloco_baixo_txt{
	background:#f3f3f3;
   padding: 13px 40px 6px 20px;
   font-weight: 700;
   border-bottom-right-radius: 20px;
   border-top-right-radius: 15px;
   box-shadow: 0 0 10px 0px #BDBDBD;
}
#servicos .bloco_baixo_txt p{
   font-weight: 700;
   line-height:18px;
}
#servicos .bloco_baixo_txt{
	position: relative;
   top: -30px;
   
}
#servicos .slide_img{
	width: 100%;
   border-radius: 10px;
   height: 230px;
   object-fit: cover;
}
.p0{
	padding: 0px;
}
#servicos h2{
	font-size: 28px;
	color: #000;
	border-left: 4px solid #d53a49;
	font-weight:700;
	padding-left: 10px;
	margin-top: 50px;
}

/***************************************************************************
	formulario 
***************************************************************************/
	#form{
		margin-top: 70px;
		margin-bottom: 100px;
	}
	.info_form{
		color: #b2b2b2;
	}
	.form_img_lateral{
		width: 100%;
	}
	.d_flex_form img{
	 height: 30px;
    object-fit: contain;
    width: 30px;
	}
	}
	.d_flex_form{
		display: flex;
	}
	#form h3{
	font-size: 28px;
	color: #000;
	border-left: 4px solid #d53a49;
	font-weight:700;
	padding-left: 10px;
	
	}
   .ml_form{
   	margin-left: 50px;
   }
	 input::placeholder{
	 color:#c8c8c8;	
	}
	textarea::placeholder{
	 color:#c8c8c8;
	}
	.insta_icon{
		margin: auto;
	   display: block;
	   position: relative;
	   top: 120px;
	   left: -80px;
	   margin-top: -50px;
	   cursor: pointer;
	}

	 input{

		border-radius: 15px;
		width: 100%;
		height: 40px;
		background: #f4f5f5;
	   padding: 10px;
		font-weight: 400;
		border:2px solid #f4f5f5;
		margin-top: 15px;	

	}

	input:focus{

		border:2px solid #e0e4e4;	

	}
	textarea{
		padding: 10px;
		border-radius: 10px;
		color: black;
		width: 100%;
		border: 1px solid #fff;
		background: #f4f5f5;
		height: 100px;
		margin-top: 15px;
		margin-bottom: 20px;
	}


/***************************************************************************
	sobre
***************************************************************************/
	#sobre h2{
		font-weight: 900;
		color: #000;
		font-size: 31px;
	}
	#sobre p{
		font-weight: var(--font-regular);
		max-width: 515px;
	}
	#sobre{
		margin-top: 80px;
		margin-bottom: 50px;
	}
	#sobre .col-lg-5{
		text-align: center;
	}
	#sobre img{
		width: 387px;
	}
/***************************************************************************
	Faixa Preta
***************************************************************************/

	.faixa-preta h2{
		font-weight: 700;
	}
	.faixa-preta{
		background: #0170b9;
		padding-top: 30px;
		padding-bottom: 60px;
	}
	.faixa-preta p{
		font-weight: 300;
		width: 100%;
		font-size: 19px;
		line-height: 25px;
	}
	.faixa-preta .col-lg-5 p{
		margin-bottom: 50px;
	}

	.faixa-preta .offset-lg-1{
		display: flex;
		align-self: center;
	}

	.faixa-preta .offset-lg-1 .bloco{
		flex: 1;
	}
/***************************************************************************
	blog index
***************************************************************************/
#blogIndex{
	margin-top: 100px;
	margin-bottom: 60px;
}
#blogIndex h4{
	font-size: 20;
	color: #148aa6;
	
	font-weight:800;
	
}

#banner-pages{
 background: url("http://blog.ocb.com.br/wp-content/uploads/2023/08/blog-banner.png")no-repeat;
 background-position: center;
 background-size: cover;
 padding: 60px 0;
}
#banner-pages h3{
	font-size: 30px;
	color: #000;
	border-left: 4px solid #d53a49;
	font-weight:700;
	padding-left: 10px;
}
.blog_card .blog_card{

}
.img_blog_ocb{
	width: 100%;
    height: 280px;
    object-fit: cover;
    
}
.data_post_verm p {
	text-transform: capitalize;
	font-weight: 700;
    font-size: 23px;
    background: #148aa6;
    color: #fff;
    padding: 11px;
    /* height: 83px; */
    width: 65px;
    line-height: 20px;
    position: relative;
    margin-bottom: -70px;
	/* right: -25px;*/
    top: -110px;
    /* border-top-right-radius: 25px; */
    /* border-bottom-left-radius: 25px;*/
}
.leia{
	    background: #2e384f;
    color: #fff;
    font-weight: 300;
    width: 150px;
    display: grid;
    text-align: center;
    height: 40px;
    font-size: 16px;
    align-items: center;
    
    
}
.leia:hover{
	color: #fff;
}

.blog_card{
	height: 520px;
	border: 1px solid #e9e9e9;
	margin-top: 55px;
	
}
.datas_posts{
	display: flex;
}
.datas_posts p{
	    color: #575e6e;
}
.datas_posts .icones_post{
	width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 5px;
}
.blog_card h5{
	color: #148aa6;
	font-weight: bold;
	height: 60px;
}
.post_infos{
	padding: 20px;
	height: 280px;
	background: #f7f7f7;
}

.blog_seta{
	margin: auto;
	display: block;
	position: relative;
	top: -25px;
}
.paginacao {
	margin-top: 50px;
	
}
.wp-pagenavi a:hover, .wp-pagenavi span.current{
	background: #148aa6;
    color: #fff;
    border: 1px solid #fff;
}
.paginacao a{
	background: #959595;
    padding: 5px 12px;
    
    color: #fff;
    border: 1px solid #f3f3f3;
    cursor: pointer;
}
.paginacao span{
	background: transparent;
    padding: 5px 12px;
    
    color: #b9b9b9;
    border: 1px solid #f3f3f3;
    cursor: pointer;
}
.paginacao span:hover{
	background: #2e384f;
    color: #fff;
    border: 1px solid #2e384f;  

}
.txtquem h5{
 color:	#8f8f8f;
 font-size: 16px;

}
.pesquisa{
	width: 100%;
    border-radius: 10px;
    height: 50px;
    background: #f1f1f1;
    margin: 0;
}
.lupa-p{
	    width: 50px;
    height: 50px;
    float: right;
    position: relative;
    top: 10px;
    margin-bottom: -40px;
    
}
.conteudo_categoria{
	    background: #f7f7f7;
    padding: 13px !important;
}

/***************************************************************************
	blog single
***************************************************************************/
.blog_card_int h5{
	color: #148aa6;
	font-weight: bold;
}
.blog_card_int p{
	color: #000!important;
}
.blog_card_int .img_blog_ocb_int{
	width: 100%;
    height: 400px;
    object-fit: cover;
    
}
.post_infos_int h5{
	
	
    font-weight: 700;
    
}
	.categoria{
		padding: 0px!important;
	}
	.categoria li{
		list-style: none!important;
	}
	.categoria a{
		color: #8f8f8f!important;
	}
/**************************
		lupa
**************************/
@import "compass/css3";

.ico-mglass {
  position:relative;
  display:inline-block;
  background: #fff;
  border-radius: 30px;
  height: 6px;
  width: 6px;
  border: 2px solid #888;
  
  &:after {
    content: "";
    height: 2px;
    width: 6px;
    background: #888;
    position:absolute;
    top:7px;
    left:5px;
    -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
       -o-transform: rotate(45deg);
  }
  
}

/***************************************************************************
	footer
***************************************************************************/
	footer .logo_apple{
		margin-top: 15px;
	}
	footer .logo_google{
		margin-top: 15px;
	}
	footer{
	   background: #313131;
	   padding-top: 50px;
	   padding-bottom: 50px;
	    background-repeat: no-repeat;
	    background-position: center;
	    background-size: cover;
	}
	footer a{
		color: #fff;
	}
	footer a:hover{
		background:#fff;
		color: #148aa6;
	}
	footer p{
		color: #fff;
		margin-bottom: 5px;
	}
	footer h3{
		font-size: 15px;
		font-weight: 800;
		color: #fff;
	}
	.copy{
		    background: #158aa6;
    padding-top: 10px;
    padding-bottom: 10px;
	}
	.copy img{
		width: 130px;
	}
	.copy span{
		color: #fff;
		font-weight: 600;
		font-size: 14px;
		margin-right: 7px;
	}
	.dfcoutn{
		display: flex;
	}
	.dflxx{
		display: flex;
	}
	.logo-footer{
		width: 100%;
	}
/***************************************************************************
	Responsivo
***************************************************************************/

	@media (min-width: 1650px){
		#banner{
/*		min-height: 830px;*/
		}
	}

	@media (min-width: 1480px){
		
	}



	@media (max-width: 1200px){
	}

	@media (min-width: 1200px){
	}

	@media (max-width: 991px){
		 #menu-segundo .logomenu img {
        width: 230px;
        margin-top: 50px;
    }
		.logo-footer{
			width: 15%;
		}
		/*#banner{
			display: none;
		}*/
		 .desktop{
		 	display: none;
		 }
		.linhaf{
			display: none;
		}
		.imag_topo{
			margin: auto;
		    display: block;
		    margin-bottom: 0px!important;
		    margin-top: 0px!important;
		}
		.pinI{
			display: grid;
		}
		.pinI img{
			margin:auto;
		}
		.pinI span{
			text-align: center;
		}
		.banner_btn_ocb{
			float: inherit;
			margin: auto;
    		display: block;
		}
		.img_seta_menu{
			display: none;
		}
		.icones_topo {
	    margin-top: 20px;
	    margin-bottom: 30px;
		}
		
		.pesquisa {
			    margin-bottom: 35px;
		}
		#blogIndex {
   			 margin-top: 30px;
		}

	}
	




	@media (max-width: 767px){
	}

	@media (max-width: 580px){
	}

	@media (max-width: 575px){
		#menu-segundo .logomenu img{
			width: 230px;
		}
	}

	@media (max-width: 537px){
	}

	@media (max-width: 332px){
	}



	
.mrg_banner{
		margin-top: 70px;
	}



	#banner{

		height: 250px;

		background-image: url('https://www.aroppus.com.br/blog/wp-content/uploads/2025/02/banner_padrao.png');

		background-repeat: no-repeat;

		background-position: center;

/*		padding-top: 110px;*/

		background-size: cover;
		position: relative;
    		/*top: -185px;
    	margin-bottom: -185px;*/

	}
	#banner p{
		font-size: 22px;
    	color: #545454;
    	font-weight: 500;
    
	}
	#banner h2{

		color: #148aa6;
	    font-family: var(--passion-one);
	    font-size: 42px;
	    font-weight: 800;
	    line-height: 45px;
	   

	}
	#banner h3{
		font-family: var(--passion-one);
		color: #ffca16;
		font-size: 28px;
	}
	#faixa_banner{
	background: #c9db91;
}
#faixa_banner p{
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	padding: 10px 0;
}
.linhaf{
	border-right: 1px solid #fff;
	position: relative;
	left: -25px;
}
