@import url('variables.css');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:root {
	font-size: 62.5%;
}

/* Style the scrollbar */
::-webkit-scrollbar {
	width: 1rem;
}

::-webkit-scrollbar-track {
	background-color: transparent;
}

::-webkit-scrollbar-thumb {
	background-color: var(--base-color);
	/* border-radius: .5rem; */
}

/* ========================================= */
small.small {
	position: absolute;
	color: white;
	z-index: 10000;
	margin: auto;
	bottom: 0;
	left: 1.5rem;
	font-weight: bolder;
	font-size: 8px;
	width: fit-content;
	height: fit-content;
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	width: 100%;
	height: auto;
}

/* ============BASE================ */
html.scroll-container {
	scroll-behavior: smooth;
}

body {
	font: 400 1.6rem var(--body-font);
	color: var(--text-color);
	/* background: var(--body-color); */
	background-image: url(./assets2/bgv.jpg);
}

/* main {
	margin-top: 10rem;
} */

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

.title {
	font-family: var(--title-font);
	color: var(--base-color);
}

.button {
	background: #eb9d24;
	color: var(--text-color-light);
	height: 5.6rem;
	display: inline-flex;
	align-items: center;
	padding: 0 3.2rem;
	border-radius: 0.4rem;
	font: 500 1.6rem var(--body-font);
	transition: background 0.3s;
}

.button:hover {
	background: #966413;
}

.divider-1 {
	height: 3px;
	background: linear-gradient(
		270deg,
		hsla(var(--hue), 36%, 57%, 1) 0%,
		hsla(var(--hue), 65%, 88%, 0.34) 100%
	);
}

.divider-2 {
	height: 3px;
	background: linear-gradient(
		270deg,
		hsla(var(--hue), 65%, 88%, 0.34) 0%,
		hsla(var(--hue), 36%, 57%, 1) 100%
	);
}

/* ===========LAYOUT=============== */
#header {
	border-bottom: 3px solid var(--base-color);
	padding-inline: 1rem;
	display: flex;
	transition: 2s;
	justify-content: center;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	background-color: var(--base-color2);
}

#header.scroll {
	box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
	background-color: #000000c4;
	transition: box-shadow 1s;
}

/* ==============LOGO=============== */
.logo {
	display: flex;
	align-items: center;
	width: 100%;
	text-align: center;
}

nav .logo img {
	width: var(--header-height);
	transition: 0.5s;
}
.logo-alt{
	background-image: var(--golden-background-image);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	width: fit-content!important;
	height: fit-content!important;
	text-align: start;
}
.logo .logo-alt {
	font-size: 2.5rem;
}

/* ==========NAVIGATION============= */
nav {
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	transition: height 0.5s;
}

nav ul li {
	text-align: center;
}

nav ul li a {
	position: relative;
	transition: color 0.5s;
}

.menu:not(.show) ul li a:hover,
.menu:not(.show) ul li a.active {
	color: var(--base-color);
	font-weight: bold;
	transition: color 0.2s;
}

.menu:not(.show) ul li a::after {
	content: '';
	width: 0%;
	height: 2px;
	background: var(--base-color);
	position: absolute;
	left: 0;
	bottom: 0;
	transition: width 0.2s;
}

.menu:not(.show) ul li a:hover::after,
.menu:not(.show) ul li a.active::after {
	width: 100%;
	font-weight: bold;
}
/* =========MOSTRAR MENU========== */
nav .menu.show ul li a {
	display: block;
	margin-block: 0.8rem;
	width: 100%;
	padding: 0.2rem;
}

nav .menu.show ul {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

nav .menu.show ul li a:hover,
nav .menu.show ul li a.active {
	background-color: var(--base-color);
	border-radius: 8px;
	width: fit-content;
	color: var(--base-color2);
}

.menu:not(.show) ul {
	visibility: hidden;
	width: 0;
	height: 0;
}

nav .menu.show {
	padding-inline: 1rem;
	padding-block: 1rem;
	/* display: block; */
	background-color: var(--base-color2);
	position: absolute;
	top: var(--header-height);
	width: 88%;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	border-radius: 15px;
	border: 2px solid var(--base-color);
}

nav .menu {
	/* position: absolute; */
	top: -28rem;
	transition: top 1s;
}

/* =======TOGGLE MENU=========== */
.toggle {
	color: var(--base-color);
	font-size: 2.4rem;
	cursor: pointer;
}

.hide {
	display: none !important;
}

nav .icon-close {
	position: absolute;
	right: -3rem;
	transition: 0.2s;
	bottom: 1.1rem;
}

.icon-close.show {
	right: 1rem;
}

nav .icon-menu {
	position: absolute;
	right: 1rem;
	transition: 0.2s;
	bottom: 1.1rem;
}

.icon-menu.show {
	right: -3rem;
}
/* ===============INICIO======================= */
#inicio{
	padding-top:10rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
/* =============VANTAGENS================= */
#vantagens {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	height: fit-content;
	padding-block: 5rem;
}
.van-swiper{
	width: 100%;
	overflow: hidden;
}

.van-item {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.van-text {
	text-align: center;
}

.van-item img {
	max-width: 12rem;
}

/* ==================SOBRE========================= */

#sobre {
	/* The URL should be replaced with the path to your image */
	background-image: url('./assets2/sobrenosbg.jpg');
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: fit-content;
	display: flex;
	padding: 5rem 1rem;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
#sobre .logo-alt{
	    color: inherit;
    /* text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3); */
    -webkit-text-stroke: 1px rgba(43, 42, 9, 0.235);
}
#sobre .text {
		display: flex;
	flex-direction: column;
	gap: 2rem;
	text-align: center;
}
/* =======================SIGA========================= */
#siga{
padding-top: 5rem;
	height: fit-content;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2rem;
}


/* ======================CONTACT=============================== */
#contact{
	padding-top:5rem ;
}

#contact .links {
	background: var(--golden-background-image);
	padding: 3rem 0 2rem;
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin: 1.5rem;
}
#contact .contact-links #contact .grid {
	gap: 6.4rem;
}
#contact .text {
	text-align: center;
}
#contact .button {
	margin-block: 2rem;
}

#contact .button i,
#contact ul li i {
	font-size: 2.4rem;
}
#contact ul li i {
	margin-inline: 1rem;
}
#contact ul li {
	margin-left: 1rem;
}

#contact ul {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
#contact ul li {
	display: flex;
	align-items: center;
}

/* /=====================looptext================= */

.div-loop {
	background: var(--base-color);
	width: 100%;
}

.div-loop {
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.div-loop .text-loop {
	display: inline-block;
	margin-block: 1.5rem;
	animation: marquee 5s linear infinite;
	color: var(--text-color-light);
}

@keyframes marquee {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-100%);
	}
}

/* ============FOOTER================ */
footer .logo {
	display: flex;
	flex-direction: column;
	max-width: 15rem;
}

footer {
	background: var(--base-color2);
}

footer div {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 1rem;
}

footer .brand {
	color: var(--text-color-light);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
}

/* ==================back-to-top============= */
.back-to-top {
	position: fixed;
	animation: float 2s ease-in-out infinite;
}
.back-to-top .star {
	width: 3rem;
	height: 3rem;
}
.back-to-top.show {
	left: 1rem;
	bottom: 1rem;
	transform: translateY(0);
	z-index: 5;
	transition: 1s;
}

@keyframes float {
	0% {
		transform: translateY(0px);
	}

	50% {
		transform: translateY(-10px);
	}

	100% {
		transform: translateY(0px);
	}
}

/* ==============WPP================ */
div.wpp {
	width: 8rem;
	position: fixed;
	right: 0rem;
	bottom: 0rem;
	z-index: 1000;
}

.wpp a {
	position: absolute;

	width: 100%;
	height: 8rem;
	opacity: 0;
}

/* =================MEDIA QUERIES============ */
@media (min-width: 1200px) {
	/* ===========inicio====== */
	.menu:not(.show) ul {
	visibility: visible;
	width: fit-content;
	height: fit-content;
}
	/* =================SOBRE================ */
	#sobre {
		justify-content: space-around;
		margin: 0;
		background-size: contain !important;
	}

	#sobre::before {
		background: linear-gradient(
			to right,
			rgb(247, 247, 247),
			#5be8fe96,
			#eb9b248f
		);
	}

	#sobre div.text {
		max-width: 50rem;
		margin-left: 5rem;
	}

	.sobre-img {
		margin-top: 10rem !important;
		width: 30rem;
		height: auto;
		min-width: 0 !important;
		box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.588);
	}

	/* ===============VANTAGENS============ */

	.button {
		height: 5rem;
	}

	nav .menu {
		opacity: 1;
		visibility: visible;
		top: 0;
	}

	nav .menu ul {
		display: flex;
		gap: 2rem;
	}

	nav .menu ul li a.title {
		font: 500 1.6rem var(--body-font);
	}

	nav .icon-menu {
		display: none;
	}

	/* ========CONTACT====== */
	#contact .container {
		grid-auto-flow: column;
		align-items: center;
	}

	#contact.text {
		max-width: 40rem;
	}

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

	footer a.logo img {
		width: 30rem;
	}
}

@media (min-width: 768px) {
	:root {
		--title-font-size: 3.6rem;
		--subtitle-font-size: 1.8rem;
	}

	small.small {
	
		width: fit-content;
		height: fit-content;
		z-index: 1000;
	}

	/* =============VANTAGENS================== */
#vantagens .stars{
	display: flex;
flex-wrap: wrap;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding-top: 1rem;
}
#vantagens .star-container{
	max-width: 30rem;

}
	/* ==================SOBRE========== */
#sobre .text{

	padding-inline: 5rem;
}


	/* =============CONTACT============ */
	#contact div.text {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
		margin-block: 3rem;
	}

	#contact .contact-links a.button {
		margin: .3rem;

	}

	#contact ul {
		flex-direction: row;
		align-items: center;
		justify-content: space-around;
	}
}
