@import url("menu.css");

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    background-color: #F4E9D8;
    margin: 0;
    padding: 0;
}



.conteiner {
     margin-top: 30px; 
     padding: 0 2%;
}



p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    color: #4e483d;
    margin: 0;
    padding: 0; 

}

.sections {
    margin-top: 40px;
}



.titulo h1 {
    font-size: 3rem;
    color: #222;
    font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

@media (max-width: 768px) {
    .conteiner {
        padding: 0 10px;
        
    }
}
/* ========================== estilo dos botoes de categoria =========================== */

.cardapio {
   display: grid;
    grid-template-columns: repeat(5, 1fr);
   gap: 30px;
   justify-content: space-around;
   margin-top:  60px;
   width: 100%;
    
}



.btn-icon{
  background: none;
  border: none;
  padding: 0;
  width: 120px; 
  text-decoration: none;
}

.btn-icon:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}


figure {
  margin: 0;           
  display: flex;       
  flex-direction: column; 
  align-items: center;    
  gap: 10px;           
}


figure img {
  width: 60px;
  height: auto;
  border-radius: 50%;
  background-color: #d1c7b1; 
  object-fit: contain;
  padding: 15px; 
}



figcaption {

  font-weight: 600;
  color: #333;
    padding-top: 10px;
     font-family: "Plus Jakarta Sans", sans-serif;
     font-weight: bold;
  font-optical-sizing: auto;
  font-style: normal;
  color: #464646;
  margin-top: 10px;
}


.btn-icon {   
    border: none;
    border-radius: 50%;
}   
    

/* =============== Responsivos =====================*/
@media (max-width: 1024px) {
   .cardapio {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      gap: 20px;
   }
}

@media (max-width: 768px) {
   .cardapio {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 40px;
      padding: 0 15px;
   }
   
   figure img {
      width: clamp(40px, 15vw, 50px);
      padding: clamp(8px, 4vw, 12px);
   }
}

@media (max-width: 480px) {
   .cardapio {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      margin-top: 30px;
   }
   
   .btn-icon {
      padding: 8px;
   }
   
   figure img {
      width: clamp(35px, 18vw, 45px);
      padding: clamp(6px, 5vw, 10px);
   }
   
   figcaption {
      font-size: clamp(0.7rem, 4vw, 0.8rem);
   }
}

@media (max-width: 360px) {
   .cardapio {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 0 10px;
   }
}

/* =============================================================================== */



/* ===========================sections de cards================================== */
.section-card {
     display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 20px; 
    margin: 40px 0px;
}

.section-card h3 {
    font-size: 150%;
    color: #222;
    font-family: Arial, Helvetica, sans-serif;
}

.section-card .img-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
   
}


.cabecalho-section{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e9e2c6;
    padding: 20px 0px;
    
}

.cabecalho-section p {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 70%;
    font-optical-sizing: auto;
    font-style: normal;
    color: #4e483d;
}

.titulo-section {
    color: #222;
    font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;

}


.titulo-cards {
    padding: 10px;
}

.titulo-cards h4  {
    font-size: 120%;
    color: #222;
    font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;

}


.card-refeicao {
     width: 100%;                
  max-width: 1200px;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
}

.preco {
    font-size: 120%;
    color:     #A34103;
    font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}


.btn-prc {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    margin-top: 20px;
    
}

.btn-comprar {
    background-color: #EFE7D9;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    color: #A23F00;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease
}

.btn-comprar:hover {
    background-color: rgb(185, 173, 149);
    color: #d37121;
    transform: scale(1.05);
    transform: translateY(-8px);
}

/* ========================== Responsivo ========================= */
@media (max-width: 1024px) {
    .section-card {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-card {
        grid-template-columns: 1fr;
        gap: 25px;
        margin: 30px 0;
        padding: 0 15px;
    }
    
    .cabecalho-section {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .titulo-section {
        order: 2;
        text-align: center;
    }
    
    .cabecalho-section p {
        order: 1;
    }
    
    .btn-prc {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-card {
        padding: 0 10px;
        margin: 25px 0;
    }
    
    .cabecalho-section {
        padding: 15px 0;
    }
    
    .titulo-cards {
        padding: 8px;
    }
}

@media (max-width: 360px) {
    .section-card h3 {
        font-size: clamp(1.1rem, 6vw, 1.3rem);
    }
    
    .btn-prc {
        padding: 25px 15px;
    }
}


/* =============================================================================== */




/* ====================SESSÃO EXECUTIVA====================== */

.card-executivo {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 550px;
    max-width: 1400px;
    background-color: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    margin: 40px auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.card-executivo img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
}

.card-executivo-titulo {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.card-executivo-titulo h4 {
    font-size: 32px;
    color: #222;
    font-family: "Noto Serif", serif;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.card-executivo-titulo span {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #A34103;
}


.btn-price {
    display: flex ;
    justify-content: space-between ;
    align-items: center ;
    padding: 30px ;
    margin-top: auto ;
    gap: 25px ;
    min-height: 90px ;
}

.btn-price span,
.btn-price .preco {
    font-size: 32px ;         
    font-weight: bold ;
    color: #A34103 ;
    margin: 0 ;
}

.btn-price button {
    background-color: #A23F00 ;
    border: none ;
    padding: 16px 32px ;
    border-radius: 30px ;
    color: #fff ;
    font-size: 18px ;
    font-weight: bold ;
    cursor: pointer ;
    white-space: nowrap ;
    transition: all 0.3s ease ;
}

.btn-price button:hover {
    background-color: #d37121 ;
    color: #d1c7b1;
    transform: scale(1.05) ;
}

/* =============================================================================== */



/* ================= SUBCARD DO CARD ACIMA========================== */

.two-cards {
     display: flex;            
    justify-content: space-between;  
    gap: 10px; 
    margin: 10px 0%;        
    width: 100%;               
    max-width: 1900px; 
    
    

}

 .conteiner-refeicao {
    display: flex;   
    flex: 1 1 0; 
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;   
    border-radius: 8px;
    
}

.conteiner-refeicao img {
    width: 100%;          
    height: 250px;            
    object-fit: cover;        
}

.details-cards {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-grow: 1;
}

.price-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* ========================= Responsivo ======================*/

@media (max-width: 768px) {
     .btn-price {
        flex-direction: column ;
        text-align: center ;
        padding: 35px 25px ;
        gap: 20px ;
    }
    
    .btn-price span,
    .btn-price .preco {
        font-size: 18px ;     
        order: 1 ;
    }
    
    .btn-price button {
        order: 2 ;
        width: 100% ;
        max-width: 300px ;
        padding: 20px 30px ;
        font-size: 20px ;
    }
}

.card-executivo img {
        height: 240px;       
    }



@media (max-width: 480px) {
    .card-executivo {
        display: flex;   
    flex: 1 1 0; 
    flex-direction: column;
    width: 100%;
    background-color: #FFFFFF;
    overflow: hidden;   
    border-radius: 8px;
        margin: 25px auto 0;
    }
    
    .card-executivo img {
        height: clamp(150px, 40vh, 200px);
    }
    
    .two-cards {
        padding: 0 10px;
        gap: 18px;
    }
    
    .conteiner-refeicao img {
        height: clamp(140px, 35vw, 200px);
    }
}

@media (max-width: 360px) {
    .card-executivo-titulo h4 {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
    }
    
    .btn-price button {
        width: 100%;
        justify-content: center;
    }
}


/* =============================================================================== */



/* ======================sobremesas============================= */

.section-sobremesa {
     display: grid;
     grid-template-columns: repeat(4, 1fr); 
     gap: 20px; 
     margin: 40px 0px;
}

.card-sobremesa {
     width: 100%;               
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    
}

.section-sobremesa button {
    background: none;
    width: 100%;
    border: none;
    cursor: pointer;
}

.section-sobremesa button:hover {
    transform: scale(1.03);
    transition: transform 0.5s ease;
}

.card-sobremesa .img-card img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
   
}

.titulo-cards-sobremesa {
    display: flex;
    flex-direction: column;
     padding: 10px;
     gap: 10px;
    justify-content: center;
    align-items: center;
}

.titulo-cards-sobremesa h4  {
    font-size: 70%;
    color: #222;
    font-family: "Noto Serif", serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;

}

/* ============================= Responsivas ============================== */
@media (max-width: 1024px) {
    .section-sobremesa {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .section-sobremesa {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
        margin: 30px 0;
        padding: 0 15px;
    }
    
    .card-sobremesa .img-card img {
        height: clamp(200px, 40vw, 260px);
    }
}

@media (max-width: 480px) {
    .section-sobremesa {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
        margin: 25px 0;
    }
    
    .titulo-cards-sobremesa {
        padding: clamp(12px, 5vw, 16px);
    }
    
    .titulo-cards-sobremesa h4 {
        font-size: clamp(0.9rem, 4vw, 1rem);
    }
}

@media (max-width: 360px) {
    .section-sobremesa {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 8px;
    }
    
    .card-sobremesa .img-card img {
        height: clamp(180px, 50vw, 240px);
    }
}

/* =============================================================================== */


.section-bebida {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
    padding: 0 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.card-bebida {
    width: 100%;
    height: 70px;
    border-radius: 50px;
    background-color: #d3c4aa;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    
}

.card-bebida:hover {
    transform: scale(1.03);
    
}

.info-bebida {
    display: flex;
    align-items: center;
    gap: 20px;
}

.img-icon img {
    width: 32px;
    height: auto;
}

.titulo-bebidas {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.titulo-bebidas h4 {
    font-size: 18px;
    color: #222;
    font-family: "Noto Serif", serif;
    font-weight: bold;
    margin: 0;
}

#descricao {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #4e483d;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
    .section-bebida {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .section-bebida {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 0 10px;
    }
    
    .card-bebida {
        height: 65px;
        padding: 10px 18px;
    }
    
    .img-icon img {
        width: 28px;
    }
    
    .titulo-bebidas h4 {
        font-size: 16px;
    }
    
    #descricao {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-bebida {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 8px;
        margin: 30px 0;
    }
    
    .card-bebida {
        height: 60px;
        padding: 10px 15px;
    }
    
    .img-icon img {
        width: 26px;
    }
}

@media (max-width: 360px) {
    .section-bebida {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 5px;
    }
    
    .card-bebida {
        height: 55px;
        padding: 8px 15px;
    }
}

/* ============================================POPUP STYLE========================================== */

dialog.modal {
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    border: none;
    border-radius: 16px;
    padding: 25px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow-y: auto;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.75);
}

.header-modal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #e9e2c6;
    margin-bottom: 25px;
    padding-bottom: 20px;
}

.header-modal h2 {
    font-size: 28px;
    color: #222;
    font-family: "Noto Serif", serif;
    font-weight: bold;
    margin: 0;
}

.header-modal button {
    background: rgba(131, 114, 19, 0.1);
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #837213;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.modal-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.modal-content img {
    width: 100%;
    height: 350px;           
    border-radius: 16px;
    object-fit: cover;
}

.conteudo-modal dl {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.conteudo-modal dt {
    font-weight: 700;
    color: #333;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 16px;
}

.conteudo-modal dd {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    color: #4e483d;
    border-bottom: 2px solid #ebcf63;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(235, 207, 99, 0.08);
}

.conteudo-modal h3 {
    font-size: 32px;
    color: #222;
    font-family: "Noto Serif", serif;
    font-weight: bold;
    margin: 0 0 15px 0;
}

.adicionais-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px solid #eee;
}

#lista-adicionais {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 15px;
}

.item-adicional {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 16px 20px;
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    cursor: pointer;
}

.item-adicional:hover {
    background-color: #fff4e6;
    border-color: #e67e22;
    transform: translateX(8px);
}

.item-adicional input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-right: 16px;
    accent-color: #e67e22;
}

.item-adicional label {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}


#total-pedido {
    margin-top: 25px;
    padding: 10px ;
    color: white ;
    background-color:  #f15e39 ;
    border-radius: 16px ;
    font-size: 15px ;          
    font-weight: bold ;
    text-align: center;
    border: none;
    width: 100% ;
    height: 100%;
}

.btn-comprarModal-content {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.btn-comprarModal {
    background-color: #f15e39;
    border: none;
    padding: 18px 10px;
    border-radius: 30px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    max-width: 350px;
    
}

.btn-comprarModal:hover {
    background-color:  #e74c3c ;
    transform: translateY(-3px);
}

#picanha-foto {
    width: 100%;
    height: 350px;                       
    border-radius: 16px;
    object-fit: cover;
}
