/* New Pricing Card Design */
.pricing-card-v2 {
    background-color: #1a1d2e;
    /* Fundo mais claro do card */
    border: 1px solid #2d3548;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: #F3F4F6;
    max-width: 400px;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Blue Glow Effect (Fumaça Azul) */
.pricing-card-v2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.4) 0%, rgba(0, 102, 255, 0.15) 30%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.8;
}

.pricing-card-v2:hover {
    transform: translateY(-5px);
    border-color: #4f5670;
}

.pricing-card-v2:hover::before {
    opacity: 1;
}

/* Header */
.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.pricing-header .subtitle {
    font-size: 0.95rem;
    color: #9CA3AF;
    margin-bottom: 1rem;
    font-weight: 400;
}

.highlight-text {
    font-size: 0.9rem;
    color: #22D3EE;
    /* Cyan */
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.highlight-text::before {
    content: "✓";
    color: #22D3EE;
}

/* Price Box - Sem fundo, apenas o preço em destaque */
.price-box {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.old-price {
    display: block;
    font-size: 0.85rem;
    color: #6B7280;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0066FF 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.current-price span {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #0066FF 0%, #00C2FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

.current-price .currency {
    font-size: 1.5rem;
}

.total-price {
    display: block;
    font-size: 0.85rem;
    color: #9CA3AF;
    font-weight: 400;
    margin-top: 0.5rem;
}

.savings-tag {
    color: #10B981;
    /* Emerald 500 */
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Features List */
.features-list-v2 {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.features-list-v2 li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: #D1D5DB;
    /* Gray 300 */
    font-size: 0.95rem;
}

.check-circle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background-color: transparent;
    border: 2px solid #0066FF;
    /* Azul profissional */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066FF;
    font-size: 12px;
    font-weight: bold;
}

/* Shimmer Animation - Continuous Movement */
@keyframes shimmer {
    0% {
        /* Começa bem antes do início do botão */
        left: -100%;
    }

    100% {
        /* Termina bem depois do fim do botão, sem paragens */
        left: 150%;
    }
}

/* Button with Shimmer Effect */
.btn-price-v2 {
    display: block;
    width: 100%;
    padding: 0.625rem 3.5rem;
    background-color: #1e1e2e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-price-v2::after {
    content: "";
    position: absolute;
    top: 0;
    /* Largura do feixe de luz */
    width: 80px;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.3) 50%,
            transparent);
    transform: skewX(-25deg);
    /* Animação linear para movimento constante de 1.2 segundos */
    animation: shimmer 1.2s infinite linear;
}

.btn-price-v2:hover {
    background-color: #252538;
    transform: scale(1.02);
}

.btn-price-v2:active {
    transform: scale(0.95);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card-v2 {
        padding: 1.5rem;
    }
}

/* Pay Text Above Button */
.pay-text {
    font-size: 0.75rem;
    color: #9CA3AF;
    text-align: center;
    margin-bottom: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}