/* ========================================
   PRICING SECTION - Workshop Sem Bloqueios
   ========================================*/

/* Importar variáveis de cores */
@import url('variables.css');

/* Container da Pricing Section */
.pricing {
    background: var(--gradient-dark);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.pricing-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Label e Título */
.pricing-label {
    font-size: 0.9rem;
    color: var(--color-gray-300);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 3rem;
    letter-spacing: -1px;
    color: var(--text-white);
}

.highlight-opportunity {
    color: var(--color-purple);
    display: inline-block;
}

/* Card de Preço */
.pricing-card {
    background: var(--bg-card-light);
    backdrop-filter: blur(10px);
    border: 2px solid var(--color-blue);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 500px;
    width: 100%;
    box-shadow: 
        0 25px 60px var(--black-30),
        inset 0 1px 0 var(--white-10);
    position: relative;
}

/* Header do Preço */
.price-header {
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1rem;
    color: var(--color-gray-400);
    font-weight: 500;
    text-decoration: line-through;
    text-decoration-color: var(--color-red);
    text-decoration-thickness: 2px;
}

/* Preço Principal */
.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--text-white);
}

.currency {
    font-size: 2rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.price-value {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
}

.price-cents {
    font-size: 2rem;
    font-weight: 600;
}

/* Descrição */
.price-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button Pricing */
.cta-button-pricing {
    background: var(--gradient-yellow);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px var(--yellow-40);
    width: 100%;
    max-width: 350px;
}

.cta-button-pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px var(--yellow-50);
    background: var(--gradient-yellow-hover);
}

.cta-button-pricing:active {
    transform: translateY(-1px);
}

/* ========================================
   RESPONSIVIDADE
   ========================================*/

/* Tablets */
@media (max-width: 1200px) {
    .pricing-title {
        font-size: 3rem;
    }
    
    .price-value {
        font-size: 4.5rem;
    }
    
    .pricing-card {
        padding: 2.5rem 2rem;
    }
}

@media (max-width: 968px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .price-value {
        font-size: 4rem;
    }
    
    .currency, .price-cents {
        font-size: 1.8rem;
    }
    
    .price-description {
        font-size: 1rem;
    }
    
    .cta-button-pricing {
        font-size: 1rem;
        padding: 1.1rem 2.5rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .pricing {
        padding: 6rem 0;
    }
    
    .pricing-container {
        padding: 0 1rem;
    }
    
    .pricing-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
    }
    
    .price-value {
        font-size: 3.5rem;
    }
    
    .currency, .price-cents {
        font-size: 1.5rem;
    }
    
    .price-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .cta-button-pricing {
        font-size: 0.9rem;
        padding: 1rem 2rem;
    }
    
    .pricing-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 1.8rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .currency, .price-cents {
        font-size: 1.3rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .price-description {
        font-size: 0.9rem;
    }
}