/* Pricing Section */
.pricing {
    background-color: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.pricing-card {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}

.pricing-card.featured {
    background-color: var(--primary-color);
    color: white;
}

.pricing-card.featured:hover {
    transform: translateY(-10px);
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.card-price {
    text-align: center;
    margin: 30px 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.installment {
    font-size: 1rem;
    margin-top: 5px;
    color: var(--text-secondary);
}

.card-features {
    margin: 30px 0;
}

.card-features ul {
    padding: 0;
    list-style: none;
}

.card-features li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.card-features li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23E9B949'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
}

.card-features li:last-child {
    margin-bottom: 0;
}

.pricing-card.featured .card-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .installment {
    color: rgba(255, 255, 255, 0.8);
}

/* WhatsApp Button Specific to Pricing */
.btn-whatsapp {
    background-color: #25D366;
    color: white;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: var(--radius-md);
    font-weight: 600;
    margin-top: 15px;
    width: 100%;
    justify-content: center;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
}

.whatsapp-icon {
    margin-right: 8px;
}

.whatsapp-support {
    display: block;
    margin-top: 6px;
    font-size: 0.85rem;
}

/* Final CTA Section */
.final-cta {
    background-color: var(--bg-tertiary);
    text-align: center;
    padding: var(--spacing-xl) 0;
    border-radius: var(--radius-lg);
    margin: var(--spacing-lg) auto;
}

.guarantee-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 30px auto;
    max-width: 500px;
    box-shadow: var(--shadow-md);
    gap: 20px;
}

.guarantee-icon {
    color: var(--secondary-color);
    font-size: 2.5rem;
}

.guarantee-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.support-contact {
    background-color: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: 25px;
    margin: 30px auto;
    max-width: 500px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.support-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.support-contact p {
    color: var(--text-secondary);
    margin-bottom: 15px;
} 