﻿.iof {
    color: var(--cor_primaria) !important;
    font-weight: 800 !important;
}


.hl-match {
    background: #fff2a8;
    padding: 0 2px;
    border-radius: 3px;
}


/* mantém o container flex normal do grid */
.produtos-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-evenly;
    align-items: stretch;
}

    /* card estrutura */
    .produtos-lista a.pacote-p {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    /* imagem consistente */
    .produtos-lista .pacote-p-img img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    /* corpo do card */
    .produtos-lista .pacote-p-infos {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    /* botão no fundo */
    .produtos-lista .btn-container {
        margin-top: auto;
    }

    /* =========================
   CONTROLE DO TEXTO (SEM ... )
   ========================= */

    /* TÍTULO: no máximo 4 linhas, sem reticências */
    .produtos-lista .pacote-p-titulo {
        line-height: 1.2;
        max-height: calc(1.2em * 4); /* 4 linhas */
        overflow: hidden;
    }


    /* PAÍSES: no máximo 3 linha, sem reticências */
    .produtos-lista .pacote-p-texto {
        line-height: 1.2;
        max-height: calc(1.2em * 3); /* 3 linha */
        overflow: hidden;
    }


/* ====== 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 ====== */