
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

ul {
	list-style: none;
}

html {
	scroll-behavior: smooth;
}
::-webkit-scrollbar-thumb {
	background-color: var(--primary);
}
::-webkit-scrollbar-track {
	background-color: #f7f9f9;
}
::-webkit-scrollbar {
	width: 13px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
strong,
input,
textarea,
select,
button,
footer,
article,
.swal-modal {
	font-family: "Inter";
}

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

.only-desktop {
	display: none !important;
}
@media screen and (min-width: 1024px) {
	.only-desktop {
		display: flex !important;
	}
}

.only-mobile {
	display: flex !important;
}
@media screen and (min-width: 1024px) {
	.only-mobile {
		display: none !important;
	}
}

@media screen and (min-width: 1024px) {
	.less-1024px {
		display: none;
	}
}

.lds-roller {
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
}
.lds-roller div {
	animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 40px 40px;
}
.lds-roller div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--primary);
	margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
	animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
	top: 63px;
	left: 63px;
}
.lds-roller div:nth-child(2) {
	animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
	top: 68px;
	left: 56px;
}
.lds-roller div:nth-child(3) {
	animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
	top: 71px;
	left: 48px;
}
.lds-roller div:nth-child(4) {
	animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
	top: 72px;
	left: 40px;
}
.lds-roller div:nth-child(5) {
	animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
	top: 71px;
	left: 32px;
}
.lds-roller div:nth-child(6) {
	animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
	top: 68px;
	left: 24px;
}
.lds-roller div:nth-child(7) {
	animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
	top: 63px;
	left: 17px;
}
.lds-roller div:nth-child(8) {
	animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
	top: 56px;
	left: 12px;
}

@keyframes lds-roller {
	0%: {
		transform: rotate(0deg);
	}
	100%: {
		transform: rotate(360deg);
	}
}
.box-reviews,
.box-instagram {
	padding-top: 40px;
	padding-bottom: 47px;
}
.box-reviews .card-reviews,
.box-instagram .card-reviews {
	cursor: grab;
}
.box-reviews .swiper-horizontal > .swiper-pagination-bullets,
.box-reviews .swiper-pagination-bullets.swiper-pagination-horizontal,
.box-instagram .swiper-horizontal > .swiper-pagination-bullets,
.box-instagram .swiper-pagination-bullets.swiper-pagination-horizontal {
	top: unset;
	bottom: 7px;
}
.box-reviews .swiper-pagination-bullet,
.box-instagram .swiper-pagination-bullet {
	transition: 200ms;
}
.box-reviews .swiper-pagination-bullet-active,
.box-instagram .swiper-pagination-bullet-active {
	transition: 200ms;
	background: var(--primary);
}
.box-reviews .swiper-button-next,
.box-reviews .swiper-button-prev,
.box-instagram .swiper-button-next,
.box-instagram .swiper-button-prev {
	z-index: 11;
	color: var(--primary);
	top: unset;
	bottom: 0px;
	cursor: pointer;
	width: 30px;
}
.box-reviews .swiper-button-next::after,
.box-reviews .swiper-button-prev::after,
.box-instagram .swiper-button-next::after,
.box-instagram .swiper-button-prev::after {
	font-size: 14px;
	font-weight: bold;
}
.box-reviews .swiper-button-next,
.box-instagram .swiper-button-next {
	right: -11px;
}
.box-reviews .swiper-button-prev,
.box-instagram .swiper-button-prev {
	left: -11px;
}
.box-reviews .swiper-button-next.swiper-button-disabled,
.box-reviews .swiper-button-prev.swiper-button-disabled,
.box-instagram .swiper-button-next.swiper-button-disabled,
.box-instagram .swiper-button-prev.swiper-button-disabled {
	opacity: 1;
	color: #e3e3e3;
}

.box-instagram {
	padding-top: 0;
}

@media screen and (min-width: 1199px) {
	.box-reviews {
		padding-top: 70px;
		padding-bottom: 70px;
	}
}
.swiperServices {
	max-width: 1200px;
	padding-left: 30px;
	padding-right: 30px;
	position: relative;
}
.swiperServices .swiper-button-next {
	right: 30px;
}
.swiperServices .swiper-button-prev {
	left: 30px;
}

.element-float-up {
	animation: float-up 6s ease-in-out infinite;
}

.element-float-down {
	animation: float-down 6s ease-in-out infinite;
}

@keyframes float-down {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
@keyframes float-up {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(20px);
	}
	100% {
		transform: translatey(0px);
	}
}
body.modalIsActive {
	overflow: hidden;
}

.modal {
	z-index: 99;
	position: fixed;
	min-height: 100vh;
	width: 100%;
	inset: 0;
	background-color: #ffffff;
	overflow-y: auto;
	top: 100%;
	transition: 400ms;
}
.modal.active {
	transition: 400ms;
	top: 0;
}
.modal .card-header {
	padding: 20px;
	height: 255px;
	width: 100%;
	background-color: var(--primary);
	background-image: url(../images/post-modal-services.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.modal .card-header > img {
	border-radius: 50%;
	width: 78px;
	height: 78px;
	border: 1px solid var(--primary);
}

.modal .card-header .tagline {
	font-family: "Inter";
	font-size: 14px;
	font-weight: bold;
	color: #ffffff;
	margin-bottom: 6px;
	margin-top: 35px;
}
.modal .card-header .header-title {
	display: flex;
	align-items: center;
	gap: 16px;
	justify-content: flex-start;
}
.modal .card-header .header-title img {
	width: 32px;
	margin-top: 4px;
	filter: invert(1);
}
.modal .card-header .header-title h2 {
	font-size: 16px;
	font-weight: bold;
	line-height: 144%;
	font-family: "Inter";
	color: #ffffff;
}
.modal .btn-white-outline {
	margin-left: auto;
}
.modal .btn-white-outline.btn-go-back {
	margin-inline: auto;
}
.modal .content {
	padding: 20px;
}

@media screen and (min-width: 1199px) {
	.modal .content {
		padding-inline: 0;
	}
}
.modal .body {
	padding-bottom: 100px;
}
.modal .body h3 {
	font-family: "Inter";
	font-size: 16px;
	font-weight: 600;
	line-height: 145%;
	color: #000000;
	margin-bottom: 10px;
}
.modal .body p {
	font-family: "Inter";
	font-weight: 400;
	font-size: 14px;
	color: #000000;
	margin-bottom: 30px;
	line-height: 165%;
}
@media screen and (min-width: 1199px) {
	.modal .body p {
		font-size: 16px;
	}
}
.modal .body a.btn-go-back {
	margin-top: 80px;
}
.modal .modal-about .title {
	margin-top: 10px;
}
.modal .modal-about .subtitle {
	margin-bottom: 30px;
}
.modal .modal-about .card-image {
	position: relative;
	display: flex;
	align-items: center;
}

.modal .modal-about .card-image img.cover {
	width: 100%;
}
.modal .modal-about .card-image .mobile {
	display: block;
}
.modal .modal-about .card-image .desktop {
	display: none;
}
@media screen and (min-width: 800px) {
	.modal .modal-about .card-image .mobile {
		display: none;
	}
	.modal .modal-about .card-image .desktop {
		display: block;
	}
}
.modal .modal-about .box-clients h3 {
	margin-top: 30px;
	font-family: "Inter";
	font-size: 16px;
	font-weight: 500;
	color: #000000;
	line-height: 145%;
	margin-bottom: 7px;
}
.modal .modal-about .box-clients .clients {
	width: 100%;
	overflow-x: auto;
	height: 100px;
	display: flex;
	align-items: center;
	margin-bottom: 60px;
}
.modal .modal-about .box-clients .clients img {
	margin-right: 20px;
}
.modal .modal-about p {
	font-family: "Inter";
	font-size: 16px;
	margin-bottom: 30px;
	color: #000000;
}
.modal .modal-about p strong {
	color: var(--primary);
}
@media screen and (min-width: 800px) {
	.modal .content,
	.modal .body {
		width: 1140px;
		margin-inline: auto;
	}
	.modal .content .wrapper,
	.modal .body .wrapper {
		display: flex;
		flex-direction: row-reverse;
		gap: 80px;
	}
	.modal .content .wrapper .info,
	.modal .body .wrapper .info {
		width: 60%;
	}
	.modal .content .wrapper .card-image,
	.modal .body .wrapper .card-image {
		width: 400px;
	}
	.modal .content .wrapper .card-image .card-float,
	.modal .body .wrapper .card-image .card-float {
		width: 200px;
	}
	.modal .content .wrapper .card-image .card-float h5,
	.modal .body .wrapper .card-image .card-float h5 {
		font-size: 12px;
	}
}

.modal-video-review {
	position: fixed;
	z-index: 11;
	inset: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	transition: 200ms;
	display: flex;
	align-items: center;
	justify-content: center;
}
.modal-video-review .lds-roller {
	display: none;
}
.modal-video-review.active {
	opacity: 1;
	visibility: visible;
}
.modal-video-review.active .lds-roller {
	display: inline-block;
}
.modal-video-review .embed {
	aspect-ratio: 16/9;
	width: 100%;
	max-width: 1200px;
	position: relative;
	margin-inline: auto;
}
.modal-video-review .embed iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}
.modal-video-review .btn-close {
	width: 35px;
	height: 35px;
	background-color: transparent;
	border: 0;
	display: block;
	cursor: pointer;
	transition: 200ms;
	position: absolute;
	top: 20px;
	right: 20px;
}
.modal-video-review .btn-close:hover {
	transform: scale(1.2);
}
.modal-video-review .btn-close:focus {
	transform: scale(0.9);
}

.container {
	padding-inline: 20px;
}
@media screen and (min-width: 1024px) {
	.container {
		max-width: 1180px !important;
		margin-inline: auto;
	}
}

.man-cta {
	font-family: "Inter";
	font-size: 32px;
}
.man-cta strong {
	color: var(--primary);
}
@media screen and (min-width: 1024px) {
	.man-cta {
		font-size: 40px;
	}
}
@media screen and (min-width: 1200px) {
	.man-cta {
		font-size: 48px;
	}
}

.btn-primary {
	font-family: "Inter";
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	padding: 20px 50px;
	background-color: var(--primary);
	transition: 200ms;
	cursor: pointer;
	border-radius: 8px;
	display: block;
	width: -moz-max-content;
	width: max-content;
	text-decoration: none;
	border: none;
}
.btn-primary:hover {
	background-color: var(--primary-hover);
}

.small {
	font-size: 14px !important;
}

.w100 {
	width: 100%;
}

.mb-0 {
	margin-bottom: 0 !important;
}

.title {
	font-family: "Inter";
	font-size: 32px;
	font-weight: bold;
	color: var(--corTitulo);
	margin-bottom: 5px;
}

.subtitle {
	font-family: "Inter";
	font-size: 16px;
	font-weight: 500;
	color: var(--corTexto);
	line-height: 145%;
	display: flex;
	align-items: center;
}
.subtitle img {
	margin-right: 5px;
}
@media screen and (min-width: 1199px) {
	.subtitle {
		font-size: 20px;
	}
}

.btn-primary-text {
	font-family: "Inter";
	font-size: 16px;
	font-weight: bold;
	color: var(--primary);
	text-decoration: none;
	transition: 200ms;
	padding-block: 15px 0px;
}
.btn-primary-text svg,
.btn-primary-text img {
	margin-left: 9px;
	transition: 200ms;
}
.btn-primary-text:hover {
	color: var(--primary-hover);
}
.btn-primary-text:hover img {
	margin-left: 14px;
}

.btn-primary-outline {
	font-family: "Noir Pro";
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 500;
	color: var(--primary);
	text-decoration: none;
	transition: 200ms;
	background-color: transparent;
	border: 1.5px solid var(--primary);
}
@media (min-width: 1200px) {
	.btn-primary-outline {
		max-width: 300px;
		margin-inline: auto;
	}
}
.btn-primary-outline img {
	width: 24px;
	margin-right: 10px;
	transition: 200ms;
}
.btn-primary-outline:hover {
	border-color: var(--primary-hover);
	color: #ffffff;
	background-color: var(--primary-hover);
}
.btn-primary-outline:hover img {
	transform: scale(1.4);
}

.btn-white-outline {
	display: flex;
	align-items: center;
	background-color: #ffffff;
	border: 1px solid #000000;
	border-radius: 4px;
	padding: 12px 18px;
	gap: 23px;
	width: -moz-max-content;
	width: max-content;
	font-size: 16px;
	font-weight: bold;
	font-family: "Inter";
	color: #000000;
	text-decoration: none;
}
.btn-white-outline.p-horizontal-g {
	padding-inline: 50px;
}

.card-services {
	padding: 45px 25px 50px;
	background-color: #f9f9f9;
	border-radius: 13px;
	transition: 0.2s;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	/* max-width: 262px; */
	/* background-color: #f2f8f9; */
	/* border-radius: 4px; */
	/* padding: 32px 24px; */
	/* margin: 12px; */
	/* text-decoration: none; */
	/* z-index: 0; */
	overflow: hidden;
	height: 450px;
}
.card-services:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: -16px;
	right: -16px;
	background: var(--primary);
	height: 32px;
	width: 32px;
	border-radius: 32px;
	transform: scale(1);
	transform-origin: 50% 50%;
	transition: transform 0.25s ease-out;
}

.card-services:hover:before {
	transform: scale(45);
}
.card-services .service-title {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 16px;
	font-size: 16px;
	font-family: "Inter";
	line-height: 144%;
	color: var(--corTitulo);
	transition: 0.1s;
	margin-bottom: 20px;
}
.card-services .service-title img {
	width: 30px;
	max-height: 30px;
	transition: 0;
}
.card-services .text-cont {
	max-height: 285px;
	overflow: hidden;
}
@media screen and (min-width: 1199px) {
	.card-services .service-title {
		font-size: 18px;
	}
}
.card-services p {
	font-family: "Inter";
	font-size: 14px;
	font-weight: 400;
	line-height: 165%;
	color: var(--corTexto);
	margin-bottom: 30px;
}
@media screen and (min-width: 1199px) {
	.card-services p {
		font-size: 16px;
	}
}
.card-services:hover {
	/* transition: 0.1s; */
	/* background-color: var(--primary); */
	cursor: pointer;
}
.card-services:hover .service-title {
	color: #ffffff;
}
.card-services:hover .service-title img {
	filter: invert(1);
}
.card-services:hover .service-title svg path:nth-child(1) {
	fill: #ffffff;
}
.card-services:hover .service-title svg path:nth-child(2) {
	stroke: #ffffff;
	fill: var(--primary);
}
.card-services:hover p {
	color: #ffffff;
}
.card-services:hover .btn-primary-text {
	color: #ffffff;
}
.card-services:hover .btn-primary-text svg path {
	fill: #ffffff;
}
.card-services:hover .btn-primary-text:hover {
	color: #ffffff;
}
.card-services:hover .btn-primary-text:hover svg path {
	fill: #ffffff;
}
.card-services:hover i {
	filter: invert(1);
}

.card-projects {
	border-radius: 9px;
	overflow: hidden;
	cursor: pointer;
}
.card-projects .body {
	padding: 20px 22px;
	aspect-ratio: 1/1;
	background-image: url(../images/card.png);
	background-size: cover;
}
.card-projects .body .badge {
	font-family: "Inter";
	font-size: 7px;
	font-weight: 500;
	line-height: 160%;
	letter-spacing: 11.5%;
	color: #000000;
	padding: 9px 20px;
	background-color: var(--yellow);
	border-radius: 62px;
	text-decoration: none;
	text-transform: uppercase;
}
.card-projects .body .badge:hover {
	transition: 200ms;
	background-color: var(--yellow-hover);
}
.card-projects .project-footer {
	padding: 23px 25px;
	background-color: #000000;
	color: #ffffff;
}
.card-projects .project-footer a {
	font-family: "Inter";
	font-weight: bold;
	font-size: 16px;
	color: #ffffff;
	text-decoration: none;
	transition: 200ms;
}
.card-projects .project-footer a img {
	margin-left: 10px;
	transition: 200ms;
}
.card-projects .project-footer a:hover {
	letter-spacing: 1px;
}
.card-projects .project-footer a:hover img {
	margin-left: 15px;
	transform: scale(1.5);
}

.card-reviews {
	position: relative;
	padding: 70px 30px;
	background-color: #f9f9f9;
	border-radius: 13px;
}
.card-reviews .quotation-marks {
	position: absolute;
	top: -25px;
	left: 18px;
}
.card-reviews > p {
	max-width: 260px;
	font-family: "Inter";
	font-weight: 400;
	font-size: 16px;
	line-height: 140%;
	color: #000000;
	margin-bottom: 30px;
}
@media screen and (min-width: 500px) {
	.card-reviews > p {
		max-width: none;
	}
}
.card-reviews .card-author {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	margin-bottom: 40px;
	margin-top: 32px;
	text-align: left;
}
.card-reviews .card-author .avatar {
	width: 48px;
	height: 48px;
	-o-object-fit: cover;
	object-fit: cover;
	border: 1px solid var(--primary);
	border-radius: 999px;
}
@media screen and (min-width: 1199px) {
	.card-reviews .card-author .avatar {
		width: 64px;
		height: 64px;
	}
}
.card-reviews .card-author .desc .name {
	font-family: "Inter";
	font-size: 14px;
	font-weight: bold;
	color: var(--primary);
	line-height: 140%;
}
@media screen and (min-width: 1199px) {
	.card-reviews .card-author .desc .name {
		font-size: 16px;
	}
}
.card-reviews .card-author .desc .work {
	font-family: "Inter";
	font-size: 12px;
	font-weight: 500;
	color: #000000;
}
@media screen and (min-width: 1199px) {
	.card-reviews .card-author .desc .work {
		font-size: 14px;
	}
}
.card-reviews .btn-primary-outline {
	font-size: 20px;
}

.card-instagram img { 
	display: block;
	width: 100%;
	border-radius: 15px;
        height: 375px;
}

.card-float {
	padding: 12px 10px 14px;
	background-color: #ffffff;
	border-radius: 8px;
	display: flex;
	align-items: center;
	gap: 4px;
	position: absolute;
}
.card-float.left {
	bottom: 74px;
	left: -10px;
}
.card-float.right {
	top: 9px;
	right: -7px;
}
.card-float img {
	width: 45px;
}
.card-float .info span {
	display: block;
	font-family: "Inter";
	font-size: 14px;
	font-weight: bold;
	color: var(--primary);
}
.card-float .info h5 {
	font-family: "Inter";
	font-size: 12px;
	font-weight: 500;
	color: #000000;
	line-height: 170%;
	letter-spacing: 0px;
}
@media screen and (min-width: 1199px) {
	.card-float.left {
		bottom: 70px;
		left: -90px;
	}
	.card-float.right {
		top: 164px;
		right: -43px;
	}
	.card-float .info span {
		font-size: 18px;
	}
	.card-float .info h5 {
		font-size: 16px;
		line-height: 15px;
	}
}

.svgFloat {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.svgFloat svg path {
	transition: all 200ms ease-in-out;
	fill: var(--primary);
}

.svgFloat:hover svg path {
	fill: var(--primary-hover);
}

.input-group {
	margin-bottom: 20px;
}
.input-group .label {
	display: block;
	font-family: "Inter";
	font-weight: 500;
	font-size: 16px;
	line-height: 136.4%;
	color: #333333;
	margin-bottom: 10px;
}
.input-group .prefer-label {
	font-family: "Inter";
	font-weight: 400;
	font-size: 12px;
	color: #333333;
	line-height: 136.4%;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 6px;
	cursor: pointer;
}
.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group textarea {
	padding: 20px 30px;
	background-color: transparent;
	border: 1px solid #333333;
	border-radius: 8px;
	display: block;
	height: 60px;
	width: 100%;
	font-size: 16px;
}
.input-group input[type="text"]::-moz-placeholder,
.input-group input[type="email"]::-moz-placeholder,
.input-group input[type="tel"]::-moz-placeholder,
.input-group textarea::-moz-placeholder {
	color: #8d8d8d;
	font-family: "Inter";
	font-size: 14px;
	line-height: 136.4%;
	font-weight: 400;
}
.input-group input[type="text"]::placeholder,
.input-group input[type="email"]::placeholder,
.input-group input[type="tel"]::placeholder,
.input-group textarea::placeholder {
	color: #8d8d8d;
	font-family: "Inter";
	font-size: 14px;
	line-height: 136.4%;
	font-weight: 400;
}
.input-group input[type="text"]:focus,
.input-group input[type="email"]:focus,
.input-group input[type="tel"]:focus,
.input-group textarea:focus {
	outline-color: var(--primary);
}
.input-group textarea {
	height: 230px;
	resize: none;
}
.input-group input[type="radio"] {
	-webkit-appearance: unset;
	-moz-appearance: unset;
	appearance: unset;
	width: 24px;
	height: 24px;
	border-radius: 999px;
	border: 1px solid #333333;
	transition: 200ms;
	position: relative;
	cursor: pointer;
}
.input-group input[type="radio"]:checked {
	border-color: #ffffff;
	border-width: 6px;
	background-color: var(--primary);
}
.input-group .group-radio {
	display: flex;
	gap: 40px;
}

.main-footer {
	background-color: var(--primary);
	padding-top: 50px;
}
.main-footer .container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.main-footer .container .group-item {
	width: 100%;
	margin-bottom: 50px;
}
@media screen and (max-width: 1199px) {
	.main-footer .container .group-item.only-mobile {
		display: block !important;
	}
}
.main-footer .container .group-item:first-child img {
	width: 75px;
	margin-bottom: 17px;
}
@media screen and (min-width: 1199px) {
	.main-footer .container .group-item:first-child img {
		width: 100px;
	}
}
.main-footer .container .group-item:first-child h5 {
	font-family: "Inter";
	font-weight: 500;
	font-size: 14px;
	line-height: 136.4%;
	color: #ffffff;
}
.main-footer .container .group-item hr {
	width: 100%;
	height: 1px;
	border: 0;
	background-color: #ffffff;
	margin-top: 50px;
}
.main-footer .container .group-item h4 {
	font-family: "Inter";
	font-size: 16px;
	font-weight: bold;
	color: #ffffff;
	line-height: 140%;
	margin-bottom: 20px;
}
@media screen and (min-width: 1199px) {
	.main-footer .container .group-item h4 {
		font-size: 20px;
	}
}
.main-footer .container .group-item li + li {
	margin-top: 15px;
}
.main-footer .container .group-item li a {
	font-family: "Inter";
	font-weight: 400;
	font-size: 14px;
	color: #ffffff;
	text-decoration: none;
	transition: 200ms;
	display: flex;
	align-items: center;
	gap: 9px;
}
.main-footer .container .group-item li:nth-child(n + 8) { /*limitador*/
	display: none;
}
.ft-vermais {
	color: #FFF;
	margin-block: 10px;
}

@media screen and (min-width: 1199px) {
	.main-footer .container .group-item li a {
		font-size: 16px;
	}
}
.main-footer .container .group-item li a:hover {
	color: var(--footer-hover);
}
@media screen and (min-width: 500px) {
	.main-footer .container .group-item {
		width: calc(50% - 10px);
	}
	.main-footer .container .group-item:first-child {
		width: 100%;
	}
	.main-footer .container .group-item:last-child hr {
		display: none;
	}
}
@media screen and (min-width: 600px) {
	.main-footer .container .group-item {
		width: auto;
	}
}
@media screen and (min-width: 1199px) {
	.main-footer .container .group-item:first-child {
		width: 30%;
		max-width: 195px;
		/* margin-right: 140px; */
		/* display: none !important; */
	}
	.main-footer .container .group-item:first-child hr {
		margin-top: 0;
		margin-bottom: 30px;
	}
}
@media (min-width: 1024px) and (max-width: 1200px) {
	body .main-footer .container .group-item .contact .only-desktop {
		display: none !important;
	}
}
@media screen and (min-width: 1199px) and (min-width: 1199px) {
	.main-footer .container .group-item:first-child .only-desktop {
		display: block !important;
	}
	.main-footer .container .group-item:first-child .only-desktop.social {
		margin-top: 23px;
		margin-bottom: 30px;
		display: flex !important;
		justify-content: flex-start;
	}
	.main-footer .container .group-item:first-child .only-desktop.social li + li {
		margin-top: 0;
	}
	.main-footer .container .group-item:first-child .only-desktop.social img {
		height: 32px;
	}
	.main-footer .container .group-item:first-child .only-desktop.contact {
		margin-bottom: 0;
	}
	.main-footer .container .group-item:first-child .only-desktop.contact h4 {
		display: none;
	}
	.main-footer .container .group-item:first-child .only-desktop.contact li a {
		display: flex;
		align-items: center;
		gap: 9px;
	}
	.main-footer
		.container
		.group-item:first-child
		.only-desktop.contact
		li
		a
		img {
		width: 18px;
	}
	.main-footer .container .group-item:first-child .only-desktop img {
		margin: 0;
	}
}
@media screen and (min-width: 500px) {
	.main-footer .container:first-child {
		border-bottom: 1px solid #ffffff;
		margin-bottom: 50px;
		width: calc(100% - 40px);
		margin-inline: auto;
		padding-inline: 0;
	}
}
@media screen and (min-width: 1199px) {
	.main-footer .container:first-child {
		border-bottom: 0;
	}
}
.main-footer .container .social {
	width: 100%;
	margin-bottom: 50px;
}
.main-footer .container .social ul {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}
@media screen and (max-width: 1199px) {
	.main-footer .container .social ul {
		margin-inline: auto;
	}
}
.main-footer .container .social ul a img {
	max-width: 32px;
	transition: 200ms;
}
.main-footer .container .social ul a img:hover {
	transform: scale(1.1);
}
.main-footer .main-footer-bottom {
	background-color: var(--primary-hover);
	padding: 26px;
	text-align: center;
}
.main-footer .main-footer-bottom img {
	width: 43px;
}
@media screen and (min-width: 1199px) {
	.main-footer .main-footer-bottom img {
		width: 55px;
	}
}

@media screen and (max-width: 1024px) {
	.nav-menu {
		padding-top: 100px;
		position: fixed;
		inset: 0;
		z-index: 10;
		background-color: #ffffff;
		display: flex;
		align-items: center;
		flex-direction: column;
		gap: 30px;
		width: 100%;
		left: -100%;
		transition: 200ms;
	}
	.nav-menu.active {
		left: 0;
	}
	.nav-menu a {
		font-size: 16px;
		font-weight: 400;
		font-family: "Inter";
		color: #000000;
		text-decoration: none;
	}
}
.landingpage-home main {
	overflow-x: hidden;
}
.landingpage-home .menu {
	margin-top: 25px;
	margin-bottom: 55px;
	transition: 200ms;
}
.landingpage-home .menu img {
	width: 100%;
	transition: 600ms;
	max-height: 110px;
}
@media screen and (min-width: 1199px) {
	.landingpage-home .menu img {
		width: 100%;
	}
}
.landingpage-home .menu.active {
	margin-top: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	position: fixed;
	width: 100%;
	top: 0;
	background-color: #ffffff;
	z-index: 5;
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.07);
}
@media screen and (max-width: 1199px) {
	.landingpage-home .menu.active img {
		/* width: 156px; */
	}
	.landingpage-home .menu.active .btn-menu {
		transform: scale(0.6);
	}
}
@media screen and (min-width: 1200px) {
	.landingpage-home .menu {
		padding-top: 25px;
		padding-bottom: 20px;
	}
}
.landingpage-home .menu .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (min-width: 1024px) {
	.landingpage-home .menu .container .nav-menu {
		display: flex;
		align-items: center;
	}
	.landingpage-home .menu .container .nav-menu a {
		text-decoration: none;
		font-family: "Inter";
		font-weight: bold;
		color: var(--primary);
		font-size: 16px;
		transition: 200ms;
		margin-right: 60px;
	}
	.landingpage-home .menu .container .nav-menu a:hover {
		color: var(--primary-hover);
	}
	.landingpage-home .menu .container .nav-menu a:last-child {
		margin-right: 0;
		margin-left: 50px;
		background-color: var(--primary);
		font-family: "Inter";
		font-size: 16px;
		font-weight: bold;
		color: #ffffff;
		padding: 20px 60px;
		border-radius: 8px;
		transition: 200ms;
	}
	.landingpage-home .menu .container .nav-menu a:last-child:hover {
		background-color: var(--primary-hover);
	}
}
@media screen and (min-width: 1200px) {
	.landingpage-home .menu .container .nav-menu a {
		margin-right: 100px;
	}
	.landingpage-home .menu .container .nav-menu a:last-child {
		margin-left: 100px;
	}
}
.landingpage-home .menu .container .btn-menu {
	width: 52px;
	height: 52px;
	border-radius: 5px;
	border: 1px solid #000000;
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	gap: 5px;
	position: relative;
	z-index: 11;
	transition: 200ms;
}
.landingpage-home .menu .container .btn-menu.active {
	border-color: transparent;
}
.landingpage-home .menu .container .btn-menu span {
	display: flex;
	width: 100%;
	height: 2px !important;
	background-color: #000000;
	border-radius: 62px;
	transition: 200ms;
	transform-origin: -4px;
}

.landingpage-home .menu .container .btn-menu.active span:first-child {
	transform: rotate(45deg);
}

.landingpage-home .menu .container .btn-menu.active span:last-child {
	transform: rotate(-45deg);
}
.landingpage-home .menu .container .btn-menu.active span:nth-child(2) {
	width: 0;
}
@media screen and (min-width: 1025px) {
	.landingpage-home .menu .container .btn-menu {
		display: none;
	}
}
.landingpage-home .s-presentation .container .man-cta {
	margin-bottom: 5px;
}
.landingpage-home .s-presentation .container p {
	margin-bottom: 20px;
}
.landingpage-home .s-presentation .container .btn-primary {
	margin-bottom: 50px;
}
.landingpage-home .s-presentation .container .cover {
	position: relative;
	margin-bottom: 50px;
}
.landingpage-home .s-presentation .container .cover img {
	width: 100%;
}
@media screen and (min-width: 600px) {
	.landingpage-home .s-presentation .container {
		max-width: 600px;
		margin-top: 150px;
		margin-bottom: 150px;
	}
}
@media screen and (min-width: 1024px) {
	.landingpage-home .s-presentation .container {
		margin-top: 100px;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 65px;
	}
	.landingpage-home .s-presentation .container .man-cta {
		margin-bottom: 14px;
		max-width: 600px;
	}
	.landingpage-home .s-presentation .container p {
		font-size: 20px;
		max-width: 600px;
	}
	.landingpage-home .s-presentation .container .cover {
		width: 600px;
	}
}
.landingpage-home .about {
	margin-bottom: 100px;
}
.landingpage-home .about .container {
	display: flex;
	-moz-column-gap: 40px;
	column-gap: 40px;
	align-items: center; /*ajuste*/
}
.landingpage-home .about .container .cover {
	position: relative;
	width: 100%;
}
.about .cover.img-about > img {
	/*ajuste*/
	width: 100%;
}
.landingpage-home .about .container .wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.landingpage-home .about .container .wrapper .wrapper-content .subtitle {
	margin-bottom: 30px;
}
.landingpage-home .about .container .wrapper .wrapper-content p {
	font-family: "Inter";
	font-size: 16px;
	margin-bottom: 30px;
	color: var(--corTexto);
}
.landingpage-home .about .container .wrapper .wrapper-content p:last-of-type {
	margin-bottom: 20px;
}
.landingpage-home .about .container .wrapper .wrapper-content p strong {
	color: var(--primary);
}
@media screen and (min-width: 600px) {
	.landingpage-home .about .container .wrapper {
		max-width: 600px;
	}
}
@media screen and (min-width: 1200px) {
	.landingpage-home .about .container {
		-moz-column-gap: 110px;
		column-gap: 110px;
	}
	.landingpage-home .about .container .cover {
		max-width: 510px;
	}
}
@media screen and (min-width: 600px) {
	.landingpage-home .about {
		margin-bottom: 150px;
	}
}
.landingpage-home .services {
	margin-bottom: 100px;
}
.landingpage-home .services .container .subtitle {
	margin-bottom: 20px;
}
.landingpage-home .services .container .wrapper {
	flex-wrap: wrap;
}
.landingpage-home .services .container .wrapper .card-services {
	margin-bottom: 20px;
	width: 100%;
}
@media screen and (min-width: 500px) {
	.landingpage-home .services .container .wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		row-gap: 10px;
	}
	.landingpage-home .services .container .wrapper .card-services {
		width: calc(50% - 10px);
	}
}
@media screen and (min-width: 600px) {
	.landingpage-home .services {
		margin-bottom: 150px;
	}
}
.landingpage-home .projects {
	margin-bottom: 100px;
}
.landingpage-home .projects .container .group-title .subtitle {
	margin-bottom: 30px;
}
.landingpage-home .projects .container .group-describe p:not(.subtitle) {
	font-family: "Inter";
	font-weight: 400;
	font-size: 14px;
	color: var(--corTexto);
	line-height: 165%;
	margin-bottom: 20px;
}
@media screen and (min-width: 1199px) {
	.landingpage-home .projects .container .group-describe p:not(.subtitle) {
		font-size: 16px;
	}
}
.landingpage-home .projects .container .wrapper {
	flex-wrap: wrap;
}
.landingpage-home .projects .container .wrapper .card-projects {
	margin-bottom: 20px;
	width: 100%;
}
.landingpage-home
	.projects
	.container
	.wrapper
	.card-projects:nth-child(n + 10) {
	display: none;
}
.landingpage-home
	.services
	.container
	.only-mobile
	.card-services:nth-child(n + 10) {
	display: none;
}

@media screen and (min-width: 500px) {
	.landingpage-home .projects .container .wrapper {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.landingpage-home .projects .container .wrapper .card-projects {
		width: calc(50% - 10px);
	}
}
@media screen and (min-width: 600px) {
	.landingpage-home .projects .container .wrapper .card-projects {
		width: 32%;
	}
}
@media screen and (min-width: 1199px) {
	.landingpage-home .projects .container .wrapper-header {
		display: flex;
		align-items: flex-start;
		justify-content: space-between;
		margin-bottom: 50px;
	}
	.landingpage-home
		.projects
		.container
		.wrapper-header
		.group-title
		.subtitle {
		margin-bottom: 0;
	}
	.landingpage-home .projects .container .wrapper-header .group-describe {
		max-width: 690px;
	}
	.landingpage-home .projects .container .wrapper-header .group-describe p {
		margin-bottom: 0;
	}
}
@media screen and (min-width: 600px) {
	.landingpage-home .projects {
		margin-bottom: 150px;
	}
}
@media screen and (min-width: 1199px) {
	.landingpage-home .projects .only-desktop {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}
	.landingpage-home .projects .only-desktop a {
		width: 33.333%;
		aspect-ratio: 1/1;
		overflow: hidden;
	}
	.landingpage-home .projects .only-desktop a:nth-child(n + 10) {
		display: none;
	}
	.landingpage-home .projects .only-desktop a img {
		display: block;
		width: 100%;
		transition: 400ms;
	}
	.landingpage-home .projects .only-desktop a img:hover {
		transform: rotate(10deg) scale(1.2);
	}
}
.landingpage-home .reviews {
	margin-bottom: 100px;
}
@media screen and (min-width: 600px) {
	.landingpage-home .reviews .container {
		margin-inline: auto;
	}
	.landingpage-home .reviews .container .box-reviews .card-reviews {
		text-align: center;
		padding-inline: 60px;
		padding-top: 100px;
	}
	.landingpage-home
		.reviews
		.container
		.box-reviews
		.card-reviews
		.quotation-marks {
		width: 104px;
	}
	.landingpage-home
		.reviews
		.container
		.box-reviews
		.card-reviews
		.quotation-marks.left {
		left: 120px;
		top: -43px;
	}
	.landingpage-home
		.reviews
		.container
		.box-reviews
		.card-reviews
		.quotation-marks.right {
		top: unset;
		left: unset;
		right: 105px;
		bottom: -47px;
		transform: rotate(174deg);
	}
	.landingpage-home .reviews .container .box-reviews .card-reviews > p {
		font-size: 24px;
		font-weight: 500;
	}
}
@media (min-width: 1023px) {
	.landingpage-home .reviews .container .box-reviews .card-reviews {
		padding-inline: 160px;
	}
}
@media screen and (min-width: 600px) and (min-width: 1199px) {
	.landingpage-home
		.reviews
		.container
		.box-reviews
		.card-reviews
		.btn-primary-text {
		font-size: 20px !important;
	}
}
@media screen and (min-width: 600px) {
	.landingpage-home .reviews .container .box-reviews .card-author {
		width: -moz-max-content;
		width: max-content;
		margin-inline: auto;
	}
}
@media screen and (min-width: 600px) and (min-width: 1199px) {
	.landingpage-home .reviews .container .box-reviews .card-author {
		margin-top: 50px;
	}
}
@media screen and (min-width: 600px) {
	.landingpage-home .reviews {
		margin-bottom: 150px;
	}
}
.landingpage-home .instagram {
	margin-bottom: 100px;
}
.landingpage-home .instagram .container .subtitle {
	margin-bottom: 18px;
}
.landingpage-home .instagram .container .btn-primary {
	margin-inline: auto;
	margin-top: 50px;
}
@media screen and (min-width: 1199px) {
	.landingpage-home .instagram {
		margin-bottom: 200px;
	}
}
.landingpage-home .contact {
	margin-bottom: 100px;
}
.landingpage-home .contact .container .subtitle {
	margin-bottom: 30px;
}
@media screen and (min-width: 1199px) {
	.landingpage-home .contact .container form {
		padding: 50px 50px 80px;
		background-color: #f9f9f9;
		border-radius: 16px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
	}
	.landingpage-home .contact .container form .input-group {
		width: 48%;
	}
	.landingpage-home .contact .container form .input-group .label {
		font-family: "Inter";
		font-size: 20px;
		font-weight: bold;
	}
	.landingpage-home .contact .container form .input-group .group-radio {
		margin-top: 35px;
	}
	.landingpage-home .contact .container form .input-group:last-of-type {
		width: 100%;
	}
	.landingpage-home .contact .container form button.btn-primary {
		width: -moz-max-content;
		width: max-content;
		margin-inline: auto;
	}
}
@media screen and (min-width: 1199px) and (min-width: 1199px) {
	.landingpage-home .contact .container form button.btn-primary {
		padding: 31px 100px;
		margin-top: 50px;
	}
}
@media screen and (min-width: 600px) {
	.landingpage-home .contact {
		margin-bottom: 150px;
	}
}

.landingpage-home .contact .container form h5 {
	margin-block: 15px 5px;
	text-align: center;
	width: 100%;
}
.landingpage-home .contact .container form h5 a {
	color: inherit;
}

/* Cookies */
#aviso-cookies {
	display: flex;
	gap: 1rem;
	justify-content: center;
	position: fixed;
	bottom: 0;
	padding: 13px 15px;
	background-color: #fff;
	z-index: 800;
	width: 100%;
	text-align: center;
	box-shadow: 0px 0px 2px 1px rgba(50, 50, 50, 0.58);
	transition: all 300ms ease-in-out;
}
#aviso-cookies p {
	max-width: 61.25rem;
	font-size: 1rem;
}
#aviso-cookies p a {
	color: var(--primary);
	transition: color 200ms ease-in-out;
	text-decoration: none;
	font-weight: 600;
}
#aviso-cookies p a:hover {
	color: var(--primary-hover);
}
#aviso-cookies button {
	padding: 10px 15px;
	margin: auto 0;
	background-color: var(--primary);
	border-radius: 8px;
	border: none;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	cursor: pointer;
	transition: 300ms ease-in-out;
}
#aviso-cookies button:hover {
	background-color: var(--primary-hover);
}
#aviso-cookies.hideCookie {
	transform: translateY(100%);
}
@media (max-width: 500px) {
	#aviso-cookies {
		flex-direction: column;
	}
}

/* WhatsApp */
.whatsapp {
	background: linear-gradient(115deg, #0dc152, #0dc152, #1e904a);
	opacity: 0.85;
	width: -moz-fit-content;
	width: fit-content;
	padding: 15px 5px;
	text-align: center;
	transition: all ease-in-out 0.2s;
	border-radius: 20px;
	position: fixed;
	font-size: 17px;
	left: 25px;
	bottom: 15px;
	z-index: 98;
	color: #fff;
	cursor: pointer;
	animation: pulse 5s 2.2s infinite;
}
@keyframes pulse {
	0% {
		transform: scale(0.8);
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.493);
	}
	70% {
		transform: scale(1);
		box-shadow: 0 0 7px 15px rgba(0, 0, 0, 0);
	}
	100% {
		transform: scale(0.8);
		box-shadow: 0 0 1px 0px rgb(9, 180, 3);
	}
}
.whatsapp span {
	margin-right: 10px;
	position: relative;
	vertical-align: middle;
	display: inline-block;
	font-size: 17px;
	line-height: 21px;
}
.whatsapp img {
	margin-inline: 15px;
	float: left;
}
.whatsapp:hover {
	opacity: 0.95;
}

.ul-whatsapp {
	position: fixed;
	width: 100%;
	max-width: -moz-fit-content;
	max-width: fit-content;
	left: -100px;
	bottom: -90px;
	background: #f3f3f3;
	border-radius: 8px;
	z-index: 999;
	box-shadow: 0 0 25px -5px #8c8c8c;
	transition: all ease-in-out 0.25s;
	transform: scale(0);
	opacity: 0;
	/* Maycon ↓ */
	transform-origin: top;
}
.ul-whatsapp .topo-whats {
	color: #fff;
	background: #0dc152;
	padding: 15px 20px;
	border-top-left-radius: 8px;
	border-top-right-radius: 8px;
}
.ul-whatsapp .cont-wpp {
	padding-inline: 10px;
}
.ul-whatsapp .cont-wpp li {
	border-bottom: 1px solid #d8d8d8;
	transition: all ease-in-out 0.2s;
	float: left;
	width: 100%;
	margin-bottom: 10px;
}
.ul-whatsapp .cont-wpp li a {
	float: left;
	width: 100%;
	padding: 12px;
}
.ul-whatsapp .cont-wpp li a .foto {
	background-size: cover;
	width: 50px;
	height: 50px;
	margin-right: 15px;
	float: left;
        border-radius: 50%;
}
.ul-whatsapp .cont-wpp li a .foto img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.ul-whatsapp .cont-wpp li a .info-wpp {
	position: relative;
	vertical-align: middle;
	display: inline-block;
	font-size: 17px;
	color: #000;
	line-height: 21px;
	margin-left: 10px;
}
.ul-whatsapp .cont-wpp li a .info-wpp p {
	margin-bottom: 0;
}
.ul-whatsapp .cont-wpp li:hover:not(.topo-whats) {
	background: #e0e0e0;
}
.ul-whatsapp.shown {
	transform: scale(1);
	bottom: 90px;
	left: 20px;
	opacity: 0.99;
}
.ul-whatsapp::after {
	z-index: -1;
	display: inline-block;
	content: "";
	position: absolute;
	bottom: -20px;
	left: 10px;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 25px solid #f3f3f3;
}
/* Política de Privacidade */

:is(.politica-de-privacidade .politica-texto, .termos-de-uso .termos-texto) {
	padding-block: 70px;
	color: var(--corTexto);
}
:is(.politica-de-privacidade .politica-texto, .termos-de-uso .termos-texto) h1 {
	font-size: 2.25rem;
        color: var(--corTitulo);
}

:is(.politica-de-privacidade .politica-texto, .termos-de-uso .termos-texto) hr {
	height: 2px;
	background-color: #515151;
	border: none;
	margin-bottom: 1rem;
}

:is(.politica-de-privacidade .politica-texto, .termos-de-uso .termos-texto) a {
	font-weight: bold;
	color: var(--primary);
	text-decoration: none;
}

:is(.politica-de-privacidade .politica-texto, .termos-de-uso .termos-texto)
	a:hover {
	font-weight: bold;
	color: var(--primary-hover);
}
.btn-vermais {
	margin: 15px auto;
}

.grecaptcha-badge {
	display: none;
}