/*
	CSS que engloba todas as páginas
*/

/* --- fontes --- */
	@font-face {
	    font-family: "Montserrat-Bold";
	    src: url("../fonts/Montserrat-Bold.ttf");
	}
	@font-face {
	    font-family: "Montserrat-Medium";
	    src: url("../fonts/Montserrat-Medium.ttf");
	}
	@font-face {
	    font-family: "Montserrat-Regular";
	    src: url("../fonts/Montserrat-Regular.ttf");
	}
	@font-face {
	    font-family: "Poppins-Regular";
	    src: url("../fonts/Poppins-Regular.ttf");
	}

	.font-bold{
		font-family: "Montserrat-Bold";
	}
	.font-medium{
		font-family: "Montserrat-Medium";
	}
	.font-regular{
		font-family: "Montserrat-Regular";
	}
	.font-pop-regular{
		font-family: "Poppins-Regular";
	}

/* --- cores --- */
	:root{
		--new-orange:#FF3600;
		--new-black:#161615;
		--new-blue:#0F1A2B;
		--new-gray:#707070;
	}

	.bg-orange{
		background-color: var(--new-orange)!important;
	}
	.bg-black{
		background-color: var(--new-black);
	}
	.bg-blue{
		background-color: var(--new-blue);
	}
	.bg-gray{
		background-color: var(--new-gray);
	}

	.text-orange{
		color: var(--new-orange);
	}
	.text-black{
		color: var(--new-black);
	}
	.text-blue{
		color: var(--new-blue);
	}
	.text-gray{
		color: var(--new-gray);
	}

/* --- outros --- */
	body{
		font-family: "Poppins-Regular";
		color: var(--new-gray);
	}
	a:hover{
		text-decoration: none;
	}
	
	.container{
		max-width: 1171px!important;
	}

	.btn-orange{
		height: 51px;
		padding-top: 10px;
		padding-left: 18px;
		padding-right: 18px;
		border-radius: 11px;
		background-color: transparent;
		color: var(--new-orange);
		font-size: 20px;
		font-family: "Montserrat-Medium";
		text-transform: uppercase;
		border: 1px solid var(--new-orange);
	}
	.btn-orange:hover{
		background-color: var(--new-orange);
		color: white;
	}

	.btn-orange-2{
		height: 43px;
		padding-top: 10px;
		padding-left: 18px;
		padding-right: 18px;
		border-radius: 6px;
		background-color: var(--new-orange);
		color: white;
		font-size: 16px;
		font-family: "Montserrat-Medium";
		text-transform: uppercase;
		border: 1px solid var(--new-orange);
	}
	.btn-orange-2:hover{
		background-color: transparent;
		color: var(--new-orange);
	}

	.btn-white{
		border: 1px solid white;
		background-color: transparent;
		color: white;
		height: 51px;
		border-radius: 11px;
		font-size: 20px;
		font-family: "Montserrat-Medium";
		transition: .3s;
		padding-top: 10px;
		padding-left: 20px;
		padding-right: 20px;
		text-transform: uppercase;
	}
	.btn-white:hover{
		background-color: white;
		color: var(--new-orange);
		transition: .3s;
	}

/* --- catalogo --- */
	#catalogo{
		background-color: var(--new-orange);
	}
	#catalogo .imagem{
		background: url(../imagens/bg/bg-catalogo.png)no-repeat center right;
		background-size: cover;
		height: 389px;
	}
	#catalogo h2,
	#catalogo a.btn{
		margin-left: 50px;
	}
	#catalogo h2{
		font-size: 55px;
		line-height: 50px;
		letter-spacing: -1px;
		margin-bottom: 35px;
	}

/* --- modal Falar com especialista --- */
	#modal_especialista .modal-lg{
		max-width: 639px!important;
		width: 100%;
	}
	#modal_especialista .modal-content{
		border-radius: 20px!important;
	}
	#modal_especialista .modal-body{
		padding: 0;
	}
	#modal_especialista button{
		position: absolute;
		right: 0;
		margin-top: -25px;
		margin-right: -25px;
		z-index: 2;
		opacity: 1;
	}
	#modal_especialista .form{
		margin-top: 0px;
		padding: 50px 30px;
	}
	#modal_especialista h2{
		font-size: 20px;
		margin-bottom: 20px;
	}
	#modal_especialista select,
	#modal_especialista input{
		height: 43px;
		font-size: 16px;
		background-color: #F5F6F8;
		border-radius: 10px;
		padding-left: 20px;
		margin-bottom: 13px;
		color: #707070;
	}
	#modal_especialista a.btn{
		height: 43px;
		padding-top: 10px;
		border-radius: 10px;
	}
	#modal_especialista .imagem{
		background: url(../imagens/img-principal2.png)no-repeat center center;
		background-size: cover;
		border-top-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}

/* --- item-fixo --- */
	#item-fixo a.icon-whatsapp{
		position: fixed;
		right: 8%;
		bottom: 145px;
		transition: .3s;
		z-index: 2;
	}
	#item-fixo a.icon-whatsapp:hover{
		transform: scale(1.12);
		transition: .3s;
	}
	#item-fixo a.icon-whatsapp{
		bottom: 50px;
	}

/* --- blog aside --- */
	.aside{
		background-color: #E9EEF7;
		border-radius: 20px;
		width: 381px;
		margin-left: 75px;
		margin-top: -35px;
		padding: 37px 41px 1px 41px;
	}
	.aside .input-group{
		border: none!important;
		border-radius: 50px;
		font-size: 12px;
		height: 37px;
		padding-top: 5px;
		padding-left: 10px;
		padding-right: 0px;
		background-color: #fff;
	}
	.aside .input-group input{
		padding-top: 0;
		padding-bottom: 0;
		font-size: 11px;
		height: 30px;
	}
	.aside h5{
		margin-top: 22px;
		font-size: 35px;
		margin-bottom: 22px;
	}
	.aside hr{
		border-top: 1px solid white;
		margin-top: -20px;
	}
	.aside li{
		list-style: none;
		font-size: 16px;
		margin-bottom: 6px;
		padding-bottom: 5px;
	}
	.aside li a{
		color: #707070!important;
		font-weight: bold;
	}
	.aside .arquivos li{
		margin-bottom: 6px!important;
	}	
	.aside li a:hover{
		color: var(--new-orange)!important;
	}

/* --- barra de rolagem do navegador --- */
	::-webkit-scrollbar {
	 	width: 8px;
	  	height: 8px;
	  	border-radius: 20px;
	}
	::-webkit-scrollbar-track-piece {
	  	background-color: var(--white);
	}
	::-webkit-scrollbar-thumb:vertical {
	  	background-color: var(--new-orange);
	}
	::-webkit-scrollbar-thumb:horizontal {
	  	background-color: var(--new-orange);
	}

/* --- LGPD --- */
	/* Deixa desabilitado por padrão */
	.js_enabled .lgpd-cookies {
	    display: none;
	}
	  
	.lgpd-cookies {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-around;
		width: 85vw;
		border: none;
		border-radius: 0;
		padding: 15px;
		position: fixed;
		bottom: 3%;
		left: 50%;
		transform: translateX(-50%);
		z-index: 999;
		background: rgba(0, 0, 0, 0.85);
		box-shadow: 2px 1px 20px #00000029;
		border-radius: 10px;
	}
	  
	.lgpd-texto {
		width: 72%;
		text-align: center;
		margin-right: 20px;
		margin-left: 20px;
		color: #fff;
	}

	.lgpd-link {
		color: var(--clr-primary);
	}

	.lgpd-link:hover {
		color: var(--clr-primary);
	}

	.lgpd-botao {
		background: none;
		border: none;
		cursor: pointer;
		outline: none;
		color: #ffffff;
	}

	.lgpd-botao.continuar {
		border: 1px solid var(--clr-primary);
		border-radius: 8px;
		padding: 10px 15px;
		margin-right: 10px;
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.lgpd-botao.continuar:hover {
		color: #ffffff;
		background: var(--clr-primary);
	}

	.lgpd-botao.sair:hover {
		text-decoration: underline;
	}

@media screen and (max-width: 1920px) {
	
}

@media screen and (max-width: 1660px) {
	/* --- item-fixo --- */
		#item-fixo a.icon-whatsapp{
			right: 5%;
		}
}

@media screen and (max-width: 1440px) {
	/* --- item-fixo --- */
		#item-fixo a.icon-whatsapp{
			right: 4%;
		}
}

@media screen and (max-width: 1200px) {	
	/* --- item-fixo --- */
		#item-fixo a.icon-whatsapp{
			right: 6%;
		}

	/* --- blog aside --- */
		.aside{
			width: 300px;
			margin-left: 0px;
			padding: 37px 20px 1px 20px;
		}

	/* --- modal Falar com especialista --- */
		#modal_especialista select,
		#modal_especialista input{
			margin-bottom: 16px;
		}
}

@media screen and (max-width: 992px) {
	/* --- item-fixo --- */
		#item-fixo a.icon-whatsapp{
			display: none;
		}

	/* --- blog aside --- */
		img.menu-lateral{
			margin-top: -45px;
			position: relative;
		}
		img.icon-close{
			position: absolute;
			top: -10px;
			left: -10px;
			background-color: white;
			border: 1px solid var(--new-orange);
			border-radius: 50%;
			cursor: pointer;
		}

		/* ----- */

		.aside{
			position: absolute;
			right: 0px;

			width: 300px;
			margin-left: 0px;
			margin-top: 0px;
			padding: 37px 20px 1px 20px;
		}

	/* --- catalogo --- */
		#catalogo .imagem{
			background: url(../imagens/bg/bg-catalogo.png)no-repeat center center;
			background-size: cover;
			height: 306px;
		}
		#catalogo .conteudo{
			height: 310px;
			padding-top: 100px;
		}
		#catalogo h2,
		#catalogo a.btn{
			margin-left: 0px;
		}
		#catalogo h2{
			margin-bottom: 20px;
		}

	/* --- modal Falar com especialista --- */
		#modal_especialista .modal-lg{
			max-width: 400px!important;
		}
		#modal_especialista .modal-content{
			overflow: initial; 
		}
		#modal_especialista .imagem{
			background: url(../imagens/img-principal.png)no-repeat center center;
			background-size: cover;
			height: 323px;
			border-bottom-left-radius: 20px;
			border-bottom-right-radius: 20px;
		}
}

@media screen and (max-width: 480px) {
	/* --- catalogo --- */
		#catalogo .conteudo{
			padding-top: 80px;
		}
		#catalogo h2{
			font-size: 45px;
			line-height: 40px;
			margin-bottom: 20px;
		}

	/* --- blog aside --- */
		.aside{
			padding: 30px 20px 1px 20px;
		}
		.aside h5{
			font-size: 26px;
			margin-bottom: 20px;
		}
		.aside li{
			margin-bottom: 5px;
		}
		.aside .arquivos li{
			margin-bottom: 5px!important;
		}

	/* --- modal Falar com especialista --- */
		#modal_especialista .modal-lg{
			max-width: 341px!important;
			margin-top: 30px;
			margin-bottom: 30px;
			margin-left: auto;
			margin-right: auto;
		}
		#modal_especialista .form{
			padding: 40px 35px 40px 35px;
		}
		#modal_especialista h2{
			font-size: 20px;
		}
}