/* Control de Costos page specific styles */

/* Sticky solution header */
.sticky-solution-header {
    position: fixed;
    background: rgb(255 255 255 / 72%);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(19, 109, 236, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-solution-header.visible {
    opacity: 1;
    visibility: visible;
}

.floating-card-bounce {
    animation: bounce 3s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.comparison-item {
    transition: all 0.3s ease;
}