/* Lista */
.list li {
    margin-bottom: 30px;
    text-align: justify;
    font-size: 16px;
    line-height: 22px;
}

/* 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 4px 8px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

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

    width: 200%;
    height: 550%;
    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;
}

span {
    color: #20124D;
    font-weight: 700;
    font-size: 16px;
}

.button-text-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: fit-content;
}

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

@media (max-width: 450px) {
    span {
        font-size: 16px;
    }

    .button-text-wrapper {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
}