/*** Fonts ***/
@font-face {
	font-family: 'Graphie';
	src: url('../fonts/GraphieLight.otf');
	font-weight: 300;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Graphie';
	src: url('../fonts/GraphieRegular.otf');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Graphie';
	src: url('../fonts/GraphieSemiBold.otf');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Graphie';
	src: url('../fonts/GraphieBold.otf');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Graphie';
	src: url('../fonts/GraphieExtraBold.otf');
	font-weight: 800;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Dancing Script';
	src: url('../fonts/DancingScriptRegular.ttf') format('TrueType');
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

/**** Variáveis ****/
:root{
	--corVerdeClaro: #cadfaa;
	--corVerdeMedio: #43b049;
	--corVerdeEscuro: #005333;
    --corRoxo: #702A72;
	--corGrafite: #3c3f42;
	--corTexto: #666666;
}

/**** Padrão ****/
html{
	scroll-behavior: auto !important;
}

body{
	margin: 0;
	padding: 0;
	font-family: 'Graphie';
	font-weight: 400;
	font-size: 18px;
	color: var(--corTexto);
}

ul{
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6{
	padding: 0;
	margin: 0;
}

p{
	color: var(--corTexto);
	font-size: 16px;
	padding: 0;
	margin: 0;
}

a{
	border-radius: 0;
	text-decoration: none;
}

hr{
	opacity: 1;
}

.nopadding{
	padding: 0 !important;
}

.clr{
	clear: both;
}

.fundo-verde-claro{
	background-color: var(--corVerdeClaro);
}

.fundo-verde-medio{
	background-color: var(--corVerdeMedio);
}

.fundo-verde-escuro{
	background-color: var(--corVerdeEscuro);
}

.fundo-roxo{
	background-color: var(--corRoxo);
}

.btn-solido{
	background-color: var(--corVerdeMedio);
	color: #fff;
	padding: 15px 40px 14px;
	display: inline-block;
}

.btn-solido:hover{
	background-color: var(--corRoxo);
	transition: background-color 0.4s;
}

/*** Btn Whatsapp ***/
#btn-whatsapp.btn{
    position: fixed;
    bottom: 3%;
    right: 2%;
    background-color: #42e057;
    color: #fff;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 0;
    font-size: 34px;
    box-shadow: 0 1px 8px rgb(102, 102, 102, .8);
    z-index: 99999;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

/*** Topo ***/
#topo{
	background-color: rgba(60,63,66, 0.7);
	padding: 30px 0;
	position: absolute;
	width: 100%;
	left: 0;
	z-index: 9999;
}

#topo .logo-tabone{
	width: 100%;
	max-width: 50px;
	margin: 0 auto;
	display: block;
}

#topo .logo-tabone img{
	width: 100%;
}

#topo .icon-menu-mobile{
	display: none;
}

#topo .area-menu-mobile{
	display: none;
}

#topo .menu{
	display: flex;
    flex-direction: row;
	list-style: none;
}

#topo .menu.direita{
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

#topo .menu li{
	position: relative;
}

#topo .menu li a{
	color: #fff;
	padding: 13px 18px;
	display: block;
	position: relative;
	font-weight: 300;
	letter-spacing: 0.4px;
	cursor: pointer;
}

#topo .menu > li:first-child > a{
	padding: 13px 18px 13px 0;
}

#topo .menu > li:last-child > a{
	padding: 13px 0 13px 18px;
}

#topo .menu li a:hover{
	color: var(--corVerdeMedio);
}

#topo .menu li a.ativo{
	color: var(--corVerdeMedio);
}

#topo .menu li:hover .submenu{
	display: block;
}
#topo .menu li a i{
	font-size: 12px;
}

#topo .menu li .submenu{
	list-style: none;
	display: none;
	position: absolute;
	background-color: var(--corGrafite);
	width: max-content;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.38);
}

#topo .menu li .submenu li a{
	font-size: 16px;
    color: #fff;
    padding: 10px 20px;
	border-bottom: 1px solid #5d5d5d;
}

#topo .menu li .submenu li:last-child a{
	border-bottom: 0;
}

#topo .menu li .submenu li a:hover{
	color: var(--corVerdeMedio);
}

#topo .menu li .submenu li a.ativo{
	color: var(--corVerdeMedio);
}

#topo .icones-topo{
	display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
	gap: 15px;
	height: 100%;
}

#topo .icones-topo a{
	display: block;
}

#topo .icones-topo a img{
	width: 20px;
}

#topo .icones-topo a:hover img{
	filter: brightness(0) saturate(100%) invert(50%) sepia(66%) saturate(419%) hue-rotate(74deg) brightness(100%) contrast(95%);
}

/*** Formulário ***/
.retorno-formulario:has(~ .form-tema){
	padding: 10px 20px;
    text-align: center;
    background: var(--corVerdeClaro);
	color: #333333;
	font-size: 20px;
	display: none;
}

.form-tema .area-campos{
	background-color: var(--corVerdeClaro);
	padding: 22px 40px;
	margin-bottom: 20px;
}

.form-tema .controle{
	display: block;
	color: #333333;
	font-size: 16px;
	width: 100%;
	border: 0;
	outline: 0;
	border-bottom: 1px solid #333333;
	background-color: transparent;
	padding: 4px 10px;
	border-radius: 0;
	margin-top: 18px;
}

.form-tema .controle::placeholder{
	color: #333333;
}

.form-tema select.controle{
	padding: 4px 8px;
}

.form-tema .controle-msg{
	display: block;
	color: #333333;
	font-size: 16px;
	width: 100%;
	border: 0;
	outline: 0;
	background-color: transparent;
	padding: 4px 12px;
	margin-top: 18px;
	min-height: 80px;
}

.form-tema .controle-msg::placeholder{
	color: #333333;
}

.form-tema .btn-submit{
	background-color: var(--corRoxo);
	color: #fff;
	padding: 15px 40px 14px;
	display: inline-block;
	text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.6px;
	border: 0;
	outline: 0;
	letter-spacing: 0.4px;
}

.form-tema .carregamento{
    display: none;
    width: 53px;
    height: 53px;
	margin: 0 auto;
    border-radius:50%;
    border:8px solid;
    border-color:#E4E4ED;
    border-right-color: var(--corVerdeMedio);
    animation:s2 1s infinite linear;
}

@keyframes s2 {to{transform: rotate(1turn)}}

.form-tema ~ .mensagem-erro{
	display: none;
	max-width: max-content;
	padding: 4px 10px;
	margin-top: 15px;
	border: 1px solid red;
}

.form-tema ~ .mensagem-erro p{
	color: #333333;
}

/*** Rodapé ***/
#rodape{
	background: linear-gradient(90deg, rgb(67, 175, 73, 1) 0%, rgba(67, 176, 73, 1) 15%, rgb(0, 83, 51, 1) 70%);
	padding: 30px 0;
}

#rodape .marca-rodape{
	display: flex;
	flex-direction: row;
	align-items: center;
	height: 100%;
    line-height: 100%;
}

#rodape .marca-rodape img{
	width: 100%;
	max-width: 210px;
}

#rodape .redes-sociais{
	position: relative;
    top: 55%;
    transform: translateY(-50%);
}

#rodape .redes-sociais a{
	color: #cae0ab;
    font-size: 38px;
    display: inline-block;
    margin-right: 15px;
	line-height: 90%;
}

#rodape .redes-sociais a:hover{
	color: #fff;
	transition: 0.3s;
}

#rodape .area-botoes{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	padding-top: 2px;
}

#rodape .area-botoes .btn-rodape{
	display: block;
	color: #fff;
	line-height: 100%;
	padding: 11px 12px 10px;
	margin-right: 20px;
	border: 1px solid var(--corVerdeClaro);
	position: relative;
	letter-spacing: 0.5px;
	text-align: center;
}

#rodape .area-botoes .btn-rodape:hover{
	color: var(--corVerdeMedio);
	background-color: #fff;
	transition: 0.3s;
}

#rodape .gif-selos{
	display: block;
	width: 100%;
	max-width: 234px;
	margin: 0 0 0 auto;
}


/*** Assinatura ***/
#assinatura{
	background-color: #2A2A2A;
	padding: 8px 0;
}

#assinatura .desenvolvedores{
	color: #ffff;
	float: right;
	font-size: 11px;
}

#assinatura p a{
	color: #fff;
}

#assinatura p a:hover{
	text-decoration: underline;
}


/*** LGPD ***/
#lgpd{
	display: none;
	position: fixed;
	bottom: 0;
	z-index: 999999999;
	background-color: var(--corVerdeClaro);
	width: 100%;
	padding: 0 10px;
}

#lgpd > div{
	padding-top: 20px;
	padding-bottom: 16px;
}

#lgpd p.texto{
	margin-left: 20px;
	font-size: 14px;
}

#lgpd p.texto a{
	text-decoration: underline;
	color: #333333;
}

#lgpd p.texto a:hover{
	color: var(--corRoxo);
}

#lgpd .col-md-2{
	position: relative;
}

#lgpd .btn-aceitar{
	position: absolute;
	width: 150px;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	display: block;
	background-color: var(--corVerdeMedio);
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.4px;
	text-align: center;
	background-color: var(--corVerdeMedio);
	color: #fff;
	padding : 12px 0 11px 0;
	margin-top: -1px;
	margin-right: 20px;
}

#lgpd .btn-aceitar:hover{
	background-color: var(--corRoxo);
	transition: 0.3s;
}

/*** Responsividade ***/
@media only screen and (min-width: 767px) and (max-width: 1400px){
	/*** Menu ***/
	#topo .menu li a{
		font-size: 16px;
	}

	/*** Rodapé ***/
	#rodape .area-botoes .btn-rodape{
		font-size: 16px;
	}

	#rodape .area-botoes .btn-rodape:last-child{
		margin-right: 0;
	}
}

@media only screen and (max-width: 767px){
	/*** Btn Whatsapp ***/
	#btn-whatsapp.btn {
		padding: 0 0 0 1px;
		bottom: 3%;
		right: 3%;
	}
	
    /*** Topo ***/
	#topo{
		padding: 15px 0;
	}

	#topo .container{
		max-width: 100%;
	}

    #topo .menu, #topo .menu.direita, #topo .icones-topo{
        display: none;
    }

	#topo .col-md-2:has(.icon-menu-mobile){
		position: relative;
		width: 100%;
	}

	#topo .icon-menu-mobile{
		display: block;
		width: 27px;
        height: 18px;
		position: absolute;
		top: calc(50% - 10px);
		right: 12px;
		z-index: 1;
	}

	#topo .icon-menu-mobile .bars{
		height: 3px;
		width: 100%;
		background-color: var(--corVerdeMedio);
		position: absolute;
	}

	#topo .icon-menu-mobile .bars.bar1{
		top: 0;
	}

	#topo .icon-menu-mobile .bars.bar2{
		top: 50%;
	}

	#topo .icon-menu-mobile .bars.bar3{
		top: 100%;
	}

	#topo .area-menu-mobile{
		background-color: rgba(60, 63, 66, 0.7);
		position: absolute;
		top: 100%;
		width: 100%;
		padding: 0;
	}

	#topo .area-menu-mobile .menu-mobile{
		margin: 5px 0 0 0;
		padding: 0;
		list-style: none;
	}

	#topo .area-menu-mobile .menu-mobile > li{
		border-bottom: 1px solid #414d42;
		margin: 0 12px 0;
	}

	#topo .area-menu-mobile .menu-mobile > li:last-child{
		border-bottom: 1px solid transparent;
	}

	#topo .area-menu-mobile .menu-mobile li a{
        display: block;
        color: #fff;
        padding: 14px 10px;
        width: 100%;
        text-align: center;
        background: rgba(60, 63, 66, 1);
        font-size: 16px;
	}

	#topo .area-menu-mobile .menu-mobile li a.ativo{
		color: var(--corVerdeMedio);
	}

	#topo .area-menu-mobile .menu-mobile li a i{
		font-size: 12px;
	}

	#topo .area-menu-mobile .menu-mobile .submenu{
		display: none;
	}

	#topo .area-menu-mobile .icones-topo-mobile{
		display: flex;
        justify-content: center;
		flex-direction: row;
        column-gap: 20px;
		margin: 25px 12px 15px;
	}

	#topo .area-menu-mobile .icones-topo-mobile a{
		display: inline-block;
	}

	#topo .area-menu-mobile .icones-topo-mobile a img{
		width: 30px;
	}

	.btn-solido{
		padding: 15px 30px 14px;
	}

	/*** Formulário ***/
	.form-tema .area-campos{
		padding: 20px 25px;
	}

	.form-tema .controle{
		font-size: 18px;
	}

	.form-tema .controle-msg{
		font-size: 18px;
	}

	.form-tema .btn-submit {
		display: block;
		margin: 20px auto 0;
	}

	/*** Rodapé ***/
	#rodape{
		background: linear-gradient(90deg, rgb(67, 175, 73, 1) 0%, rgba(67, 176, 73, 1) 0%, rgb(0, 83, 51, 1) 100%);
		padding: 50px 0;
	}

	#rodape .marca-rodape{
		justify-content: center;
		height: auto;
		line-height: 100%;
		margin-bottom: 40px;
	}

	#rodape .marca-rodape img{
		width: 100%;
		max-width: 210px;
	}

	#rodape .redes-sociais{
		position: static;
		transform: translateY(0);
		text-align: center;
		margin-bottom: 25px;
	}

	#rodape .redes-sociais a{
		font-size: 32px;
		margin-right: 15px;
	}

	#rodape .redes-sociais a:last-child{
		margin-right: 0;
	}

	#rodape .redes-sociais a:hover{
		color: #fff;
		transition: 0.3s;
	}

	#rodape .area-botoes{
		flex-direction: column;
		height: auto;
		padding-top: 0;
		row-gap: 15px;
		margin-bottom: 30px;
	}

	#rodape .area-botoes .btn-rodape{
		padding: 13px 12px 12px;
        margin-right: 0;
        width: 100%;
        max-width: 234px;
	}

	#rodape .area-botoes .btn-rodape:hover{
		color: var(--corVerdeMedio);
		background-color: #fff;
		transition: 0.3s;
	}

	#rodape .gif-selos{
		display: block;
		width: 100%;
		max-width: 234px;
		margin: 0 auto;
	}

	/*** LGPD ***/
	#lgpd p.texto {
		margin-left: 0;
	}

	#lgpd .btn-aceitar{
		margin-top: 10px;
		position: static;
		transform: none;
	}
}