.price-box {
    background-size: 400% 400%;
    border-radius: 16px;
    padding: 1.6rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    /* text-align: center; */
    color: #5c0000;
    position: relative;
    background: linear-gradient(135deg, #fae295 0%, #fd937b 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

@keyframes animatedPriceGradient {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

.price-display {
    border-radius: 18px;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(90deg, #d63031, #e17055);
    background-size: 200% 200%;
    box-shadow: 0 0 0 rgba(255, 82, 82, 0.6);
    color: #fff;
}


/* Animação de gradiente no fundo */

@keyframes pulseBackground {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}


/* Brilho externo pulsante */

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 0 rgba(255, 82, 82, 0.4);
    }

    50% {
        box-shadow: 0 0 30px 10px rgba(255, 82, 82, 0.6);
    }
}

.price-subtitle {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.3rem;
    font-weight: 500;
}

.price-anchor {
    font-size: 2rem;
    text-decoration: line-through;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price-divider {
    height: 2px;
    width: 60%;
    background: linear-gradient(to right, #ffffff, #ffe4e4);
    margin: 1rem auto;
    border-radius: 2px;
}

.price-now {
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.main-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #2ecc71;
    margin: 0.2rem 0;
    animation: scalePulse 1.8s ease-in-out infinite;
    text-shadow: 0 0 0px rgba(255, 255, 255, 0.9), 0 0 28px rgba(46, 204, 113, 0.6);
    transition: transform 0.3s ease;
}

@keyframes scalePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.12);
    }
}

.installment-text {
    font-size: 1rem;
    color: #fff;
    margin-top: 0.4rem;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* ARGUMENTOS */

.urg-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.urg-box {
    border-left: 5px solid #d63031;
    background: #fff8f5;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
    line-height: 1.5;
    text-align: start;
}

.urg-box p {
    margin: 0;
    font-weight: 500;
}

.urg-box b {
    color: #d63031;
    font-weight: 700;
}

.urg-box.final b[style] {
    color: #0da715 !important;
}


/* CONTADOR */

.third-price {
    text-align: center;
    font-size: 1rem;
    margin-top: 2rem;
    margin-bottom: 0.6rem;
    color: #7a1b1b;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 2rem;
}

.animated-countdown .time-box {
    background: linear-gradient(90deg, #d63031, #e17055);
    /* animation: countdownPulse 5s ease-in-out infinite; */
    border-radius: 8px;
    padding: 0.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@keyframes countdownPulse {
    0% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }

    100% {
        filter: brightness(1);
    }
}

.time-box span {
    font-weight: bold;
    font-size: 1.4rem;
    color: #fff;
}

.label {
    font-size: 0.75rem;
    color: #fff;
}


/* BOTÃO CTA */

.cta-price {
    background: linear-gradient(90deg, #d63031, #e17055);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    padding: 1.1rem 1.5rem;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 24px rgba(214, 48, 49, 0.35);
    letter-spacing: 0.5px;
    animation: glowPulse 1.8s infinite ease-in-out;
}

.cta-price:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(214, 48, 49, 0.5);
}


/* RESPONSIVO */

@media (max-width: 600px) {
    .main-price {
        font-size: 4.4rem;
    }

    .cta-price {
        font-size: 1rem;
    }

    .urg-paragraph {
        font-size: 0.9rem;
    }
}


/* ==============
WHAT YOU GET
=========== */

.what-you-get {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #d63031;
    margin-bottom: 2rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    margin-bottom: 1rem;
    padding: 0.8rem;
    border-radius: 10px;
    text-align: start;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    color: #2d3436;
    background: #fff8f5;
    border-left: 5px solid #d63031;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.363);
    /* border-left: 5px solid #d63031;
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s ease; */
}