/* CSS Document */

.pricing-header {
    text-align: center;
    padding: 40px 0;
}

.pricing-header h1 {
    font-size: 32px;
    color: #ff3d00;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
}

.pricing-header p {
    font-size: 18px;
    color: #666;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px 0 60px 0;
    flex-wrap: wrap;
}

.pricing-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 0;
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.pricing-card.featured {
    border: 2px solid #ff3d00;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.best-value {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff3d00;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-header {
    padding: 30px 30px 20px 30px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    background: #fafafa;
    border-radius: 12px 12px 0 0;
}

.card-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    color: #333;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    margin-right: 5px;
}

.value {
    font-size: 48px;
    font-weight: 800;
    color: #ff3d00;
}

.period {
    font-size: 16px;
    color: #888;
    margin-left: 5px;
}

.promo-text {
    font-size: 13px;
    color: #888;
    margin-top: 10px;
    font-style: italic;
}

.card-body {
    padding: 30px;
    flex-grow: 1;
}

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

.card-body ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 15px;
    position: relative;
    padding-left: 25px;
}

.card-body ul li:last-child {
    border-bottom: none;
}

.card-body ul li:before {
    content: "✓";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.card-body ul li.highlight {
    font-weight: 600;
    color: #333;
}

.card-footer {
    padding: 0 30px 30px 30px;
    text-align: center;
}

.btn-assinar {
    display: block;
    width: 100%;
    padding: 15px 0;
    background: #5898cb;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-assinar:hover {
    background: #555;
    text-decoration: none;
    color: #fff;
}

.btn-featured {
    background: #ff3d00;
}

.btn-featured:hover {
    background: #e63700;
}

.payment-info {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 1000px) {
    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        max-width: 350px;
    }

    .pricing-card.featured {
        transform: none;
        order: -1;
        /* Show featured first on mobile */
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}