/* =========================================
   FLOATING TRIAL CTA
========================================= */

.trial-floating {
    position: fixed;
    right: 30px;
    bottom: 90px;
    width: 250px;
    background: linear-gradient(
        145deg,
        #111633 0%,
        #0b1029 55%,
        #080d20 100%
    );
    border: 1px solid rgba(139, 92, 246, .45);
    border-radius: 24px;
    padding: 24px;
    z-index: 9999;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .55),
        0 0 45px rgba(139, 92, 246, .20);

    animation:
        trialFloatIn .8s ease forwards,
        trialFloat 5s ease-in-out infinite 1s;

    font-family: 'Inter', sans-serif;
}

/* Glow */

.trial-floating-glow {
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    top: -90px;

    background: radial-gradient(
        circle,
        rgba(139, 92, 246, .35),
        transparent 70%
    );

    pointer-events: none;
}

/* Entrada */

@keyframes trialFloatIn {

    from {
        opacity: 0;
        transform: translateY(80px) scale(.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

/* Movimento */

@keyframes trialFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }

}


/* =========================================
   CLOSE
========================================= */

.trial-close {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 27px;
    height: 27px;

    border: 0;
    border-radius: 50%;

    background: rgba(255,255,255,.08);
    color: #aaa;

    cursor: pointer;

    transition: .3s;
    z-index: 5;
}

.trial-close:hover {
    background: rgba(255,255,255,.18);
    color: #fff;
    transform: rotate(90deg);
}


/* =========================================
   CONTENT
========================================= */

/* .trial-floating-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    z-index: 2;
} */


/* =========================================
   BADGE 30 DIAS
========================================= */

.trial-badge {
    flex-shrink: 0;

    width: 92px;
    height: 92px;

    border-radius: 50%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #ffce3a,
            #ffb300
        );

    color: #10162d;

    box-shadow:
        0 0 30px rgba(255, 193, 7, .28);

    transform: rotate(-7deg);
}

.trial-badge-number {
    font-size: 38px;
    line-height: 32px;
    font-weight: 900;
}

.trial-badge-text {
    margin-top: 5px;

    font-size: 10px;
    line-height: 11px;
    text-align: center;
    font-weight: 900;
}


/* =========================================
   ICON
========================================= */

.trial-floating-icon {

    position: absolute;

    width: 42px;
    height: 42px;

    left: 70px;
    top: -13px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #bd42ff,
            #526bff
        );

    color: #fff;

    font-size: 18px;

    box-shadow:
        0 8px 20px rgba(126, 72, 255, .35);

    transform: rotate(10deg);
}


/* =========================================
   TEXT
========================================= */

.trial-floating-text {
    flex: 1;
}

.trial-eyebrow {

    display: block;

    margin-bottom: 5px;

    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;

    color: #d0eb07;
}

.trial-floating-text h3 {

    margin: 0;

    color: #fff;

    font-size: 20px;
    line-height: 1.15;

    font-weight: 700;
}

.trial-floating-text h3 strong {

    display: block;

    background:
        linear-gradient(
            90deg,
            #c54aff,
            #6485ff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trial-floating-text p {

    margin: 8px 0 10px;

    color: #b8bfd4;

    font-size: 12px;
    line-height: 1.45;
}


/* =========================================
   BENEFÍCIOS
========================================= */

.trial-benefits {

    display: flex;
    gap: 12px;

    margin-bottom: 14px;
}

.trial-benefits span {

    color: #d7dbea;

    font-size: 10px;
    white-space: nowrap;
}

.trial-benefits i {

    color: #8e68ff;
    margin-right: 3px;
}


/* =========================================
   BUTTON
========================================= */

.trial-floating-button {

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;

    padding: 11px 16px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            #c239ff,
            #566fff
        );

    color: #fff !important;

    font-size: 12px;
    font-weight: 800;

    text-decoration: none !important;

    box-shadow:
        0 8px 25px rgba(135, 65, 255, .35);

    transition: .3s;
}

.trial-floating-button i {
    transition: .3s;
}

.trial-floating-button:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 30px rgba(135, 65, 255, .55);
}

.trial-floating-button:hover i {
    transform: translateX(5px);
}


/* =========================================
   FOOTER
========================================= */

.trial-floating-footer {

    position: relative;

    margin-top: 15px;
    padding-top: 12px;

    border-top:
        1px solid rgba(255,255,255,.08);

    text-align: center;

    color: #858da7;

    font-size: 10px;

    z-index: 2;
}

.trial-floating-footer i {
    color: #8b6cff;
    margin-right: 4px;
}


/* =========================================
   PULSE NO BOTÃO
========================================= */

.trial-floating-button::before {
    content: "";
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .trial-floating {

        right: 15px;
        left: 15px;
        bottom: 15px;

        width: auto;

        padding: 18px;

        border-radius: 20px;
    }

    .trial-badge {

        width: 72px;
        height: 72px;
    }

    .trial-badge-number {
        font-size: 30px;
    }

    .trial-badge-text {
        font-size: 8px;
        line-height: 9px;
    }

    .trial-floating-icon {
        left: 53px;
        top: -10px;

        width: 34px;
        height: 34px;

        font-size: 14px;
    }

    .trial-floating-text h3 {
        font-size: 17px;
    }

    .trial-floating-text p {
        font-size: 11px;
    }

    .trial-benefits {
        flex-direction: column;
        gap: 3px;
    }

}