/* Botón menú hamburguesa */
.menu-btn {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 2rem;
	right: 2rem;
	z-index: 100;
}
.menu-btn__bar {
	width: 30px;
	height: 4px;
	background: #fff;
	margin: 4px 0;
	border-radius: 2px;
	transition: all 0.3s;
}
.menu-btn.open .menu-btn__bar:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.open .menu-btn__bar:nth-child(2) {
	opacity: 0;
}
.menu-btn.open .menu-btn__bar:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

/* Normalización */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
	appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template,
[hidden] {
	display: none;
}

/* Estilos generales */
html {
	box-sizing: border-box;
	font-size: 62.5%;
}

*,
*:before,
*:after {
	box-sizing: inherit;
}

body {
	background-image: url(../img/background.jpg);
	background-repeat: repeat;
	font-family: "Poppins", sans-serif;
	font-size: 1.6rem;
	overflow-x: hidden;
	scroll-behavior: smooth;
}

/* Indicador de scroll */
body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 0;
	height: 3px;
	background: linear-gradient(90deg, #a7608a, #ffd700, #a7608a);
	z-index: 9999;
	animation: barraProgreso 1s linear;
	animation-timeline: scroll();
}

@supports (animation-timeline: scroll()) {
	body::before {
		animation: barraProgreso linear;
		animation-timeline: scroll();
	}
}

@keyframes barraProgreso {
	from {
		width: 0%;
	}
	to {
		width: 100%;
	}
}

p {
	font-size: 1.6rem;
	color: #fff;
	line-height: 2;
}

.contenedor {
	width: 85%;
	max-width: 150rem;
	margin: 0 auto;
}

a {
	color: #fff;
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Tipografía */
h1,
h2,
h3 {
	font-family: "Poppins", sans-serif;
	line-height: 1.3;
	margin: 0 0 5rem;
	text-align: center;
	font-weight: 600;
}

h1 {
	font-size: 4rem;
}

h2 {
	font-size: 3.6rem;
	color: #37051e;
}

h2 span {
	color: #a7608a;
	font-size: 1.8rem;
	display: block;
}

h3 {
	font-size: 3.2rem;
}

/* Utilidades */
.text-center {
	text-align: center;
}
.bg-white {
	background-color: #fff;
}
.margin-negativo-10 {
	margin-top: -10rem;
}
.padding-bottom-0 {
	padding-bottom: 0;
}

.sombra-box {
	box-shadow: 10px 10px 14px -4px rgba(0, 0, 0, 0.68);
}

/* Header */
.header {
	background-repeat: no-repeat;
	background-size: cover;
	padding: 5rem 0;
	position: relative;
	max-height: 50rem;
}

@media (min-width: 768px) {
	.header {
		min-height: 70rem;
	}
}

.header:before {
	content: "";
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}

.header__contenido {
	position: relative;
	width: 100%;
	height: 100%;
}

.header__titulo {
	color: #fff;
	font-size: 12rem;
	font-weight: 700;
	letter-spacing: 1.5rem;
	text-shadow: 0 10px 20px #000, 0 0 40px rgba(255, 255, 255, 0.3);
	animation: tituloEntrada 1.5s ease-out;
}

@keyframes tituloEntrada {
	0% {
		opacity: 0;
		transform: translateY(-50px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (min-width: 1200px) {
	.header__titulo {
		font-size: 15rem;
	}
}

.header__inicio {
	background-image: url(../img/lago.jpg);
}

/* Tarjeta */
.tarjeta {
	background: linear-gradient(
		30deg,
		rgba(238, 211, 50, 0.85),
		rgba(255, 136, 83, 0.8) 12%,
		rgba(142, 149, 193, 0.75) 35%,
		rgba(142, 149, 193, 0.1)
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(238, 211, 50, 0.3);
	max-width: 32rem;
	min-height: 60rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	opacity: 0;
	animation: tarjetaEntrada 1s ease-out 0.3s forwards;
	z-index: 100;
}

@keyframes tarjetaEntrada {
	0% {
		opacity: 0;
		transform: translateY(50px) scale(0.9);
	}
	100% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.tarjeta:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(238, 211, 50, 0.5);
}

@media (min-width: 768px) {
	.tarjeta {
		margin-left: 15%;
		margin-right: 0;
	}
}

@media (min-width: 1024px) {
	.tarjeta {
		margin-left: 20%;
	}
}

@media (min-width: 1440px) {
	.tarjeta {
		margin-left: 25%;
	}
}

.tarjeta__titulo {
	color: #fff;
	font-size: 2.8rem;
	font-weight: 600;
	letter-spacing: 0.3rem;
	margin: 0.5rem 0;
}

.tarjeta__imagen {
	width: 60px;
	padding-top: 2rem;
	margin-bottom: 0.5rem;
	animation: iconoFlotante 3s ease-in-out infinite;
}

@keyframes iconoFlotante {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-10px);
	}
}

.tarjeta__conjunto {
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	margin-top: 1rem;
	margin-bottom: 2rem;
}

.tarjeta__icono {
	width: 15px;
	color: #fff;
}

.tarjeta__subicono {
	color: #fff;
	margin: 0;
}

.tarjeta__texto {
	color: #fff;
	font-family: "Lora", serif;
	font-size: 1.7rem;
	font-weight: 400;
	text-align: center;
	padding: 0 2rem 5rem;
	line-height: 1.8;
}

/* Navegación */
.navegacion {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 25rem;
	right: 20%;
	padding: 2rem;
}

.navegacion__link {
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 1.8rem;
	font-weight: 600;
	padding-bottom: 2rem;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 10px rgba(0, 0, 0, 0.6);
	transition: all 0.3s ease;
	position: relative;
}

.navegacion__link::after {
	content: '';
	position: absolute;
	bottom: 1.5rem;
	left: 0;
	width: 0;
	height: 2px;
	background: linear-gradient(90deg, #37051e, #a7608a);
	transition: width 0.3s ease;
}

.navegacion__link:hover {
	color: #ffd700;
	transform: translateX(10px);
	text-shadow: 0 2px 10px rgba(255, 215, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.5);
}

.navegacion__link:hover::after {
	width: 100%;
}

/* Footer */
.footer {
	background: linear-gradient(180deg, #37051e 0%, #1a0210 100%);
	position: relative;
	overflow: hidden;
}

.footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, transparent, #a7608a, transparent);
}

.footer__contenido {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 5rem;
}

.footer__box {
	text-align: center;
	font-family: "Lora", serif;
	transition: transform 0.3s ease;
}

.footer__box:hover {
	transform: translateY(-5px);
}

.footer__titulo {
	color: #a7608a;
	font-size: 2.8rem;
	margin: 0 0 1rem;
	font-family: "Poppins", sans-serif;
	font-weight: 600;
}

.footer__texto {
	font-size: 1.8rem;
	margin: 0;
	line-height: 1.6;
}

.footer__copyright {
	color: #fff;
	margin: 0;
	padding: 2rem;
}

/* Main */
.main {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	max-height: 50rem;
	margin-top: 35rem;
	z-index: 1;
}

@media (min-width: 768px) {
	.main {
		min-height: 70rem;
	}
}

.main:before {
	content: "";
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}

/* Tarjeta 2 */
.tarjeta2 {
	background: linear-gradient(
		211deg,
		rgba(97, 180, 13, 0.85),
		rgba(99, 119, 0, 0.9) 15%,
		rgba(1, 65, 139, 0.95) 42%,
		rgba(1, 65, 139, 0.1)
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(97, 180, 13, 0.3);
	max-width: 32rem;
	min-height: 60rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	top: -18rem;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	opacity: 0;
	animation: tarjetaEntrada 1s ease-out 0.5s forwards;
	z-index: 100;
}

.tarjeta2:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(97, 180, 13, 0.5);
}

@media (min-width: 768px) {
	.tarjeta2 {
		margin-left: 50%;
		margin-right: 0;
	}
}

@media (min-width: 1024px) {
	.tarjeta2 {
		margin-left: 60%;
	}
}

@media (min-width: 1440px) {
	.tarjeta2 {
		margin-left: 65%;
	}
}

.tarjeta2__titulo {
	color: #fff;
	font-size: 2.8rem;
	font-weight: 600;
	letter-spacing: 0.3rem;
	margin: 0.5rem 0;
}

.tarjeta2__imagen {
	width: 60px;
	padding-top: 2rem;
	margin-bottom: 0.5rem;
	animation: iconoFlotante 3s ease-in-out infinite;
}

.tarjeta2__conjunto {
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-bottom: 8rem;
}

.tarjeta2__icono {
	width: 15px;
	color: #fff;
}

.tarjeta2__subicono {
	color: #fff;
	margin: 0;
}

.tarjeta2__texto {
	color: #fff;
	font-family: "Lora", serif;
	font-size: 1.7rem;
	font-weight: 400;
	text-align: center;
	padding: 0 2rem 5rem;
	line-height: 1.8;
}

.main__imagen {
	background-image: url(../img/island.jpg);
	background-position-y: 20%;
	opacity: 0.9;
}

/* Top Tour */
.toptour {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	min-height: 50rem;
	margin-top: 10rem;
	margin-bottom: 20rem;
	z-index: 1;
}

.toptour__imagen {
	background-image: url(../img/wadi.jpg);
	background-position-y: 20%;
}

.toptour__titulo {
	font-size: 5rem;
	font-weight: 700;
	margin-top: 8rem;
	background: linear-gradient(135deg, #37051e 0%, #a7608a 50%, #ff8853 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: tituloEntrada 1s ease-out;
}

@media (min-width: 768px) {
	.toptour__titulo {
		font-size: 7rem;
	}
}

@media (min-width: 1200px) {
	.toptour__titulo {
		font-size: 9rem;
	}
}

.toptour__grilla {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	width: 90%;
	margin: auto;
	position: relative;
	top: -8rem;
}

@media (min-width: 768px) {
	.toptour__grilla {
		grid-template-columns: repeat(2, 1fr);
		width: 80%;
	}
}

@media (min-width: 1024px) {
	.toptour__grilla {
		grid-template-columns: repeat(3, 1fr);
		width: 70%;
	}
}

@media (min-width: 1440px) {
	.toptour__grilla {
		width: 60%;
	}
}

.toptour__card {
	background: linear-gradient(
		156deg,
		rgba(86, 113, 246, 0.9),
		rgba(121, 48, 224, 0.85) 30%,
		rgba(184, 39, 240, 0.8) 65%,
		rgba(183, 39, 240, 0.3)
	);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(121, 48, 224, 0.3);
	padding: 3rem;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	opacity: 0;
	animation: cardEntrada 0.8s ease-out forwards;
}

@keyframes cardEntrada {
	0% {
		opacity: 0;
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.toptour__card:nth-child(1) { animation-delay: 0.1s; }
.toptour__card:nth-child(2) { animation-delay: 0.2s; }
.toptour__card:nth-child(3) { animation-delay: 0.3s; }
.toptour__card:nth-child(4) { animation-delay: 0.4s; }
.toptour__card:nth-child(5) { animation-delay: 0.5s; }

.toptour__card:hover {
	transform: translateY(-8px) scale(1.03);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(121, 48, 224, 0.5);
}

@media (min-width: 1024px) {
	.toptour__card:first-child {
		grid-column: 1 / 3;
		grid-row: 1 / 2;
		border-left: none;
	}
}

.toptour__contenido {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	z-index: 1;
}

.toptour__numero {
	font-family: "Poppins", sans-serif;
	font-size: 25rem;
	font-weight: 800;
	opacity: 0.1;
	position: absolute;
	transform: translateX(50%);
	margin-top: -8rem;
}

.toptour__nombre {
	font-size: 2.4rem;
	text-transform: uppercase;
	letter-spacing: 0.3rem;
	line-height: normal;
	font-weight: 600;
}

.toptour__descripcion {
	font-family: "Lora", serif;
	text-align: justify;
	font-size: 1.6rem;
	line-height: 1.7;
}

.toptour__dias,
.toptour__ver {
	text-align: right;
}

.toptour__ver {
	border: 2px solid #fff;
	padding: 1rem 2rem;
	transition: all 0.3s ease;
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(5px);
	border-radius: 5px;
	position: relative;
	overflow: hidden;
}

.toptour__ver::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
	transition: left 0.5s ease;
}

.toptour__ver:hover::before {
	left: 100%;
}

.toptour__ver:hover {
	background: linear-gradient(135deg, #37051e, #a7608a);
	color: #fff;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(167, 96, 138, 0.5);
	border-color: #a7608a;
}

/* Testimonios */
.testimonios {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	max-height: 30rem;
	margin-top: 20rem;
	margin-bottom: 15rem;
}

@media (min-width: 768px) {
	.testimonios {
		min-height: 70rem;
	}
}

.testimonios:before {
	content: "";
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}

.testimonios__imagen {
	background-image: url(../img/oldcity.jpg);
	opacity: 0.9;
}

/* Tarjeta 3 */
.tarjeta3 {
	background: linear-gradient(
		156deg,
		rgba(141, 58, 42, 0.9),
		rgba(137, 51, 36, 0.85) 30%,
		rgba(194, 156, 74, 0.8) 65%,
		rgba(194, 156, 74, 0.3)
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(194, 156, 74, 0.3);
	max-width: 32rem;
	min-height: 60rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	top: -18rem;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	opacity: 0;
	animation: tarjetaEntrada 1s ease-out 0.7s forwards;
	z-index: 100;
}

.tarjeta3:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(194, 156, 74, 0.5);
}

@media (min-width: 768px) {
	.tarjeta3 {
		margin-left: 15%;
		margin-right: 0;
	}
}

@media (min-width: 1024px) {
	.tarjeta3 {
		margin-left: 20%;
	}
}

@media (min-width: 1440px) {
	.tarjeta3 {
		margin-left: 25%;
	}
}

.tarjeta3__titulo {
	color: #fff;
	font-size: 2.8rem;
	font-weight: 600;
	letter-spacing: 0.3rem;
}

.tarjeta3__texto {
	color: #fff;
	font-family: "Lora", serif;
	font-size: 1.7rem;
	font-weight: 400;
	text-align: center;
	padding: 0 2rem 5rem;
	line-height: 1.8;
}

/* Estilos de enlaces del footer */
.footer__enlace {
	color: #fff;
	text-decoration: underline;
	transition: color 0.3s ease;
}

.footer__enlace:hover {
	color: #a7608a;
}

/* Sección Beneficios - ¿Por Qué Elegirnos? */
.beneficios {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	min-height: 60rem;
	margin-top: 15rem;
	margin-bottom: 15rem;
	padding: 5rem 0;
}

.beneficios__imagen {
	background-image: url(../img/beneficios-bg.jpg);
	background-position: center;
}

.beneficios__titulo {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 8rem;
	background: linear-gradient(135deg, #37051e 0%, #a7608a 50%, #ffd700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: tituloEntrada 1s ease-out;
}

@media (min-width: 768px) {
	.beneficios__titulo {
		font-size: 7rem;
	}
}

@media (min-width: 1200px) {
	.beneficios__titulo {
		font-size: 9rem;
	}
}

.beneficios__grilla {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	width: 90%;
	margin: auto;
	position: relative;
}

@media (min-width: 768px) {
	.beneficios__grilla {
		grid-template-columns: repeat(2, 1fr);
		width: 85%;
	}
}

@media (min-width: 1024px) {
	.beneficios__grilla {
		grid-template-columns: repeat(4, 1fr);
		width: 80%;
	}
}

.beneficios__card {
	background: linear-gradient(
		156deg,
		rgba(55, 5, 30, 0.9),
		rgba(167, 96, 138, 0.85) 40%,
		rgba(255, 136, 83, 0.7) 70%,
		rgba(255, 136, 83, 0.2)
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(167, 96, 138, 0.3);
	padding: 3rem 2rem;
	text-align: center;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	opacity: 0;
	animation: cardEntrada 0.8s ease-out forwards;
	min-height: 28rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.beneficios__card:nth-child(1) { animation-delay: 0.1s; }
.beneficios__card:nth-child(2) { animation-delay: 0.2s; }
.beneficios__card:nth-child(3) { animation-delay: 0.3s; }
.beneficios__card:nth-child(4) { animation-delay: 0.4s; }

.beneficios__card:hover {
	transform: translateY(-10px) scale(1.05);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(167, 96, 138, 0.5);
}

.beneficios__icono {
	font-size: 5rem;
	margin-bottom: 1.5rem;
	animation: iconoFlotante 3s ease-in-out infinite;
	color: #fff;
}

.beneficios__icono i {
	display: block;
}

.beneficios__nombre {
	color: #fff;
	font-size: 2.2rem;
	font-weight: 600;
	margin-bottom: 1rem;
	letter-spacing: 0.1rem;
}

.beneficios__descripcion {
	color: #fff;
	font-family: "Lora", serif;
	font-size: 1.5rem;
	line-height: 1.6;
	margin: 0;
}

/* Sección Galería de Destinos */
.galeria {
	background: linear-gradient(180deg, rgba(26, 2, 16, 0.4) 0%, rgba(55, 5, 30, 0.3) 50%, rgba(26, 2, 16, 0.4) 100%);
	padding: 8rem 0;
	margin-top: 10rem;
	position: relative;
}

.galeria__titulo {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 6rem;
	background: linear-gradient(135deg, #37051e 0%, #a7608a 50%, #ffd700 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

@media (min-width: 768px) {
	.galeria__titulo {
		font-size: 7rem;
	}
}

@media (min-width: 1200px) {
	.galeria__titulo {
		font-size: 9rem;
	}
}

.galeria__contenedor {
	width: 90%;
	margin: auto;
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
	position: relative;
}

@media (min-width: 1024px) {
	.galeria__contenedor {
		grid-template-columns: 300px 1fr;
		width: 85%;
	}
}

/* Tarjeta de filtros flotante */
.galeria__filtros {
	background: linear-gradient(
		156deg,
		rgba(167, 96, 138, 0.9),
		rgba(55, 5, 30, 0.85) 40%,
		rgba(194, 156, 74, 0.7) 70%,
		rgba(194, 156, 74, 0.2)
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 15px rgba(167, 96, 138, 0.3);
	padding: 3rem 2rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	position: sticky;
	top: 2rem;
	height: fit-content;
	z-index: 10;
	transition: transform 0.4s ease, box-shadow 0.4s ease;
	opacity: 0;
	animation: tarjetaEntrada 1s ease-out 0.3s forwards;
}

.galeria__filtros:hover {
	transform: translateY(-5px);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(167, 96, 138, 0.5);
}

.galeria__filtros-titulo {
	color: #fff;
	font-size: 2rem;
	font-weight: 600;
	margin: 0 0 1rem;
	text-align: center;
	letter-spacing: 0.1rem;
}

.galeria__filtro {
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 1.2rem 2rem;
	font-family: "Poppins", sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	text-align: left;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.galeria__filtro i {
	font-size: 1.8rem;
}

.galeria__filtro:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: #a7608a;
	transform: translateX(5px);
}

.galeria__filtro--activo {
	background: linear-gradient(135deg, #37051e, #a7608a);
	border-color: #a7608a;
	box-shadow: 0 4px 15px rgba(167, 96, 138, 0.4);
}

/* Grid de imágenes */
.galeria__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 768px) {
	.galeria__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 1024px) {
	.galeria__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.galeria__item {
	opacity: 0;
	animation: cardEntrada 0.8s ease-out forwards;
	transition: transform 0.3s ease;
}

.galeria__item:nth-child(1) { animation-delay: 0.1s; }
.galeria__item:nth-child(2) { animation-delay: 0.2s; }
.galeria__item:nth-child(3) { animation-delay: 0.3s; }
.galeria__item:nth-child(4) { animation-delay: 0.4s; }
.galeria__item:nth-child(5) { animation-delay: 0.5s; }
.galeria__item:nth-child(6) { animation-delay: 0.6s; }

.galeria__item.oculto {
	display: none;
}

.galeria__imagen {
	width: 100%;
	height: 35rem;
	background-size: cover;
	background-position: center;
	position: relative;
	overflow: hidden;
	border: 2px solid rgba(255, 255, 255, 0.1);
	transition: transform 0.5s ease;
}

.galeria__item:hover .galeria__imagen {
	transform: scale(1.1);
}

.galeria__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(
		0deg,
		rgba(55, 5, 30, 0.95) 0%,
		rgba(167, 96, 138, 0.8) 50%,
		transparent 100%
	);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	padding: 2rem;
	transform: translateY(100%);
	transition: transform 0.4s ease;
}

.galeria__item:hover .galeria__overlay {
	transform: translateY(0);
}

.galeria__destino {
	color: #fff;
	font-size: 2.4rem;
	font-weight: 600;
	margin: 0 0 0.5rem;
	letter-spacing: 0.1rem;
}

.galeria__descripcion {
	color: #fff;
	font-family: "Lora", serif;
	font-size: 1.5rem;
	margin: 0;
	line-height: 1.5;
}

/* Sección Partners / Alianzas */
.partners {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	position: relative;
	min-height: 60rem;
	margin-top: 15rem;
	margin-bottom: 10rem;
	padding: 8rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.partners__imagen {
	background-image: url(../img/partners-bg.jpg);
}

.partners__titulo {
	font-size: 5rem;
	font-weight: 700;
	margin-bottom: 6rem;
	background: linear-gradient(135deg, #37051e 0%, #a7608a 50%, #ff8853 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-shadow: none;
}

@media (min-width: 768px) {
	.partners__titulo {
		font-size: 7rem;
	}
}

@media (min-width: 1200px) {
	.partners__titulo {
		font-size: 9rem;
	}
}

.partners__contenedor {
	width: 90%;
	max-width: 120rem;
	margin: auto;
}

.partners__tarjeta {
	background: linear-gradient(
		156deg,
		rgba(167, 96, 138, 0.5),
		rgba(55, 5, 30, 0.45) 40%,
		rgba(238, 211, 50, 0.35) 70%,
		rgba(238, 211, 50, 0.1)
	);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 20px rgba(238, 211, 50, 0.3);
	padding: 5rem 4rem;
	transition: transform 0.5s ease, box-shadow 0.5s ease;
	opacity: 0;
	animation: tarjetaEntrada 1s ease-out 0.3s forwards;
}

.partners__tarjeta:hover {
	transform: translateY(-10px);
	box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 30px rgba(238, 211, 50, 0.5);
}

.partners__descripcion {
	color: #fff;
	font-family: "Lora", serif;
	font-size: 2rem;
	text-align: center;
	margin: 0 0 4rem;
	line-height: 1.6;
}

.partners__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 3rem;
}

@media (min-width: 768px) {
	.partners__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 4rem;
	}
}

@media (min-width: 1024px) {
	.partners__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 4rem;
	}
}

.partners__logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1.5rem;
	padding: 3rem 2rem;
	background: linear-gradient(135deg, rgba(167, 96, 138, 0.6), rgba(55, 5, 30, 0.7));
	border: 2px solid rgba(255, 255, 255, 0.3);
	transition: all 0.4s ease;
	min-height: 15rem;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

.partners__logo:hover {
	background: linear-gradient(135deg, rgba(167, 96, 138, 0.8), rgba(55, 5, 30, 0.9));
	border-color: #ffd700;
	transform: translateY(-5px) scale(1.05);
	box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6), 0 0 20px rgba(255, 215, 0, 0.3);
}

.partners__logo i {
	font-size: 5rem;
	color: #ffd700;
	transition: transform 0.3s ease;
}

.partners__logo:hover i {
	transform: scale(1.2);
}

.partners__nombre {
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1rem;
}

/* Media Queries */
@media (max-width: 768px) {
	.header__titulo {
		font-size: 7rem;
		letter-spacing: 1rem;
	}

	.toptour__titulo {
		margin-top: 18rem;
		font-size: 4.5rem;
	}

	.tarjeta,
	.tarjeta2,
	.tarjeta3 {
		margin-left: auto;
		margin-right: auto;
		z-index: 99;
	}

	.tarjeta2 {
		top: 8rem;
	}

	.navegacion {
		right: 15px;
	}


	.footer__contenido {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.menu-btn {
		display: flex;
		position: absolute;
		top: -3rem;
		right: 2rem;
		z-index: 100;
	}
	.navegacion {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 5.5rem;
		right: 2rem;
		background: rgba(55, 5, 30, 0.97);
		border-radius: 1rem;
		box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
		padding: 2rem 1rem;
		z-index: 99;
		min-width: 200px;
	}
	.navegacion.navegacion--visible {
		display: flex;
	}
	.navegacion__link {
		color: #fff;
		font-size: 1.7rem;
		font-weight: lighter;
		padding: 1rem 0;
		border-bottom: 1px solid #a7608a;
		text-align: left;
		text-shadow: none;
	}
	.navegacion__link:last-child {
		border-bottom: none;
	}
}
