/* ====================================
   PRICING TABLES COMPONENTS
   (Estilos para as tabelas de planos)
   ==================================== */

.pricing-section {
    padding: 5rem 0;
    position: relative;
    background: var(--bg-dark);
}

.pricing-card {
    background: linear-gradient(145deg, rgba(30, 30, 46, 0.9), rgba(22, 22, 34, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Featured / Premium Card */
.pricing-card.featured {
    border-color: var(--accent-color);
    background: linear-gradient(145deg, rgba(35, 35, 55, 0.95), rgba(25, 25, 40, 0.95));
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.15);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(230, 57, 70, 0.3);
}

/* Header */
.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 0.25rem;
    align-self: flex-start;
    margin-top: 0.5rem;
}

.pricing-period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-left: 0.25rem;
    align-self: flex-end;
    margin-bottom: 0.5rem;
}

/* Features List */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.pricing-features li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    font-size: 1rem;
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features li.disabled i {
    color: rgba(255, 255, 255, 0.2);
}

/* Action Button */
.pricing-action {
    text-align: center;
    margin-top: auto;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.pricing-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.pricing-btn-primary {
    background: var(--accent-color);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.pricing-btn-primary:hover {
    background: #d62828;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card {
        margin-bottom: 2rem;
    }
}
