.btn-asc {
  background-color: #69bb7b;
  border-color: #69bb7b;
  color: #ffffff;
}

.btn-asc:hover {
  background-color: #5ca56c;
  border-color: #5ca56c;
  color: #ffffff;
}

.btn-asc:active,
.btn-asc:focus {
  background-color: #78c288;
  border-color: #78c288;
  color: #ffffff;
}

.btn-outline-asc {
  background-color: transparent;
  border-color: #69bb7b;
  color: #69bb7b;
}

.btn-outline-asc:hover {
  background-color: #69bb7b;
  border-color: #69bb7b;
  color: #ffffff;
}

.btn-outline-asc:active,
.btn-outline-asc:focus {
  background-color: #5ca56c;
  border-color: #5ca56c;
  color: #ffffff;
}

.text-asc {
  color: #5ca56c;
}

.wave-bg {
  background: linear-gradient(90deg, #5ca56c 25%, #69bb7b 50%, #5ca56c 75%);
  background-size: 200% 100%;
  animation: wave 3s infinite;
  border-radius: 0.375rem;
}
.wave-text {
  background: linear-gradient(90deg, #5ca56c 25%, #69bb7b 50%, #5ca56c 75%);
  background-size: 200% 100%;
  -webkit-background-clip: text; /* Soporte para Chrome, Safari, Opera */
  -webkit-text-fill-color: transparent; /* Hace el texto transparente para mostrar el gradiente */
  color: transparent; /* Para navegadores que soportan background-clip: text sin prefijo */
  animation: wave 3s infinite;
}

@keyframes wave {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.bg-asc {
  background-color: #69bb7b !important;
}

.link-asc {
  color: #ffffff;
  text-decoration: none;
  transition: all ease 300ms;
}

.link-asc:hover {
  color: #5ca56c;
}

.btn-toggle {
  border-top-right-radius: 0.375rem !important;
  border-bottom-right-radius: 0.375rem !important;
}

/* Personalización del input de búsqueda */
.custom-search-input {
  border-radius: 2rem; /* bordes redondeados en el lado izquierdo */
}

.custom-search-input:focus,
.custom-search-input:not(:placeholder-shown) {
  color: white;
  box-shadow: none;
  border-color: #5ca56c;
}

.active-asc {
  background-color: #5ca56c !important;
}
/* Estilos del FAB */
.fab-container {
  position: fixed;
  bottom: 0;
  left: 0;
  margin-left: 1rem;
  margin-bottom: 5rem;
  z-index: 9999;
}

/* FAB Principal */
.fab-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0d6efd;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  font-size: 24px;
}

.fab-button:hover {
  transform: scale(1.1);
}

/* Contenedor de opciones */
.fab-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 70px;
  right: 5px;
}

/* Opciones individuales */
.fab-options button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.1s ease-in, transform 0.1s ease-in;
}

.fab-options.show button {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Modificar animación para que aparezcan en cascada */
.fab-options.show button:nth-child(3) {
  transition-delay: 0.1s;
}

.fab-options.show button:nth-child(2) {
  transition-delay: 0.2s;
}

.fab-options.show button:nth-child(1) {
  transition-delay: 0.3s;
}

/* Animación inversa al cerrar */
.fab-options button:nth-child(1) {
  transition-delay: 0.1s;
}

.fab-options button:nth-child(2) {
  transition-delay: 0.2s;
}

.fab-options button:nth-child(3) {
  transition-delay: 0.3s;
}

/* Hover en botones */
.fab-options button:hover {
  transform: scale(1.1);
}

/* Rotación del icono FAB */
.fab-button .fa {
  transition: transform 0.3s ease-in-out;
}

.fab-button.active .fa {
  transform: rotate(45deg);
}
.accordion-button {
  box-shadow: none !important;
}
