* {
	box-sizing: border-box;
}

body {
                  background-color: black;
                  color: white;
	font-family: Arial, Helvetica, sans-serif;
	margin: 0;
	padding: 0;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #3B3B3B;
	color: white;
	padding: 20px;
}

nav ul {
	display: flex;
	list-style: none;
}

nav li {
	margin-right: 20px;
}

nav a {
	color: white;
	text-decoration: none;
	font-size: 16px;
}

.hero {
	background-image: url("assets/banner.jpg");
	background-size: cover;
	background-position: center;
	color: white;
	padding: 100px;
	text-align: center;
}

.hero h1 {
	font-size: 50px;
	margin-top: 0;
}

.cta {
	background-color: #FF9800;
	color: white;
	display: inline-block;
	padding: 15px 30px;
	border-radius: 5px;
	margin-top: 20px;
	text-decoration: none;
	font-size: 18px;
}

.cta:hover {
	background-color: #F44336;
}

.productos {
	padding: 50px;
	text-align: center;
}

.producto {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 20px;
	width: 30%;
}

.producto img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.producto h3 {
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 20px;
}

.lista-productos {
	display: flex;
	flex-wrap: wrap;
}

.servicios {
	padding: 50px;
	text-align: center;
}

.servicio {
	display: inline-block;
	margin-right: 20px;
	margin-bottom: 20px;
	width: 30%;
}

.servicio img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.servicio h3 {
	margin-top: 10px;
	margin-bottom: 5px;
	font-size: 20px;
}

.lista-servicios {
	display: flex;
	flex-wrap: wrap;
}

footer {
	background-color: #3B3B3B;
	color: white;
	padding: 20px;
	text-align: center;
}

section {
    margin: 40px;
    text-align: center;
}

/* Estilo para el botón de WhatsApp */
.cta-whatsapp {
    display: inline-block;
    padding: 10px 20px;
    background-color: #25d366; /* Color de WhatsApp */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
}

.cta-whatsapp:hover {
    background-color: #128C7E; /* Color de WhatsApp al pasar el cursor */
}

