/* Dark Background for Pricing Section */
.pricing {
    background-color: #0a0a0f;
    /* Fundo bem escuro */
    position: relative;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pricing .container {
    position: relative;
    z-index: 1;
}

.pricing .section-header h2 {
    color: #FFFFFF;
}

.pricing .section-header .subtitle {
    color: #9CA3AF;
}