:root {

	/* CORES */
	--color-primary: #85DCF1;
	--color-secondary: #15252B;

	/* FONTES */
	--font-family: 'Poppins', Helvetica, Arial;

	/* TEXTOS */
	--size-h1: 45.78pt;
	--size-h2: 36.62pt;
	--size-h3: 29.3pt;
	--size-h4: 23.44pt;
	--size-h5: 18.75pt;
	--size-h6: 15pt;
	--size-p: 12pt;
	--size-small: 9.6pt;

	/* TOPBAR */
	--topbar-height: 120px;
	--topbar-position: 50px;
	--content-position: calc(var(--topbar-height) + 50px + var(--topbar-position));

}

body {
	background-color: #fafafa;
	background-image: url('../img/background.svg');
	font-family: 'Poppins';
	overflow-x: hidden;
	background-size: 20%;
}

/* ==========  INPUT BOX  ========= */

.input__box {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	margin-bottom: 20px;
	gap: 8px;
}

.input__box label {
	font-size: .8rem;
	font-weight: 300;
	color: #343a40;
	white-space: nowrap;
	transition: all 200ms linear;
	line-height: 1;
}

.input__box label b {
	font-weight: 300;
	color: #ff0000;
}

.input__box p.message__error {
	display: none;
	font-size: .8rem;
	font-weight: 300;
	line-height: 1;
	margin-bottom: 0px !important;
	width: 100%;
	color: #ff7979;
}

.invalid p.message__error {
	display: flex;
}

.input__box .input__item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;

	width: 100%;
	padding: 0px 15px;

	transition: all 200ms linear;
	border: 1px solid #eaeaea;
	border-radius: 15px;
}

.input__box .input__item .input__icon .hr {
	width: 23px;
	color: #868686;
	transition: all 200ms linear;
	stroke-width: 1px !important;
}

.input__box .input__item input,
.input__box .input__item select,
.input__box .input__item textarea {
	line-height: 200%;
	font-size: .9rem;
	border: none;
	color: #0d0d0d;
	font-weight: 300;
	background: transparent !important;
	padding: 8px 0px;
	width: 100%;
}

.input__box button {
	line-height: 200%;
	font-size: .8rem;
	border: none;
	color: #ffffff;
	font-weight: 500;
	background: #d52219 !important;
	border-radius: 15px;
	padding: 9px 0px;
	width: 100%;
}

.input__box .input__item select {
	padding: 12.5px 0px !important;
}

.select__box .input__item {
	padding: 4px 15px;
	gap: 7.5px;
}

.input__box .input__item input:focus,
.input__box .input__item select:focus,
.input__box .input__item textarea:focus {
	outline: none;
}

.input__box .input__item textarea {
	min-height: 150px;
	padding-top: 10px !important;
	line-height: 150% !important;
}


.input__box .input__item input::placeholder {
	color: #cacaca;
}

.input__box .input__item:hover,
.input__box .input__item:focus-within {
	border-color: #d3d3d3;
}

.input__box:focus-within label,
.input__box:hover label {
	color: #0d0d0d;
}

.input__box:focus-within .hr,
.input__box .input__item:hover .hr {
	color: #0d0d0d !important;
}

.invalid .input__item {
	border-color: #ffc9c9 !important;
}

.invalid .hr {
	color: #ff7979 !important;
}

/* ==========  TEXTS  ========= */

h1 {
	font-size: var(--size-h1);
}

h2 {
	font-size: var(--size-h2);
}

h3 {
	font-size: var(--size-h3);
}

h4 {
	font-size: var(--size-h4);
}

h5 {
	font-size: var(--size-h5);
}

h6 {
	font-size: var(--size-h6);
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
	font-family: var(--font-family);
	font-display: swap;
}

p {
	font-size: var(--size-p);
	font-weight: 400;
}

small {
	font-size: var(--size-small);
	font-weight: 400;
}

b.color {
	position: relative;
	font-weight: 600;
}

b.color::after {
	content: '';
	position: absolute;
	z-index: -1;
	left: -1%;
	width: 102%;
	bottom: 15%;
	height: 30%;
	background: var(--color-primary);
}

.section__title {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: stretch;
	margin-bottom: 40px;
	gap: 10px;
}

.section__title:has(.center) {
	align-items: center !important;
}

.section__title p {
	font-size: var(--size-small) !important;
	font-weight: 300 !important;
	color: #767676 !important;
	letter-spacing: 4px !important;
	word-spacing: 4px !important;
	margin-bottom: 0px !important;
	text-transform: uppercase !important;
}

.section__title h5 {
	margin-bottom: 0px;
	letter-spacing: .5px;
}

.section__title hr {
	width: 30px;
	border-width: 6px;
	border-color: var(--color-primary);
	margin: 5px 0px 0px 0px !important;
	opacity: 1;
}


/* ==========  TOPBAR  ========= */

#topbar {
	width: 100%;
	position: absolute;
	z-index: 1000;
	top: var(--topbar-position);
}

.topbar__content {
	height: var(--topbar-height);
	background: #ffffff;
	border-radius: 150px;
	box-shadow: 0px 0px 100px #00000005;
	padding: 0px 35px;

	display: flex;
	justify-content: space-between;
	align-items: center;
}

.topbar__content .topbar__brand img {
	height: 50px;
}

.topbar__content .topbar__menu {
	width: 100%;
}

.topbar__content .topbar__menu ul {
	margin-bottom: 0px;
	list-style: none;
	padding: 0px;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

.topbar__content .topbar__menu ul li {
	padding: 10px 10px;
	font-size: var(--size-p);
	color: #A5AFB8;
	white-space: nowrap;
	position: relative;
	cursor: pointer;
	transition: all 300ms ease;
}

.topbar__content .topbar__menu a {
	color: currentColor;
	text-decoration: none;
}

.topbar__content .topbar__menu ul li:not(:has(.menu__active)):hover {
	color: var(--color-secondary);
}

.topbar__content .topbar__menu ul li.menu__active {
	color: var(--color-secondary);
}

.topbar__content .topbar__menu ul li.menu__active::before {
	content: '';
	position: absolute;
	left: 10px;
	bottom: 0px;
	height: 3px;
	width: 20px;
	background: var(--color-primary);
}

.topbar__content .topbar__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
}

.topbar__content .topbar__actions button.regular {
	padding: 10px 25px;
	font-size: var(--size-small);
	white-space: nowrap;
	background: transparent;
	border: 1px solid var(--color-secondary);
	color: var(--color-secondary);
	font-weight: 500;
	border-radius: 20px;
	transition: all 300ms ease;
}

.topbar__content .topbar__actions button.regular:hover {
	background: var(--color-secondary);
	color: #ffffff;
}

.topbar__content .topbar__actions button.fill {
	padding: 10px 25px;
	white-space: nowrap;
	background: var(--color-secondary);
	font-size: var(--size-small);
	border: 1px solid var(--color-secondary);
	color: #ffffff;
	font-weight: 500;
	border-radius: 20px;
	transition: all 300ms ease;
}

.topbar__content .topbar__actions button.fill:hover {
	background: #103b4b;
	border-color: #103b4b;
	color: #ffffff;
}

.content__inner {
	margin-top: var(--content-position);
}


/* ==========  FOOTER  ========== */

.footer__buttons {
	position: fixed;
	z-index: 1000;
	right: 50px;
	bottom: 50px;
}

.footer__buttons svg {
	width: 75px;
	filter: drop-shadow(0px 0px 50px #00000030);
	transition: all 300ms ease;
	margin-top: 5px;
}

.footer__buttons svg:hover {
	margin-top: 0px;
	margin-bottom: 5px;
}


/* ==========  HOME  ========== */

section#home .left__header {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-direction: column;
	height: 100%;
	gap: 15px;
}

section#home .left__header p {
	font-size: var(--size-h6);
	font-weight: 300;
}

section#home .left__header a {
	text-decoration: none;
	color: currentColor;
}

section#home .left__header button {
	max-width: 100%;
	padding: 13px 25px;
	background: transparent;
	border-radius: 20px;
	font-size: var(--size-p);
	font-weight: 400;
	color: #15252B;
	border: 1px solid #15252B;
	transition: all 400ms ease;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 15px;
}

section#home .left__header button svg {
	transition: all 400ms ease;
	width: 24px;
	rotate: 180deg;
}

section#home .left__header button:hover {
	gap: 45px;
}

section#home .left__header button:hover svg {
	rotate: 270deg;
}

section#home .right__header {
	position: relative;
}

section#home .right__header img {
	width: 50vw;
	position: relative;
	right: 0px;
}

section#home .right__header img.paralax {
	width: 50vw;
	position: absolute;
	left: 0px;
	top: 30px;
}

section#home .scroll__divider {
	height: 60px;
	background: var(--color-secondary);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	position: relative;
	overflow: hidden;
	z-index: 100;
}

section#home .scroll__divider .scroll-content {
	white-space: nowrap;
	font-weight: 300;

	position: relative;
	animation: scroll 60s linear infinite;

	display: flex;
	align-items: center;
	flex-wrap: nowrap;
}

section#home .scroll__divider .dot {
	margin: 0px 20px;
	font-size: .5rem;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}


/*  ==========  ABOUT US  ========== */

section#sobre-nos {
	padding: 150px 0px;
	background: #ffffff;
}

section#sobre-nos .about__picture {
	width: 100%;
	height: 50vh;
	max-height: 600px !important;
	border-radius: 100px;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}

section#sobre-nos .about__picture img {
	max-height: 110%;
	min-height: 110%;
}

section#sobre-nos .about__content {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-direction: column;
}

section#sobre-nos .about__content p {
	font-size: var(--size-p);
	line-height: 180%;
	font-weight: 300;
	letter-spacing: .2px;
	color: #343a40;
}


/*  ==========  FEATURES  ========== */

section#funcionalidades {
	padding: 100px 0px 200px 0px;
}

section#funcionalidades .feature__item {
	padding: 35px;
	background: #ffffff;
	border-radius: 45px;
	margin-top: 15px;
	transition: all 300ms ease;
	box-shadow: 0px 10px 20px #00000003;
}

section#funcionalidades .feature__item:hover {
	margin-top: 0px;
	margin-bottom: 15px;
	box-shadow: 0px 10px 100px #00000008;
}

section#funcionalidades .feature__icon {
	margin-bottom: 25px;
}

section#funcionalidades .feature__icon svg {
	stroke-width: 2.5px;
}

section#funcionalidades .feature__icon label {
	width: 50px;
	height: 50px;
	border-radius: 20px;
	background: #E6F9FE;
	color: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
}

section#funcionalidades .feature__title {
	overflow: hidden;
	margin-bottom: 15px;
}

section#funcionalidades .feature__title h6 {
	white-space: nowrap;
	margin-bottom: 0px;
	text-overflow: ellipsis;
	font-weight: 500;
	font-size: 17pt;
}

section#funcionalidades .feature__rows ul {
	margin-bottom: 0px;
	list-style: none !important;
	padding-left: 0px !important;
	font-weight: 300;
	line-height: 140%;
}

section#funcionalidades .feature__rows ul li .dot {
	font-size: 13pt;
	margin-right: 10px;
	color: var(--color-primary);
}

section#funcionalidades .feature__rows ul li {
	font-size: 11pt;
	margin-bottom: 10px;
	display: flex;
	justify-content: flex-start;
	align-items: centera;
	color: #343a40;
}


/*  ==========  HOW WORKS  ==========  */

section#plataforma {
	padding: 0px 0px;
	background: var(--color-secondary);
	position: relative;
	overflow: hidden;
}

section#plataforma::before {
	content: '';
	position: absolute;
	z-index: 1;
	left: -50px;
	top: 50%;
	transform: translateY(-50%);
	rotate: -15deg;
	height: 200%;
	width: 50%;
	background: url('../img/background.svg');
	background-color: var(--color-primary);
	background-size: 50%;
	border-radius: 0px 100% 100% 0px;
}

section#plataforma .platform__picture {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
/*	overflow: hidden;*/
	position: relative;
	z-index: 2;
}

section#plataforma .platform__right {
	height: 100%;
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
}

section#plataforma .section__title p {
	color: #85989f !important;
}

section#plataforma .section__title h5 {
	color: #ffffff;
}

section#plataforma .register__rows {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 0px;
}

section#plataforma .register__rows hr {
	width: 5px;
	height: 35px;
	background: var(--color-primary);
	border-color: transparent;
	margin: 0px !important;
	opacity: 1;
}

section#plataforma .register__rows .register__item {
	padding: 35px 40px;
	border-radius: 50px;
	background: #ffffff;
}

section#plataforma .register__rows .register__item h5 {
	margin-bottom: 8px;
	color: var(--color-secondary);
	font-size: calc(var(--size-h6) + .1em);
	font-weight: 600;
}

section#plataforma .register__rows .register__item color {
	color: var(--color-primary);
}

section#plataforma .register__rows .register__item p {
	color: #343a40;
	margin-bottom: 0px;
	font-size: calc(var(--size-p));
	font-weight: 300;
}


/*  ==========  PLANOS  ========== */

section#planos {
	padding: 150px 0px;
}

section#planos .plan__menu {
	width: 100%;
	padding: 5px;
	border-radius: 35px;
	background: #EAF3F6;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0px;
}

section#planos .plan__menu button {
	width: 100%;
	padding: 10px 0px;
	font-size: calc(var(--size-p) - 1pt);
	color: var(--color-secondary);
	border-radius: 25px;
	background: transparent;
	color: #000000;
	border: none;
}

section#planos .plan__menu button.plan__active {
	background: var(--color-primary);
}

section#planos .plan__item {
	padding: 35px 25px;
	background: #ffffff;
	border-radius: 50px;
	transition: all 300ms ease;
	margin-top: 15px;
	width: 100%;
}

section#planos .plan__item:hover {
	margin-top: 0px;
	margin-bottom: 15px;
}

section#planos .emphasis__plan {
	border: 1px solid #AAD8E3;
	box-shadow: 0px 0px 100px #AAD8E338;
}

section#planos .emphasis__plan button {
	background: #85DDF2 !important;
	box-shadow: 0px 0px 50px #AAD8E390;
	font-weight: 500;
	color: #000000;
}

section#planos .plan__item .plan__title {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: center;
	margin-bottom: 15px;
	gap: 5px;
}

section#planos .plan__item .plan__title p {
	font-size: var(--size-h6);
	margin-bottom: 0px;
}

section#planos .plan__item .plan__title h3 {
	font-weight: 700;
	letter-spacing: -1px;
	color: var(--color-secondary);
}

section#planos .plan__item .plan__title h5 {
	font-weight: 700;
	color: var(--color-secondary);
}

section#planos .plan__item .plan__title small:first-child {
	color: #15252B;
	font-size: calc(var(--size-h3) - 6pt);
	letter-spacing: -1px;
	margin-right: 3px;
}

section#planos .plan__item .plan__title small {
	font-size: calc(var(--size-h3) - 10pt);
	font-weight: 600;
}

section#planos .benefits__rows ul {
	padding-left: 0px;
	list-style: none !important;
	font-size: var(--size-small);
	color: var(--color-secondary);
}

section#planos .benefits__rows ul li {
	margin-bottom: 8px;
	font-weight: 300;
	color: #343a40;
}

section#planos .benefits__rows ul li svg {
	margin-right: 5px;
	margin-top: -2px;
	width: 13px;
	fill: var(--color-primary);
}

section#planos .plan__action {
	width: 100%;
}

section#planos .plan__action button {
	padding: 15px 0px;
	text-align: center;
	margin-top: 15px;
	background: #F3F3F3;
	border: none;
	font-size: var(--size-small);
	transition: all 300ms ease;
	border-radius: 15px;
	color: #15252B;
	width: 100%;
}

section#planos .plan__action button:hover {
	background: #e7e7e7;
}

section#planos .emphasis__plan button:hover {
	box-shadow: 0px 0px 100px #87e8ff;
}



/*  ==========  TESTIMONIALS  ========= */

section#testemunhos {
	background: var(--color-secondary);
	padding: 100px 0px;
}

section#testemunhos .testimonial__rows {
	display: flex;
	justify-content: center;
	align-items: center;
}

section#testemunhos .testimonial__item {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

section#testemunhos .testimonial__item .testimonial__text {
	color: #FFFFFF;
	font-weight: 300;
	text-align: center;
}

section#testemunhos .testimonial__stars {
	display: flex;
	justify-content: center;
	align-items: center;
}

section#testemunhos .testimonial__stars svg {
	fill: #FF8C00;
	width: 18px;
}

section#testemunhos .testimonial__name {
	color: #fff;
	margin-top: 15px;
	font-weight: 500;
	text-align: center;
	margin-bottom: 5px;
}

section#testemunhos .testimonial__owner {
	color: #ffffff80;
	font-weight: 300;
	text-align: center;
	font-size: var(--size-p);
}


/*  ==========  CONTACT  ========= */

section#fale-conosco {
	padding: 100px 0px 150px 0px;
	background: #ffffff;
}

section#fale-conosco .contact__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

section#fale-conosco button.fill {
	padding: 10px 25px;
	white-space: nowrap;
	background: var(--color-secondary);
	font-size: var(--size-small);
	border: 1px solid var(--color-secondary);
	color: #ffffff;
	font-weight: 500;
	border-radius: 20px;
	transition: all 300ms ease;
}

section#fale-conosco button.fill:hover {
	background: #103b4b;
	border-color: #103b4b;
	color: #ffffff;
}

section#fale-conosco .contact__info {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	padding-left: 50px;
	margin-top: 20px;
	gap: 10px;
}

section#fale-conosco .contact__info .info__item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
}

section#fale-conosco .contact__info .info__item a {
	text-decoration: none;
	color: currentColor;
}

section#fale-conosco .contact__info .info__item p {
	margin-bottom: 0px;
	font-weight: 300;
}

section#fale-conosco .info__item .info__icon {
	width: 30px;
	height: 30px;
	background: var(--color-secondary);
	border-radius: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
}

section#fale-conosco .info__item .info__icon svg {
	width: 17px;
	max-height: 17px;
	fill: #ffffff;
}

section#fale-conosco .contact__actions button svg {
	stroke-width: 2px;
	animation: spinner 2s infinite;
}

@keyframes spinner {
    from {
        rotate: 0;
    }
    to {
        rotate: 360deg;
    }
}

/*  ==========  SWAL  ==========  */

.swal2-popup {
	padding: 50px 50px 75px 50px !important;
	border-radius: 60px !important;
	overflow: hidden !important;
}

.swal2-backdrop-show {
	backdrop-filter: blur(5px);
	background: #00000050 !important;
	opacity: 1 !important;
}

.swal2-popup h2 {
	font-weight: 600 !important;
	color: #0d0d0d !important;
}

.swal2-popup .swal2-html-container {
	font-weight: 300 !important;
	color: #979797 !important;
}

.swal2-popup .swal2-actions button {
	padding: 10px 20px !important;
	border-radius: 15px !important;
	transition: all 200ms !important;
	font-weight: 600;
}

.swal2-popup .swal2-actions button:focus {
	outline: none !important;
	box-shadow: none !important;
}

.swal2-popup .swal2-warning {
	border-color: #f8bb86 !important;
	color: #ff9c45 !important;
}

.swal2-popup .swal2-info {
	border-color: #90e8d8 !important;
	color: #90e8d8 !important;
}

.swal2-popup .swal2-success-ring,
.swal2-popup .swal2-success-fix,
.swal2-popup .swal2-success-ring {
	border-color: #90e8d8 !important;
	color: #90e8d8 !important;
}

.swal2-popup .swal2-success-line-tip,
.swal2-popup .swal2-success-line-long {
	background-color: #90e8d8 !important;
}
}

.swal2-popup .swal2-error {
	border-color: #ff5858;
}

.swal2-popup .swal2-x-mark span {
	background-color: #ff3056;
}


/*  ==========  COPYRIGHT  ========= */

.copyright {
	background: #fafafa;
	padding: 10px 15px;
}

.copyright p {
	margin-bottom: 0px;
	font-size: 10pt;
	text-align: center;
	font-weight: 300;
	color: #343a4050;
}


/*  ==========  RESPONSIVIDADE  ========= */

.topbar__mobile {
	display: none;
	justify-content: flex-end;
	align-items: center;
	width: 100%;
}

.topbar__mobile button {
	height: 40px;
	width: 40px;

	border-radius: 15px;
	background: var(--color-secondary);
	color: #ffffff;
	border: none;
}

.topbar__mobile button svg {
	stroke-width: 2px;
}


/* col-lg */

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

	.right__header {
		display: none;
	}

	#topbar .topbar__menu {
		display: none;
	}

	#home .left__header {
		padding-bottom: 100px;
	}

}

/* col-md */

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

	:root {

		--size-h2: 27pt;
		--size-h6: 14pt;

		--topbar-position: 20px;
		--topbar-height: 100px;
	}

	section#fale-conosco .contact__info {
		padding: 0px !important;
	}

	.contact__info {
		margin-bottom: 50px;
	}

	.topbar__mobile {
		display: flex;
	}

	#sobre-nos {
		padding: 100px 0px !important;
	}

	#sobre-nos .section__title {
		align-items: center !important;
	}

	.feature__item div {
		text-align: center;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.feature__item .feature__title h6 {
		white-space: wrap !important;
	}

	.feature__item .dot {
		display: none !important;
	}

	#funcionalidades {
		padding: 100px 0px !important;
	}

	#planos {
		padding: 100px 0px !important;
	}

	#home h2,
	#home p {
		text-align: center;
	}

	#home .left__header {
		align-items: center !important;
	}

	#home .left__header button {
		white-space: nowrap !important;
	}

	#topbar .topbar__actions {
		display: none;
	}

	.about__picture {
		display: none !important;
	}

	.platform__picture {
		display: none !important;
	}

	.platform__right {
		padding: 100px 0px;
	}

	section#plataforma::before {
		display: none;
	}

	.footer__buttons {
		right: 20px;
		bottom: 50px;
	}

	.footer__buttons svg {
		width: 60px;
	}

}