
.main-content-wrapper {
    padding: 0 15px; 
}

.h3-combo{
    color: rgb(188, 188, 188);   

}
.titulo-combo{
    align-items: center;
    text-align: center;
    border-bottom: 1px solid #000000;
    margin-top: 10px; 
}
.img-combo1 img{
    padding-top: 3px;
    width: 100%;
    /* Altura automática para manter a proporção da imagem (4:3) */
    height: auto; 
    display: block;
    max-width: 100%; 
}
.img-combo1{
    
    width: 100%;
    margin: 0; 
    padding: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.descricao-combo{
    height: 60px;
    justify-content: space-around;
    display: flex;
    align-items:normal;
    flex: 1;
    flex-direction: column; 
    
   background-color: #fdfeff; 
    margin: 10px 0; 
    padding: 5px 2px; 
    border-radius: 8px;
    border: 1px solid #ddd;
    padding-left: 12px;
}
.descricaop{
    margin: 0;
    line-height: 1.2;   
    color: #1b1b1b;
    font-size: 1.0rem;
}
.descricaop span{
    margin: 0;
    line-height: 1.2;   
    color: #1b1b1b;
    font-size: 0.7rem;
}

.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: 12px;
    color: #cccccc;
}

.carrinho-total .total-info strong {
    font-size: 16px;
    color: #ffffff;
    margin-left: 8px;
}

.carrinho-total .btn-finalizar {
    background-color: #5b0e79af;
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9rem;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    font-weight: 700;

}
      
/* esses é do campo de observação sobre o combo*/
.observacao {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 15px 0; 
  padding: 8px 0; 
  padding-bottom: 60px; 
}
/*letra "alguma observação*/
.observacao label {
  font-weight: bold;
  font-size: 14px;
  color: #232323;
  padding-left: 5px;
}

.observacao textarea {
  resize: none;              /* impede redimensionamento */
  height: 80px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
}

.observacao textarea:focus {
  border-color: #7b3fff;    
  box-shadow: 0 0 4px rgba(123, 63, 255, 0.3);
}