/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 20px;
}

p {
  margin-bottom: 20px;
}

/* Hero Section */
#hero {
  background: url('portada5_light.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
}

#hero .btn {
  background-color: #ff4757;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

#hero .btn:hover {
  background-color: #e84118;
}

/* Benefits Section */
#benefits {
  background-color: #fff;
  padding: 60px 20px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit {
  text-align: center;
}

.benefit h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
}

/* Examples Section */
#examples {
  background-color: #f1f1f1;
  padding: 60px 20px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Testimonials Section */
#testimonials {
  background-color: #fff;
  padding: 60px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial {
  text-align: center;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial h4 {
  font-weight: bold;
}

/* Process Section */
#process {
  background-color: #f1f1f1;
  padding: 60px 20px;
}

#process ol {
  list-style: none;
  counter-reset: step;
}

#process li {
  font-size: 1.2rem;
  padding-left: 30px;
  position: relative;
  margin-bottom: 10px;
}

#process li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #ff4757;
  color: white;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
}

/* Call to Action Section */
#cta {
  background-color: #20193f; /* #ff4757 color antiguo, azul: #170761, rojo:  https://dequeuniversity.com/rules/axe/4.9/color-contrast */
  color: white;
  text-align: center;
  padding: 60px 20px;
}

#cta h2 {
  margin-bottom: 20px;
}

#cta .btn {
  background-color: white;
  color: #0011FF; /* #ff4757*/ 
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

#cta .btn:hover {
  background-color: #f1f1f1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .benefits-grid, .examples-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  #hero h1 {
    font-size: 2rem;
  }

  #hero p {
    font-size: 1rem;
  }
}
