/* Boton Animado */
.button-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.animated-button {
    margin: 20px;
    position: relative;
    display: inline-block;

    padding: 20px 60px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    color: white;

    background: white;
    border-radius: 50px;
    overflow: hidden;

    z-index: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transition: 0.2s ease;
}

.animated-button:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3)) brightness(1.1);            
}

/* Capa giratoria */
.animated-button::before {
    content: "";
    position: absolute;
    inset: -4px;

    width: 200%;
    height: 400%;
    top: 50%;
    left: 50%;

    background: linear-gradient(
        #006ce7,
        #009ee7,
        #00e5ff
    );

    animation: spin 4s linear infinite;

    z-index: -2;
}

/* Capa blanca interior */
.animated-button::after {
    content: "";
    position: absolute;
    inset: 6px;
    background: linear-gradient(
        #3d98ff,
        #0082ec
    );
    border-radius: 46px;

    z-index: -1;
}

@keyframes spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.arrows {
    position: absolute;
    left: -120px;
    display: flex;
    gap: 10px;
}

/* Flechas más grandes */
.arrows svg {
    width: 80px;
    height: 80px;

    fill: none;
    stroke: #00c6ff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;

    animation: arrowMove 1.5s infinite;
}

.arrows svg:nth-child(1) {
    animation-delay: 0.15s;
}

.arrows svg:nth-child(2) {
    margin-left: -45px;
}

@keyframes arrowMove {
    0% {
        transform: translateX(0);
    }

    35% {
        transform: translateX(12px);
    }

    70% {
        transform: translateX(0);
    }
}