/* ---------------- HERO SECTION ---------------- */

.hero {
  background: #fafafa;
  padding: 80px 20px;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Chip superior */
.hero-chip {
  display: inline-block;
  padding: 6px 14px;
  background: #eaf2ff;
  color: #1a4eff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 20px;
  margin-bottom: 25px;
}

/* Título */
.hero-title {
  font-size: 38px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

/* Descripción */
.hero-description {
  font-size: 18px;
  color: #666;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 30px auto;
}

/* Botones */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.btn-primary {
  padding: 12px 24px;
  background: #111;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #333;
}

.btn-secondary {
  padding: 12px 24px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #111;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, border 0.2s;
}

.btn-secondary:hover {
  background: #f7f7f7;
  border-color: #ccc;
}

/* Subtexto */
.hero-subtext {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}