/* ============================================================
   HERO SLIDE 1 — Blueprint canvas + Controller ticker
   ============================================================ */

/* ── Canvas ────────────────────────────────────────────────── */
.s1-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
}

/* ── Overlay: mais escuro na direita para realçar os chips ── */
.hero-slide-1 .hero-overlay {
    background: linear-gradient(
        to right,
        rgba(0,18,42,0.94) 0%,
        rgba(0,28,58,0.80) 45%,
        rgba(0,10,30,0.70) 100%
    );
}

/* ── Ticker container ──────────────────────────────────────── */
.s1-ticker {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
    padding: 70px 0;
    /* Mascara: oculta onde o texto está (esquerda) e suaviza as bordas */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent  0%,
        transparent  48%,
        rgba(0,0,0,0.25) 57%,
        black        66%,
        black        86%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent  0%,
        transparent  48%,
        rgba(0,0,0,0.25) 57%,
        black        66%,
        black        86%,
        transparent 100%
    );
}

@media (max-width: 991.98px) {
    .s1-ticker { display: none; }
}

/* ── Cada fileira ──────────────────────────────────────────── */
.s1-tk-row {
    overflow: hidden;
    flex-shrink: 0;
}

.s1-tk-inner {
    display: flex;
    gap: 14px;
    width: max-content;
    animation: s1Scroll var(--speed, 32s) linear infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes s1Scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Chip de modelo com imagem ─────────────────────────────── */
.s1-tk-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.30);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-left: 2.5px solid var(--cc, #007cc2);
    color: rgba(255, 255, 255, 0.84);
    border-radius: 12px;
    padding: 6px 18px 6px 6px;
    font-size: 11.5px;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    white-space: nowrap;
    letter-spacing: 0.3px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.s1-tk-img {
    width: 57px;
    height: 57px;
    object-fit: contain;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: block;
    flex-shrink: 0;
}
