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

body {
	font-family: 'Montserrat', sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Hero Section */
.hero {
	height: 100vh;
	background:
		linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),
		url('fotolocal.jpg');
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
}

.hero-content h1 {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 20px;
	text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.btn {
	display: inline-block;
	padding: 15px 30px;
	background-color: #ffde00; /* Un amarillo vibrante tipo Viva */
	color: #000;
	text-decoration: none;
	font-weight: bold;
	border-radius: 50px;
	margin-top: 20px;
	transition: transform 0.3s;
}

.btn:hover {
	transform: scale(1.1);
}

/* Secciones generales */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 80px 20px;
}

.info-section {
	background: #f9f9f9;
	text-align: center;
}

.location-section {
	background: #fff;
	text-align: center;
}

.card,
.location-box {
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #222;
}

/* Efecto de Revelado (Scroll) */
.reveal {
	opacity: 0;
	transform: translateY(50px);
	transition: all 1s ease-out;
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

footer {
	padding: 20px;
	text-align: center;
	background: #222;
	color: #fff;
}

.logo {
	width: 70%;
	max-width: 600px;
	margin-bottom: 20px;
}

/* Responsivo */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}
}
