body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

h1, h2, h3 {
  margin-bottom: 15px;
}

a {
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  text-align: center;
  color: white;
}

.hero-img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
  filter: brightness(70%);
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: bold;
  margin-top: 10px;
}

.btn-highlight {
  background: #ff0000;
  color: white;
}

/* Benefits */
.benefits {
  padding: 50px 20px;
  text-align: center;
}

.benefit-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.benefit {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
  padding: 50px 20px;
  background: #f1f1f1;
  text-align: center;
}

.testimonial-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial {
  background: white;
  border-radius: 12px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
  padding: 20px;
  width: 250px;
  text-align: center;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Offer */
.offer {
  text-align: center;
  padding: 50px 20px;
}

.garantia {
  margin-top: 15px;
  color: #555;
}

/* Footer */
.footer {
  background: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
}
