.app-download-section {
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, var(--base-orange) 100%);
  overflow: hidden;
}
/* Decoración de fondo para dar profundidad */
.app-download-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.05);
  z-index: 0;
}
.bg-decoration {
  width: 250px;
  height: 250px;
  background: linear-gradient(145deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.05));
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.app-mockup-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.phone-mockup {
  max-width: 350px;
  margin: 0 auto;
  z-index: 2;
}
.floating-element {
  bottom: 30px;
  right: -20px;
  z-index: 3;
}
.store-button {
  transition: transform 0.3s ease;
}
.store-button:hover {
  transform: translateY(-3px);
}
.store-img {
  max-width: 160px;
  height: auto;
}
.app-store-buttons {
   display: flex;
   justify-content: center;
   gap: 20px;
   margin-bottom: 30px;
}
.store-button img {
   width: 100%;
   height: auto;
   display: block;
   margin: 0 auto;
}
.feature-icon i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Manejo responsivo */
@media (max-width: 991px) {
  .app-content {
    text-align: center;
  }
  
  .app-features {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  
  .d-flex.flex-wrap.gap-3 {
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .display-5 {
    font-size: 2rem;
  }
}