.logo-hclonline {
    height: 90px;              /* tamaño visible */
    width: auto;               /* mantiene proporción */
    object-fit: contain;
    margin-right: 8px;
    display: block;
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
  }
  
  .brand-text {
    font-weight: 700;
    color: #222;
    font-size: 1.25rem;
  }
  
  @media (max-width: 576px) {
    .brand-text {
      display: none; /* oculta texto en móviles */
    }
  }
  
  .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #333 !important;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #007bff !important;
    text-decoration: none;
  }
  
  .hero-img {
    max-width: 135%;    /* un poquito más ancha que su columna */
    transform: translateX(5%);  /* la empuja visualmente al borde derecho */
  }
  
  /* 🌊 Animación flotante constante */
.hero-img {
    animation: float 6s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
  }
  
  /* 💫 Efecto tilt al pasar el mouse */
  .hero-img:hover {
    transform: rotateX(6deg) rotateY(-6deg) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
  
  /* 🩰 Movimiento de flotación */
  @keyframes float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  
  .soporte-card {
    background: linear-gradient(135deg, #fff 0%, #fdf1f0 100%);
    border: 1px solid rgba(214, 58, 47, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .soporte-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  }
  .icon-wrap {
    background: #fff;
    border: 2px solid #d63a2f;
    color: #d63a2f;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(214, 58, 47, 0.1);
  }
  .soporte-card h5 {
    color: #222;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
  }
  .soporte-card p {
    color: #555;
    font-size: 0.95rem;
  }

 /* Centrado visual del bloque */
.tab-content {
  margin-top: 2rem;
}

/* Imagen más centrada y con sombra elegante */
.tab-shot {
  transition: all .4s ease;
  max-width: 90%;
}
.tab-shot:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Texto en móviles centrado, en desktop alineado */
@media (max-width: 768px) {
  .tab-content h4,
  .tab-content p {
    text-align: center;
  }
}

.big-feature-img {
  max-width: 95%;          /* mantiene buen tamaño pero no invade el texto */
  margin-left: auto;
  margin-right: auto;
  transition: all 0.6s ease;
  border-radius: 1.2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* efecto sutil de hover */
.big-feature-img:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

/* ajuste de espaciado para balance entre imagen y texto */
#personalizacion .row {
  row-gap: 3rem;
}

/* versión mobile */
@media (max-width: 992px) {
  .big-feature-img {
    max-width: 100%;
    transform: none;
  }
  #personalizacion {
    text-align: center;
  }
}


