/* From Uiverse.io by iZOXVL */
.boton-elegante {
    padding: 15px 30px;
    border: 2px solid #2c2c2c;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    font-weight: bold;
}

.boton-elegante::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.25) 0%,
            rgba(255, 255, 255, 0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.boton-elegante:hover::after {
    transform: scale(4);
}

.boton-elegante:hover {
    border-color: #666666;
    background: #292929;
}

/* Rhythm Card Animation */
.rhythm-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
}

.rhythm-bar {
    width: 6px;
    background-color: #18181b;
    /* zinc-900 */
    border-radius: 9999px;
    animation: vibe-rhythm 1s ease-in-out infinite;
}

@keyframes vibe-rhythm {

    0%,
    100% {
        height: 16px;
        opacity: 0.3;
    }

    50% {
        height: 48px;
        opacity: 1;
    }
}

.rhythm-bar:nth-child(1) {
    animation-delay: 0s;
    animation-duration: 1.0s;
}

.rhythm-bar:nth-child(2) {
    animation-delay: 0.2s;
    animation-duration: 1.4s;
}

.rhythm-bar:nth-child(3) {
    animation-delay: 0.4s;
    animation-duration: 1.1s;
}

.rhythm-bar:nth-child(4) {
    animation-delay: 0.1s;
    animation-duration: 1.3s;
}

.rhythm-bar:nth-child(5) {
    animation-delay: 0.3s;
    animation-duration: 1.2s;
}