/* ...existing code... */

/* Navigation Menu Enhancements */
.nav-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px; /* espacios entre elementos */
}

.nav-container a.nav-link {
  display: inline-block;
  white-space: nowrap; /* evita que se dividan palabras */
  margin: 0 5px;
  padding: 10px 20px;
  font-size: 16px;
  /* Efectos existentes */
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.nav-container a.nav-link:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.nav-container a.nav-link.active,
.nav-container a.nav-link.active:hover {
  background: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-container a.nav-link {
    margin: 5px 10px;
    padding: 8px 16px;
    font-size: 14px;
  }
}

.linkedin-widget:hover {
  background: rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2) !important;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ...existing code... */

/* Product Page Styles */
.product-description h2 {
    font-weight: 600;
    color: #fff;
}

.product-description .lead {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.product-features {
    margin-top: 1.5rem;
    padding-left: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.product-features i {
    color: #a882ff; /* A nice purple accent */
    font-size: 1.2rem;
    margin-right: 15px;
    width: 25px;
    text-align: center;
}

.product-purchase-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-purchase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.product-image-container {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 160px; /* Asegura espacio para la imagen y su animación */
}

.product-logo-img {
    max-width: 120px;
    height: auto;
    animation: float-robot 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(168, 130, 255, 0.6));
}

@keyframes float-robot {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.btn-purchase {
    background: linear-gradient(45deg, #8e44ad, #3498db);
    border: none;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-purchase:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Sticky Footer & Swup Fix */
/* This ensures the main wrapper can use flexbox to position the footer */
html, body {
    height: 100%; /* Asegura que el body ocupe todo el alto */
}

.ts-page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ocupa siempre al menos 100% del viewport */
}

#swup {
    flex: 1; /* Toma el espacio disponible para empujar el footer al fondo */
}

/* This ensures the footer does not shrink and stays at the bottom */
#footer {
    flex-shrink: 0;
    width: 100%;
    position: relative; /* Keeps it in the normal document flow */
    z-index: 10; /* Ensures it's above background elements */