/**
 * Seção Anti-Banimento SEO - CINNDI
 * Destaque para problemas resolvidos (SEO/GPT friendly)
 */

.anti-ban {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 50%, #fecaca 100%);
    position: relative;
    overflow: hidden;
}

.anti-ban::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-radius: 50%;
    z-index: 0;
}

.anti-ban-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.anti-ban-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Lado dos problemas */
.anti-ban-problemas {
    position: relative;
}

.anti-ban-problemas-titulo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.anti-ban-problemas-titulo svg {
    width: 20px;
    height: 20px;
}

.anti-ban-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 24px;
    line-height: 1.2;
}

.anti-ban-headline span {
    color: #dc2626;
    text-decoration: line-through;
    text-decoration-color: #dc2626;
    text-decoration-thickness: 3px;
}

.problemas-lista {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problema-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    font-size: 1rem;
    color: #6b7280;
    border-bottom: 1px solid rgba(220, 38, 38, 0.1);
}

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

.problema-item svg {
    width: 24px;
    height: 24px;
    color: #dc2626;
    flex-shrink: 0;
}

/* Lado da solução */
.anti-ban-solucao {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid #22c55e;
    position: relative;
}

.anti-ban-solucao::before {
    content: 'SOLUÇÃO CINNDI';
    position: absolute;
    top: -14px;
    left: 32px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.solucao-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    margin-top: 10px;
}

.solucao-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.solucao-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: #374151;
}

.solucao-item svg {
    width: 22px;
    height: 22px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.solucao-destaque {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.solucao-destaque-icone {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solucao-destaque-icone img {
    height: 28px;
    width: auto;
}

.solucao-destaque-texto {
    font-size: 0.9rem;
    color: #166534;
    font-weight: 500;
}

.solucao-destaque-texto strong {
    display: block;
    font-size: 1rem;
    color: #14532d;
}

/* Responsivo */
@media (max-width: 968px) {
    .anti-ban-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .anti-ban-solucao {
        padding: 32px 24px;
    }
}

@media (max-width: 640px) {
    .anti-ban {
        padding: 60px 0;
    }
    
    .anti-ban-headline {
        font-size: 1.5rem;
    }
}
