
@media (max-width: 786px) {
  .row.mt-lg-5 {
    gap: 30px;
  }

  .slider-contact-form-wrapper.rounded.p-5 {
    padding: 0px !important;
  }

  .mb-1.mt-1.me-1.btn.btn-primary {
    font-size: 18px !important;
  }
}

.first_div-index {
  margin-top: 0px !important;
  padding-top: 0px !important;
}

.validity_launch_banner {
  font-size: 12px;
  font-weight: 500;
  color: #fff;
}

/* Estilos para el banner flotante de lanzamiento */
.floating-launch-banner {
  position: sticky;
  top: 0;
  width: 100vw;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  animation: balloon-effect 3s ease-in-out infinite;
}

.floating-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  text-align: center;
}

.launch-text {
  font-weight: bold;
  font-size: 1.1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.launch-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.launch-link:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
  text-decoration: none;
}

@keyframes balloon-effect {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsive para móviles */
@media (max-width: 768px) {
  .floating-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .launch-text {
    font-size: 1rem;
  }
  
  .launch-link {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}