
/* Archivo: style.css */
/* Ubicación: /assets/css/ */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f6f6f6;
  color: #333;
}

a { text-decoration: none; }

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #21a607;
  color: white;
}

.btn {
  background: white;
  color: #21a607;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
}

.feature {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  max-width: 300px;
  flex: 1;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  font-size: 0.9rem;
}
