/* ===== PRICING SECTION - DESIGN LIMPO E ELEGANTE ===== */

/* Seção de Planos com Background Sutil */
#planos {
    background: linear-gradient(180deg, #fafbff 0%, #f5f6ff 100%);
    position: relative;
}

/* Cards de Preços - Design Limpo e Profissional */
#planos .col-lg-4 > div {
    background: white;
    border: 1px solid #e8eaf6;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 2px 12px rgba(42, 83, 194, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

#planos .col-lg-4 > div:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(42, 83, 194, 0.16);
    border-color: rgba(42, 83, 194, 0.3);
}

/* Título do Plano */
#planos .col-lg-4 > div h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--af-secondary);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

/* Descrição do Plano */
#planos .col-lg-4 > div p:first-of-type {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.5;
}

/* Container do Preço - Destaque Visual */
#planos .col-lg-4 > div .mb-3 {
    background: linear-gradient(135deg, #f5f6ff 0%, #e8eaf6 100%);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 28px;
    border-left: 4px solid var(--af-primary);
    position: relative;
}

/* Valor do Preço - Grande Destaque */
#planos .col-lg-4 > div .fs-3 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--af-primary);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -2px;
}


/* Texto "/ mês" */
#planos .col-lg-4 > div .mb-3 .text-muted {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

/* Lista de Features - Limpa e Organizada */
#planos .col-lg-4 > div ul {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

#planos .col-lg-4 > div ul li {
    padding: 14px 0;
    padding-left: 28px;
    position: relative;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

#planos .col-lg-4 > div ul li:last-child {
    border-bottom: none;
}

/* Checkmark Simples e Elegante */
#planos .col-lg-4 > div ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 14px;
    width: 20px;
    height: 20px;
    background: var(--af-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

#planos .col-lg-4 > div ul li strong {
    color: var(--af-secondary);
    font-weight: 700;
}

/* Botão de Contratação - Destaque */
#planos .col-lg-4 > div .btn {
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 83, 194, 0.25);
}

#planos .col-lg-4 > div .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 83, 194, 0.35);
}

/* Plano em Destaque - Badge Elegante */
#planos .col-lg-4:nth-child(2) > div,
#planos .col-lg-4:nth-child(3) > div {
    border: 2px solid var(--af-primary);
    box-shadow: 0 4px 20px rgba(42, 83, 194, 0.15);
}

#planos .col-lg-4:nth-child(2) > div::after,
#planos .col-lg-4:nth-child(3) > div::after {
    content: 'RECOMENDADO';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--af-primary) 0%, var(--af-secondary) 100%);
    color: white;
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(42, 83, 194, 0.3);
}

/* Taxa de Adesão - Destaque Sutil */
#planos .p-4.rounded-4.shadow-sm {
    background: white;
    border: 2px solid #e8eaf6;
    border-left: 4px solid var(--af-primary);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 12px rgba(42, 83, 194, 0.08);
}

#planos .p-4.rounded-4.shadow-sm .fw-bold.fs-4 {
    font-size: 2.2rem;
    color: var(--af-primary);
    font-weight: 800;
}

/* Aviso Importante - Ícone Destacado */
#planos .d-flex.align-items-start.gap-3 i {
    color: var(--af-primary);
    font-size: 32px;
}

/* Títulos de Seção */
#planos h3.fw-bold {
    font-size: 1.75rem;
    color: var(--af-secondary);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

/* Responsividade */
@media (max-width: 992px) {
    #planos .col-lg-4 > div {
        margin-bottom: 24px;
    }
    
    #planos .col-lg-4 > div .fs-3 {
        font-size: 3rem;
    }
    
    #planos .col-lg-4:nth-child(2) > div::after,
    #planos .col-lg-4:nth-child(3) > div::after {
        font-size: 0.65rem;
        padding: 5px 16px;
    }
}

/* Melhorias Gerais da Página */

/* Hero Section - Mais Impacto Visual */
#hero-produto h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

@media (max-width: 768px) {
    #hero-produto h1 {
        font-size: 2.5rem;
    }
}

/* Why Cards - Mais Elegantes */
.why-card-prod {
    border: 1px solid #e8eaf6;
    box-shadow: 0 2px 12px rgba(42, 83, 194, 0.08);
}

.why-card-prod:hover {
    box-shadow: 0 8px 24px rgba(42, 83, 194, 0.15);
}

/* Challenge Cards - Mais Limpos */
.challenge-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.challenge-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== INTEGRATION PRICING CARDS ===== */

/* Integration Pricing Cards */
.integration-pricing-card {
    background: white;
    border: 2px solid #e8eaf6;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--af-primary) 0%, var(--af-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.integration-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(42, 83, 194, 0.2);
    border-color: var(--af-primary);
}

.integration-pricing-card:hover::before {
    transform: scaleX(1);
}

.integration-custom {
    border-color: var(--af-primary);
    background: linear-gradient(135deg, #ffffff 0%, #f5f6ff 100%);
}

/* Integration Icon */
.integration-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--af-primary) 0%, var(--af-secondary) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(42, 83, 194, 0.25);
}

.integration-icon i {
    font-size: 32px;
    color: white;
}

/* Integration Price */
.integration-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--af-primary);
    line-height: 1;
    letter-spacing: -1px;
}

.price-period {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
}

/* Integration Features */
.integration-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item i {
    font-size: 20px;
    color: var(--af-primary);
    flex-shrink: 0;
}

.feature-item span {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Integration Scope Card */
.integration-scope-card {
    background: white;
    border: 2px solid #e8eaf6;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 2px 12px rgba(42, 83, 194, 0.08);
}

.scope-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.scope-header i {
    font-size: 32px;
    color: var(--af-primary);
}

/* Scope Items */
.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9ff;
    border: 1px solid #e8eaf6;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.scope-item:hover {
    background: white;
    border-color: var(--af-primary);
    box-shadow: 0 4px 12px rgba(42, 83, 194, 0.15);
    transform: translateY(-2px);
}

.scope-item i {
    font-size: 24px;
    color: var(--af-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.scope-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.scope-item strong {
    color: var(--af-secondary);
    font-size: 0.95rem;
    font-weight: 700;
}

.scope-item small {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
}

.scope-extra {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border-color: #ffd966;
}

.scope-extra:hover {
    background: linear-gradient(135deg, #fffbf0 0%, #fff9e6 100%);
    border-color: #ffcc00;
}

.scope-extra i {
    color: #ff9900;
}

/* Integration Badges */
.integration-badge {
    background: linear-gradient(135deg, #f5f6ff 0%, #e8eaf6 100%);
    border: 2px solid var(--af-primary);
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--af-secondary);
    transition: all 0.3s ease;
}

.integration-badge:hover {
    background: linear-gradient(135deg, var(--af-primary) 0%, var(--af-secondary) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(42, 83, 194, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .integration-pricing-card {
        margin-bottom: 24px;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .integration-icon {
        width: 56px;
        height: 56px;
    }
    
    .integration-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .integration-pricing-card {
        padding: 24px;
    }
    
    .integration-scope-card {
        padding: 24px;
    }
    
    .scope-item {
        padding: 12px;
    }
}
