.layout {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
  max-width: 1100px;
  margin: 0 auto;
}

.col-left img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
}

.col-right {
  padding: 20px 30px;
  background: #fff;
  overflow-y: auto;
}

.title-desayunos {
  display: block;
  width: 220px;
  height: 40px;            
  margin: 0 auto 16px;        
  background: url("../images/titulo-desayunos.webp") no-repeat center center;
  background-size: contain; 
  line-height: 0;                      
  overflow: hidden;
}

.title-quesadillas {
  display: block;
  width: 300px;
  height: 40px;            
  margin: 0 auto 16px; 
  background: url("../images/titulo-quesadillas.webp") no-repeat center center;
  background-size: contain; 
  line-height: 0;                      
  overflow: hidden;
}

.title-ensaladas {
  display: block;
  width: 220px;
  height: 40px;            
  margin: 0 auto 16px; 
  background: url("../images/titulo-ensaladas.webp") no-repeat center center;
  background-size: contain; 
  line-height: 0;                      
  overflow: hidden;
}

.menu-list li {
  position: relative;  
  margin-bottom: 16px;
  padding-left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-list li.show {
  opacity: 1;
  transform: translateY(0);
}

.item-head {
  display: flex;
  justify-content: space-between;
  position: relative;   
}

.item-head.with-icon::before {
  content: "";
  position: absolute;
  left: -28px;         
  top: 50%;          
  transform: translateY(-50%); 
  width: 32px;   
  height: 32px;
  background: url("../images/chef.webp") no-repeat center;
  background-size: contain;
}

.item-head.with-icon-chile::before {
  content: "";
  position: absolute;
  left: -28px;         
  top: 50%;          
  transform: translateY(-50%); 
  width: 32px;   
  height: 32px;
  background: url("../images/chile.webp") no-repeat center;
  background-size: contain;
}

.item-desc {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #555;
}

@media (max-width: 768px) {
  .layout {
    grid-template-columns: 1fr;  
    grid-template-rows: auto 1fr; 
  }
  .col-left {
    height: 220px;
  }
  .col-left img {
    height: 100%;
  }
}

.section-sub {
  font-size: 12px;
  font-style: italic;
  color: #666;           
  margin: -12px 0 16px 0; 
  padding-left: 4px;   
  display: block;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-sub.show {
  opacity: 1;
  transform: translateY(0);
}

.logo-vegao {
  width: 120px;         
  height: auto;
  margin-bottom: 20px;
}