/* Estilos para la sección de vista previa de la app - Estilo acorde al sitio */

.app-preview {
  padding: 4rem 0;
  text-align: center;
  position: relative;
}

.app-preview h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.app-preview h2 .grad {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.app-preview:hover h2::after {
  width: 80px;
}
.app-preview h2::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transition: width 0.5s ease;
  border-radius: 3px;
}

.app-preview p {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}
/* Tarjeta de pantalla de la app */
.app-screen-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.app-screen-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Imagen de la pantalla */
.screen-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.screen-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.app-screen-card:hover .screen-img img {
  transform: scale(1.05);
}

/* Overlay de la imagen */
.screen-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(22, 18, 58, 0.9), transparent);
  z-index: 1;
}

/* Contenido de la pantalla */
.screen-content {
  padding: 1.5rem;
}

.screen-content h3 {
  font-size: 1.3rem;
  margin: 0 0 0.8rem;
  color: var(--gold);
}

.screen-content p {
  font-size: 0.9rem;
  margin: 0 0 1rem;
  color: var(--ink);
  line-height: 1.5;
}

/* Lista de características */
.screen-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.screen-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.screen-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: bold;
  font-size: 1rem;
}

/* Decoración de fondo */
.app-preview-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
}

.app-preview-bg .circle {
  position: absolute;
  border-radius: 50%;
}

.app-preview-bg .circle-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-start), transparent 70%);
  top: 10%;
  left: 5%;
}

.app-preview-bg .circle-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  bottom: 5%;
  right: 5%;
}

/* Responsive */
@media (max-width: 992px) {
  .app-features-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .app-preview h2 {
    font-size: 2rem;
  }
  
  .app-preview p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .feature-img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .app-preview {
    padding: 3rem 0;
  }
  
  .feature-content {
    padding: 1rem;
  }
  
  .feature-content h3 {
    font-size: 1.2rem;
  }
}
