/**
 * Seção WhatsApp Oficial - CINNDI
 * Manifesto tipográfico centrado, fundo esmeralda escuro
 */

.anti-ban {
    padding: 110px 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 0%, rgba(16, 185, 129, 0.18), transparent 65%),
        radial-gradient(ellipse 50% 50% at 85% 100%, rgba(59, 130, 246, 0.10), transparent 65%),
        #04251f;
    text-align: center;
    overflow: hidden;
}

.anti-ban-container {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.ab-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #34d399;
    margin-bottom: 22px;
}

.ab-headline {
    font-size: clamp(2rem, 5.5vw, 3.4rem);
    font-weight: 800;
    color: #f0fdf4;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 28px;
}

/* Canal rotativo no headline: itens empilhados na mesma célula,
   a largura fica fixa pela maior palavra (sem pulo de layout) */
.ab-canal {
    display: inline-grid;
    justify-items: center;
}

.ab-canal-item {
    grid-area: 1 / 1;
    font-weight: inherit;
    color: var(--cc);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    white-space: nowrap;
}

.ab-canal-item.ab-canal-ativo {
    opacity: 1;
    transform: none;
}

/* Rotor: "Chega de [palavra]" */
.ab-rotor {
    font-size: clamp(1.25rem, 3.2vw, 1.9rem);
    font-weight: 700;
    color: #6ee7b7;
    margin-bottom: 36px;
    min-height: 1.5em;
}

.ab-rotor-fixo {
    color: #a7f3d0;
    opacity: 0.75;
    margin-right: 0.35em;
}

.ab-rotor-palavra {
    display: inline-block;
    position: relative;
    color: #ffffff;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.ab-rotor-palavra::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 54%;
    height: 3px;
    border-radius: 3px;
    background: #f87171;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.45s ease;
}

.ab-rotor-palavra.riscada {
    color: rgba(255, 255, 255, 0.45);
}

.ab-rotor-palavra.riscada::after {
    transform: scaleX(1);
}

.ab-rotor-palavra.saindo {
    opacity: 0;
    transform: translateY(-10px);
}

/* Manifesto */
.ab-manifesto {
    font-size: clamp(1.02rem, 2vw, 1.2rem);
    line-height: 1.85;
    color: #cbd5d1;
    margin: 0 auto;
    max-width: 640px;
}

.ab-manifesto em {
    font-style: normal;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(transparent 65%, rgba(16, 185, 129, 0.4) 65%);
    padding: 0 2px;
}

@media (prefers-reduced-motion: reduce) {
    .ab-rotor-palavra,
    .ab-rotor-palavra::after,
    .ab-canal-item {
        transition: none;
    }
}

/* Responsivo */
@media (max-width: 640px) {
    .anti-ban {
        padding: 72px 0;
    }

    .ab-headline {
        margin-bottom: 20px;
    }

    .ab-rotor {
        margin-bottom: 26px;
    }

    .ab-manifesto {
        line-height: 1.75;
    }
}
