* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
 line-height: 1.6;
  font-family: sans-serif;  
}

header {
    width: 100%;
    background-color: #E74C3C;
    display: flex;
    padding: 40px 20px;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.header-title  {
    color: #ffffff;
    font-size: 36px;
    font-weight: 500;
    line-height: 54px;
}

.header-paragrafo {
     color: #ffffff;
     font-size: 18px;
     font-weight: 400;
     line-height: 24px;
}

.conteudo {
    max-width: 1100px;
    padding: 100px 20px;
    text-align: center;    
    margin: 0 auto;
}

.apresentacao-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 42px;
   
    margin-bottom: 24px; 
}

.apresentacao-info {
    max-width: 600px;
    font-size: 16px;
    font-weight: 400;
    line-height: 25.6px;
    margin: 0 auto;
    margin-bottom: 40px; 
}

.cardapio { 
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.cardapio-title {
    text-align: center;
    margin-bottom: 30px; 
    font-size: 24px;
    color: #333;
}

.cardapio-grid {
    display: flex;       
    flex-wrap: wrap;     
    justify-content: center; 
    gap: 24px;           
}

.card {              
    max-width: 300px;       
    min-width: 250px;      
    background-color: #fff;
    border: 1px solid #333333; 
    border-radius: 8px;    
    padding: 30px 20px;
    text-align: center;    
    display: flex;         
    flex-direction: column;
    gap: 12px;             
}

.card h3 { color: #e74c3c; } 
.card p { color: #666; font-size: 14px; }
.card strong { font-size: 18px; color: #333; margin-top: 10px; }



.contato {
    width: 100%;             
    background-color: #333333;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;     
    text-align: center;
    color: #ffffff;
}

.contato h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contato p {
    margin-bottom: 10px;
}

.pedido a {
    display: inline-block;
    background-color: #E74C3C;
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: bold;
}


footer {
    width: 100%;
    background-color: #1a1a1a; 
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
}