
body {
	font-family: Arial, sans-serif;
	margin: auto;
	max-width: 1200px;
}
header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #000;
	color: #fff;
	padding: 10px 20px;
}
header img {
	height: 40px;
}
nav {
	position: relative;
}
nav a {
	color: #fff;
	text-decoration: none;
	margin: 0 15px;
	font-weight: bold;
}
nav a:hover {
	text-decoration: underline;
}
.hero {
	text-align: center;
	padding: 20px 20px;
	background-color: #f4f4f4;
	max-width: 1200px;
	margin: auto;
}
.hero h1 {
	font-size: 2.5rem;
	margin-bottom: 20px;
}
.hero h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #000;
	text-align: center;
}
.hero p {
	font-size: 1.2rem;
	color: #333;
}
.section {
	padding: 20px 20px;
	max-width: 1200px;
	margin: auto;
}
.section h2 {
	font-size: 2rem;
	margin-bottom: 30px;
	color: #000;
	text-align: center;
}
.section p {
	font-size: 1rem;
	line-height: 1.6;
	color: #333;
}
.services {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 20px;
	margin-top: 30px;
}
.service {
	background: #f9f9f9;
	padding: 20px;
	border: 1px solid #ddd;
	border-radius: 5px;
	text-align: center;
}
.service h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}
footer {
	background-color: #000;
	color: #fff;
	text-align: center;
	padding: 20px 20px;
	margin-top: auto;
}
footer p {
	margin: 5px 0;
	font-size: 0.9rem;
}
footer a {
	color: #fff;
	text-decoration: underline;
}
/* Menú general */
.menu {
	display: none;
	flex-direction: column;
	position: absolute;
	top: 60px;
	right: 0;
	background-color: #000;
	/* width: 100%; */
	padding: 10px;
	list-style-type: none; /* Elimina los puntos de la lista */
	margin: 0;
}
.menu li {
	margin: 10px 0;
	text-align: center;
}
.menu a {
	color: white;
	text-decoration: none;
	font-weight: bold;
}
.menu-toggle {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 30px;
	height: 30px;
	background: none;
	border: none;
	cursor: pointer;
}
.menu-toggle span {
	width: 30px;
	height: 3px;
	background: white;
	border-radius: 3px;
}
.menu-active {
	display: flex;
}
/* Menú visible siempre en pantallas grandes */
@media (min-width: 768px) {
	.menu {
		display: flex;
		position: static;
		flex-direction: row;
		background-color: transparent;
		width: auto;
	}
	.menu li {
		margin: 0 15px;
	}
	.menu-toggle {
		display: none;
	}
}
