/* =========================================
   SECCIÓN HERO (Centrada y con Mockup)
========================================= */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem 4rem 2rem;
  /* Menos espacio arriba, más abajo */
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  /* Letra gigante recuperada */
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2.5rem auto;
}

/* Botones de las tiendas */
.store-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  /* Espacio entre los botones y la imagen del mockup */
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--primary);
  color: var(--white);
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
}

.store-btn:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 93, 93, 0.2);
}

.store-btn.secondary {
  background-color: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
}

.store-btn.secondary:hover {
  background-color: var(--bg);
}

.store-btn i {
  font-size: 1.8rem;
}

.store-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  font-weight: 600;
}

.store-btn div span {
  font-size: 0.7rem;
  font-weight: 400;
  opacity: 0.8;
}

/* =========================================
   MOCKUP (Banner superior de 1920x641)
========================================= */
.hero-mockup {
  width: 100%;
  max-width: 1200px;
  /* Lo hacemos mucho más ancho para aprovechar tu banner */
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 3rem auto;
  /* 3rem de margen debajo para separarlo del título */
  z-index: 1;
}

.hero-mockup img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0px 15px 30px rgba(30, 41, 59, 0.12));
}

/* =========================================
   ADAPTACIÓN A MÓVILES (Pantallas pequeñas)
========================================= */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1rem 0 1rem;
    /* Quitamos padding abajo para que la imagen pegue al borde */
  }

  .hero h1 {
    font-size: 2.5rem;
    /* Letra un poco más pequeña en móvil */
  }

  .store-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 300px;
    margin-bottom: 3rem;
  }

  .store-btn {
    justify-content: center;
  }
}