/*------------------------------------------------------------------
PADRAO BEGIN - ESTRUTURA CSS

1. CONFIGURAÇÕES HEADER AND FOOTER
    1.0 Template default CSS
	1.1	Variables
	1.2	Mixins
	1.3	Flexbox
	1.4	Reset
2.  Helper Css
3.  Header Section
4.  Footer Style
5.  Inject Index Body
-------------------------------------------------------------------*/


/* INICIO CONFIGURAÇÕES HEADER AND FOOTER 1.0 Template default CSS 	1.1	Variables 	1.2	Mixins	1.3	Flexbox	1.4	Reset */

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: Arial, sans-serif;
}

/* Estilizando o menu */
.header__menu ul {
	list-style: none;
	display: flex;
	align-items: center;
}

/* Links do menu */
.header__menu ul li {
	position: relative;
	margin: 0 15px;
}

/* Estilizando a imagem do perfil */
.profile-icon {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	transition: transform 0.3s ease;
}

/* Animação na imagem do perfil ao abrir o dropdown */
.profile-dropdown.active .profile-icon {
	transform: scale(1.1);
}

/* Dropdown oculto inicialmente */
.dropdown-menu {
	position: absolute;
	top: 100%;
	right: 0;
	background: #fff;
	width: 200px;
	border-radius: 8px;
	box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
	list-style: none;
	padding: 10px 0;
	display: none;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Links dentro do dropdown */
.dropdown-menu li {
	font-size: 14px !important;
	padding: 10px 15px;
}

/* Estilo dos links */
.dropdown-menu a {
	font-size: 14px !important;
	text-decoration: none;
	color: #333;
	display: block;
	transition: background 0.3s ease;
}

/* Efeito hover no dropdown */
.dropdown-menu a:hover {
	background: #f1f1f1;
}

/* Quando ativo, mostrar dropdown */
.profile-dropdown.active .dropdown-menu {
	display: block;
	opacity: 1;
	transform: translateY(0);
}

/*----------------------------------------*/
/* Template default CSS
/*----------------------------------------*/

html,
body {
	height: 100%;
	font-family: "Lato", sans-serif;
	-webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	color: #111111;
	font-weight: 400;
	font-family: "Lato", sans-serif;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 36px;
}

h3 {
	font-size: 30px;
}

h4 {
	font-size: 24px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 16px;
}

p {
	font-size: 20px;
	font-family: "Lato", sans-serif;
	color: #5c5c5c;
	font-weight: 400;
	line-height: 25px;
	margin: 0 0 15px 0;
}

img {
	max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
	outline: none;
}

a:hover,
a:focus {
	text-decoration: none;
	outline: none;
	color: #ffffff;
}

ul,
ol {
	padding: 0;
	margin: 0;
}

/*---------------------
  Helper CSS
-----------------------*/

.section-title {
	margin-bottom: 80px;
	text-align: center;
}

.section-title h2 {
	font-weight: 700;
	color: #323232;
	line-height: 46px;
	margin-bottom: 20px;
}

.section-title P {
	margin-bottom: 0;
}

.set-bg {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}

.spad {
	padding-top: 100px;
	padding-bottom: 100px;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
	color: #fff;
}

/* buttons */


.primary-btn {
	display: inline-block;
	font-size: 15px;
	padding: 14px 40px 12px;
	color: #ffffff;
	text-transform: uppercase;
	font-weight: 700;
	background: #004aad;
	border-radius: 2px;
	letter-spacing: 1px;
}

.site-btn {
	font-size: 15px;
	color: #ffffff;
	font-weight: 700;
	text-transform: uppercase;
	display: inline-block;
	padding: 14px 30px 12px;
	background: #004aad;
	border: none;
	letter-spacing: 1px;
	border-radius: 2px;
}

/* Preloder */

#preloder {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 999999;
	background: #000;
}

.loader {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -13px;
	margin-left: -13px;
	border-radius: 60px;
	animation: loader 0.8s linear infinite;
	-webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

@-webkit-keyframes loader {
	0% {
		-webkit-transform: rotate(0deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}

	50% {
		-webkit-transform: rotate(180deg);
		border: 4px solid #673ab7;
		border-left-color: transparent;
	}

	100% {
		-webkit-transform: rotate(360deg);
		border: 4px solid #f44336;
		border-left-color: transparent;
	}
}

.spacial-controls {
	position: fixed;
	width: 111px;
	height: 91px;
	top: 0;
	right: 0;
	z-index: 999;
}

.spacial-controls .search-switch {
	display: block;
	height: 100%;
	padding-top: 30px;
	background: #323232;
	text-align: center;
	cursor: pointer;
}

.search-model {
	display: none;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: #000;
	z-index: 99999;
}

.search-model-form {
	padding: 0 15px;
}

.search-model-form input {
	width: 500px;
	font-size: 40px;
	border: none;
	border-bottom: 2px solid #333;
	background: 0 0;
	color: #999;
}

.search-close-switch {
	position: absolute;
	width: 50px;
	height: 50px;
	background: #333;
	color: #fff;
	text-align: center;
	border-radius: 50%;
	font-size: 28px;
	line-height: 28px;
	top: 30px;
	cursor: pointer;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

/*---------------------
  Header
-----------------------*/

.header__top {
	background: #182143;
}

.header__top__widget {
	padding: 11px 0 14px;
}

/* Cor a letra*/
.header__top__widget li {
	font-size: 15px;
	color: #004aad;
	display: inline-block;
	margin-right: 50px;
	position: relative;
	list-style: none;
}

.header__top__widget li::after {
	position: absolute;
	right: -32px;
	top: 0;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	content: "";
}

.header__top__widget li:last-child {
	margin-right: 0;
}

.header__top__widget li:last-child:after {
	display: none;
}

.header__top__widget li i {
	font-size: 18px;
	color: #004aad;
	margin-right: 8px;
}

.header__logo {
	padding: 5px 0;
}

.header__logo a img {
	max-width: 450px;
	height: auto;
	transition: all 0.3s ease-in-out;
}

.header__logo a {
	display: inline-block;
}

.header__nav {
	text-align: right;
	padding: 38px 0 33px;
}

.header__menu {
	display: inline-block;
	/*text-transform: uppercase;*/
}

.header__menu ul li {
	list-style: none;
	display: inline-block;
	margin-right: 65px;
	position: relative;
}

.header__menu ul li.active a:after {
	width: 100%;
	opacity: 1;
}

.header__menu ul li:hover a:after {
	width: 100%;
	opacity: 1;
}

/*.header__menu ul li:hover .dropdown {*/
/*	top: 36px;*/
/*	opacity: 1;*/
/*	visibility: visible;*/
/*}*/

/* Cor fundo*/
.header__menu ul li .dropdown {
	position: absolute;
	left: 0;
	top: 56px;
	width: 180px;
	background: #FFFFFF;
	text-align: left;
	padding: 5px 0;
	z-index: 9;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.header__menu ul li .dropdown li {
	display: block;
	margin-right: 0;
}

/* Cor a letra*/
.header__menu ul li .dropdown li a {
	font-size: 14px;
	color: #004aad;
	font-weight: 400;
	padding: 10px 20px;
}

.header__menu ul li .dropdown li a:after {
	display: none;
}

/* Cor a letra*/
.header__menu ul li a {
	font-size: 22px;
	color: #004aad;
	font-weight: 700;
	display: block;
	padding: 5px 0;
	position: relative;
}

/* Cor do fundo*/
.header__menu ul li a:after {
	position: absolute;
	left: 0;
	bottom: 0;
	height: 2px;
	width: 0%;
	background: white;
	content: "";
	opacity: 0;
	-webkit-transition: all, 0.5s;
	-o-transition: all, 0.5s;
	transition: all, 0.5s;
}

.header__search {
	display: inline-block;
}

.header__search i {
	font-size: 18px;
	color: #323232;
	cursor: pointer;
}


.offcanvas-menu-wrapper {
	display: none;
}

.canvas__open {
	display: none;
}


/*---------------------
  Footer
-----------------------*/
/* fundo*/
.footer {
	background: #ffffff;
	padding-top: 40px;
}

.footer__about {
	margin-bottom: 30px;
}

/*letra*/
.footer__about p {
	color: #004aad;
	text-align: center;
}

.footer__logo {
	margin-bottom: 25px;
}

.footer__logo a img {
	width: 262px;
	height: 86px;
}

.footer__logo a {
	display: inline-block;
}

.footer__widget {
	margin-bottom: 30px;
}

.footer__widget.footer__widget--social li a {
	-webkit-transition: all, 0.3s;
	-o-transition: all, 0.3s;
	transition: all, 0.3s;
}

/*fundo*/
.footer__widget.footer__widget--social li a:hover {
	color: #ffffff;
}

.footer__widget.footer__widget--address p {
	margin-bottom: 10px;
}

/*letra*/
.footer__widget.footer__widget--address li {
	line-height: 30px;
	font-size: 15px;
	color: #004aad;
}

/*letra*/
.footer__widget h5 {
	font-size: 20px;
	font-weight: 700;
	color: #004aad;
	margin-bottom: 26px;
}

.footer__widget ul li {
	list-style: none;
}

/*letra*/
.footer__widget ul li a {
	font-size: 15px;
	color: #004aad;
	line-height: 38px;
}

.footer__widget ul li a i {
	margin-right: 6px;
}

/*letra*/
.footer__widget p {
	color: #004aad;
}

.footer__copyright {
	border-top: 1px solid rgba(112, 112, 112, 0.1);
	padding: 18px 0 15px;
	margin-top: 20px;
}

.footer__copyright__links li {
	list-style: none;
	display: inline-block;
	line-height: 20px;
	position: relative;
	margin-right: 45px;
}

.footer__copyright__links li:last-child {
	margin-right: 0;
}

.footer__copyright__links li:last-child::after {
	display: none;
}

/*letra*/
.footer__copyright__links li:after {
	position: absolute;
	right: -28px;
	top: 0;
	height: 100%;
	width: 1px;
	background: #004aad;
	content: "";
}

/*letra*/
.footer__copyright__links li a {
	font-size: 15px;
	color: #004aad;
}

.footer__copyright__text {
	text-align: right;
}

.footer__copyright__text p {
	color: #004aad;
	margin-bottom: 0;
}

.footer__copyright__text i {
	color: #941515;
}

.footer__copyright__text a {
	color: #004aad;
}


/*---------------------
 SECTION INDEX DEFAULT
-----------------------*/
/* Fundo degradê no Main PADRAO*/
.main-container-index {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	width: 100%;
	background: linear-gradient(to bottom, #004aad, #0b93f2, #ffffff);
	padding: 20px;
}

.form-wrapper-custom {
	max-width: 1400px !important;
	margin: 24px auto !important;
	padding: 30px !important;
	background: white !important;
	border-radius: 12px !important;
	box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.4) !important;
	font-family: 'Arial', sans-serif !important;
	text-align: center !important;
}

.title-custom {
	font-size: 24px !important;
	font-weight: bold !important;
	text-align: center !important;
	color: #004aad !important;
	font-family: 'Lato', sans-serif !important;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px !important;
	/* Ajuste o valor conforme necessário */
}

/* PADRAO END */

/* REGISTER PROFILE */
.body-container {
	font-family: Arial, sans-serif;
	display: flex;
	justify-content: space-between;
	margin: 0;
	padding: 0;
}

.image-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 10px;
	border: 2px solid transparent;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
	transition: border 0.3s;
	width: 150px;
	flex-shrink: 0;
}

.image-container img {
	width: 100px;
	height: 100px;
	object-fit: cover;
}

.image-container label {
	margin-top: 10px;
	font-family: "Lato", sans-serif;
	font-size: 14px;
	margin-bottom: 10px;
}


.image-container.selected {
	border: 2px solid #007BFF;
	width: 163px;
	height: 148px;
}

.bodyFormCard {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #007BFF;
	/* Fundo azul */
	display: flex;
	justify-content: left;
	align-items: center;
	min-height: 25vh;
	/* Ajusta a altura para ocupar toda a tela */
	padding: 20px;
	/* Adiciona espaçamento interno para evitar bordas cortadas */
	box-sizing: border-box;
}

.card {
	position: relative;
	background-color: #FFFFFF;
	border: 4px solid #D3D3D3;
	border-radius: 8px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	padding: 20px;
	/* Aumenta o espaçamento interno */
	width: 100%;
	/* Adapta-se ao contêiner */
	text-align: left;
}

.card h1 {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 1rem;
	/* Tamanho relativo */
	margin: 0;
	font-family: "Lato", sans-serif;
	font-weight: normal;
}

.card p {
	margin-top: 10px;
	font-size: 0.8rem;
	/* Tamanho relativo */
	color: #333333;
}

.form-wrapper-custom .button-group-custom {
	display: flex !important;
	justify-content: space-between !important;
	align-items: center !important;
	margin-top: 25px !important;
}

.form-wrapper-custom .submit-btn-custom,
.back-btn-custom {
	padding: 12px 25px !important;
	border: none !important;
	border-radius: 6px !important;
	font-size: 15px !important;
	cursor: pointer !important;
	transition: background 0.3s, transform 0.2s !important;
}

.form-wrapper-custom .submit-btn-custom {
	background: #007BFF !important;
	color: white !important;
}

.form-wrapper-custom .submit-btn-custom:hover {
	background: #0056b3 !important;
	transform: scale(1.05) !important;
}

.form-wrapper-custom .back-btn-custom {
	background: #004aad !important;
	color: white !important;
}

.form-wrapper-custom .back-btn-custom:hover {
	background: #999 !important;
	transform: scale(1.05) !important;
}

.section-custom.top-right {
	position: relative;
	/*background: white; */
	padding: 10px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.top-left-icon {
	position: absolute;
	left: 10px;
	top: 1px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	margin-bottom: 20px !important;
}

.form-wrapper-custom .section-custom {
	padding: 20px !important;
	margin-bottom: 20px !important;
	border-bottom: 1px solid #ddd !important;
}


.validation-options {
	display: flex;
	align-items: center;
	gap: 15px;
}

.validation-options label {
	display: flex;
	align-items: center;
	gap: 5px;
	font-size: 14px;
	color: #333;
}

.validation-options .validate {
	font-weight: bold;
	margin-right: 10px;
}

/*--------------------------------- Responsive Media Quaries -----------------------------*/
/* Responsividade Index Section RegisterProfile */


/* Responsividade */
@media (max-width: 768px) {
	.form-wrapper-custom {
		width: 90% !important;
		padding: 20px !important;
	}

	.title-custom {
		font-size: 20px !important;
	}
}

/* Consulta de mídia para telas menores */
@media (max-width: 768px) {
	.card {
		padding: 15px;
		border: 2px solid #D3D3D3;
		/* Reduz a espessura da borda */
	}

	.card h1 {
		font-size: 1rem;
		/* Reduz o tamanho da fonte */
	}

	.card p {
		font-size: 0.9rem;
		/* Reduz o tamanho da fonte */
	}
}

/* Responsividade */
@media (max-width: 1024px) {
	.form-wrapper-custom .input-group-container {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.form-wrapper-custom {
		width: 90% !important;
		padding: 20px !important;
	}

	.form-wrapper-custom .input-group-container {
		grid-template-columns: repeat(1, 1fr) !important;
	}

	.form-wrapper-custom .button-group-custom {
		flex-direction: column !important;
		gap: 10px !important;
	}

	.form-wrapper-custom .submit-btn-custom,
	.back-btn-custom {
		width: 100% !important;
		text-align: center !important;
	}
}



@media (max-width: 480px) {
	.form-wrapper-custom .title-custom {
		font-size: 18px !important;
	}

	.form-wrapper-custom .input-group-custom label {
		font-size: 14px !important;
	}

	.form-wrapper-custom .input-group-custom input,
	.form-wrapper-custom .input-group-custom select {
		font-size: 14px !important;
		padding: 10px !important;
	}
}

@media (max-width: 1024px) {
	.form-wrapper-custom .input-group-container {
		grid-template-columns: repeat(2, 1fr) !important;
	}
}

@media (max-width: 768px) {
	.form-wrapper-custom {
		width: 90% !important;
		padding: 20px !important;
	}

	.form-wrapper-custom .input-group-container {
		grid-template-columns: repeat(1, 1fr) !important;
	}

	.form-wrapper-custom .button-group-custom {
		flex-direction: column !important;
		gap: 10px !important;
	}

	.form-wrapper-custom .submit-btn-custom,
	.back-btn-custom {
		width: 100% !important;
		text-align: center !important;
	}
}

@media (max-width: 480px) {
	.form-wrapper-custom .title-custom {
		font-size: 18px !important;
	}

	.form-wrapper-custom .input-group-custom label {
		font-size: 14px !important;
	}

	.form-wrapper-custom .input-group-custom input,
	.form-wrapper-custom .input-group-custom select {
		font-size: 14px !important;
		padding: 10px !important;
	}
}



@media only screen and (min-width: 1200px) {
	.container {
		max-width: 1170px;
	}
}

/* Medium Device = 1200px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.header__menu ul li {
		margin-right: 40px;
	}
}

/* Tablet Device = 768px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
	.footer__copyright__links li {
		margin-right: 30px;
	}

	.footer__copyright__links li:after {
		right: -20px;
	}

	.header .container {
		position: relative;
	}

	.header__top {
		display: none;
	}

	.header__nav {
		display: none;
	}
}

/* Wide Mobile = 480px */
@media only screen and (max-width: 767px) {
	.footer__copyright__links {
		text-align: center;
		margin-bottom: 20px;
	}

	.footer__copyright__text {
		text-align: center;
	}

	.header .container {
		position: relative;
	}

	.header__top {
		display: none;
	}

	.header__nav {
		display: none;
	}

	@media (max-width: 768px) {
		.header__logo img {
			max-width: 140px;
		}
	}

	@media (max-width: 480px) {
		.header__logo img {
			max-width: 120px;
		}
	}

	@media (max-width: 768px) {
		.body-container {
			flex-wrap: wrap;
			/* Permite que os itens quebrem para a próxima linha em telas menores */
			justify-content: center;
			/* Centraliza os itens */
		}

		.image-container {
			width: 120px;
			/* Reduz o tamanho dos contêineres em telas menores */
			margin: 5px;
		}

		.image-container img {
			width: 80px;
			/* Reduz o tamanho das imagens em telas menores */
			height: 80px;
		}
	}
}

/* Search Result Styles */

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #222222;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 24px;
    padding: 8px 0;
    transition: color 0.2s;
}

.back-button:hover {
    color: #717171;
}

.listing-header {
    margin-bottom: 24px;
}

.listing-title {
    font-size: 32px;
    font-weight: 600;
    color: #222222;
    margin-bottom: 8px;
    line-height: 1.25;
}

.listing-subtitle {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #717171;
    font-size: 16px;
    margin-bottom: 16px;
}

.rating {
    display: flex;
    align-items: center;
    font-size: 20px !important;
    font-weight: 700 !important;
    gap: 4px;
}

.star {
    color: #0b93f2 !important;
    font-size: 20px;
}

.location {
    color: #717171;
}

/* Photo Gallery Styles - VERSÃO OTIMIZADA */

.photo-gallery {
    margin-bottom: 48px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.photos-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 8px;
    height: 560px;
}

/* Ajuste: os filhos diretos do wrapper devem ter as classes */
.photos-grid > div {
    display: contents; /* Faz o wrapper "desaparecer" no grid */
}

.main-photo {
    grid-row: 1 / 3;
    grid-column: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.main-photo:hover img {
    transform: scale(1.05);
}

.side-photo {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    grid-column: 2;
}

/* Remove os nth-of-type que não funcionam devido à estrutura */
.side-photo:nth-child(2) {
    grid-row: 1;
}

.side-photo:nth-child(3) {
    grid-row: 2;
}

.side-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.side-photo:hover img {
    transform: scale(1.05);
}

.show-all-photos {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: white;
    border: 1px solid #222222;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
}

.show-all-photos:hover {
    background: #f7f7f7;
    transform: scale(1.02);
}

/* Responsive para photo gallery */
@media (max-width: 768px) {
    .photos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 300px 150px 150px;
        height: auto;
    }

    .main-photo {
        grid-row: 1;
        grid-column: 1;
    }

    .side-photo {
        grid-column: 1;
    }

    .side-photo:nth-of-type(2) {
        grid-row: 2;
    }

    .side-photo:nth-of-type(3) {
        grid-row: 3;
    }
}

@media (max-width: 480px) {
    .photos-grid {
        height: auto;
        grid-template-rows: 250px 120px 120px;
    }
}

        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 80px;
            align-items: start;
        }

        .host-info {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 0 0 24px 0;
            border-bottom: 1px solid #dddddd;
        }

        .host-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, #0b93f2, #0878c7);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            font-size: 18px;
        }

        .host-details h3 {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .host-details p {
            color: #717171;
            font-size: 16px;
        }

        .description-section {
            text-align: justify;
        }

        .description-title {
            font-size: 22px;
            text-weight: 800;
            margin: 14px 0 8px 0;
        }

        .description-text {
            font-size: 16px;
            line-height: 1.5;
            color: #222222;
        }

        .booking-card {
            position: sticky;
            top: 80px;
            border: 1px solid #dddddd;
            border-radius: 12px;
            padding: 24px;
            background: white;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
        }

        .price-section {
            margin-bottom: 24px;
        }

        .price {
            font-size: 22px;
            font-weight: 600;
            color: #222222;
        }

        .price-unit {
            font-weight: 400;
            color: #717171;
        }

        .booking-form {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .date-inputs {
            display: grid;
            grid-template-columns: 1fr 1fr;
            border: 1px solid #b0b0b0;
            border-radius: 8px;
            overflow: hidden;
        }

        .date-input {
            padding: 12px;
            border: none;
            font-size: 14px;
            background: white;
        }

        .date-input:first-child {
            border-right: 1px solid #b0b0b0;
        }

        .date-input:focus {
            outline: none;
            background: #f7f7f7;
        }

        .guests-input {
            border: 1px solid #b0b0b0;
            border-radius: 8px;
            font-size: 14px;
            background: white;
        }

        .guests-input span {
            vertical-align: top;
        }

        .guests-input:focus {
            outline: none;
            border-color: #222222;
        }

        .reserve-button {
            background: linear-gradient(135deg, #0b93f2, #0878c7);
            color: white;
            border: none;
            border-radius: 8px;
            padding: 14px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            margin-top: 8px;
        }

        .reserve-button:hover {
            background: linear-gradient(135deg, #a4cfed, #a4cfed);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(164, 207, 237, 0.3);
        }

        .fee-breakdown {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid #dddddd;
        }

        .fee-row {
            display: flex;
            justify-content: between;
            margin-bottom: 8px;
            font-size: 16px;
        }

        /* Responsive */
        @media (max-width: 950px) {
            .content-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .booking-card {
                position: static;
                margin-top: 40px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 16px;
            }

            .photos-grid {
                grid-template-columns: 1fr;
                grid-template-rows: 300px 150px 150px;
                height: auto;
            }

            .main-photo {
                grid-row: 1;
            }

            .listing-title {
                font-size: 24px;
            }

            .date-inputs {
                grid-template-columns: 1fr;
            }

            .date-input:first-child {
                border-right: none;
                border-bottom: 1px solid #b0b0b0;
            }
        }

        .containerSearchResults {

            background-color: #ffffff;
            max-width: 1120px;
            margin: 0 auto;
            padding: 24px;
        }

        .star {
            color: #0b93f2;
        }

/* ========================================
   MODAL DE FOTOS - ESTILOS
   ======================================== */

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

/* Modal Content */
.modal-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    position: relative;
    width: 70%;
    height: 86%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    padding: 35px 15px 50px;
    z-index: 10000;
}

/* Close Button */
.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #00000080;
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Image Counter */
.image-counter {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 20px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    z-index: 10001;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: calc(100vh - 240px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.carousel-image-wrapper {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-track > div {
    display: flex;
    height: 100%;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Navigation Buttons */
.carousel-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.carousel-nav:active {
    transform: scale(0.95);
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    transform: scale(1);
    background: rgba(255, 255, 255, 0.1);
}

/* Thumbnail Container */
.thumbnail-container {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.thumbnail-track {
    display: flex;
    gap: 8px;
}

.thumbnail-track > div {
    display: flex;
    gap: 8px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    opacity: 0.6;
}

.thumbnail:hover {
    opacity: 1;
    transform: translateY(-4px);
}

.thumbnail.active {
    border-color: white;
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Scrollbar Styling */
.thumbnail-container::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.thumbnail-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 768px) {
    .modal-content {
        padding: 60px 16px 100px;
    }

    .carousel-container {
        height: calc(100vh - 220px);
        gap: 12px;
    }

    .carousel-nav {
        width: 44px;
        height: 44px;
    }

    .carousel-nav svg {
        width: 24px;
        height: 24px;
    }

    .modal-close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .thumbnail {
        width: 60px;
        height: 45px;
    }

    .thumbnail-container {
        bottom: 12px;
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .carousel-nav {
        width: 36px;
        height: 36px;
    }

    .carousel-nav svg {
        width: 20px;
        height: 20px;
    }

    .thumbnail {
        width: 50px;
        height: 38px;
    }
}

/*---------------------
  Testimonial
-----------------------*/

.testimonial {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
	padding-bottom: 260px;
}

.testimonial::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(7px) brightness(0.6);
    transform: scale(1.05);
    z-index: 0;
}

.testimonial .section-title {
	margin-bottom: 60px;
	z-index: 1;
}

.testimonial .section-title h2 {
	color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.testimonial .section-title p {
	color: #ffffff;
	text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.6);
}

.testimonial__carousel {
	margin-top: -265px;
}

.testimonial__item {
	background: #ffffff;
	-webkit-box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
	box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
	border-radius: 2px;
	padding: 0 50px 40px;
}

.testimonial__item img {
	margin-top: -50px;
}

.testimonial__item h5 {
	font-size: 20px;
	color: #323232;
	font-weight: 700;
	margin-top: 20px;
	margin-bottom: 4px;
}

.testimonial__item span {
	display: block;
	font-size: 15px;
	color: #004aad;
	margin-bottom: 25px;
}

.testimonial__item p {
	margin-bottom: 0;
	font-style: italic;
	font-size: 18px;
	line-height: 35px;
}

.testimonial__slider.owl-carousel .col-lg-4 {
	max-width: 100%;
}

.testimonial__slider.owl-carousel .owl-stage-outer {
	padding: 60px 0 30px;
}

.testimonial__slider.owl-carousel .owl-item img {
	display: inline-block;
	width: auto;
}

.testimonial__slider.owl-carousel .owl-dots {
	text-align: center;
	padding-top: 10px;
}

.testimonial__slider.owl-carousel .owl-dots button {
	display: inline-block;
	height: 10px;
	width: 10px;
	background: #818181;
	border-radius: 50%;
	margin-right: 8px;
}

.testimonial__slider.owl-carousel .owl-dots button.active {
	background: #004aad;
}

.testimonial__slider.owl-carousel .owl-dots button:last-child {
	margin-right: 0;
}

 .calendar-section {
    max-width: 900px;
    margin: 20px auto;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.description-title {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin-bottom: 24px;
}

.calendars-container {
    display: flex;
    flex-direction: row !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.calendar-wrapper {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.calendar-wrapper:hover {
    border-color: #0b93f2;
    box-shadow: 0 4px 16px rgba(255, 56, 92, 0.12);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0px 20px 20px 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.calendar-title {
    font-size: 14px;
    font-weight: 600;
    color: #717171;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.month-year {
    display: flex;
    align-items: center;
    gap: 12px;
}

.month-year span {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    min-width: 140px;
    text-align: center;
}

.nav-btn {
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #222;
}

.nav-btn:hover {
    background: #f0f0f0;
    transform: scale(1.1);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day-header {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #717171;
    padding: 8px 0;
}

.day-cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    padding: 5px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    color: #222;
}

.day-cell:not(.empty):not(.disabled):hover {
    background: #f7f7f7;
    transform: scale(1.05);
}

.day-cell.empty {
    cursor: default;
}

.day-cell.disabled {
    color: #d0d0d0;
    cursor: not-allowed;
}

.day-cell.selected {
    background: #0b93f2;
    color: white;
    font-weight: 600;
}

.day-cell.in-range {
    background: #d9edfa;
    color: #222;
}

.day-cell.today {
    border: 2px solid #0b93f2;
}

.selected-dates {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border: 1px solid #e0e0e0;
}

.date-display {
    flex: 1;
}

.date-label {
    font-size: 12px;
    color: #717171;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.date-value {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.date-value.empty {
    color: #b0b0b0;
}

.duration-badge {
    background: linear-gradient(135deg, #0b93f2 0%, #0878c7 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    min-width: 120px;
}

.duration-number {
    font-size: 14px;
    display: block;
}

.duration-label {
    font-size: 12px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .calendars-container {
        grid-template-columns: 1fr;
    }

    .selected-dates {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Grid com 2 colunas e até 4 itens */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.amenity-item {
    display: block;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 20px;
    width: fit-content;
    min-width: 180px;
    border: 1px solid #ccc;
    border-radius: 24px;
}

.amenity-item i {
    font-size: 22px;
}

.show-all-btn {
    margin-top: 16px;
    background-color: #0b93f2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    min-width: 120px;
    cursor: pointer;
    font-weight: 500;
    font-size: 16px;
}

.amenitiesModalContent {
    justify-content: start;
    align-items: start;
    overflow-y: auto;
    overflow-x: hidden;
    width: 26%;
    height: 74%;
    padding: 28px 20px;
    background: #fff;
    border-radius: 8px;
}

/* Oculta setinhas de rolagem nativas (IE/Edge antigo) */
.amenitiesModalContent::-webkit-scrollbar {
    width: 8px;
}

.amenitiesModalContent::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.amenitiesModalContent::-webkit-scrollbar-thumb {
    background-color: #0b93f2;
    border-radius: 4px;
    border: 2px solid #f0f0f0;
}

.amenitiesModalContent {
    scrollbar-width: thin;
    scrollbar-color: #0b93f2 #f0f0f0;
}

.amenitiesModalContent .modal-title {
    font-size: 24px;
    text-align: left;
}

/* Cada item */
.amenitiesModalContent .amenity-item {
    display: flex;               /* flex container */
    align-items: center;         /* centraliza verticalmente */
    justify-content: center;     /* centraliza o conteúdo horizontalmente */
    font-weight: 500;
    font-size: 16px;
    margin: 18px 0;
    padding: 16px 24px;
    border: 0;
    min-width: 100%;
    gap: 12px;                   /* espaçamento entre ícone e texto */
}

/* Ícone à esquerda */
.amenitiesModalContent .amenity-item i {
    margin-left: 32px;
    font-size: 24px;
    flex-shrink: 0;              /* evita que o ícone encolha */
}

/* Texto centralizado */
.amenitiesModalContent .amenity-item span {
    flex: 1;                     /* ocupa o espaço restante */
    text-align: center;          /* centraliza o texto dentro do espaço */
}

.action-button {
    top: 0;
    right: 0;
    color: #fff !important;
    background-color: #0b93f2;
    margin: 14px 20px 0px 0px;
    padding: 3px 6px;
    border-radius: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.action-button i {
    font-size: 24px;
    margin: 8px;
    color: #fff !important;
}

.rent-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.rent-type-select {
    margin-left: 42px;
}

.calendars-container {
    display: grid;
}

.calendars-hidden {
    visibility: hidden;
    position: absolute;
    pointer-events: none;
}
