
:root{
	--primary: #0B1D63;
	--accent: #2D4EA3;
	--orange: #F2A15A;
	--light-blue: #86C5F5;
	--dark: #0A0A0A;
	--bg: #FFFFFF;
}

body{
	font-family: system-ui, -apple-system, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Arial, 'Helvetica Neue', sans-serif;
	color: #1f2937;
	background: var(--bg);
}

.navbar-brand img{
	height:48px;
}
.navbar{
	background: #ffffffd9;
	backdrop-filter: saturate(150%) blur(6px);
}
.navbar .btn{
	border-radius: 999px;
	padding:.5rem 1rem;
}

.hero {
	position: relative;
	overflow: hidden;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.carousel-item,
.hero-bg {
	min-height: 100dvh;
}

.hero-bg {
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 1;
}

.hero-content {
	/*position: relative;*/
	z-index: 2;
	padding-top: 6rem;
	padding-bottom: 6rem;
}


.destinos-recomendados img {
	width: 100%;
	height: 250px; /* ou outro valor que funcione bem no layout */
	object-fit: cover;
	border-radius: 8px;
}

.badge-soft{
	background: rgba(255,255,255,.2);
	border:1px solid rgba(255,255,255,.35);
	color:#fff;
	padding:.35rem .65rem;
	border-radius: 999px;
	font-weight:600;
}
.beneficios-img {
	width: 48px;
}

.servicos-img {
	width: 148px;
}

.btn-primary{
	background: var(--orange);
	border-color: var(--orange);
}
.btn-primary:hover{
	background: #ec8f36;
	border-color: #ec8f36;
}
.btn-outline-primary{
	border-color: var(--orange);
	color: var(--orange);
}
.btn-outline-primary:hover{
	background: var(--orange);
	color:#fff;
}

.section-title{
	font-weight:800;
	color: var(--primary);
}
.highlight{
	color: var(--orange);
}

.icon-circle{
	width: 52px;
	height: 52px;
	border-radius: 50%;
	display:flex;
	align-items:center;
	justify-content:center;
	background: rgba(13,110,253,.08);
}

.card{
	background-color: #f4eee2;
	border:1px solid #f4eee2;
	border-radius: 16px;
}

.testimonial{
	background:#f8fafc;
	border-radius:16px;
	padding:1rem;
}

.faq-item button{
	font-weight: 600;
}

.footer{
	background:#0e1326;
	color:#cbd5e1;
}
.footer a{
	color:#e2e8f0;
	text-decoration:none;
}
.footer a:hover{
	text-decoration:underline;
}

.float-wa{
	position:fixed;
	right:18px;
	bottom:18px;
	z-index:1000;
	display:flex;
	align-items:center;
	gap:.5rem;
}
.float-wa .btn{
	box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

@media (max-width: 991.98px) {
	.hero-content {
		position: absolute;
		inset: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		padding: 1rem;
		z-index: 2;
	}

	.hero {
		padding-bottom: 0;
	}

	.hero .carousel-inner {
		min-height: 75vh;
	}
}