/***************************************
**************** GLOBAL ****************
***************************************/

:root{
	
/*Cores - Padrão template*/
	
--theme-color: #009DE4;
--secondary-color: #1C403D;
--text-color: #484848;
--title-color: #032B3C;
--text-font: "Nunito", sans-serif;
--title-font: "Nunito", sans-serif;
	
	
/*Cores - Marca*/
	
--brand-red: #E01317;
--brand-orange: #EA6f14;	
--brand-yellow: #F4D203;
--brand-blue: #009DE4;
--brand-green: #5DB031;	
	
	
/*Cores - Tons de Cinza*/
	
--gray-1: #121212;	
--gray-2: #646464;
--gray-3: #BEBEBEs;	
--gray-4: #DCDCDC;
--gray-5: #F2F2F2;	
--gray-6: #FBFBFB;
	

/*Cores - Sombras*/
	
--shadow-1: #00000030;
--shadow-2: #00000015;	
--shadow-3: #00000012;
--shadow-4: #00000010;	
--shadow-5: #00000008;	

	
/*Cores - Auxiliares*/	
	
--black: #000000;	
--gold: #FFD700;	
--white: #FFFFFF;	
--warning: #E10000;	
--whatsapp: #5DB031;	
--whatsapp-light: #E7f3E6;	
}

h1, h2, h3 {
    font-weight: 800;
}

h4, h5, h6 {
	font-weight: 700
}

p {
	font-size: 16px;
	line-height: 1.48;
}

.sec-pad {
	padding: 120px 0;
}

.sec-light {
	background-color: #f6fbfe;
}

.ttl-spacing {
	margin: 0 0 72px;
}

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

.custom_sub-title {
    position: relative;
    display: inline-block;
    font-size: 17px;
    font-weight: 700;
    line-height: 25px;
    text-transform: uppercase;
}

.baloon {
    position: relative;
    top: -4px;
    width: 21px;
    height: 21px;
}

.custom_sub-title-b-left {
	margin: 0 4px 0 0;
}

.custom_sub-title-b-right {
    transform: scaleX(-1);
    margin: 0;
}

.sec-title h2 {
    font-size: 40px;
    line-height: 1.08;
    text-transform: none;
}

.theme-btn {
    font-weight: 700;
}

.theme-btn.btn-one {
	border: 1px solid var(--brand-blue);
}

.theme-btn.btn-one:hover {
	color: var(--brand-blue)!important;
}

.theme-btn.btn-one::before, .theme-btn.btn-one::after {
	background: #ddeffa;
}

.btn-wpp {
	background: var(--whatsapp);
	border: 1px solid var(--whatsapp);
}

.btn-wpp:hover {
	color: var(--whatsapp)!important;
}

.btn-wpp:before, .btn-wpp:after {
    background-color: var(--whatsapp-light);
}

@media (max-width: 575px) {
	
h3, .h3, h4, .h4 {
    font-size: 18px!important;
}	
	
p {
    font-size: 14px!important;
}	
	
.sec-pad {
	padding: 72px 0;
}

.ttl-spacing {
	margin: 0 0 56px;
}

.btn-center {
	margin: 56px 0 0;
}	
	
.sec-title h2 {
    font-size: 22px;
}	

.theme-btn {
    font-size: 14px;
    line-height: 1.24;
    padding: 12px 24px;
}
	
.custom_sub-title {
    font-size: 13px;
}	
	
.baloon {
    width: 16px;
    height: 16px;
}	
	
}



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

.form_field-area {
	position: relative;
}

.form_field-area:not(:last-child) {
	margin: 0 0 10px;
}

.form_field-select label {
	display: none;
}

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

.form_field {
	display: block;
	width: 100%;
	font-size: 14px;
	line-height: 1.4;
	border: 1px solid var(--gray-4);
	border-radius: 4px;
	outline: none;
	padding: 15px 15px 15px 47px;
	transition: .4s;
}

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

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

select, .form_select, select.form_select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: var(--gray-2);
	background-color: transparent;
	background-image: none;
	width: 100%;
	font-size: 14px;
	padding: 0 15px 0 44px;	
}

.form_textarea {
	height: 80px;
}

.form_label {
    cursor: text;
    position: absolute;
    top: 7px;
    left: 37px;
    background-color: var(--white);
    color: var(--gray-2);
    font-size: 13.5px;
	transform-origin: left;
    padding: 0 8px;
    transition: .4s;
}

.form_field:focus ~ .form_label,
.form_field.has-content ~ .form_label {
	color: var(--whatsapp);
	transform: scale(.8) translate(5px, -23px);
}

.form_icon {
    position: absolute;
    left: 17px;
    top: 13px;
    width: 14px;
    fill: var(--gray-2);
    transition: .5s ease;
}

.form_button_icon {
    margin-right: 12px;
    fill: var(--secondary-color); 
}

.form_field:focus ~ .form_icon,
.form_field.has-content ~ .form_icon {
	fill: var(--whatsapp);
}

.form_btn {
	display: block;
	width: 100%;
}

.form_btn:disabled {
	pointer-events: none;
    opacity: 0.4;
}

.form_warning {
    display: block;
    text-align: center;
    font-size: 13px;
    letter-spacing: .08em;
    margin: 2px 0 0;
}

@media (min-width: 993px) {
	
.form_field-group {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.form_field-group div {
	width: calc(50% - 5px);
}	
	
.form_lgpd-link:hover {
	color: var(--gray-1);
}	
	
}

@media (max-width: 992px) {

.form_field-group + .form_field-area {
	margin-top: 10px
}	
	
}

@media (max-width: 575px) {
	
.form_field-select::before {
    top: 16px;
}	
	
.form_input, .form_textarea {
    padding: 12px 12px 12px 35px;
}	
	
.form_input {
    height: 45px;
}	
	
select, .form_select, select.form_select {
	height: 45px;
    font-size: 13.5px;
    padding: 0 15px 0 37px;
}	

.form_icon {
    left: 12px;
    top: 15px;
    width: 14px;
}
	
.form_label {
    top: 10px;
    left: 29px;
    font-size: 13.5px;
}
	
.form_field:focus ~ .form_label, .form_field.has-content ~ .form_label {
    transform: scale(.9) translate(-2px,-22px);
}	
	
.form_lgpd-txt {
    font-size: 11px;
}
	
.form_checkbox-box {
    margin: 0 0 25px;
}	
	
.form_lgpd-label {
    font-size: 13px;
}	
	
.form_warning {
    font-size: 11.5px;
}	
	
}


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

.custom-nav {
	padding: 12px 0;
}

.custom-nav_container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.custom-nav_logo {
	display: block;
    width: 175px;
}

@media(max-width: 575px) {
	
.custom-nav {
	padding: 8px 0;
}	
	
.custom-nav_logo {
    width: 27vw;
}
	
}

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

.hero {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 632px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #052f43 32%, transparent 150%);
    opacity: 0.6;
    z-index: -1;
}

.hero_img-area {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero_img {
    object-fit: cover;
    object-position: left;
    width: 100%;
    height: 100%;
}

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

.hero_txt-area {
    width: fit-content;
    margin: 0 0 20px;
}

.hero_tag {
    color: var(--white);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 10px;
}

.hero_tag::before {
    content: url(../svg/decor.svg);
    display: inline-block;
    width: 36px;
    height: auto;
    margin: 0 8px 0 0;
}

.hero_ttl {
    color: var(--white);
    font-size: 52.8px;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 0 20px #00000064;
}

.hero_txt {
    color: var(--white);
    font-size: 18px;
	font-weight: 700;
	text-shadow: 0 0 20px #00000064;
    margin: 20px 0;
}

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

.hero_list-item {
	display: flex;
	align-items: center;
}

.hero_item-ic-area {
	display: flex;
	align-items: center;
	justify-content: center;
    fill: var(--white);
    width: 48px;
    height: 48px;
	border-radius: 50%;
    margin: -2px 12px 0 0;
}

.hero_list-item:nth-child(1) .hero_item-ic-area {
    background-color: var(--brand-red);
}

.hero_list-item:nth-child(2) .hero_item-ic-area {
	background-color: var(--brand-blue);
}

.hero_list-item:nth-child(3) .hero_item-ic-area {
	background-color: var(--brand-orange);
}

.hero_item-ic {
	width: 22px;
	height: auto;
}

.hero_item-txt {
    display: block;
    color: var(--white);
    font-size: 17px;
    text-shadow: 0 0 20px #00000064;
    line-height: 1.32;
}

.hero_btn {
    display: none;
}

.hero_btn-icon {
	fill: var(--white);
    vertical-align: sub;
    width: 18px;
    height: 18px;
    margin: 0 4px 0 0;
}

.hero_form-area {
    width: 34%;
    background-color: var(--white);
    box-shadow: 0 0 30px var(--shadow-1);
    border-radius: 16px;
    padding: 24px 28px 20px 28px;
}

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

.hero_form-head-form-icon {
	fill: var(--whatsapp);
	width: 38px;
	height: 38px;
	margin: 2px 12px 0 0;
}

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

.hero_form-head-ttl {
    color: var(--gray-1);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 4px;
}

.hero_form-head-txt {
    font-size: 14px;
    line-height: 1.12;
}

.hero_div-wrapper {
	position: absolute;
	left: 0;
	bottom: -1px;
	overflow: hidden;
	width: calc(100% + 4px);
	height: 140px;
	z-index: 1;
}

.hero_div {
	display: block;
	fill: var(--white);
	width: 100%;
	height: 100%;
}

@media (max-width: 992px) {
	
.hero_txt-area {
    margin: -80px auto 0;
}
	
.hero_tag, .hero_ttl, .hero_txt {
    text-align: center;
}	
	
.hero_tag::before {
    display: block;
    margin: 0 auto 6px;
}	
	
.hero_btn {
    display: block;
	width: fit-content;
	margin: 64px auto 0;
}			
	
.hero_form-area {
    display: none;
}	
	
.hero_div-wrapper {
    height: 80px;
}	
		
}

@media (max-width: 575px) {
	
.hero {
    height: 512px;
}
	
.hero::before {
    background: #052f43;
    opacity: .64;
}	
	
.hero_txt-area {
    margin: -28px auto 0;
}	
	
.hero_tag {
    font-size: 2.5vw;
}	
	
.hero_tag::before {
    width: 7.5vw;
}	
	
.hero_ttl {
    font-size: 6vw;
}
	
.hero_txt {
    font-size: 3.45vw!important;
	line-height: 1.32;
    margin: 12px 0 28px;
}	
	
.hero_txt br {
    display: none;
}	
	
.hero_list-item {
    flex-direction: column;
}	
	
.hero_item-txt {
	text-align: center;
    font-size: 3.1vw;
}
	
.hero_item-ic-area {
    width: 42px;
    height: 42px;
    margin: 0 0 10px;
}	
	
.hero_item-ic {
    width: 19px;
}
	
.hero_btn {
	margin: 48px auto 0;
}		
	
.hero_div-wrapper {
    height: 36px;
}	
	
}



/*****************************************
************** DESTAQUES *****************
*****************************************/

.course-block-one .inner-box .lower-content .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	fill: var(--brand-orange);
}

.course-block-one:hover .inner-box .lower-content .icon-box{
	background: var(--brand-orange);
	fill: var(--white);
}

.course-block-one .inner-box .lower-content .icon-box svg {
	width: 48px;
	height: auto;
}

.course-block-one .inner-box .lower-content {
    text-align: center;
	padding: 24px 0 8px;
}

.course-section .inner-box .lower-content h3 {
    font-size: 20px;
    line-height: 1.32;
    margin-bottom: 10px;
}

.course-block-one .inner-box .lower-content h3 a:hover {
	color: var(--brand-orange);
}

.course-section .inner-box .lower-content p {
    font-size: 16px;
    line-height: 1.48;
    margin-bottom: 20px;
}

.course-section .inner-box .lower-content .theme-btn.cta{
    color: var(--brand-blue)!important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid currentColor;
    border-radius: 6px;
    padding: 2px 8px;
}

.course-section  .inner-box .lower-content .theme-btn.cta:hover{
    color: var(--white)!important;
}

.course-section .inner-box .lower-content .theme-btn.cta::before,
.course-section .inner-box .lower-content .theme-btn.cta::after {
	background: var(--brand-blue);
}



@media (max-width: 575px) {
	
.course-block:last-of-type .course-block-one {
    padding-bottom: 0;
    margin-bottom: 0;
}
	
.course-section.alternat-2 .course-block-one .inner-box .lower-content {
    padding: 44px 0px 0px 0px;
}	
	
.course-block-one .inner-box .lower-content .icon-box {
    top: -56px;
    width: 72px;
    height: 72px;
}	
	
.course-block-one .inner-box .lower-content .icon-box svg {
    width: 38px;
}	
	
.course-block-one .inner-box .lower-content .category {
    font-size: 14px;
}	
	
}



/*****************************************
************** PRODUTOS ******************
*****************************************/

.team-block-one .inner-box .lower-content {
    text-align: center;
	padding: 24px 0 8px;
}

.team-section .inner-box .lower-content h3 {
    font-size: 20px;
    line-height: 1.32;
    margin-bottom: 10px;
}

.team-section .inner-box .lower-content p {
    font-size: 16px;
    line-height: 1.48;
    margin-bottom: 20px;
}

.team-section .inner-box .lower-content .theme-btn.cta{
    color: var(--brand-blue)!important;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    border: 1.5px solid currentColor;
    border-radius: 6px;
    padding: 2px 8px;
}

.team-section  .inner-box .lower-content .theme-btn.cta:hover{
    color: var(--white)!important;
}

.team-section .inner-box .lower-content .theme-btn.cta::before,
.team-section .inner-box .lower-content .theme-btn.cta::after {
	background: var(--brand-blue);
}


@media (max-width: 575px) {
	
	
.team-block {
    padding: 0 56px;
}
	
.team-block:last-of-type .team-block-one {
    padding-bottom: 0;
    margin-bottom: 0;
}	
	
}



/*****************************************
************ PERSONALIZADOS **************
*****************************************/

.about-style-six .image-column .image-shape .shape-1 {
	border-color: var(--brand-orange)!important;
}

.about-style-six i {
	color: var(--brand-orange)!important;
}

.course-block-two .inner-box p {
    margin-bottom: 10px;
}

@media (max-width: 575px) {
	
.about-style-six .sec-title {
    text-align: center;
    margin-bottom: 20px;
}		
	
}



/*****************************************
************** BENEFÍCIOS ****************
*****************************************/

.course-block-three .inner-box .icon-box {
    background: var(--brand-orange);
}

.course-block-three .inner-box .icon-svg {
    fill: var(--white);
    width: 46px;
}

.course-block-three .inner-box h3 {
    text-wrap: balance;
    font-size: 20px;
    line-height: 1.2;
}

.course-block-three .inner-box p {
	font-size: 16px;
	line-height: 1.48;
    margin-bottom: 0;
}

.course-block-three .inner-box .icon-box:before {
    background: var(--brand-red);
}

@media (max-width: 575px) {
	
.course-block:last-of-type .course-block-three {
    padding-bottom: 0;
    margin-bottom: 0;
}
	
.course-block-three .inner-box .icon-box {
    width: 64px;
    height: 64px;
}	
	
.course-block-three .inner-box .icon-svg {
    width: 34px;
}	
	
}



/*****************************************
*************** PERSONA ******************
*****************************************/

.about-section .custom_sub-title-b-right {
	display: none;
}

.about-section .row {
	align-items: center
}

.about-section i {
	color: var(--brand-orange)!important;
}

.about-section li {
    color: var(--title-color);
    font-size: 19.8px;
    font-weight: 600;
}

.image_block_one .image-box .image-shape .shape-1 {
	border-color: var(--brand-orange)!important;
}



@media (max-width: 575px) {
	
.about-section .sec-title {
    text-align: center;
}	
	
.about-section .custom_sub-title-b-right {
	display: inline-block;
}	
	
.about-section li {
    font-size: 3.6vw;
	margin: 0;
	padding: 0;
}	
	
.about-section li + li {
    margin: 8px 0 0;
}	
	
.about-section .list-style-one li i {
    position: static;
    font-size: 3.6vw;
    margin: 0 2vw 0 0;
}	
	
.about-section .theme-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}	
	
.about-section .image-2 {
    display: none;
}	
	
	
}



/*****************************************
************* DEPOIMENTOS ****************
*****************************************/

.testimonial-section {
	position: relative;
	background-color: var(--brand-orange);
	overflow: hidden;
}

.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../images/pattern.png);
    background-repeat: repeat;
    background-size: 324px;
    opacity: 0.06;
    pointer-events: none;
    z-index: 0;
}

.testimonial-section > * {
	position: relative;
	z-index: 1;
}

.testimonial-section .custom_sub-title-b-right {
	display: none;
}

.testimonial-section * {
	color: var(--white)!important;
}

.testimonial-block-one .inner-box, .testimonial-section .nav-style-one .owl-nav button {
	background: #eb7a26;
	box-shadow: none;
}

.testimonial-block-one .inner-box {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-section .nav-style-one .owl-nav button:before {
	background: #b7540a;
}


.testimonial-block-one .inner-box .rating {
    font-size: 14px;
    line-height: 1.24;
    margin-bottom: 16px;
}

.testimonial-block-one .inner-box .rating li {
    margin-right: 6px;
}

.testimonial-block-one .inner-box h3 {
	font-size: 20px;
}

.testimonial-section p {
    font-size: 16px;
    line-height: 1.4;
}

.testimonial-section .owl-carousel .owl-nav {
	display: none;
}

.testimonial-section .owl-carousel .owl-stage-outer {
    overflow: hidden!important;
}

.nav-box.nav-style-one {
    margin: 160px 0 0;
}

.testimonial-section .owl-nav {
	position: static;
}

@media (max-width: 575px) {
	
.testimonial-section br {
	display: none;
}	
	
.testimonial-section .sec-title {
    text-align: center;
}	
	
.testimonial-section .custom_sub-title-b-right {
	display: inline-block;
}
	
.nav-box.nav-style-one .owl-nav {
    display: block;
    width: fit-content;
    margin: 56px auto 32px;
}
	
.nav-box.nav-style-one {
    margin: 0;
}	
	
}



/*****************************************
**************** SOBRE *******************
*****************************************/

.contact-section .row {
	align-items: center;
}

.image_block_four .image-box .link-box a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.image_block_four .image-box .link-box a:after {
    background: #e0f0d8;
    right: -1px;
}

.image_block_four .image-box .link-box .num {
    display: block;
    color: var(--brand-green);
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin: 0 0 4px;
}

.image_block_four .image-box .link-box .num small {
	color: var(--brand-red);
	font-size: 50%;
}

.image_block_four .image-box .link-box a span {
    display: block;
    color: var(--title-color);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
}

.contact-section .custom_sub-title-b-right {
	display: none;
}

.contact-section p + p {
	margin: 12px 0 0;
}

.contact-section .theme-btn {
	margin: 40px 0 0;
}

.js-fade-bg {
  width: 100%;
  padding-top: 140%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1s ease-in-out;
}


@media (max-width: 575px) {
	
.contact-section .sec-title {
    text-align: center;
	margin-bottom: 32px!important;
}	
	
.contact-section .custom_sub-title-b-right {
	display: inline-block;
}
		
.image_block_four .image-box .link-box a {
    display: none;
}
	
.contact-section .theme-btn {
    display: block;
    width: fit-content;
    margin: 24px auto 0;
}	
	
}


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

.footer {
    background-color: var(--theme-color);
    padding: 32px 0;
}

.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 {
    color: var(--white);
    font-size: 14px;
}

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

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

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

.footer_copyright-title {
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.32;
    margin: 0 0 8px;
}

.footer_copyright-disclaimer {
	display: block;
	line-height: 1.4;
}

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

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

@media (min-width: 993px) {
				
.footer_lgpd-link:hover {
	color: var(--secondary-color);
}
	
}

@media (max-width: 1390px) {
	
.footer_lgpd-link, .footer_copyright-title, .footer_copyright-disclaimer, .footer_author-text {
    font-size: 13px;
}
	
.footer_copyright-title {
	text-wrap: balance;
    font-size: 14px;
}	
		
}


@media (max-width: 992px) {
				
.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;
}	
	
}


/*****************************************
************ 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);
	fill: var(--white);
	border: 2px solid var(--whatsapp);
	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);
	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: 993px) {
	
.fixed-whatsapp:hover {
	background-color: var(--white);
	fill: var(--whatsapp);
}		
	
}

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

@media (max-width: 575px) {
	
.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;
}	
	
}



/*****************************************
**************** 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);
    opacity: .88;
}

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

.modal_box {
	overflow: hidden;
	border-radius: 8px;
}

.modal_header {
    display: flex;
    background-color: var(--whatsapp);
    padding: 30px 40px;
}

.modal_header-icon {
	width: 55px;
	height: 55px;
	fill: var(--white);
	margin: 0 20px 0 0;
}

.modal_header-title-area {
	width: calc(100% - 75px - 45px);
}

.modal_header-title {
    color: var(--white);
    font-size: 22.7px;
    font-weight: 800;
    line-height: 1.24;
    margin: 0 0 4px;
}

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

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

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

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

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

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

@media (max-width: 575px) {
	
.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 2px;
}	
	
.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(--white);
    box-shadow: 0 0 20px var(--shadow-3);
    border-radius: 8px;
    padding: 15px;
}

.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: 14px;
	line-height: 1.4;
}

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

.warning_button-area {
	width: 9%;
}

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

.lgpd_text-area p {
	line-height: 1.6;
}

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

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

@media (min-width: 993px) {
	
.warning_link:hover {
    color: var(--gray-1);
}	
	
.warning_button:hover {
    background-color: var(--white);
    color: var(--primary-color);
}	
	
}

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

@media (max-width: 575px) {
							
.warning_container .box {
	justify-content: center;
}	
	
.warning_text-area {
    width: 100%;
}	
		
.warning_text {
	text-align: center;
    font-size: 11px;
	line-height: 1.65;
}
	
.warning_button-area {
    width: 25%;
    text-align: center;
    margin: 10px 0 0;
}
	
.warning_button {
	font-size: 11px;
}	
	
}


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

.form-loading {
    display: none;
    text-align: center;
    margin-top: 15px;
}

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

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

