/* ============================================================
   CARROSSEL — CORRIGIDO
   ============================================================ */

.sc-carousel {
    width: 277px !important;
    max-width: 277px !important;
    overflow: hidden;
    position: relative;
}

.sc-track {
    display: flex;
    gap: 24px;

    height: 100%;
    transition: transform 0.6s ease;
}


/* CARD */
.sc-card {
    width: 277px;
    height: 271px;

    flex-shrink: 0; /* <<< MUITO IMPORTANTE */
    background: linear-gradient(
        248deg,
        #0E0E0E -12.28%,
        #1A1A1A 64.64%
        
    );

    border-radius: 20px;
    padding: 24px;
    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* HEADER */
.sc-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sc-icon {
    width: 24px;
    height: 24px;
}

.sc-title {
    font-family: 'Raleway';
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    letter-spacing: .1em;

    background: linear-gradient(180deg, #FCC230 54%, rgba(83,49,32,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BODY */
.sc-card-body {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.sc-arrow {
    width: 22px;
    height: 22px;
}

.sc-text {
    font-family: 'Raleway';
    font-weight: 500;
    font-size: 15px;
    line-height: 17px;
    letter-spacing: .1em;
    color: #fff;
}

/* DOTS */
.sc-dots {
    margin: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.sc-dot {
    width: 10px;
    height: 10px;
    background: #444;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.sc-dot.active {
    background: linear-gradient(90deg, var(--gold-start), var(--gold-end));
    transform: scale(1.35);
}

