/* Pricing Section - Exact Format Match */
.pricing {
    padding: 80px 0;
    background: #f8f9fa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Pricing Cards Container */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Pricing Card */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e5e7eb;
    position: relative;
    flex: 1;
    max-width: 360px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

/* Featured Plan (Mais Escolhido) */
.pricing-card.featured {
    border: 2px solid #d97706;
    position: relative;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #d97706, #b45309);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-rendering: optimizeLegibility;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.card-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.card-subtitle {
    font-size: 1rem;
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.01em;
    line-height: 1.4;
}

.card-description {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 8px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.005em;
}

.card-volume {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.005em;
}

/* Card Pricing */
.card-pricing {
    text-align: center;
    margin-bottom: 32px;
    padding: 20px 0;
}

.setup-price {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.monthly-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 4px;
}

.price-main {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.price-suffix {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* Card Features */
.card-features {
    flex-grow: 1;
    margin-bottom: 32px;
}

.card-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    padding: 8px 0;
    font-size: 0.875rem;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.005em;
}

.card-features li i {
    margin-right: 12px;
    margin-top: 2px;
    font-size: 0.75rem;
    width: 12px;
    flex-shrink: 0;
}

/* Feature States */
.feature-included {
    color: #374151;
    font-weight: 500;
}

.feature-included i {
    color: #10b981;
}

.feature-excluded {
    color: #9ca3af;
    font-weight: 500;
}

.feature-excluded i {
    color: #9ca3af;
}

/* Plan Buttons */
.btn-plan {
    width: 100%;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: auto;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
}

.btn-basic {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-basic:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.btn-featured {
    background: #10b981;
    color: white;
    border: 2px solid #10b981;
}

.btn-featured:hover {
    background: #059669;
    border-color: #059669;
}

.btn-complete {
    background: white;
    color: #6b7280;
    border: 2px solid #e5e7eb;
}

.btn-complete:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .pricing-card {
        max-width: 400px;
        width: 100%;
    }
    
    .pricing-card.featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 60px 0;
    }
    
    .pricing h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .pricing-cards {
        padding: 0 15px;
    }
    
    .pricing-card {
        padding: 28px 20px;
        min-height: auto;
    }
    
    .card-header h3 {
        font-size: 1.375rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 24px 16px;
    }
    
    .card-features li {
        font-size: 0.8125rem;
        padding: 6px 0;
    }
    
    .btn-plan {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }
}