*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}

body{
	background: #f8f4ec;
	color: #2b2b2b;
}

/* CONTENEDOR */
.contenedor{
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

/* HERO */
.hero-restaurante{
	width: 100%;
	height: 100vh;
	background: url("../img/restaurante-interior.jpg") center/cover no-repeat;
	position: relative;
	margin-top: 90px;
}

.overlay-hero{
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 20px;
}

.hero-texto{
	max-width: 850px;
	color: #fff;
}

.hero-texto h1{
	font-size: 60px;
	margin-bottom: 20px;
	font-weight: 700;
}

.hero-texto 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-restaurante{
	padding: 90px 0;
}

.intro-grid{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.intro-texto h2{
	font-size: 40px;
	color: #5a3400;
	margin-bottom: 20px;
}

.intro-texto p{
	font-size: 17px;
	line-height: 1.9;
	margin-bottom: 18px;
	color: #444;
}

.intro-imagen img{
	width: 100%;
	border-radius: 22px;
	display: block;
	box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* TITULOS */
.titulo-seccion{
	text-align: center;
	margin-bottom: 40px;
}

.titulo-seccion h2{
	font-size: 42px;
	color: #5a3400;
	margin-bottom: 12px;
}

.titulo-seccion p{
	max-width: 800px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.8;
	color: #555;
}

/* MENU IMAGEN */
.menu-imagen-seccion{
	padding: 90px 0;
	background: linear-gradient(180deg, #f8f4ec 0%, #f1e6d1 100%);
}

.menu-imagen-card{
	background: #fff;
	padding: 25px;
	border-radius: 25px;
	box-shadow: 0 15px 35px rgba(0,0,0,0.12);
	text-align: center;
}

.menu-imagen-card img{
	width: 100%;
	max-width: 800px;
	display: block;
	margin: 0 auto;
	border-radius: 18px;
}

/* DESTACADOS */
.destacados-restaurante{
	padding: 90px 0;
}

.grid-destacados{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.card-destacado{
	background: #ffffff;
	padding: 35px 25px;
	border-radius: 22px;
	text-align: center;
	box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: 0.3s ease;
}

.card-destacado:hover{
	transform: translateY(-6px);
}

.card-destacado i{
	font-size: 42px;
	color: #8b5a00;
	margin-bottom: 18px;
}

.card-destacado h3{
	font-size: 24px;
	margin-bottom: 14px;
	color: #5a3400;
}

.card-destacado p{
	font-size: 16px;
	line-height: 1.8;
	color: #555;
}

/* CTA */
.cta-restaurante{
	padding: 90px 0;
}

.cta-box{
	background: #5e5e5e;
	color: #fff7dc;
	text-align: center;
	padding: 50px 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-restaurante{
	background: #1e1e1e;
	color: #fff;
	text-align: center;
	padding: 22px 15px;
	font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px){
	.intro-grid{
		grid-template-columns: 1fr;
	}

	.grid-destacados{
		grid-template-columns: 1fr;
	}

	.hero-texto h1{
		font-size: 46px;
	}

	.intro-texto h2,
	.titulo-seccion h2,
	.cta-box h2{
		font-size: 34px;
	}
}

@media (max-width: 576px){
	.hero-restaurante{
		height: 85vh;
		margin-top: 80px;
	}

	.hero-texto h1{
		font-size: 34px;
	}

	.hero-texto p{
		font-size: 16px;
	}

	.intro-texto h2,
	.titulo-seccion h2,
	.cta-box h2{
		font-size: 28px;
	}

	.intro-texto p,
	.titulo-seccion p,
	.card-destacado p,
	.cta-box p{
		font-size: 15px;
	}

	.menu-imagen-card{
		padding: 14px;
	}
}