/* Pricing Cards Styles */
.pricing-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.popular {
    border-color: #28a745;
    transform: scale(1.05);
}

.pricing-card.premium {
    border-color: #ffc107;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.price {
    margin: 20px 0;
}

.currency {
    font-size: 18px;
    color: #666;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    color: #28a745;
    line-height: 1;
}

.period {
    font-size: 18px;
    color: #666;
}

.price-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-features {
    flex-grow: 1;
    margin-bottom: 30px;
}

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

.pricing-features li {
    padding: 8px 0;
    color: #555;
    font-size: 14px;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    margin-top: auto;
}

.btn-pricing {
    display: block;
    background: #28a745;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    background: #218838;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

.btn-whatsapp {
    display: block;
    background: #25d366;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #1ea952;
    color: white;
    text-decoration: none;
}

.popular-badge, .premium-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.premium-badge {
    background: #ffc107;
    color: #333;
}

/* Comparison Table Styles */
.comparison-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.comparison-table table {
    margin: 0;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 20px 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.comparison-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.feature-column {
    background: #f8f9fa !important;
    font-weight: 600;
    width: 25%;
}

.plan-column {
    text-align: center;
    width: 18.75%;
}

.plan-column.popular {
    background: #e8f5e8 !important;
    border-left: 3px solid #28a745;
    border-right: 3px solid #28a745;
}

.plan-column.premium {
    background: #fff8e1 !important;
    border-left: 3px solid #ffc107;
    border-right: 3px solid #ffc107;
}

.plan-header h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 20px;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 10px;
}

.popular-tag, .premium-tag {
    background: #28a745;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}

.premium-tag {
    background: #ffc107;
    color: #333;
}

.feature-name {
    font-weight: 600;
    color: #333;
}

.comparison-table .text-center {
    text-align: center;
    font-weight: 600;
}

.comparison-table .text-center:contains("✓") {
    color: #28a745;
}

/* Feature Cards Styles */
.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 32px;
}

.feature-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .pricing-card {
        margin-bottom: 30px;
    }
    
    .pricing-card.popular {
        transform: none;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 800px;
    }
    
    .amount {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .pricing-card {
        padding: 20px 15px;
    }
    
    .amount {
        font-size: 32px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

