*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body{
	background: #f8f4ec;
	color: #2b2b2b;
}

.contenedor{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* HERO */
.hero-actividades{
	width: 100%;
	height: 100vh;
	background: url("../img/ruta-mezcal.jpg") center/cover no-repeat;
	position: relative;
	margin-top: 90px;
}

.overlay-actividades{
	width: 100%;
	height: 100%;
	background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45));
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

.hero-contenido{
	max-width: 850px;
	color: #fff;
}

.hero-contenido h1{
	font-size: 62px;
	margin-bottom: 20px;
	font-weight: 700;
}

.hero-contenido p{
	font-size: 20px;
	line-height: 1.8;
	margin-bottom: 30px;
}

.btn-hero{
	display: inline-block;
	padding: 14px 34px;
	background: #8b5a00;
	color: #fff;
	text-decoration: none;
	border-radius: 40px;
	font-weight: 600;
	transition: 0.3s ease;
}

.btn-hero:hover{
	background: #a86b00;
	transform: translateY(-3px);
}

/* INTRO */
.intro-actividades{
	padding: 90px 0 30px;
}

.titulo-seccion{
	text-align: center;
	margin-bottom: 40px;
}

.titulo-seccion h2{
	font-size: 42px;
	color: #5a3400;
	margin-bottom: 12px;
}

.titulo-seccion p{
	max-width: 850px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.8;
	color: #555;
}

/* EXPERIENCIAS */
.seccion-experiencias{
	padding: 20px 0 90px;
}

.contenedor-grid{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	align-items: start;
}

.actividad-card{
	background: #ffffff;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.actividad-card:hover{
	transform: translateY(-5px);
}

.img-actividad{
	width: 100%;
	height: 280px;
	object-fit: cover;
	display: block;
}

.actividad-texto{
	padding: 28px;
}

.etiqueta{
	display: inline-block;
	background: #f1e2bf;
	color: #7a4b00;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 15px;
}

.actividad-texto h2{
	font-size: 34px;
	color: #5a3400;
	margin-bottom: 18px;
}

.actividad-texto p{
	font-size: 16px;
	line-height: 1.9;
	color: #4d4d4d;
	margin-bottom: 16px;
	text-align: justify;
}

.frase-final{
	font-size: 18px;
	font-weight: 700;
	color: #8b5a00;
	margin-top: 10px;
}

/* CTA */
.cta-actividades{
	padding: 0 0 90px;
}

.cta-box{
	background: #626262;
	color: #fff7dc;
	text-align: center;
	padding: 55px 30px;
	border-radius: 28px;
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.cta-box h2{
	font-size: 38px;
	margin-bottom: 15px;
}

.cta-box p{
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 25px;
}

.cta-box a{
	display: inline-block;
	text-decoration: none;
	background: #25d366;
	color: white;
	padding: 14px 30px;
	border-radius: 40px;
	font-weight: 600;
	transition: 0.3s ease;
}

.cta-box a:hover{
	transform: translateY(-3px);
}

/* FOOTER */
.footer-actividades{
	background: #1e1e1e;
	color: white;
	text-align: center;
	padding: 22px 15px;
	font-size: 15px;
}

/* WHATSAPP */
.whatsapp-flotante{
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 58px;
	height: 58px;
	background: #25d366;
	color: white;
	font-size: 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	box-shadow: 0 8px 18px rgba(0,0,0,0.25);
	z-index: 999;
	transition: 0.3s ease;
}

.whatsapp-flotante:hover{
	transform: scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 992px){
	.contenedor-grid{
		grid-template-columns: 1fr;
	}

	.hero-contenido h1{
		font-size: 46px;
	}

	.titulo-seccion h2,
	.actividad-texto h2,
	.cta-box h2{
		font-size: 32px;
	}
}

@media (max-width: 576px){
	.hero-actividades{
		height: 85vh;
		margin-top: 80px;
	}

	.hero-contenido h1{
		font-size: 34px;
	}

	.hero-contenido p{
		font-size: 16px;
	}

	.titulo-seccion h2,
	.actividad-texto h2,
	.cta-box h2{
		font-size: 27px;
	}

	.titulo-seccion p,
	.actividad-texto p,
	.cta-box p{
		font-size: 15px;
	}

	.actividad-texto{
		padding: 20px;
	}

	.img-actividad{
		height: 220px;
	}
}