:root {
	--bg: #f3efe4;
	--bg-soft: #ece5d6;
	--text: #1f1a14;
	--text-soft: #4e4639;
	--accent: #b34b1e;
	--accent-2: #db8b2d;
	--deep: #0f2a24;
	--card: #fffdf7;
	--border: rgba(20, 16, 10, 0.12);
	--radius: 18px;
	--shadow: 0 20px 45px rgba(11, 9, 6, 0.12);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Manrope", sans-serif;
	background:
		radial-gradient(circle at 85% 20%, rgba(219, 139, 45, 0.25), transparent 35%),
		radial-gradient(circle at 15% 85%, rgba(179, 75, 30, 0.2), transparent 40%),
		var(--bg);
	color: var(--text);
	line-height: 1.6;
}

img {
	display: block;
	max-width: 100%;
}

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

.container {
	width: min(1120px, 92vw);
	margin: 0 auto;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	backdrop-filter: blur(10px);
	background: rgba(243, 239, 228, 0.82);
	border-bottom: 1px solid var(--border);
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.2rem;
	min-height: 78px;
}

.brand-logo {
	width: 170px;
	height: auto;
}

.logo-badge-header {
	/* background: linear-gradient(140deg, rgba(255, 253, 247, 0.95), rgba(242, 232, 212, 0.92)); */
	/* border: 1px solid rgba(31, 26, 20, 0.1); */
	/* border-radius: 14px; */
	padding: 0.4rem 0.55rem;
	/* box-shadow: 0 8px 18px rgba(18, 14, 8, 0.12); */
}

.logo-badge {
	background: linear-gradient(140deg, rgba(255, 253, 247, 0.95), rgba(242, 232, 212, 0.92));
	border: 1px solid rgba(31, 26, 20, 0.1);
	border-radius: 14px;
	padding: 0.4rem 0.55rem;
	box-shadow: 0 8px 18px rgba(18, 14, 8, 0.12);
}

.brand-logo,
.footer-logo {
	mix-blend-mode: multiply;
	filter: contrast(1.08) saturate(1.02);
}

.nav {
	display: flex;
	gap: 1.4rem;
	font-weight: 700;
}

.nav a {
	position: relative;
	font-size: 0.95rem;
}

.nav a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -3px;
	width: 0;
	height: 2px;
	background: var(--accent);
	transition: width 0.25s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
	width: 100%;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 999px;
	padding: 0.8rem 1.25rem;
	border: 1px solid transparent;
	font-weight: 800;
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
	transform: translateY(-2px);
}

.btn-primary,
.btn-whatsapp {
	background: linear-gradient(135deg, var(--accent), var(--accent-2));
	color: #fff;
	box-shadow: 0 10px 22px rgba(179, 75, 30, 0.35);
}

.btn-ghost {
	border-color: var(--text);
	color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
	background: rgba(31, 26, 20, 0.08);
}

.hero {
	position: relative;
	min-height: 82vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.hero-image,
.hero-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.hero-image {
	object-fit: cover;
	filter: saturate(1.05) contrast(1.02);
}

.hero-overlay {
	background:
		linear-gradient(100deg, rgba(9, 19, 17, 0.78) 28%, rgba(9, 19, 17, 0.4) 64%, rgba(9, 19, 17, 0.18)),
		linear-gradient(to top, rgba(9, 19, 17, 0.55), transparent 40%);
}

.hero-content {
	position: relative;
	z-index: 1;
	color: #f9f4ea;
	max-width: 720px;
	animation: rise 0.9s ease forwards;
}

.eyebrow {
	letter-spacing: 0.13em;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 0.8rem;
	margin-bottom: 0.9rem;
}

h1,
h2,
h3 {
	font-family: "Bebas Neue", sans-serif;
	font-weight: 400;
	line-height: 1.04;
	letter-spacing: 0.02em;
}

h1 {
	font-size: clamp(2.5rem, 5vw, 5rem);
}

h2 {
	font-size: clamp(2rem, 4vw, 3.4rem);
	margin-bottom: 1rem;
}

h3 {
	font-size: clamp(1.3rem, 2.3vw, 2rem);
}

.hero-text {
	margin: 1.2rem 0 1.6rem;
	max-width: 62ch;
}

.hero-cta-group {
	display: flex;
	flex-wrap: wrap;
	gap: 0.85rem;
}

.trust-strip {
	background: var(--deep);
	color: #f6f1e8;
	padding: 2rem 0;
}

.trust-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.2rem;
}

.trust-grid article {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: var(--radius);
	padding: 1.1rem;
}

.section {
	padding: clamp(3.3rem, 7vw, 6rem) 0;
}

.split {
	display: grid;
	grid-template-columns: 1.3fr 1fr;
	gap: 2rem;
	align-items: start;
}

.about-card {
	background: var(--card);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	padding: 1.5rem;
}

.about-card ul {
	list-style: none;
	margin: 1rem 0 1.4rem;
	display: grid;
	gap: 0.75rem;
}

.about-card li {
	position: relative;
	padding-left: 1.1rem;
}

.about-card li::before {
	content: "";
	position: absolute;
	top: 0.58rem;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent);
}

.cards {
	margin-top: 1.3rem;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.route-card {
	background: linear-gradient(160deg, #fffdf7, #efe5d3);
	border: 1px solid var(--border);
	border-radius: var(--radius);
	padding: 1.2rem;
	min-height: 250px;
	box-shadow: var(--shadow);
}

.route-image {
	width: 100%;
	height: 230px;
	object-fit: cover;
	border-radius: 12px;
	margin-bottom: 0.85rem;
	border: 1px solid rgba(20, 16, 10, 0.1);
}

.gallery-head {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 1rem;
}

.gallery-controls {
	display: flex;
	gap: 0.55rem;
}

.control {
	width: 44px;
	height: 44px;
	border: 1px solid var(--border);
	border-radius: 999px;
	background: #fff;
	font-size: 1.15rem;
	cursor: pointer;
}

.carousel {
	margin-top: 1.2rem;
	border-radius: calc(var(--radius) + 4px);
	overflow: hidden;
	border: 1px solid var(--border);
	box-shadow: var(--shadow);
	position: relative;
	background: #110f0d;
	width: min(92vw, 620px);
	margin-left: auto;
	margin-right: auto;
}

.track {
	display: flex;
	transition: transform 0.5s ease;
}

.slide {
	min-width: 100%;
	position: relative;
	aspect-ratio: 1 / 1;
}

.slide img.photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slide img.brand-stamp {
	position: absolute;
	right: 12px;
	bottom: 12px;
	width: clamp(70px, 10vw, 110px);
	opacity: 0.92;
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.45));
}

.dots {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
}

.dot {
	width: 11px;
	height: 11px;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: rgba(255, 255, 255, 0.35);
	cursor: pointer;
}

.dot.active {
	background: #fff;
}

.cta {
	padding-top: 1rem;
}

.cta-wrap {
	background: linear-gradient(130deg, #0f2a24, #1f3d35 68%, #27463e);
	color: #fcf8ef;
	border-radius: 24px;
	padding: clamp(1.5rem, 4vw, 2.4rem);
	display: flex;
	gap: 1rem;
	align-items: center;
	justify-content: space-between;
}

.btn-large {
	padding: 1rem 1.5rem;
	white-space: nowrap;
}

.video-section {
	padding: 0;
}

.video-wrap {
	position: relative;
	width: 100%;
	min-height: 100vh;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.video-bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.video-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(120deg, rgba(9, 8, 6, 0.78) 30%, rgba(9, 8, 6, 0.45) 65%, rgba(9, 8, 6, 0.25)),
		linear-gradient(to top, rgba(9, 8, 6, 0.65), transparent 50%);
}

.video-content {
	position: relative;
	z-index: 1;
	color: #f9f4ea;
	max-width: 760px;
	padding: clamp(4rem, 10vw, 7rem) 0;
}

.video-content h2 {
	color: #fff;
	margin-bottom: 1.1rem;
}

.video-text {
	max-width: 58ch;
	margin-bottom: 1.6rem;
	font-size: 1.05rem;
	line-height: 1.7;
}

.site-footer {
	margin-top: 2.2rem;
	border-top: 1px solid rgba(255, 255, 255, 0.15);
	background:
		radial-gradient(circle at 100% 0%, rgba(219, 139, 45, 0.16), transparent 30%),
		linear-gradient(130deg, #0f2923, #143c34 58%, #1a473d);
}

.footer-inner {
	min-height: 150px;
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	gap: 1.4rem;
	padding: 1.4rem 0;
}

.footer-logo {
	width: clamp(120px, 13vw, 165px);
}

.site-footer p {
	color: rgba(255, 249, 238, 0.98);
	line-height: 1.45;
}

.footer-info {
	display: grid;
	gap: 0.42rem;
}

.footer-title {
	color: #ffffff;
	font-weight: 800;
	letter-spacing: 0.06em;
	font-size: 1.14rem;
}

.footer-subtitle {
	color: rgba(255, 249, 238, 0.98);
	font-weight: 650;
}

.footer-location {
	font-size: 0.95rem;
	color: #fff;
}

.footer-chips {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
}

.footer-chip {
	display: inline-flex;
	align-items: center;
	padding: 0.42rem 0.72rem;
	border-radius: 999px;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: rgba(6, 16, 14, 0.35);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
}

.footer-chip:hover,
.footer-chip:focus-visible {
	background: rgba(6, 16, 14, 0.6);
}

.footer-meta,
.footer-copy {
	font-size: 0.86rem;
	color: rgba(255, 247, 232, 0.92);
}

.footer-cta {
	align-self: center;
	white-space: nowrap;
	box-shadow: 0 10px 22px rgba(179, 75, 30, 0.38);
}

.whatsapp-float {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 30;
	padding: 0.85rem 1.2rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #1e9f53, #17c56d);
	color: #fff;
	font-weight: 800;
	box-shadow: 0 12px 28px rgba(18, 102, 56, 0.35);
	animation: pulse 1.8s ease infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
	transform: translateY(-2px);
	animation: none;
}

@keyframes pulse {
	0%,
	100% {
		box-shadow: 0 12px 28px rgba(18, 102, 56, 0.35);
	}

	50% {
		box-shadow: 0 12px 34px rgba(18, 102, 56, 0.6);
	}
}

@keyframes rise {
	from {
		opacity: 0;
		transform: translateY(25px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (max-width: 980px) {
	.nav {
		display: none;
	}

	.split,
	.cards,
	.trust-grid,
	.cta-wrap {
		grid-template-columns: 1fr;
		display: grid;
	}

	.hero {
		min-height: 70vh;
	}
}

@media (max-width: 640px) {
	.brand-logo {
		width: 136px;
	}

	.header-inner {
		min-height: 70px;
	}

	.btn-whatsapp {
		display: none;
	}

	.hero-cta-group .btn {
		width: 100%;
	}

	.footer-inner {
		grid-template-columns: 1fr;
		text-align: center;
		padding: 1rem;
	}

	.footer-brand,
	.footer-cta {
		justify-self: center;
	}

	.footer-chips {
		justify-content: center;
	}

	.whatsapp-float {
		right: 12px;
		bottom: 12px;
		padding: 0.75rem 1rem;
		font-size: 0.92rem;
	}
}
