:root{
	--branco: #FFFFFF;
	--vinho-claro: #F6CBCB;
	--vinho-medio: #5B1212;
	--vinho-escuro: #3D0E10;
	--cinza-light: #F6F6F6;
	--cinza-claro: #00000029;
	--cinza-medio: #707070;
	--cinza-escuro: #343434;
	--bege-claro: #F5F5F5;
	--bege-medio: #F2F1DA;

	--padding-x-global: 6.25rem;
	--padding-x-global-mobile: 2rem;
	--section-y-global: 3rem;
	--section-y-global-mobile: 2rem;
	
	--Spinnaker: "Spinnaker", sans-serif;
	--Readex-Pro: "Readex Pro", sans-serif;

	--h1-fs: 3.8rem;
	--h1-lh: 1.2em;
	--h2-fs: 3rem;
	--h2-lh: 1.2em;
	--h3-fs: 2.3rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.8rem;
	--h4-lh: 1.em;
	--h5-fs: 1.4em;
	--h5-lh: 1.2em;
	--h6-fs: 1.2rem;
	--h6-lh: 1.2em; 

	--h1-fs-mobile: 3rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 2.5rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 2rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.8rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.4em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.2rem;
	--h6-lh-mobile: 1.2em; 
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Readex-Pro);
	font-size: calc(12px + 0.390625vw);
	line-height: 2;
}

a, a:hover {
	text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
    padding: 0;
}

button.btn,
button.btn:active,
button.btn:focus,
input:active,
input:focus,
textarea:active,
textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

button.btn:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.form-control:focus {
    box-shadow: none;
}

.main {
	overflow: hidden;
    padding-top: 0;
}

.anchor {
	position: absolute;
	top: -80px;
}

.wrapper {
	padding: var(--section-y-global) 0;
	overflow: hidden;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
	padding: 0 var(--padding-x-global);
	max-width: 100rem;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	font-family: var(--Spinnaker);
	font-weight: 400;
}

.h1, h1 {
	font-size: var(--h1-fs);
	line-height: var(--h1-lh);
}

.h2, h2 {
	font-size: var(--h2-fs);
	line-height: var(--h2-lh);
}

.h3, h3 {
	font-size: var(--h3-fs);
	line-height: var(--h3-lh);
}

.h4, h4 {
	font-size: var(--h4-fs);
	line-height: var(--h4-lh);
}

.h5, h5 {
	font-size: var(--h5-fs);
	line-height: var(--h5-lh);
}

.h6, h6 {
	font-size: var(--h6-fs);
	line-height: var(--h6-lh);
}

.btn.btn-default {
	position: relative;
    width: 250px;
    height: 50px;
	border: 0;
    border-radius: 25px;
    transition: 0.5s;
	overflow: hidden;
}

.btn.btn-default .back,
.btn.btn-default .front {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 25px;
	transition: 0.5s;
}

.btn.btn-default .back {
	width: calc(100% - 2px);
    height: calc(100% - 2px);
    left: 1px;
    top: 1px;
	background-color: var(--vinho-medio);
	color: var(--bege-medio);
}

.btn.btn-default .front {
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	background: var(--bege-medio);
	color: var(--vinho-medio);
}

.btn.btn-default.inverse .back {
	background: var(--bege-medio);
	color: var(--vinho-medio);
}

.btn.btn-default.inverse .front {
	background-color: var(--vinho-medio);
	color: var(--bege-medio);
}

.btn.btn-default:hover .front {
	transform:translatex(-90%);
}

header {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

header .navbar {
	padding: 0;
	background-color: var(--branco);
	border-bottom-left-radius: 45px;
	border-bottom-right-radius: 40px;
	color: var(--vinho-medio);
}

header .navbar-brand {
	position: relative;
	height: 80px;
	background-color: var(--vinho-medio);
	color: var(--branco);
	border-bottom-left-radius: 40px;
	border-top-right-radius: 40px;
}

header .navbar-brand .grad,
header .navbar-brand .grad:before,
header .navbar-brand .grad:after {
	content: '';
    position: absolute;
    display: block;
    height: 80px;
	width: 100%;
    left: 7px;
    top: 0;
    background-color: var(--vinho-medio);
	border-bottom-left-radius: 40px;
	border-top-right-radius: 40px;
    opacity: 0.75;
}

header .navbar-brand .grad:before {
	left: 14px;
	opacity: 0.5;
}

.navbar-brand:focus, .navbar-brand:hover {
	color: var(--branco);
}

header .navbar-brand .logo {
	position: relative;
	display: flex;
    flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	padding: 1rem 3rem 1rem 6rem;
	text-align: center;
	z-index: 1;
}

header .navbar-brand .logo .top-text {
	font-family: var(--Spinnaker);
	font-size: 18px;
}

header .navbar-brand .logo .bottom-text {
	font-family: var(--Spinnaker);
	font-size: 10px;
}

header .navbar .menu {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

header .navbar .menu li {
	margin-left: 30px; 
}

header .navbar .menu li a {
	font-family: var(--Spinnaker);
	border: 3px solid transparent;
    padding: 2px 7px 5px;
    transition: 0.3s;
}

header .navbar .menu li a:hover {
	background-color: var(--bege-medio);
}

header .navbar .menu-btn {
	position: absolute;
	right: 0;
	margin-right: 6rem;
	transition: 0.5s;
}

header .navbar .menu-btn.open {
	transform: rotatez(225deg);
}

header #offcanvasContact {
	background-color: var(--cinza-medio);
	color: var(--branco);
	padding: 1.5rem 3rem 1rem;
	width: 30%;
	min-width: var(--bs-offcanvas-width);
}

header .offcanvas-backdrop {
	background-color: var(--vinho-escuro);
}

header #offcanvasContact .offcanvas-header .btn {
	position: absolute;
	right: 1rem;
	top: 3.75rem;
	color: var(--branco);
}

header #offcanvasContact .offcanvas-header .btn .fa-circle-xmark {
	font-size: 20px;
}

header #offcanvasContact .offcanvas-body p {
	font-size: 16px;
    line-height: 1.5;
}

header .wpcf7-form input,
header .wpcf7-form textarea {
	width: 100%;
	height: 40px;
	margin-top: 1rem;
	padding: 0.5rem 1rem;
	border: none;
}

header .wpcf7-form textarea {
	height: 120px;
}

header .wpcf7-form input::placeholder,
header .wpcf7-form textarea::placeholder {
	color: var(--cinza-claro);
}

header .wpcf7-form input.btn-default {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	margin: 0;
/* 	padding: 0; */
	background-color: var(--branco);
	color: var(--vinho-medio);
	border-radius: 25px;
	transform:translatex(-10%);
	transition: 0.5s;
}

header .wpcf7-form .wrapper-btn {
	position: relative;
	display: block;
	height: 50px;
	width: 100%;
	background-color: var(--branco);
	border-radius: 25px;
	overflow: hidden;
}

header .wpcf7-form .overlay-btn {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: var(--bege-medio);
	color: var(--vinho-medio);
	border-radius: 25px;
	transition: 0.5s;
	cursor: pointer;
	pointer-events: none;
}

header .wpcf7-form .wrapper-btn:hover .overlay-btn {
	transform:translatex(-90%);
}

header .wpcf7-form .wrapper-btn:hover input.btn-default {
	transform:translatex(0);
}

header .wpcf7-form .wrapper-btn .wpcf7-spinner {
	position: absolute;
	right: -10px;
	top: 50%;
	transform: translateY(-50%);
}

header .wpcf7-form .wpcf7-not-valid-tip {
	height: 0;
	color: var(--vinho-claro);
	font-size: 14px;
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
	position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
/*  border-color: var(--vinho-claro);
    background: var(--vinho-claro); */
	border-color: red;
    background: red;
    border-radius: 10px;
/*  color: var(--vinho-escuro); */
	color: var(--branco);
	margin-top: 1rem;
/* 	font-size: 14px; */
	margin: 0;
	z-index: 9999;
}

.wpcf7 form.sent .wpcf7-response-output {
	position: fixed;
    top: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
	border-color: green;
    border-radius: 10px;
    background: green;
	margin-top: 1rem;
/* 	font-size: 14px; */
	margin: 0;
	z-index: 9999;
}

header #offcanvasMenu {
	width: 250px;
    height: 500px;
    top: 60px;
	background: rgb(91, 18, 18, 0.9);
	color: var(--branco);
    border-bottom-left-radius: 250px;
    border-top-left-radius: 250px;
    align-items: flex-end;
    justify-content: center;
    border: 0;
}

header #offcanvasMenu .offcanvas-body {
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: end;
    padding-right: 2.5rem;
}

header #offcanvasMenu .offcanvas-body .menu li {
	margin: 1rem 0; 
}

header #offcanvasMenu .offcanvas-body .menu li a {
    font-size: 18px;
	color: var(--bege-medio);
	border-bottom: 1px solid transparent;
	transition: 0.3s;
}

header #offcanvasMenu .offcanvas-body .menu li a:hover {
	border-bottom: 1px solid var(--bege-medio);
}

footer {
	position: relative;
	background-color: var(--bege-medio);
	border-top: 7px solid var(--vinho-medio);
	color: var(--vinho-medio);
	overflow: hidden;
}

footer .row {
	position: relative;
	z-index: 1;
}

footer .dots-svg {
	position: absolute;
	top: 3rem;
	left: 3rem;
	width: 10%;
}

footer .labirinto-svg {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

footer .semi-circle-svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 20%;
}

footer .menu {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2rem 0;
}

footer .menu li {
	margin: 0 1.5rem;
}

footer .menu li a,
footer .link-policy {
	font-family: var(--Spinnaker);
	border-bottom: 1px solid transparent;
	transition: 0.3s;
}

footer .menu li a:hover,
footer .link-policy:hover {
	border-bottom: 1px solid var(--vinho-medio);
}

footer .socials {
	margin: 1rem 0;
}

footer .socials li {
	margin: 0 .5rem;
}

footer .socials li i {
	font-size: 28px;
}

footer .developed {
	margin-top: 1rem;
	text-align: center;
}

footer .developed span {
	font-size: 10px;
	margin-right: 1rem;
}

.preloader {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--bege-medio);
	color: var(--vinho-medio);
	z-index: 9999;
	transition: 1s;
}

@media(max-width: 1320px) {
	
	header .navbar .menu {
		display: none;
	}
	
}

@media(max-width: 768px) {
	
	* {
		font-size: calc(14px + 0.390625vw);
	}
	
	.wrapper {
		padding: var(--section-y-global-mobile) 0;
	}
	
	.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        padding: 0 var(--padding-x-global-mobile);
    }
	
	.h1, h1 {
		font-size: var(--h1-fs-mobile);
		line-height: var(--h1-lh-mobile);
	}

	.h2, h2 {
		font-size: var(--h2-fs-mobile);
		line-height: var(--h2-lh-mobile);
	}

	.h3, h3 {
		font-size: var(--h3-fs-mobile);
		line-height: var(--h3-lh-mobile);
	}

	.h4, h4 {
		font-size: var(--h4-fs-mobile);
		line-height: var(--h4-lh-mobile);
	}

	.h5, h5 {
		font-size: var(--h5-fs-mobile);
		line-height: var(--h5-lh-mobile);
	}

	.h6, h6 {
		font-size: var(--h6-fs-mobile);
		line-height: var(--h6-lh-mobile);
	}
	
	header .container-fluid {
		padding: 0;
	}
	
	header .navbar {
		border-bottom-left-radius: 65px;
		border-bottom-right-radius: 0;
	}
	
	header .navbar-brand {
		height: 60px;
		border-bottom-left-radius: 60px;
		border-top-right-radius: 60px;
	}
	
	header .navbar-brand .grad,
	header .navbar-brand .grad:before,
	header .navbar-brand .grad:after {
		height: 60px;
		left: 7px;
		border-bottom-left-radius: 60px;
		border-top-right-radius: 60px;
	}
	
	header .navbar-brand .logo {
		padding: 1rem 3rem 1rem 3rem;
	}

	header .navbar-brand .logo .top-text {
		font-size: 16px;
	}

	header .navbar-brand .logo .bottom-text {
		font-size: 8px;
	}
	
	header .navbar .menu-btn {
		position: absolute;
		right: 0;
		margin-right: 2.5rem;
	}
	
	header .navbar .menu-btn img {
		height: 35px;
	}
	
	footer .menu {
		display: flex;
		flex-direction: column;
	}
	
	footer .menu li {
		margin: 0.5rem 1.5rem;
	}
	
}

@media(max-width: 576px) {
	
	footer .labirinto-svg {
		top: 50%;
		right: -8rem;
		height: 100%;
		transform: rotateZ(-20deg);
	}

	footer .dots-svg {
		top: 1.5rem;
		left: auto;
		right: 3rem;
		width: 15%;
	}

	footer .semi-circle-svg {
		top: 5.5rem;
		bottom: 0;
		left: -6rem;
		width: 50%;
		transform: rotatez(75deg);
	}
	
	.wpcf7 .wpcf7-response-output {
		width: 100%;
		max-width: calc(100% - 2rem);
	}
	
}