/*****************************************
*************** VARIABLES ****************
*****************************************/

:root {

/*TEMPLATE*/
--theme: #DC2617;	
	
/*COLORS*/
--primary-50-color: #DC2617;	
--primary-100-color: #AD2317;

	
--neutral-50-color: #242424;
--neutral-100-color: #646464;
--neutral-150-color: #7D7D7D;	
--neutral-200-color: #EAEAEA;
	
--whatsapp-50-color: #028916;
--whatsapp-100-color: #036110;
	
--black-color: #000000;	
--white-color: #FFFFFF;
		
}

img {
	height: auto;
}

/*****************************************
*************** BUTTONS ****************** 
*****************************************/

.btn {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-50-color);
    color: var(--white-color);
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .016em;
    line-height: normal;
    border-radius: 0!important;
    padding: 12px 27px;
    transition: .5s ease;
}

.btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--primary-50-color);
  color: var(--white-color);
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: .016em;
  line-height: normal;
  border-radius: 0!important;
  padding: 12px 27px;
  transition: .5s ease;
}

.btn.wpp {
	background-color: var(--whatsapp-50-color);
}

.btn-center {
	text-align: center;
	margin: 96px 0 0;
}

.btn-left {
	margin: 32px 0 0;
}

form .btn {
	display: block;
	width: 100%;
}

.btn i {
	font-size: 80%;
}

.btn-ic {
    fill: var(--white-color);
    width: 20px;
    margin: 0 6px 0 0;
}

@media (min-width: 1141px) {
	
.btn:hover {
	background-color: var(--primary-100-color);
}
	
.btn.wpp:hover {
	background-color: var(--whatsapp-100-color);
}	
	
}

@media (max-width: 1320px) {
	
.btn {
	font-size: 16px;
	padding: 10px 20px;
}
	
.btn-left {
	margin: 24px 0 0;
}	
	
.btn-center {
	margin: 88px 0 0;
}	
	
}

@media (max-width: 1140px) {
	
.btn-left {
	text-align: center;
	margin: 88px 0 0;
}	
	
}

@media (max-width: 768px) {
		
.btn {
    font-size: 14px;
}
	
.btn-center, .btn-left {
	margin: 64px 0 0;
}		
	
}



/*****************************************
**************** FORM ********************
*****************************************/

.form_field-area {
	position: relative;
}

.form_field-area + .form_field-area {
	margin: 10px 0 0;
}

.form_field-select::before {
    content: '';
    position: absolute;
    top: 13px;
    right: 12px;
    width: 7px;
    height: 7px;
    border: 2px var(--neutral-100-color);
    border-top-style: solid;
    border-left-style: solid;
    transform: rotate(225deg);
}

.form_field-select label {
	display: none;
}

.form_field {
    display: block;
    width: 100%;
    color: var(--neutral-100-color)!important;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.24;
    border: 1px solid var(--neutral-200-color);
    border-radius: 4px;
    outline: none;
    padding: 12px 12px 12px 40px;
    transition: .4s;
}

.form_field:focus {
	border-color: var(--whatsapp-50-color);
}

.form_input, .form_select {
	height: 40px;
}

.form_textarea {
	height: 112px;
}

select, .form_select, select.form_select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: var(--neutral-100-color)!important;
	background-color: transparent;
	background-image: none;
	width: 100%;
	font-size: 13px;
	padding: 0 12px 0 40px;	
}

.form_label {
    cursor: text;
    position: absolute;
    top: 15px;
    left: 32px;
    background-color: var(--white-color);
    color: var(--neutral-100-color);
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    transform-origin: left;
    padding: 0 8px;
    transition: .4s;
}

.form_field:focus ~ .form_label, .form_field:valid ~ .form_label {
    color: var(--whatsapp-50-color);
    transform: scale(0.78) translate(4px, -26px);
}

.form_icon {
    position: absolute;
    left: 13px;
    top: 13.5px;
    width: 14px;
	fill: var(--neutral-150-color);
    transition: .5s ease;
}

.form_field:focus ~ .form_icon, .form_field:valid ~ .form_icon {
	fill: var(--whatsapp-50-color);
}



/*****************************************
************ WHATSAPP FIXO ***************
*****************************************/

.fixed-whatsapp_area {
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 998;
}

.fixed-whatsapp {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	background-color: var(--whatsapp-50-color);
	fill: var(--white-color);
	border: 2px solid var(--whatsapp-50-color);
	border-radius: 100%;
	transition: .5s ease;
}

.fixed-whatsapp::before,
.fixed-whatsapp::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background-color: var(--whatsapp-50-color);
	opacity: 0.5;
	transform: scale(1);
	z-index: -1;
}

.fixed-whatsapp.pulse::before {
	animation: wppPulse 2.5s infinite;
}

.fixed-whatsapp.pulse::after {
	animation: wppPulse 2.5s infinite .6s;
}

.fixed-whatsapp_icon {
    position: relative;
    top: -2px;
    width: 35px;
    height: 35px;
}

.fixed-whatsapp_icon.shake {
	animation: wppShake 1.5s infinite;
}

.fixed-whatsapp_badge {
    position: absolute;
    top: 4px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #fb0707;
    border-radius: 50%;
    animation: wppGrow 0.4s ease-out;
}


@keyframes wppPulse {
	0% { transform: scale(1); opacity: 0.4; }
	70% { transform: scale(1.8); opacity: 0; }
	100% { opacity: 0; }
}

@keyframes wppShake {
	0%, 100% { transform: rotate(0deg) translateX(0); }
	25% { transform: rotate(-3deg) translateX(-1px); }
	50% { transform: rotate(3deg) translateX(1px); }
	75% { transform: rotate(-2deg) translateX(-1px); }
}

@keyframes wppGrow {
	from { transform: scale(0); opacity: 0; }
	to { transform: scale(1); opacity: 1; }
}


@media (min-width: 1141px) {
	
.fixed-whatsapp:hover {
	background-color: var(--white-color);
	fill: var(--whatsapp-50-color);
}		
	
}

@media (max-width: 1320px) {
	
.fixed-whatsapp {
    width: 58px;
    height: 58px;
}	
	
.fixed-whatsapp_icon {
    width: 29px;
    height: 29px;
}		
	
}

@media (max-width: 768px) {
	
.fixed-whatsapp_area {
    bottom: 10px;
    right: 10px;
}	
	
.fixed-whatsapp {
    width: 50px;
    height: 50px;
}	
	
.fixed-whatsapp_icon {
    width: 26px;
    height: 26px;
}		
	
.fixed-whatsapp_badge {
    top: 1px;
    right: 0;
    width: 10px;
    height: 10px;
}	
	
}



/*****************************************
**************** HEADER ****************** 
*****************************************/

.main-header {
    background-color: var(--dark-7);
    border-bottom: 1px solid var(--dark-5);
    padding: 16px 0;
}

.main-header .logo a {
	display: block;
	width: 124px;
}

.main-header .logo a img {
	width: 100%;
	height: auto;
}

.sticky.main-header .logo a {
	width: 96px;
}

.main-menu .navbar-nav > ul > li > a,
.mobile-menu .main-menu-mobile li a {
	color: var(--bs-gray-500);
	font-weight: 400;
	letter-spacing: .02em;
}

.main-menu .navbar-nav > ul > li > a.scroll-active,
.mobile-menu .main-menu-mobile li a.scroll-active {
	color: var(--theme);
}

.main-menu .navbar-nav > ul > li > a:hover,
.mobile-menu .main-menu-mobile li a:hover {
	color: var(--white-color);
}

.sticky .main-menu .navbar-nav > ul > li > a {
	font-size: 88%;
}

.main-header .btn {
    font-size: 16px;
    padding: 9px 27px;
}

.sticky.main-header .btn {
    font-size: 13.5px;
    padding: 8px 24px;
}

.hamb-toggler {
	display: none!important;
}

@media (max-width: 1200px) {
	
.hamb-toggler {
	display: flex!important;
}	
	
}

@media (max-width: 768px) {
	
.main-header {
    padding: 10px 0;
}	
	
.main-header .logo a {
    width: 88px;
}	
	
.sticky.main-header .logo a {
	width: 72px;
}	
	
.toggle-sidebar span {
    width: 32px;
}
	
.mobile-menu .nav-logo img {
    width: 104px;
}	
	
}



/*****************************************
***************** HERO ******************* 
*****************************************/

.hero {
	position: relative;
	overflow: hidden;
}

.hero::before, .hero::after {
	content: '';
    pointer-events: none;
    position: absolute;
	left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: radial-gradient(ellipse at center, var(--theme) 0%, var(--theme) 40%, transparent 70%);
    z-index: 2;
}

.hero::after {
    filter: blur(4px);
    transform: scale(1.8);
}

.hero_bg-area {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	opacity: .64;
	z-index: 1;
}

.hero_bg {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.hero_bg-img {
	display: none;
}

.hero_bg-vid {
	opacity: .44;
}

.hero_container {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 680px;
	z-index: 9;
}

.hero_label {
    display: block;
    color: var(--theme);
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.hero_label::before {
    content: '';
    position: relative;
    display: inline-block;
    width: 68px;
    height: 1.5px;
    background-color: var(--theme);
    margin: 0 16px 4px 0;
}

.hero_ttl {
    color: var(--white-color) !important;
    font-size: 58px;
    font-family: "Inter Tight", sans-serif;
    font-weight: 400;
    line-height: 1.2;
    border-bottom: 1.5px solid rgb(from var(--white) r g b / 18%);
    padding: 0 0 32px;
    margin: 0 0 36px;
}

.hero_ttl span {
	color: var(--theme);
}

.hero_txt-box {
	display: flex;
}

.hero_arrow {
    fill: var(--theme);
    width: 48px;
    height: fit-content;
    margin: 8px 32px 0 0;
}

.hero_txt {
	font-size: 17px;
}

.hero_form-area {
	width: 27%;
	background-color: var(--white-color);
	padding: 32px;
}

.hero_form-head {
	display: flex;
	margin: 0 0 24px;
}

.hero_form-head-ic {
	display: block;
	fill: var(--whatsapp-50-color);
	width: 40px;
	height: fit-content;
	margin: 0 12px 0 0;
}

.hero_form-head-ttl-area {
	width: calc(100% - 40px - 12px);
}

.hero_form-head-ttl {
    color: var(--dark);
    font-size: 19px;
    font-weight: 500;
    line-height: 1.16;
}

.hero_form-head-txt {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.16;
    margin: 4px 0 0;
}

@media (min-width: 1201px) {
	
.hero_btn {
   display: none;
}	
	
}

@media (max-width: 1550px) {
	
.hero_form-area {
    width: 32%;
}	
	
}

@media (max-width: 1400px) {
	
.hero_form-area {
    width: 36%;
}	
	
.hero_ttl {
    font-size: 50px;
}	
	
.hero_txt {
    font-size: 14.4px;
}	
	
}

@media (max-width: 1200px) {
	
.hero_bg-img {
	display: block;
}	
	
.hero_form-area, .hero_bg-vid {
    display: none;
}	

.hero_btn {
    margin: 32px 0 0;
}
	
}

@media (max-width: 767px) {
	
.hero_container {;
    height: 536px;
}	
	
.hero_label {
    font-size: 3vw;
    letter-spacing: 0.2vw;
    margin: 0 0 8px;
}	
	
.hero_label::before {
    width: 32px;
    margin: 0 8px 4px 0;
}	
	
.hero_ttl {
    font-size: 7vw;
    line-height: 1.36;
}
	
.hero_arrow {
    width: 32px;
	margin: 4px 16px 0 0;
}	
	
.hero_txt {
	width: calc(100% - 32px - 16px);
    font-size: 3vw;
    line-height: 1.48;
}	
	
.hero_btn {
	display: block;
	width: fit-content;
    margin: 32px auto 0;
}	
	
}


/*****************************************
*************** SERVICES *****************
*****************************************/

.icons_list {
	display: flex;
	gap: 14px;
	margin-top: 14px!important;
	margin-bottom: 240px;
}

.icons_img {
	width: 22px;
}

@media (max-width: 767px) {
	
.icons_list {
    margin-bottom: 32px;
}
	
#servicos .service-item-3-row .col-md-6:first-child .service-item-3 {
    padding-top: 0;
}	
	
}



/*****************************************
************** TESTIMONIALS **************
*****************************************/

.testimonial_award {
	width: 160px;
}

.testimonial-slider .swiper-slide {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-slider h2.section-title {
	font-size: 35px;
	font-weight: 300;
	line-height: 1.36;
}

.testimonial-bottom {
    margin-top: 32px;
}

@media (max-width: 767px) {
	
.testimonial-slider h2.section-title {
    font-size: 20px;
    line-height: 1.44;
}	
	
.testimonial_award {
	width: 130px;
}	
	
}

/*****************************************
**************** BRANDS ****************** 
*****************************************/

.brand-slider-container .brand-slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 280px;
    padding: 0!important;
}

.brand-slider .swiper-slide img {
    width: 100%;
    max-width: 144px;
    max-height: 110px;
}

.brand-slider .swiper-slide img.adj-1 {
    transform: scale(.92);
}

.brand-slider .swiper-slide img.adj-2 {
    transform: scale(1.12);
}

.brand-slider .swiper-slide img.adj-3 {
    transform: scale(.76);
}

@media (max-width: 767px) {
	
.brand-slider-container .brand-slider .swiper-slide {
	height: 200px;
}
	
.brand-slider .swiper-slide img {
    max-width: 112px;
    max-height: 88px;
}	
	
}



/*****************************************
**************** WHY US ****************** 
*****************************************/

.why-us-for-you-3 .container {
    margin-top: 0 !important;
}

.why_video-box {
	position: relative;
	display: block;
	overflow: hidden;
}

.why_video-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: var(--black-color);
	opacity: .36;
	z-index: 1;
	transition: .5s ease;
}

.why_play-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    font-size: 40px;
    background-color: #00000024;
    color: var(--theme);
    border: 2px solid var(--theme);
    border-radius: 50%;
    padding: 0 0 0 6px;
    margin: auto;
    z-index: 2;
	transition: .5s ease;
}

.why_play-box::before, .why_play-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 1px solid var(--theme);
    border-radius: 50%;
    margin: auto;
    animation: pulsePlay 2.5s linear infinite;
}

.why_play-box::after {
    animation-delay: .5s;
}

@keyframes pulsePlay {

100%, 70% {
    transform: scale(2);
    opacity: 0;
}	
	
}

@media (min-width: 1200px) {
	
.why_video-box:hover::before {
	opacity: .56;
}	
	
.why_video-box:hover .why_play-box  {
	background-color: var(--theme);
	color: var(--white-color);
}	
	
.mfp-iframe-holder .mfp-content {
    max-width: 1490px;
}	
	
}

@media (max-width: 767px) {
	
.why_video-box {
    width: 88%;
    height: 550px;
    margin: 0 auto;
}	
	
.why_play-box {
    width: 64px;
    height: 64px;
    font-size: 32px;
}	
	
}


/*****************************************
*************** FOOTER *******************
*****************************************/

.footer {
    padding: 32px 0;
}

.footer::before {
    content: '';
	display: none;
}

.footer_grid {
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 3.3fr 1fr;
}

.footer_lgpd-link, .footer_copyright-title, .footer_copyright-disclaimer, .footer_author-text {
    display: block;
    color: var(--white-color);
    text-wrap: balance;
    font-size: 12.5px;
}

.footer_phone {
	font-size: 16px;
	transition: .5s ease;
}

.footer_phone i {
	color: var(--theme);
	font-size: 110%;
	margin: 0 6px 0 0;
}

.footer_social-list {
	display: flex;
	gap: 12px;
	margin: 16px 0 0;
}

.footer_social-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	color: var(--theme);
	font-size: 16px;
	border: 1.5px solid var(--theme);
	border-radius: 50%;
	transition: .5s ease;
}

.footer_lgpd-list {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 8px 0 0;
}

.footer_lgpd-link {
	transition: .5s ease;
}

.footer_lgpd-link::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border: solid var(--theme);
    border-width: 2px 2px 0 0;
    transform: rotate(45deg);
    margin: 0 10px 2px 0;
}

.footer_copyright-area {
	text-align: center;
}

.footer_copyright-title {
    color: var(--theme);
    font-size: 14px;
    font-weight: 500;
    margin: 0 0 4px;
}

.footer_copyright-disclaimer {
	line-height: 1.48;
}

.footer_author-area {
	text-align: right;
}

.footer_author-link {
    display: inline-flex;
    transition: .5s ease;
}

.footer_author-logo {
    position: relative;
    top: 2px;
    display: block;
    width: 56px;
    margin: 0 0 0 4px;
}

@media (min-width: 1141px) {
				
.footer_lgpd-link:hover, .footer_author-link:hover, .footer_phone:hover {
	opacity: .64;
}
	
.footer_social-link:hover {
    background-color: var(--theme);
    color: var(--dark-6);
}	
	
}

@media (max-width: 1320px) {
	
.footer_lgpd-link, .footer_copyright-title, .footer_copyright-disclaimer, .footer_author-text {
    font-size: 11px;
}
	
.footer_copyright-title {
    text-wrap: balance;
    font-size: 12px;
    line-height: 1.4;
    margin: 0 0 16px;
}	
		
}


@media (max-width: 1140px) {
				
.footer_grid {
    grid-template-columns: 1fr;
	grid-gap: 20px;
}	
	
.footer_copyright-area {
    order: 1;
}	
	
.footer_lgpd-area {
	order: 2;
}	
	
.footer_author-area {
	order: 3;
}	
	
.footer_lgpd-area, 	.footer_author-area {
    text-align: center;
}
	
}

@media (max-width: 575px) {
	
.footer {
	padding: 30px 0;
}
	
.footer_author-logo {
    width: 50px;
}	
	
}



/*****************************************
**************** MODAL *******************
*****************************************/

.modal {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	text-align: center;
    overflow: auto;
	z-index: 999;
}

.modal::before {
	content: '';
	box-sizing: border-box;
	display: inline-block;
	height: 100%;
	vertical-align: middle;
	margin: 0 -0.05em 0 0
}

.modal_overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black-color);
    opacity: .8;
}

.modal_holder {
    position: relative;
    display: inline-block;
    width: 580px;
    max-width: 95%;
    vertical-align: middle;
    text-align: left;
    overflow: hidden;
    padding: 32px 0;
}

.modal_box {
	overflow: hidden;
}

.modal_header {
    display: flex;
    background-color: var(--whatsapp-50-color);
    padding: 22px 28px;
}

.modal_header-icon {
	width: 48px;
	height: 48px;
	fill: var(--white-color);
	margin: 0 16px 0 0;
}

.modal_header-title-area {
	width: calc(100% - 48px - 16px - 20px - 16px);
}

.modal_header-title {
    color: var(--white-color);
    font-size: 20px;
    font-weight: 500;
    line-height: 1.12;
    margin: 0 0 6px;
}

.modal_close {
	cursor: pointer;
    position: relative;
    background-color: transparent;
    border: none;
    width: 20px;
    height: 20px;
	margin: 0 0 0 16px;
	opacity: .4;
	transition: .5s ease;
}

.modal_close:before, .modal_close:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
}

.modal_close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.modal_close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.modal_header-description {
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
}

.modal_body {
	background-color: var(--white-color);
	padding: 28px;
}

@media (min-width: 1141px) {
	
.modal_close:hover {
    opacity: .8;
}	
	
}

@media (max-width: 768px) {
	
.modal_header, .modal_body {
    padding: 20px;
}
	
.modal_header-icon {
    width: 9vw;
    height: auto;
    margin: 0 3.5vw 0 0;
}
	
.modal_header-title-area {
    width: calc(100% - 22.5vw);
}	
	
.modal_header-title {
    font-size: 4.25vw;
    margin: 0 0 7px;
}	
	
.modal_header-description {
    font-size: 3vw;
    line-height: 1.2;
}
	
.modal_close {
    width: 5vw;
    height: 5vw;
    margin: 0 0 0 5vw;
}	
	
}



/*****************************************
***************** LGPD *******************
*****************************************/

.warning {
    position: fixed;
    left: 0;
    bottom: 15px;
    right: 0;
    margin: 0 auto;
    z-index: 997;
}

.warning-wrapper {
    background-color: var(--dark-7);
    border: 1px solid var(--dark-5);
    border-radius: 8px;
    padding: 16px;
}

.warning_box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.warning_text-area {
    width: 88%;
}

.warning_text {
	display: block;
	font-size: 12.5px;
	line-height: 1.4;
}

.warning_link {
    color: var(--theme);
    font-weight: 600;
    transition: .5s ease;
}

.warning_button-area {
	width: 9%;
}

.warning_button {
    display: block;
    width: 100%;
    background-color: var(--theme);
    color: var(--white-color);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    padding: 8px;
	transition: .5s ease;
}

.lgpd h2 {
	font-size: 44px;
}

.lgpd_text-area p:not(:last-child) {
	margin: 0 0 15px;
}

.lgpd_text-area h3 {
	margin: 40px 0 15px;;
}

@media (min-width: 1141px) {
	
.warning_link:hover, .warning_button:hover {
   opacity: .64;
}		
	
}

@media (max-width: 1320px) {
					
.warning_text-area {
    width: 90%;
}	
	
.warning_text {
    font-size: 12px;
}
	
.warning_button {
	font-size: 12px;
}
	
.warning_button-area {
    width: 9%;
}	
		
}

@media (max-width: 768px) {
							
.warning_box {
	justify-content: center;
}	
	
.warning_text-area {
    width: 100%;
}	
		
.warning_text {
	text-align: center;
    font-size: 11px;
}
	
.warning_button-area {
    width: 25%;
    text-align: center;
    margin: 10px 0 0;
}
	
.warning_button {
	font-size: 11px;
	line-height: 1.48;
}
	
.lgpd h2 {
	font-size: 24px;
}	
	
}

/******************************************
**************** SPIN FORM ****************
*************************** **************/

.form-loading {
    display: none;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
    color: #000 !important;
    font-size: 12px !important;
}

.form-loading::after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 4px solid #ccc;
    border-top: 4px solid #4D863F; /* Cor do destaque */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}