/* Botón Salir de Demo */
.exit-demo-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: var(--pb-primary);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(30, 42, 47, 0.3);
    z-index: 1001;
    transition: all 0.3s ease;
    border: 2px solid var(--pb-accent);
}

.exit-demo-float:hover {
    transform: translateX(-5px);
    color: white;
    background: var(--pb-accent);
    border-color: var(--pb-primary);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 80px !important;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pb-gold) 0%, #FFD700 100%);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, var(--pb-gold) 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    transform: translateY(-5px);
}

.scroll-top-btn:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .scroll-top-btn {
        width: 45px;
        height: 45px;
        bottom: 60px !important;
        right: 15px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .exit-demo-float {
        bottom: 15px;
        left: 15px;
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .scroll-top-btn {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 80px;
        font-size: 1.1rem;
    }
}
