body {
  margin: 0;
  font-family: var(--font-main);
  background: #eaeaeb;
  background-size: 100% 200%;
  color: var(--dark);
}


.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1rem;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: white;
}


/* Fondo con imagen */
.hero-bg {
  background: url('https://images.unsplash.com/photo-1583858643718-515d192db250?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat;
  height: 260px;
  filter: brightness(0.9);
}

/* Overlay degradado */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(15, 60, 76, 0.3) 45%,
    rgba(15, 60, 76, 0.65) 100%
  );
  pointer-events: none;
}

/* Cinta superior */
.hero-top {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-badge {
  background: #18cfd1;
  color: #003b44;
  padding: 1rem 2.5rem;
  font-size: 2.5rem;
  font-weight: 800;
  border-radius: 8px;
  letter-spacing: 1px;
}

/* Franja inferior */
.hero-bottom {
  background: #20e0b0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 3rem;
  gap: 2rem;
}

.hero-bottom-inner {
  max-width: 1100px;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}


.hero-bottom h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);

}

/* botón */
.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;

  border: 2px solid #003b44;
  color: #003b44;
  padding: 0.9rem 1.4rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  background: transparent;
  white-space: nowrap;

  line-height: 1;
  transition: all 0.2s ease;
}


.hero-button:hover {
  background: rgba(0, 59, 68, 0.1);
  transform: translateY(-1px);
}

.hero-button i {
  font-size: 1.1rem;
}

.hero-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}


.hero-divider {
  height: 8px;
  background: #000000;
}

/* =====================
   MOBILE – HERO SIMPLE
===================== */
@media (max-width: 768px) {

  .hero-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }

  .hero-button {
    margin-top: 0.4rem;
  }
}
