body {
    font-family: Arial, sans-serif;
}

h1 {
    color: #333;
}

.navbar {
    background-color: #f8f9fa;
}

.nav-link {
    color: #555;
}

.nav-link:hover {
    color: #000;
}

.gap-xl-4 {
    gap: 2rem; /* Adjust as needed for larger gap */
}

.custom-container {
    padding-left: 2rem;
    padding-right: 2rem;
}

.custom-padding {
    padding-left: 5rem;
    padding-right: 5rem;
}

.min-height-descricao {
    min-height: 300px;
    max-height: 300px;
}

.height-button {
    min-height: 75px;
    max-height: 75px;
}

.step {
    display: none;
}

.step.active {
    display: block;
}

.custom-accordion-button::after {
    filter: invert(1); /* Torna a seta branca */
}

.step-number {
    background-color: black;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    vertical-align: middle; /* Alinha o círculo com o texto */
}
.step-title {
    display: flex;
    align-items: center;
}


/* tabela do carrinho */

.header-row {
    background-color: #343a40;
    color: white;
}

.item-row:nth-child(even) {
    background-color: #f8f9fa;
}

.item-row:nth-child(odd) {
    background-color: #ffffff;
}

/* cards da home */

/* .truncate-container {
    position: relative;
    width: 100%;
}

.text-truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
} */

.truncate-text {
    display: -webkit-box;
    -webkit-line-clamp: 10; /* Número de linhas a serem exibidas */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    height: auto;
    max-height: 300px;
}

.height-button {
    height: 75px;
}

.card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Check Out */

.card-title {
    font-size: 1.5rem;
}

/* Footer fixo */
html, body {
    height: 100%;
}
body {
    display: flex;
    flex-direction: column;
}
.content {
    flex: 1 0 auto;
}
footer {
    flex-shrink: 0;
}

/* Chip da numeração do acordeon */
.chip {
    padding: 0.25em 0.5em;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #fff;
    background-color: white;
    border-radius: 0.2rem;
}

.chip {
    display: inline-block;
    padding: 0.5em 0.75em;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.2;
    color: black;
    background-color: white;
    border: 2px solid black;
    border-radius: 50%;
    margin-right: 1em; /* Espaçamento maior do número para o texto */
    text-align: center;
}

/* cor do item de acordeon selecionado */
.custom-accordion-button.collapsed {
    background-color: #ffffff; /* cor escura */
    color: #343a40; /* texto branco */
}

.custom-accordion-button:not(.collapsed) {
    background-color: #343a40; /* cor escura */
    color: #ffffff; /* texto branco */
}

.custom-accordion-button {
    background-color: #343a40; /* cor escura */
    color: #ffffff; /* texto branco */
}

/*Cor da borda do foco*/
.custom-accordion-button:focus {
    outline: 2px solid #dcdcdc; /* Borda cinza clara */
    box-shadow: none; /* Remove qualquer sombra */
}

Formulário cadastrar 
.custom-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-form-container h3 {
    margin-bottom: 20px;
}

.custom-form-container .divider {
    border-top: 1px solid #dee2e6;
    margin: 20px 0;
}

.custom-form-container .btn {
    width: 100%;
}


/* Retirada de margin-botton do header */
.no-margin-bottom {
    margin-bottom: 0;
}

/* Confirma card */
.content-confirma {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px; /* Adjust based on your navbar height */
    padding-bottom: 60px; /* Adjust based on your footer height */
    min-height: calc(100vh - 120px); /* Ensure the content height adjusts with navbar and footer */
}

.card-confirma {
    width: 100%;
    max-width: 600px;
}

/* Confirma card */
.card-termo-e-politica {
    width: 100%;
    max-width: 900px;
}

/* Modal */
.modal-lg {
    max-width: 900px; /* Ajuste conforme necessário */
}

.accordion-button::after {
    filter: invert(1); /* Inverte a cor para torná-la visível em fundos escuros */
}

  