﻿/* ====== SPINNER ====== */

.carros-loading {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 110px; /* DESKTOP / TABLET */
    z-index: 9999;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.carros-loading-box {
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.carros-loading-spinner {
    width: 18px;
    height: 18px;
}

/* CELULAR:  */
@media (max-width: 768px) {
    .carros-loading {
        bottom: 230px; /* ajuste fino aqui se quiser mais alto/baixo */
    }

    .carros-loading-box {
        font-size: 13px;
        padding: 8px 14px;
        max-width: 90%;
        text-align: center;
    }
}


/* ====== FIM SPINNER ====== */

