* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

h1{
	font-size: 3rem;
	text-align: center;
	margin: 20px 0;
	
}
h2 {
	font-size: 2rem;
	text-align: center;
	margin-bottom: 10px;
}

p {
	
	margin-bottom: 20px;
	font-size: 1.1rem;
}

body {
	font-family: "Open Sans", Arial, Sans-serif;
	font-size: 16px;
}

.contenedor {
	width: 90%;
	margin: auto;
	overflow: hidden;
}

.contenedorHero {
	margin: auto;
	overflow: hidden;
}

/* ----- ----- HEADER ----- ----- */

header {
	width: 100%;
	
}


header .contenedorHero {
	position: relative;
	height: 100%;
}

header .menu {
	width: 100%;
	background-color: rgb(51, 152, 219);
	display: flex;
	justify-content: space-between;
}

header .menu a {
	color: #fff;
	font-size: 20px;
	font-weight: 300;
	display: inline-block;
	margin: 40px 20px;
	text-decoration: none;
	position: relative;
}

header .menu img {
	max-width: 120px;
}

header .menu a:hover {
	text-decoration: underline;
}

.menu-toggle{
	display: none;
}

.logo{
	padding: 10px 0 10px 10px;
}

.hero{
	width: 100%;
	background: url('../img/bacalar.jpeg'), #c6a43f;
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	height: 900px;
}

.hero .textos h3 {
	font-weight: 300;
	font-size: 25px;
	font-style: italic;
}

.hero .textos .nombre span {
	font-weight: 300;
}

.textos {
	max-width: 460px;
	margin-top: -200px;
}

.textos img {
	width: 100%;
}

.hero .textos {
	width: 100%;
	color: #fff;
	position: absolute;
	top: 45%;
	left: 65%;
	
}

.hero .textos .nombre {
	font-size: 50px;
	font-weight: 600;
}

@media screen and (max-width: 1024px) {
	.hero .textos {
		top: 40%;
		left: 60%;
		max-width: 370px;

	}
}

@media screen and (max-width: 800px) {
	.hero .textos {
		top: 55%;
		max-width: 270px;
	}
}

/* Diseño para dispositivos móviles */
@media (max-width: 480px) {
	.hero {
		width: 100%;
		background: url('../img/velero.jpeg'), #281a0c;
		background-size: cover;
		background-attachment: fixed;
		background-position: -15px center;
		background-repeat: no-repeat;
		height: 800px;
	}

	.hero .textos{
		display: none;
	}

	.menu {
		flex-direction: row;
		align-items: center;
	}
	.menu.column {
		flex-direction: column;
		align-items: center;
	}
	.menu.column .menu-toggle{
		margin: 0 auto;
	}

	.menu .menu-toggle {
		display: block;
		background: none;
		border: none;
		font-size: 42px;
		cursor: pointer;
		margin: 0 20px 0 0;
	}

	.menu-items {
		display: none; /* Ocultar menú inicialmente */
		flex-direction: column;
		text-align: center;
		width: 100%;
	}

	.menu-items a {
		margin: 10px 0;
		font-size: 18px;
		text-decoration: none;
		color: #fff; /* Ajusta el color según el diseño */
	}

	.menu-items.active {
		display: flex; /* Mostrar menú cuando está activo */
	}
}


/* ----- ----- acerca de ----- ----- */
.acerca {
	background-color: #f9f9f9;
	padding: 50px 20px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeInUp 1s ease-in-out forwards;
}

.acerca .contenedor {
	max-width: 800px;
	margin: 20px;
	flex: 1 1 400px;
}

.imagen-acerca {
	flex: 1 1 400px;
	margin: 20px;
	text-align: center;
}

.imagen-acerca img {
	max-width: 100%;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Botón "Conócenos más" */

.div-boton-contactanos {
	text-align: center
}

.btn-conocenos {
	display: inline-block;
	margin-top: 20px;
	padding: 10px 20px;
	background-color: #ffb703;
	color: #fff;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s;
}

.btn-conocenos:hover {
	background-color: #a8862e;
}

/* Efecto de Fade-in */
@keyframes fadeInUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsividad */
@media (max-width: 768px) {
	h2 {
		font-size: 1.8rem;
	}

	p {
		font-size: 1rem;
	}

	.acerca {
		padding: 40px 15px;
	}
}

@media (max-width: 480px) {
	h2 {
		font-size: 1.5rem;
	}

	p {
		font-size: 0.9rem;
	}
}

/* ----- ----- promociones ----- ----- */

.paquetes-iconos h2{
	text-align: center;
	margin: 50px 0;
}
.imagenes-paquetes-iconos{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
	justify-items: center;
	margin-bottom: 100px;
}
.imagenes-paquetes-iconos .icono{
	text-align: center;
	overflow: hidden;
	transition: transform 0.3s ease-in-out;
}
.icono:hover img {
	transform: scale(1.1);
}
.imagenes-paquetes-iconos img{
	max-width: 200px;
	margin: 0 auto;
}

 /* Responsividad */
@media (max-width: 768px) {
	.icono {
		flex: 1 1 45%;
	}
}

@media (max-width: 480px) {
	.icono {
		flex: 1 1 100%;
	}
}


/* Sección Elige tu Aventura */
.elige-tu-aventura-bacalar {
	background-color: #f9f9f9;
	padding: 50px 20px;
}

.elige-tu-aventura-bacalar .contenedor h2{
	margin: 50px 0 50px;
}
.elige-tu-aventura-bacalar .contenedor p{
	margin: 0 0 50px;
	text-align: center;
}

.imagenes-paquetes {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.icono {
	text-align: center;
	flex: 1 1 300px;
	max-width: 300px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	transition: transform 0.3s ease-in-out;
}

.icono img {
	width: 100%;
	height: 200px; /* Tamaño estático */
	object-fit: cover; /* Ajustar sin distorsionar */
	border-radius: 10px;
	transition: transform 0.3s ease-in-out;
}

.icono:hover img {
	transform: scale(1.1);
}

.icono p {
	margin-top: 10px;
	font-size: 1.1rem;
	font-weight: bold;
	color: #333;
}

/* Estilo del modal */
.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
}

.modal.show {
	display: flex;
}

/* Responsividad */
@media (max-width: 768px) {
	.icono {
		flex: 1 1 45%;
	}
}

@media (max-width: 480px) {
	.icono {
		flex: 1 1 100%;
	}

	h2 {
		font-size: 1.8rem;
	}

	p {
		font-size: 1rem;
	}
}

/* ----- ----- FOOTER ----- ----- */
footer {
	background: #000;
}

footer .copyright {
	text-align: center;
	padding: 15px 0;
	color: #fff;
}

footer {
	background-color: #333;
	color: #fff;
	padding: 40px 0;
}

.footer-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 20px;
}

.footer-section {
	flex: 1;
	min-width: 200px;
}

.footer-container .footer-section:nth-child(1) {
	margin-right: 70px;
}

.footer-section h4 {
	font-size: 1.2em;
	margin-bottom: 15px;
}

.footer-section p,
.footer-section a,
.footer-section li {
	color: #bbb;
	margin: 5px 0;
	text-decoration: none;
}

.footer-section ul {
	list-style-type: none;
	padding: 0;
}

.footer-section a:hover {
	color: #fff;
}

.social-icons img {
	width: 24px;
	height: 24px;
	margin-right: 10px;
}

.footer-bottom {
	text-align: center;
	padding: 20px;
	font-size: 0.9em;
	border-top: 1px solid #444;
	color: #bbb;
}