/* 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;
}

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;
	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: "Barlow Condensed", sans-serif;
	font-size: 1.6rem;
}

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: "Barlow Condensed", sans-serif;
	line-height: 1.5;
	margin: 0 0 5rem;
	text-align: center;
}

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);
	-webkit-box-shadow: 10px 10px 14px -4px rgba(0, 0, 0, 0.68);
	-moz-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: 15rem;
	font-weight: lighter;
	letter-spacing: 2rem;
	text-shadow: 0 10px 20px #000;
}

.header__inicio {
	background-image: url(../img/lago.jpg);
}

/* Tarjeta */
.tarjeta {
	background: linear-gradient(
		30deg,
		rgba(238, 211, 50, 0.793),
		#ff8853 12%,
		#8e95c1 35%,
		rgba(142, 149, 193, 0.04)
	);
	box-shadow: 0 30px 50px #000;
	max-width: 32rem;
	min-height: 60rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: 25%;
}

.tarjeta__titulo {
	color: #fff;
	font-size: 2.3rem;
	font-weight: 400;
	letter-spacing: 0.5rem;
}

.tarjeta__imagen {
	width: 30px;
	padding-top: 2rem;
}

.tarjeta__conjunto {
	color: #fff;
	text-align: -webkit-center;
	padding-bottom: 8rem;
}

.tarjeta__icono {
	width: 15px;
	color: #fff;
}

.tarjeta__subicono {
	color: #fff;
	margin: 0;
}

.tarjeta__texto {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: lighter;
	text-align: center;
	padding: 0 2rem 5rem;
}

/* Navegación */
.navegacion {
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 12rem;
	right: 20%;
	padding: 2rem;
}

.navegacion__link {
	color: #a7608a;
	font-family: "Barlow Condensed", sans-serif;
	font-size: 2rem;
	padding-bottom: 2rem;
	text-shadow: 1px 1px 2px #fff;
}

.navegacion__link:hover {
	color: #37051e;
	text-decoration: none;
}

/* Footer */
.footer {
	background-color: #37051e;
}

.footer__contenido {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	padding-top: 5rem;
}

.footer__box {
	text-align: center;
	font-family: "Cormorant Garamond", serif;
}

.footer__titulo {
	color: #a7608a;
	font-size: 2.4rem;
	margin: 0 0 1rem;
	font-family: "Cormorant Garamond", serif;
}

.footer__texto {
	font-size: 2rem;
	margin: 0;
}

.footer__copyright {
	color: #fff;
	margin: 0;
	padding: 2rem;
}

/* Main */
.main {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	max-height: 50rem;
	margin-top: 30rem;
}

@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.737),
		rgba(99, 119, 0, 0.866) 15%,
		rgba(1, 65, 139, 0.998) 42%,
		rgba(1, 65, 139, 0.04)
	);
	box-shadow: 0 30px 50px #000;
	max-width: 32rem;
	min-height: 60rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: 65%;
	top: -18rem;
}

.tarjeta2__titulo {
	color: #fff;
	font-size: 2.3rem;
	font-weight: 400;
	letter-spacing: 0.5rem;
}

.tarjeta2__imagen {
	width: 30px;
	padding-top: 2rem;
}

.tarjeta2__conjunto {
	color: #fff;
	text-align: -webkit-center;
	padding-bottom: 8rem;
}

.tarjeta2__icono {
	width: 15px;
	color: #fff;
}

.tarjeta2__subicono {
	color: #fff;
	margin: 0;
}

.tarjeta2__texto {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: lighter;
	text-align: center;
	padding: 0 2rem 5rem;
}

.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;
}

.toptour__imagen {
	background-image: url(../img/wadi.jpg);
	background-position-y: 20%;
}

.toptour__titulo {
	font-size: 10rem;
	font-weight: lighter;
	margin-top: 8rem;
}

.toptour__grilla {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-auto-flow: row;
	gap: 2rem;
	width: 60%;
	margin: auto;
	position: relative;
	top: -8rem;
}

.toptour__card {
	background: linear-gradient(
		156deg,
		#5671f6,
		#7930e0 30%,
		rgba(184, 39, 240, 0.933) 65%,
		rgba(183, 39, 240, 0.426)
	);
	box-shadow: 0 20px 30px #000;
	padding: 3rem;
	border-left: 1px solid #a7608a;
}

.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: "Barlow Condensed", sans-serif;
	font-size: 25rem;
	font-weight: 700;
	opacity: 0.1;
	position: absolute;
	transform: translateX(50%);
	margin-top: -8rem;
}

.toptour__nombre {
	font-size: 3rem;
	text-transform: uppercase;
	letter-spacing: 0.5rem;
	line-height: normal;
	left: 6rem;
}

.toptour__descripcion {
	font-family: "Cormorant Garamond", serif;
	text-align: justify;
}

.toptour__dias,
.toptour__ver {
	text-align: right;
}

.toptour__ver {
	border: 1px solid #37051e;
	padding: 1rem;
}

/* 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,
		#8d3a2a,
		rgba(137, 51, 36, 0.984) 30%,
		rgba(194, 156, 74, 0.743) 65%,
		rgba(194, 156, 74, 0.743) 65%,
		rgba(194, 156, 74, 0.426)
	);
	box-shadow: 0 30px 50px #000;
	max-width: 32rem;
	min-height: 60rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: 25%;
	top: -18rem;
}

.tarjeta3__titulo {
	color: #fff;
	font-size: 2.3rem;
	font-weight: 400;
	letter-spacing: 0.5rem;
}

.tarjeta3__texto {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: lighter;
	text-align: center;
	padding: 0 2rem 5rem;
}

/* Promoción */
.promocion {
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	max-height: 30rem;
	margin-top: 20rem;
	margin-bottom: 15rem;
}

@media (min-width: 768px) {
	.promocion {
		min-height: 70rem;
	}
}

.promocion:before {
	content: "";
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0;
}

/* Tarjeta 4 */
.tarjeta4 {
	background: linear-gradient(
		156deg,
		#2a8d3a,
		rgba(36, 137, 51, 0.984) 30%,
		rgba(74, 194, 156, 0.743) 65%,
		rgba(74, 194, 156, 0.426)
	);
	box-shadow: 0 30px 50px #000;
	max-width: 32rem;
	min-height: 60rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	position: relative;
	margin-left: 65%;
	top: -18rem;
}

.tarjeta4__titulo {
	color: #fff;
	font-size: 2.3rem;
	font-weight: 400;
	letter-spacing: 0.5rem;
}

.tarjeta4__texto {
	color: #fff;
	font-family: "Cormorant Garamond", serif;
	font-size: 1.6rem;
	font-weight: lighter;
	text-align: center;
	padding: 0 2rem 5rem;
}

/* Media Queries */
@media (max-width: 768px) {
	.header__titulo {
		font-size: 8rem;
	}

	.toptour__titulo {
		margin-top: 18rem;
	}

	.tarjeta,
	.tarjeta2,
	.tarjeta3,
	.tarjeta4 {
		margin-left: auto;
		margin-right: auto;
		z-index: 99;
	}

	.tarjeta2 {
		top: 8rem;
	}

	.tarjeta4 {
		top: 1rem;
	}

	.navegacion {
		right: 15px;
	}

	.toptour__grilla {
		grid-template-columns: 1fr;
		width: 90%;
	}

	.toptour__card:first-child {
		grid-column: auto;
		grid-row: auto;
	}

	.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: 0px 0px 0px #fff;
	}
	.navegacion__link:last-child {
		border-bottom: none;
	}
}
