/* 
* Tech Wolf - Pacotes CSS
* Estilos específicos para a página de pacotes
*/

/* Pricing Cards */
.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    width: 100%;
    max-width: 350px;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(var(--accent-color-rgb), 0.2);
}

.pricing-card.featured {
    background-color: rgba(var(--accent-color-rgb), 0.05);
    border: 1px solid var(--accent-color);
    transform: scale(1.05);
}

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

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
}

.pricing-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pricing-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.pricing-icon i {
    color: #fff;
    font-size: 1.2rem;
}

.pricing-title {
    font-size: 1.8rem;
    margin: 0;
    color: #fff;
}

.pricing-price {
    margin: 25px 0;
    text-align: left;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

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

.pricing-features {
    margin: 30px 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.pricing-feature i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 1.1rem;
}

.pricing-feature.disabled i {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-feature.disabled span {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0;
}

.btn-pricing {
    display: block;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--accent-color-rgb), 0.3);
}

.btn-pricing.featured {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
}

.btn-pricing-outline {
    display: block;
    padding: 12px 20px;
    background: transparent;
    color: #fff;
    text-align: center;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}

.btn-pricing-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.pricing-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 20px;
}

.pricing-footer h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #fff;
}

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

.pricing-details li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-details li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Custom Package */
.custom-package {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 50px 0;
    backdrop-filter: blur(10px);
}

.custom-package h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.custom-package p {
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Table */
.comparison-container {
    overflow-x: auto;
    margin: 40px 0;
    padding: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    color: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background-color: rgba(var(--accent-color-rgb), 0.2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .feature-column {
    text-align: left;
    font-weight: 500;
    color: var(--accent-color);
}

.comparison-table tr:nth-child(odd) {
    background-color: rgba(255, 255, 255, 0.03);
}

.comparison-table tr:hover {
    background-color: rgba(var(--accent-color-rgb), 0.05);
}

.comparison-table i.fas.fa-check {
    color: var(--accent-color);
}

.comparison-table i.fas.fa-times {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .custom-package {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .pricing-price {
        text-align: center;
    }
    
    .pricing-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 5px;
        font-size: 0.8rem;
    }
}
