* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
}
body {
  font-family: 'Arial', sans-serif;
  background-color: #f0f0f0; /* Fondo claro */
  color: #000000; /* Texto oscuro */
  line-height: 1.6;
}
.hero {
  position: relative;
  height: 100vh; /* Antes: 80vh. Ahora ocupa toda la pantalla */
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* Antes: 100%. Ahora igual que .hero */
  object-fit: cover;
  background-size: cover; 
  filter: brightness(0.5);
  z-index: 1;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
}

.content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
}

.brand {
  font-size: 4rem;
  letter-spacing: 0.3rem;
  margin-bottom: 2rem;
  font-weight: bold;
  color: white;
  text-shadow: 1px 1px 8px #000;
}

.logo {
  display: none;
}

.main-title {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 12px #000;
}

.subtitle {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2.5rem;
  text-shadow: 1px 1px 8px #000;
}

.stores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 0;
}

.stores img {
  height: 80px; /* Antes: 64px. Ahora más grandes */
  width: auto;
  margin: 10;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  border-radius: 12px; /* Un poco más redondeado */
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 50px; /* Alinea las imágenes al centro verticalmente */
  margin-inline: 20px;
}
.stores img:hover {
  transform: scale(1.12); /* Un poco más de efecto al pasar el mouse */
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.velta-logo {
  width: 400px;
  height: 300px;
  object-fit: contain;
  margin-bottom: 0.23px; /* Más cerca aún del h1 */
  display: block;
  margin-left: auto;
  margin-right: auto;
  background: none;
}

.velta-logo,
.main-title,
.subtitle {
  opacity: 0;
  transition: none;
}

.main-title,
.subtitle {
  text-shadow: 2px 2px 16px #222;
}

/* Nueva sección para el vídeo y descripción */
.info {
  background: #ffffff; /* Gris oscuro */
  padding: 64px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  gap: 80px;           /* <-- Aumenta el espacio entre texto y móvil */
  overflow: visible;
  max-width: 1100px;   /* <-- Reduce el ancho máximo para que el móvil no se salga */
  margin: 0 auto;
  box-sizing: border-box;
}

.info-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  max-width: 480px; /* Más ancho para el texto */
  color: #fff;
}

.info-title {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-align: left;
  color: #000000;
}

.velta-highlight {
  color: #c9a4f7; /* Lila suave */
  font-weight: 900;
}

.info-desc {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 1.5rem;
  text-align: left;
  line-height: 1.5;
}

.info-stores {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.info-stores img {
  height: 54px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #fff;
}
.info-stores img:hover {
  transform: scale(1.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.28);
}

.mobile-demo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  height: 600px;
  overflow: visible;
  margin-right: 0;
}

.app-screenshot-only {
  display: block;
  width: 320px;
  height: 600px;
  border-radius: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  object-fit: cover;
  background: #111;
  border: 6px solid #222;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 50px;
  background-color: #1b1b1b;
}

.footer-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 10px 0;
  gap: 24px;
}

footer a {
  padding-inline: 24px;
  text-decoration: none;
  color: #797979;
  font-size: 1rem;
  transition: color 0.2s;
}
footer a:hover {
  color: #c9a4f7;
}

/* Responsive */
@media (max-width: 900px) {
  .info {
    flex-direction: column;
    gap: 32px;
    padding: 32px 0;
    min-height: 50vh;
  }
  .info-text {
    max-width: 95vw;
    text-align: center;
    align-items: center;
  }
  .info-title, .info-desc {
    text-align: center;
  }
  .mobile-demo {
    min-width: unset;
  }
  .mobile-img {
    width: 180px;
  }
  .info-stores img {
    height: 44px;
  }
}

/* Adaptación de .hero para móviles */
@media (max-width: 600px) {
  .hero {
    height: 80vh;
    min-height: 480px;
    padding: 0;
  }

  .background-image {
    height: 80vh;
    min-height: 480px;
    object-fit: cover;
    filter: brightness(0.6);
  }

  .content {
    padding: 0 10px;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
  }

  .velta-logo {
    width: 180px;
    height: 90px;
    margin-bottom: 18px;
    margin-top: 32px;
  }

  .main-title {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    text-shadow: 1px 1px 8px #000;
    line-height: 1.2;
  }

  .stores {
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
  }

  .stores img {
    height: 48px;
    margin-top: 0;
    margin-inline: 0;
    width: auto;
    border-radius: 8px;
  }
}