.floating-action-button-cardview {
    position: fixed !important;
    bottom: 110px;
    right: 30px;
    width: 35px;
    height: 35px;
    /* background-color: #28a745; */
    background-color: white;
    color: var(--main);
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background-color 0.3s;
}

.floating-action-button-cardview:hover {
    background-color: var(--yellow);
}

.floating-action-button-cardview-secondary {
    position: fixed !important;
    bottom: 160px;
    right: 30px;
    width: 35px;
    height: 35px;
    /* background-color: #28a745; */
    background-color: white;
    color: var(--main);
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-size: 11px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: background-color 0.3s;
}

.floating-action-button-cardview-secondary:hover {
    background-color: var(--yellow);
}

@media (max-width: 768px) {
    .floating-action-button-cardview {
        bottom: 30px;
    }
    .floating-action-button-cardview-secondary {
        bottom: 80px;
    }
}








/* Atualize esta regra no seu arquivo CSS principal */

@keyframes pulse-attention {
  0% {
    transform: translateY(-50%) scale(1);
    /* Usando a nova cor #DAA520 (goldenrod) */
    box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.7);
  }
  50% {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 10px 15px rgba(218, 165, 32, 0);
  }
  100% {
    transform: translateY(-50%) scale(1);
    box-shadow: 0 0 0 0 rgba(218, 165, 32, 0);
  }
}

@keyframes grow-and-fade-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}