/* Hero Section */
.hero {
  position: relative;
  background-image:
    linear-gradient(160deg, rgba(0, 92, 153, 0.55) 0%, rgba(15, 23, 42, 0.75) 50%, rgba(0, 121, 178, 0.4) 100%),
    linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.5)),
    url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: var(--bg-white);
  padding: 4rem 1.5rem;
}

/* Geometric dot pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  z-index: 2;
  position: relative;
}

/* Badge: "Desde 1990" */
.hero-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  border: 1.5px solid var(--accent-yellow);
  border-radius: 20px;
  color: var(--accent-yellow);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
  background: rgba(254, 203, 0, 0.08);
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* CTA wrapper inside hero */
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
