:root {
	--corpo: #e2e0db;
	--verde-escuro: #304236;
	--verde-medio: #465949;
	--verde-claro: #618262;
	--eucalipto: #e2d6c3;
	--madeira: #be6629;
	--ceramica: #ba5826;
	--terracota: #9c371b;
}

body {
	background: var(--corpo);
	font-family: 'Public Sans', sans-serif;
	font-weight: 400;
	font-size: .9rem;
	scroll-behavior: smooth;
}

.container {
	padding: 0 1.5rem;
}

h1, h2, h3, h4, h5, h6 {
	font-family: neulis-neue, sans-serif;
}

header {
	/* background: url('../../landing-sutilezas/images/background.webp'); */
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	height: 70dvh;
}

#hero {
	height: 80vh;
}

#logo {
	text-align: center;
	height: 30px;
}

#logo-footer {
	height: 28px;
}

#btn-menu {
	cursor: pointer;
}

#btn-menu #hamburger {
	margin: 9px 0;
	position: relative;
	width: 28px;
	height: 2px;
	background-color: #fff;
}

#btn-menu #hamburger::before {
	content: '';
	position: absolute;
	bottom: 7px;
	width: 28px;
	height: 2px;
	background-color: #fff;
}

#btn-menu #hamburger::after {
	content: '';
	position: absolute;
	top: 7px;
	width: 14px;
	height: 2px;
	background-color: #fff;
}

.light-link-custom {
	color: var(--eucalipto);
	font-size: 1.05rem;
	transition: .3s;
}

.light-link-custom:hover {
	color: #fff;
}

/* Card de produto */
.product-wrap {
	position: relative;
	width: 100%;
	height: 300px;
	overflow: hidden;
	transition: .5s ease-in-out;
	box-shadow: 1rem 1rem 2rem rgba(0, 0, 0, .5);
}

.product-wrap:hover {
	width: 150%;
	cursor: pointer;
}

.product-wrap .img-product {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-wrap .overlay-product {
	position: absolute;
	left: 0;
	top: 0;
	transform: translateX(-50%);
	transition: .5s ease-in-out;
}

.product-wrap:hover .overlay-product {
	transform: translateX(0);
}

.product-wrap .container-bottom p {
	height: auto;
	opacity: 1;
}

.product-wrap .container-bottom {
	background: linear-gradient(135deg, var(--verde-escuro), #021407);
}

.product-container {
	overflow: hidden;
}

.product-container img {
	transition: .5s ease-in-out;
}

.product-container:hover img {
	transform: scale(1.2);
}

/* Botões */
.btn-custom {
	padding: .5rem 1rem;
	text-decoration: none;
	text-align: center;
	display: inline-block;
	transition: .3s;
}

.btn-outline-light-custom {
	color: #222;
	border: 1px solid #222;
}

.btn-outline-light-custom:hover {
	color: #fff;
	background-color: #222;
}

.btn-dark-custom {
	color: #fff;
	background-color: #ba5826;
	border: 1px solid #ba5826;
}

.btn-dark-custom:hover {
	color: #fff;
	background-color: #9c371b;
	border: 1px solid #9c371b;
}

/* Backgrounds */
.bg-light-custom {
	background-color: var(--eucalipto);
}

.bg-primary-custom {
	background-color: var(--verde-escuro);
}

.bg-secondary-custom {
	background-color: var(--terracota);
}

/* Textos */
.hero-title {
	font-size: 2.15rem;
	font-weight: 300;
    line-height: 1.2;
}

.text-primary-custom {
	color: var(--verde-escuro);
}

.text-light-custom {
	color: var(--eucalipto);
}

.text-white-70 {
	color: rgba(255, 255, 255, 0.7);
}

.title {
	font-size: 2.5rem;
}

.texture {
	font-size: 1rem;
	text-transform: uppercase;
	font-weight: 300;
}

.vertical-text {
	writing-mode: sideways-lr;
}

.text-sm {
	font-size: .57rem;
}

#main-block h4 {
	font-size: 1rem;
}

#main-content h1 {
	font-size: 1.4rem;
}

.text-small {
	font-size: .8rem;
}

#aquarela-title h4 {
	font-size: 1.15rem;
}

#aquarela-title img {
	height: 24px;
}

/* Espaçamentos */
.pt-custom {
	padding-top: 3rem;
}

.pb-custom {
	padding-bottom: 3rem;
}

.py-custom {
	padding: 3rem 0;
}

.mt-custom {
	margin-top: 3rem;
}

.mb-custom {
	margin-bottom: 3rem;
}

.my-custom {
	margin: 3rem 0;
}

/* Vídeo responsivo */
.videoEmbed {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow-x: hidden;
}

.videoEmbed iframe {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.video-cover {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.focus-container .focus img {
	opacity: 0;
	transition: .3s ease-out;
}

.focus-container:hover .focus img {
	opacity: 1;
	padding: 0 1rem;
}

.pictogram {
	height: 12px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#hamburger {
	position: relative;
	width: 28px;
	height: 1px;
	background-color: #fff;
}

#hamburger::before {
	content: '';
	position: absolute;
	bottom: 8px;
	width: 28px;
	height: 1px;
	background-color: #fff;
}

#hamburger::after {
	content: '';
	position: absolute;
	top: 8px;
	width: 28px;
	height: 1px;
	background-color: #fff;
}

#menu {
	opacity: 0;
	position: fixed;
	top: 0;
	right: -100%;
	bottom: 0;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5rem !important;
	background-color: var(--verde-escuro);
	transition: .3s ease;
}

#menu ul {
	display: flex;
	flex-direction: column;
}

#menu li {
	font-size: 2rem;
}

#menu.active {
	opacity: 1;
	right: 0;
}

.animada li {
  	opacity: 0;
  	transform: translateX(50px);
  	animation: entrar 0.4s forwards;
}

.animada li:nth-child(1) { animation-delay: 0.4s; animation-timing-function: cubic-bezier(); }
.animada li:nth-child(2) { animation-delay: 0.5s; animation-timing-function: cubic-bezier(); }
.animada li:nth-child(3) { animation-delay: 0.6s; animation-timing-function: cubic-bezier(); }
.animada li:nth-child(4) { animation-delay: 0.7s; animation-timing-function: cubic-bezier(); }
.animada li:nth-child(5) { animation-delay: 0.8s; animation-timing-function: cubic-bezier(); }

@keyframes entrar {
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

/* Media queries */
@media (min-width: 778px) {
	.product-wrap {
		width: 46%;
	}

	.product-wrap:hover {
		width: 70%;
	}

	.text-responsive {
		color: #fff;
	}

	.product-wrap .container-bottom p {
		height: 0;
		opacity: 0;
		transition: opacity 1s ease-in-out;
	}

	.product-wrap:hover .container-bottom p {
		height: auto;
		opacity: 1;
	}

	.product-wrap .container-bottom {
		background: none;
	}

	.product-wrap:hover .container-bottom {
		background: linear-gradient(135deg, var(--verde-escuro), #021407);
	}
}

@media (min-width: 992px) {
	#aquarela-title h4 {
		font-size: calc(1.275rem + .3vw);
	}

	#aquarela-title img {
		height: 36px;
	}

	#menu {
		opacity: 1;
		position: static;
		display: flex;
		justify-content: end;
		padding: 0 !important;
		background-color: initial;
		transition: .3s ease;
	}

	#menu ul {
		display: flex;
		flex-direction: row;
	}

	#menu img {
		display: none;
	}

	#hamburger {
		display: none;
	}

	/*#menu li {
		font-size: 2rem;
	}

	#menu.active {
		opacity: 1;
		right: 0;
	} */
}

@media (min-width: 1200px) {
	body {
		font-size: initial;
		background-size: 100%;
	}

	header {
		height: 85dvh;
	}

	#hero {
		height: 100vh;
	}
	
	.container {
		padding: initial;
	}

	#logo {
		height: 48px;
	}

	#logo-rodape {
		height: 24px;
	}

	.product-wrap {
		width: 60%;
		height: 520px;
	}

	.product-wrap:hover {
		width: 150%;
	}

	.video-wrapper {
  		padding-top: 56.25%;
	}

	/* Textos */
	.hero-title {
		font-size: 4.5rem;
	}

	.title-product {
		font-size: 3.5rem;
		font-weight: 600;
	}

	.text-sm {
		font-size: .8rem;
	}

	.texture {
		font-size: 1.25rem;
	}

	#main-block h4 {
		font-size: calc(1.275rem + .3vw);
	}

	#main-content h1 {
		font-size: 2.5rem;
	}

	/* Espaçamentos */
	.pt-custom {
		padding-top: 6.25rem;
	}

	.pb-custom {
		padding-bottom: 6.25rem;
	}

	.py-custom {
		padding: 6.25rem 0;
	}

	.mt-custom {
		margin-top: 6.25rem;
	}

	.mb-custom {
		margin-bottom: 6.25rem;
	}

	.my-custom {
		margin: 6.25rem 0;
	}

	.card-superflora {
		width: 50%;
	}

	.pictogram {
		height: 18px;
	}
}