.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  width: 50px;
  height: 50px;
}

.nav-botones button {
  font-size: 1.25rem;   /* fs-5 */
  font-weight: 600;     /* fw-semibold */
  text-decoration: underline;
}

.text-black {
  color: #000000 !important;
} 

.presentacion-empresa {
  width: 100%;
  min-height: 300px;
}


/* Contenedor interior que alinea el contenido */
.custom-navbar {
  height: 100%;
}

/* El logo ocupa toda la altura del navbar */
.logo-navbar {
  height: 70px; /* puedes ajustar */
  width: auto;
  object-fit: contain;
}

.navbar {
  height: 90px !important;
  padding-top: 0;
  padding-bottom: 0;
}



/* Mejora visual para botones en nav */
.nav-botones .btn {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Ajustes móviles */
@media (max-width: 576px) {
  .logo-navbar {
    height: 50px;
  }

  .nav-botones {
    text-align: right;
  }

  .nav-botones .btn {
    display: block;
    text-align: right;
    padding: 0.5rem 1rem;
  }
}

.navbar .nav-botones .btn:hover {
  color: #0dca2c !important;
  transition: color 0.3s ease;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hoverUp {
  from { transform: translateY(0); }
  to { transform: translateY(-5px); }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-fade-up {
  animation: fadeIn 1.2s ease forwards;
}

.animate-hover:hover {
  animation: hoverUp 0.3s ease forwards;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transform: translateY(-5px);
}

.asesorias-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid #dee2e6;
}

.asesorias-img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.zoomable {
  cursor: pointer;
  transition: transform 0.3s;
}

#zoom-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#zoom-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.social-icon {
  transition: transform 0.3s ease, color 0.3s ease;
  }
.social-icon:hover {
  transform: scale(1.3);
  color: #0d6efd;
  }
   

/* Este es la animacion par whatsapp*/
.whatsapp-float img:hover {
  transform: scale(1.2) rotate(10deg);
}
