/* RESET */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
}

/* HERO */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://picsum.photos/1400/600');
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.hero h2 {
  font-size: 42px;
}

/* BOTÓN */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

/* SERVICIOS */
.services {
  padding: 60px 20px;
  text-align: center;
}

.service-box {
  display: inline-block;
  width: 280px;
  margin: 15px;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
}

.service-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.service-box div {
  padding: 20px;
}

/* ABOUT */
.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: white;
}

.about img {
  width: 400px;
  border-radius: 10px;
  margin: 20px;
}

.about-text {
  max-width: 500px;
  margin: 20px;
}

/* GALERÍA */
.gallery {
  padding: 60px 20px;
  text-align: center;
}

.gallery img {
  width: 300px;
  margin: 10px;
  border-radius: 10px;
}

/* TESTIMONIOS */
.testimonials {
  background: #111;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

/* CONTACTO */
.contact {
  padding: 80px 20px;
  background: #f4f4f4;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.contact-info {
  max-width: 350px;
}

.contact-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  width: 350px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #ff6600;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

/* FOOTER */
footer {
  background: #222;
  color: #ddd;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.footer-col {
  margin: 10px;
}

.footer-col h4 {
  color: white;
}

.footer-col a {
  display: block;
  color: #bbb;
  text-decoration: none;
  margin: 5px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
}

/* WHATSAPP */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  padding: 15px;
  border-radius: 50%;
  font-size: 20px;
  text-decoration: none;
}
/* boton comprar plantilla */

.boton {
  display: inline-block;
  padding: 5px 10px;
  background: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}