* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
}
header {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}
.logo img {
  max-height: 60px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.hero {
  background-color: #222;
  padding: 100px 30px;
  text-align: center;
}
.hero h1 {
  font-size: 3em;
  color: #ff5c1a;
}
.hero p {
  font-size: 1.2em;
  margin: 20px 0;
}
.btn {
  display: inline-block;
  background-color: #ff5c1a;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  margin-top: 20px;
  border-radius: 5px;
}
.servicios, .nosotros, .contacto, .galeria {
  padding: 60px 30px;
  text-align: center;
}
.servicio {
  margin-bottom: 30px;
}
input, textarea {
  width: 100%;
  max-width: 500px;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-radius: 5px;
}
button {
  background-color: #ff5c1a;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  background-color: #111;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #aaa;
}
.carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
}
.carousel img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  scroll-snap-align: start;
  flex-shrink: 0;
}
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 16px;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}
