/* Pricing Section */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/pattern-bg.svg') center/cover;
    opacity: 0.05;
    pointer-events: none;
}

.pricing .container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 var(--spacing-md);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #00AEEF;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 174, 239, 0.3);
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, #FFFFFF 0%, #00AEEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
}

.pricing-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00AEEF, #19C37D);
    border-radius: 2px;
}

.pricing-header .subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: var(--spacing-md);
    line-height: 1.6;
    font-weight: 400;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-tab {
    padding: 0.75rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: transparent;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-tab i {
    font-size: 1.1rem;
}

.pricing-tab:hover {
    border-color: #00AEEF;
    transform: translateY(-2px);
}

.pricing-tab.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: #00AEEF;
    box-shadow: 0 4px 15px rgba(0, 174, 239, 0.2);
}

.pricing-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.pricing-content.active {
    display: block;
}

.pricing-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 1rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.wide {
    max-width: 800px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 174, 239, 0.5);
}

.pricing-card.featured {
    border-color: #00AEEF;
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

.pricing-card .badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #19C37D;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(25, 195, 125, 0.3);
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.price-block {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00AEEF;
    margin: 0;
    line-height: 1.2;
}

.price span {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.price-subtitle {
    color: #19C37D;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.savings {
    color: #19C37D;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    font-weight: 600;
}

.original-price {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

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

.card-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.card-features li i {
    color: #19C37D;
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 50px;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 174, 239, 0.3);
}

.benefits-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.benefits-column h4 {
    color: #00AEEF;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefits-column h4 i {
    color: #19C37D;
    font-size: 1.3rem;
}

.pricing-footer {
    margin-top: 4rem;
    text-align: center;
}

.payment-methods {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-security i {
    font-size: 1.5rem;
    color: #19C37D;
}

.payment-security p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

.payment-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.payment-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    min-width: 160px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.payment-option i {
    font-size: 2rem;
    color: #00AEEF;
}

.payment-option span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.support-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.support-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.support-content i {
    font-size: 2.5rem;
    color: #00AEEF;
}

.support-text {
    text-align: left;
}

.support-text h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.support-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: #25D366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    background: #22c35e;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.4rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-header h2 {
        font-size: 2.5rem;
    }

    .pricing-cards {
        padding: 0;
    }

    .pricing-card {
        min-width: 100%;
        margin: 0;
        padding: 2rem;
    }

    .pricing-card.featured {
        transform: none;
    }

    .benefits-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-tab {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .payment-methods {
        padding: 2rem;
    }

    .payment-options {
        gap: 1rem;
    }

    .payment-option {
        min-width: calc(50% - 0.5rem);
        padding: 1rem;
    }

    .support-section {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .support-content {
        flex-direction: column;
        gap: 1rem;
    }

    .support-text {
        text-align: center;
    }

    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .pricing-tab {
        width: 100%;
        justify-content: center;
    }

    .payment-option {
        min-width: 100%;
    }
}

@media (max-width: var(--breakpoint-md)) {
    .pricing-header h2 {
        font-size: 2rem;
    }

    .pricing-card {
        padding: var(--spacing-lg);
    }

    .card-price {
        font-size: 2rem;
    }
}

@media (max-width: var(--breakpoint-sm)) {
    .pricing {
        padding: var(--spacing-lg) 0;
    }

    .pricing-header h2 {
        font-size: 1.75rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
} 