/* ANIMATIONS AOS CLONE */
/* Estado base para todos os elementos animados */
[data-anime] {
	opacity: 0;
	transition: all 0.8s ease; /* Duração padrão */
	will-change: transform, opacity; /* Otimização de performance */
}

/* Quando a classe 'animate' for adicionada via JS, o elemento aparece */
[data-anime].animate {
	opacity: 1;
	transform: translate3d(0, 0, 0) !important; /* Força a posição original */
}

/* --- Tipos de Animação --- */

/* Fade Up (Vem de baixo) */
[data-anime="fade-up"] {
	transform: translate3d(0, 50px, 0);
}

/* Fade Down (Vem de cima) */
[data-anime="fade-down"] {
	transform: translate3d(0, -50px, 0);
}

/* Fade Left (Vem da direita para esquerda) */
[data-anime="fade-left"] {
	transform: translate3d(50px, 0, 0);
}

/* Fade Right (Vem da esquerda para direita) */
[data-anime="fade-right"] {
	transform: translate3d(-50px, 0, 0);
}

/* Zoom In */
[data-anime="zoom-in"] {
	transform: scale(0.8);
}

/* LOADING ANIMAÇÃO */
.preloader {
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
/* 	background: var(--preto); */
	background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
	color: var(--verde);
	z-index: 99999;
	transition: 1s;
}

@keyframes spin2 { 
	0% {transform: rotatey(0deg);}
	100% {transform: rotatey(360deg);}
}

#logo{
	animation: spin2 2s linear infinite;
}

#logo:before {
	content: "";
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	filter: blur(6px);
}

/* GERAIS */
:root {

	--azul-claro: #16A6B1;
	--azul-medio: #097880;
	--azul-escuro: #003F43;
	--cinza: #141414B5;
	--preto: #404142;
	--branco: #FFFFFF;

	--text: #181717;

	--padding-x-global: 3.25rem;
	--padding-x-global-mobile: 1.5rem;
	--section-y-global: 4.5rem;
	--section-y-global-minimo: 0;
	--section-y-global-mobile: 2.5rem;

	--Lora: "Lora", serif;
	--Open-Sans: "Open Sans", sans-serif;
	--Montserrat: "Montserrat", sans-serif;

	--h1-fs: 3.5rem;
	--h1-lh: 1.2em;
	--h2-fs: 2.2rem;
	--h2-lh: 1.2em;
	--h3-fs: 1.8rem;
	--h3-lh: 1.2em;
	--h4-fs: 1.375rem;
	--h4-lh: 1.2em;
	--h5-fs: 1rem;
	--h5-lh: 1.2em;
	--h6-fs: 1.125rem;
	--h6-lh: 1.2em; 

	--h1-fs-mobile: 2rem;
	--h1-lh-mobile: 1.2em;
	--h2-fs-mobile: 1.75rem;
	--h2-lh-mobile: 1.2em;
	--h3-fs-mobile: 2rem;
	--h3-lh-mobile: 1.2em;
	--h4-fs-mobile: 1.375rem;
	--h4-lh-mobile: 1.2em;
	--h5-fs-mobile: 1.25em;
	--h5-lh-mobile: 1.2em;
	--h6-fs-mobile: 1.125rem;
	--h6-lh-mobile: 1.2em; 

	--bs-offcanvas-mobile-padding-x: 2rem
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--Lora);
	font-weight: 400;
}

body{
	background-color: var(--branco);
}

a{
	transition: 0.5s;
	text-decoration: none;
	color: inherit;
}

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

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

.list-style ul{
	list-style: disc;
	list-style-position: inside;
}

.list-style ul li{
	margin-bottom: 2rem;
}

.container-xlarge{
	width: 100%;
	max-width: 80rem;
	/* 	max-width: 76rem; */
}

.container-xlarge.left{
	margin-right: auto;
}

.container-xlarge.right{
	margin-left: auto;
}

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

@media(max-width: 586px){
	.container-xlarge{
		padding: 0 var(--padding-x-global-mobile);
	}

	.margin-top {
		margin-top: 2rem;
	}

	.margin-bottom {
		margin-bottom: 2rem;
	}

	.dflex.justify-center{
		display: flex;
		justify-content: center;
	}

}

/* DIVISOR DE SEÇÕES */
.wrapper {
	padding: var(--section-y-global) 0;
	overflow: hidden;
}

.wrapper.minimo {
	padding: var(--section-y-global-minimo);
}

@media(max-width: 586px){
	.wrapper {
		padding: var(--section-y-global-mobile) 0;
		overflow: hidden;
	}
}

/* RESPONSIVIDADE ELEMENTOS */
.mobile{
	display: none;
}

@media(max-width: 568px){
	.desktop{
		display: none;
	}
	.mobile{
		display: block;
	}
}

#main{
	margin-top: 5rem;
}


/* TITULOS */
h1, h2,
.h1, .h2 {
	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);
}

.subtitle{
	margin-bottom: 1rem;
	font-weight: 600;
	color: var(--azul-medio);
}


.title{
	margin-bottom: 3rem;
	font-weight: 500;
	color: var(--azul-medio);
}

@media(max-width: 568px){
	.h2, h2 {
		font-size: var(--h2-fs-mobile);
		color: var(--azul-escuro);
		font-weight: 500;
	}

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

}

/* BANNER HOME */
#main-banner {
	height: 100vh;
	position: relative;
}

#main-banner .swiper {
	height: 100%;
}

#main-banner .container,
#main-banner .wrapper {
	height: 100%;
}

.mask-main-banner {
	background: transparent linear-gradient(71deg, #000000 0%, #141414B5 31%, #54545400 100%) 0% 0% no-repeat padding-box;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0.6;
	z-index: 1;
}

#main-banner img{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	object-fit: cover;

}

#main-banner #image-mobile{
	display: none;
}

#main-banner .wrapper-slide{
	align-items: end;
}

#main-banner .text-banner {
	z-index: 1;
}

#main-banner .title {
	color: var(--branco);
	font-size: 2.8rem;
	font-weight: 400;
}

@media(max-width: 998px){
	#main-banner.banner img,
	#main-banner.carrossel img {
		object-position: center;
	}

	#main-banner.banner .row{
		align-content: space-between;
	}

}

@media(max-width: 586px){
	#main-banner #image-desktop{
		display: none;
	}

	#main-banner #image-mobile{
		display: block;
	}

	#main-banner .title {
		font-size: var(--h1-fs-mobile);
	}

	.swiper-horizontal>.swiper-pagination-bullets, 
	.swiper-pagination-bullets.swiper-pagination-horizontal, 
	.swiper-pagination-custom, 
	.swiper-pagination-fraction {
		width: 100%;
		left: inherit;
		right: inherit;
		bottom: 2rem;
	}

}

/* BULLETS CARROSSEL */
.swiper-horizontal>.swiper-pagination-bullets, 
.swiper-pagination-bullets.swiper-pagination-horizontal, 
.swiper-pagination-custom, 
.swiper-pagination-fraction {
	width: fit-content;
	left: inherit;
	right: 5rem;
	bottom: 2rem;

}

.gallery .swiper-horizontal>.swiper-pagination-bullets, 
.gallery .swiper-pagination-bullets.swiper-pagination-horizontal, 
.gallery .swiper-pagination-custom, 
.gallery .swiper-pagination-fraction {
	width: fit-content;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.swiper-pagination-bullet {
	width: 26px;
	height: 26px;
	border-radius: 1rem;
	background: #FFFFFFBF 0% 0% no-repeat padding-box;
	opacity: 1;
	transition: 1s;
}

.swiper-pagination-bullet-active {
	width: 46px;
}

.zoom-screen{
	width: 40px;
	height: 40px;
	z-index: 10;
	position: absolute;
	bottom: 1rem;
	right: 1rem;
	cursor: pointer;
}

.zoom-screen.up{
	top: 1rem;
}

@media(max-width: 586px){
	.swiper-pagination-bullet {
		width: 12px;
		height: 12px;
	}

	.swiper-pagination-bullet-active {
		width: 24px;
	}

	.zoom-screen{
		top: 1rem;
	}

}

/* GALERIA DE IMAGENS */
.galeria-imagens{
	height: 450px;
}

.galeria-imagens.min-height{
	height: 300px;
}

.galeria-imagens img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media(max-width: 586px){
	.galeria-imagens {
		height: 200px;
	}

	.margin-top {
		margin-top: 2rem;
	}

	.margin-bottom {
		margin-bottom: 2rem;
	}
}


/* BOTÃO PADRÃO*/
.btn.btn-default {
	transition: 0.8s;
	border: 1px solid transparent;
	background-color: var(--azul-claro);
	border-radius: 0;
	text-transform: capitalize;
	font-family: var(--Montserrat);
	color: var(--branco);
	letter-spacing: 0.8px;
	padding: 0.5rem 1rem;
}

.btn.btn-default:hover {
	background-color: var(--azul-medio);
	color: var(--branco);
}

.btn.btn-default-2 {
	transition: 0.8s;
	border: 1px solid transparent;
	background-color: var(--azul-medio);
	border-radius: 0;
	text-transform: capitalize;
	font-family: var(--Montserrat);
	color: var(--branco);
	letter-spacing: 0.8px;
	padding: 0.5rem 1rem;
}

.btn.btn-default-2:hover {
	background-color: var(--azul-escuro);
	color: var(--branco);
}

.btn-link{
	text-decoration: none;
	color: var(--azul-claro);
}


.btn-link.underline{
	text-decoration: underline;
	color: var(--azul-claro);
}

/* HEADER */
header {
	background: transparent;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	transition: background-color 0.3s ease;
}

header.scrolled {
	background-color: rgba(8,91,125, 0.7);
	backdrop-filter: blur(5px);
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
}

header .navbar {
	margin: 0.8rem 0;
}

header.scrolled .navbar {
	margin: 0;
	transition: 0.5s;
}

header .navbar-brand img{
	height: 60px;
}

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

header .navbar .menu {
	display: flex;

}

header .navbar .menu .menu-item {
	font-size: 1rem;
	font-weight: 400;
	margin-left: 3rem;
	position: relative;
	color: var(--branco);
}

header.scrolled .navbar .menu .menu-item {
	color: var(--branco);
}

header .navbar .menu-item a:hover:before {
	opacity: 1;
}

header .navbar .menu-item a:before {
	content: "";
	position: absolute;
	display: block;
	bottom: 0;
	left: 15%;
	width: 70%;
	height: 2px;
	background: var(--azul-claro);
	border-radius: 4px;
	opacity: 0;
	transition: .5s;
}

/* MENU MOBILE CLASSE AZUL*/
.text-azul {
	color: var(--azul-claro) !important;
}

/* TRANSIÇÃO DE COR DO MENU MOBILE */
#menu-btn {
	transition: color 0.3s ease;
}

header .menu-btn i{
	font-size: 2rem;
}

header .menu-btn {
	display: none;	
}

/* RESPONSIVIDADE HEADER */
@media(max-width: 998px){

	header {
		position: fixed;
	}

	header.scrolled {
		background-color: var(--azul-medio);
	}

	header .navbar.desktop-menu .btn.btn-default,
	header .navbar.desktop-menu .menu-header-container {
		display: none;
	}

	header .navbar {
		margin: 0;
	}

	#offcanvasMenu {
		background: var(--azul-escuro);
		color: #00929A;
		width: 80%;
		z-index: 99999;
	}

	.offcanvas .offcanvas-body {
		padding: 2rem 0 0 0;
	}

	.offcanvas .offcanvas-body .menu .sub-menu {
		margin-left: 2rem;
	}

	.offcanvas .offcanvas-body .menu li {
		border-bottom: 1px solid #FFFFFF33;
		border-top: 1px solid #FFFFFF33;
		padding: 0.8rem 0 0.8rem 1.2rem;
		font-size: 1.5rem;
	}

	#redes-sociais h4{
		color: var(--branco);
		margin-bottom: 2rem;
	}

	#redes-sociais i{
		font-size: 2.5rem;
		color: yellow;
	}

	.offcanvas-header .btn-close {
		margin-right: 1rem;
	}

	.offcanvas .btn-close i{
		color: var(--branco);
		font-size: 2rem;
	}

	header .menu-btn {
		display: block;	
	}

}

/* POSTS */
.single-post{
	margin-bottom: 2rem;
}

.single-post .post-image{
	overflow: hidden;
	position: relative;
	height: 19.063rem;
}

.single-post .post-image:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.single-post .post-image img {
	position: absolute;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition-duration: 800ms;
}

.link-portfolio{
	width: 2rem;
	height: 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: 5px;
	right: 5px;
	background-color: var(--azul-claro);
	border-radius: 50%;
}

.link-portfolio i{
	color: var(--branco);
}

/* TÓPICOS DE SERVIÇOS */
.topics{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 20px;
}

@media(max-width: 586px){
	.topics {
		grid-template-columns: repeat(3, 1fr);
	}

}

/* FOOTER */
footer{
	color: var(--branco);
	background: var(--azul-escuro);
	margin-top: 8rem;
}

footer ul{
	list-style: none;
}

footer ul li{
	margin-bottom: 1rem;
}

.wrapper-footer{
	padding: 4rem 0;
}

.logo-footer .navbar-brand img{
	height: 7rem;
}

.box-menu-footer{
	padding-top: 3rem;
}

footer .icons i{
	font-size: 1.5rem;
}

#redes-sociais h5{
	color: var(--azul-medio);
	margin-bottom: 2rem;
}

#redes-sociais i{
	font-size: 2.5rem;
	color: yellow;
}

.icons small{
	font-size: 1rem;
}

.border-footer{
	margin: 0 auto;
	height: 1px;
	background: var(--branco);
	width: 80%;
}

.footer-credits{
	margin: 0 auto;
	width: 80%;
	padding: 1rem 0;
	justify-content: end;
}

.feature{
	text-align: right;
}

.elemento-mobile{
	display: none;
}

.publicacoes{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	margin-top: 3rem;
}

@media(max-width: 586px){
	.wrapper-footer {
		text-align: center;
	}

	.elemento-desktop,
	.menu-footer{
		display: none;
	}

	.box-contact{
		margin: 2rem 0;
	}

	.box-contact > div > a,
	.reservas > div > a{
		justify-content: center;
	}

	.box-contact > div > a:nth-of-type(1){
		margin: 0 auto;
		width: 60%;
	}

	.elemento-mobile{
		display: block;
	}

	.footer-credits{
		text-align: center;
	}

	.publicacoes{
		grid-template-columns: repeat(2, 100px);
		justify-content: center;
	}


}

/* MODAL RESERVAS */
.modal-body {
	height: 450px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	color: var(--branco);
	position: relative;
}

.modal-body picture:nth-of-type(1),
.background-image-modal {
	max-width: 100%;
	height: auto;
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: contain;
	z-index: -1;
}

.footer-image-modal {
	width: 100px;
	margin-top: 2rem;
}

.modal button{
	background: transparent;
	border: none;
	color: aqua;
	font-size: 25px;
	padding: 0;
	text-align: right;
	margin-right: 30px;
}
