
/*  Título da categoria (Ex: "Frutas")  */
.font-complemento {
    font-family: sans-serif;
    font-size: 18px;
    font-style: oblique;
    font-weight: bold;
    color: #FFF;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


/*  Barra cinza (Ex: "Escolha seus complementos...")  */
.opcoes2 p {

    font-family: 'Poppins', sans-serif;
    font-weight: 700; 
    color: #21033F;
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 0.5px; 
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5); 
    background-color: rgba(255, 255, 255, 0.25);
    padding: 1px 15px 12px 15px; 
    text-align: center;
    margin: 0;
}

/* Container do título da categoria Escolha... */
#conteiner-escolha50 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(145deg, rgb(92, 12, 142), #3a2252); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 0 10px 0 10px;
    box-shadow: 0 1px 5px  rgb(92, 12, 142);
}

#conteiner-escolha50 p {
    font-size: 13px;
    color: #ddd;
}

/*  Card do Item (AGORA COM BRANCO TRANSLÚCIDO)  */
.complemento-item {
    background-color: rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 12px 10px 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.2); /* Borda estática sutil */
    transition: all 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 2px 5px  rgb(92, 12, 142);
      
}


/*  TEXTOS (COM CORES ESCURAS)  */
.complemento-item .info-item h4 {
    margin: 0 0 4px 0;
    font-size: 1rem;
    color: #212529;
}

.complemento-item .info-item p {
    margin: 0 0 8px 0;
    font-size: 0.8rem;
    color: #6c757d;
}

.complemento-item .info-item .preco-item {
    font-size: 0.9rem;
    font-weight: bold;
    color: #343a40;
}
#complementos-especiais{
    padding-bottom: 45px;
}

/*  CONTROLES DE QUANTIDADE  */
.controle-quantidade {
    display: flex;
    align-items: center;
    border: 1px solid #999999; 
    border-radius: 20px;
    padding: 4px;
    background-color: rgba(125, 125, 125, 0.3);
    
}

.controle-quantidade button {
    width: 28px;
    height: 28px;
    border: none;
    background-color: transparent;
    color: #212529; 
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.controle-quantidade .quantidade {
    padding: 0 10px;
    font-weight: bold;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    color: #212529;
}

/*  Rodapé Fixo do Preço Total  */
.carrinho-total {
    position: fixed;
    height: 65px;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
     background-color: rgba(64, 4, 102, 0.738);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    box-sizing: border-box;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.carrinho-total .total-info span {
    font-size: 0.9rem;
    color: #cccccc;
}

.carrinho-total .total-info strong {
    font-size: 16px;
    color: #ffffff;
    margin-left: 8px;
}

/* 3. O BOTÃO "Adicionar" (Estilo .continuar) */
.carrinho-total .btn-finalizar {
    /* Cor roxa do botão 'Continuar' */
    background-color: #5B0E7F; 
    color: #FFFFFF;
    
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
    
    border: none;
    padding: 14px 24px; /* Tamanho do botão */
    
    /* BORDAS MAIS QUADRADAS (como o usuário pediu) */
    border-radius: 8px; 
    
    cursor: pointer;
    transition: none; /* Remove a transição de cor */
}

.carrinho-total .btn-finalizar:hover {
    background-color: #5B0E7F;
}