*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family:'Cambria, Cochin', Georgia, Times, 'Times New Roman', serif;
    background-color: #7697a0;
    display: flex; /* Ativa o flexbox para o body */
    flex-direction: column; /* Alinha os itens em coluna */
    min-height: 100vh; /* Garante que o body tenha pelo menos a altura da viewport */
    overflow-x: hidden;
}

/*--------------------------------------------------------cabecalho----------------------------------------------------------------*/

header {
    display: block; /* Exibe o header como um bloco, permitindo que seus elementos se empilhem verticalmente */
}
.header-section {
    padding: 5px; /* Adiciona um espaçamento interno de 20px dentro das seções do cabeçalho */
    background-color: #1b5f6d;
    
    
}

.left {
    background-color: #1b5f6d; /* Define a cor de fundo laranja para a seção esquerda do cabeçalho */
    text-align: center; 
}



.right {
    background-color:  #f28a07; /* Define a cor de fundo marrom escuro para a seção direita do cabeçalho */
    color: #1b5f6d; /* Define a cor do texto como branca */
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    height: auto;
    position: relative;
    top: 100px;
}
.menuleft{
    font-size: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.menuleft h1{
    font-size: 40px;
    text-align: justify;
}

.menuleft p{
    margin-top: 10px;
    font-size: 20px;
    width: 100%;
    max-width: 700px;
    text-align: justify;
}



button {
    border: none;
    outline: none;
    color: #f28a07;
    padding: 10px 20px;
    text-align: right;
    text-decoration: none;
    display: inline-block;
    font-size: 50px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
    background-color: transparent;
}

button:hover {
    background-color: #7697a0;
    color: #fff;
}

button:focus,
button:active {
    outline: none;
    box-shadow: none;
}

/*------------------------------------------------barra de navegação---------------------------------------*/
nav ul {
    list-style-type: none; /* Remove os marcadores padrão da lista não ordenada */
    margin: 0; /* Remove a margem padrão ao redor da lista */
    padding: 0; /* Remove o preenchimento padrão da lista */
}
nav ul li {
    display: inline; /* Exibe os itens da lista (li) em linha, ao invés de em coluna */
    margin-right: 20px; /* Adiciona um espaçamento de 20px entre os itens da lista */
}

nav ul li a {
    color: #205e6d; /* Define a cor dos links  */
    text-decoration: none; /* Remove o sublinhado dos links */
}

nav ul li a:hover {
    text-decoration: underline; /* Adiciona sublinhado aos links ao passar o mouse */
}
/*-----------------------------tags de textos----------------------------------------*/

h2 {
    text-align:left;
    font-size: 35px;
    color: #1b5f6d;
    white-space: normal;
    padding: 18px;
}

p{
    margin-top: 10px;
    font-size: 20px;
    width: 100%;
    max-width: 700px;
    color: #1b5f6d;
    text-align: justify;
    padding: 10px;
}

/*---------------------------------Link-----------------------------------------------*/
a {
    color: #205e6d; /* Cor do link */
    text-decoration: none; /* Remove o sublinhado padrão */
    transition: color 0.5s ease; /* Efeito suave para a mudança de cor */
    
  }
  
  a:hover {
    color: #205e6d; /* Cor do link ao passar o mouse */
    text-decoration: underline; /* Adiciona sublinhado ao passar o mouse */
  }
 
  a:visited {
    color: #205e6d; /* links visitados */
  }
  
  a:active {
    color: #205e6d; /* clicar no link */
  }
  

.imgcomida {
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;

}


/*rodape*/
.rodape{
    background-color: #ffffff;
    color: #ffffff;
    height: auto;
    width: 100%;
    font-size: 10px;
    font-family:'Cambria, Cochin', Georgia, Times, 'Times New Roman', serif;
    margin-top: 200px;
    padding: none;
}


.rodape p{
    margin-bottom: none;
    text-align: center;
    text-decoration: none;
    color: #205e6d;
    font-size: 20px;
}
.fotos_parceiros {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px;
}

.fotos_parceiros img {
    height: 160px;
    width: auto;
    max-width: 500px;
    object-fit: contain;
}
ol{
    display:flex;
    justify-content: space-around;
    align-items: center;
}

/*mobile*/
@media (max-width: 768px) {
  .rodape-div-1,
  .rodape-div-2,
  .rodape-div-3,
  .rodape-div-4 {
    width: 100%;
    padding: 10px;
  }

  .rodape-div {
    padding: 60px 0px 40px 0px;
  }

  .header-section img {
    width: 100%;
    height: auto;
  }

  .header-section {
    width: 100%;
  }
  p{
        width: 100%;
        max-width: 95vw;
        font-size: 16px;
    }
  .menuleft p{
        max-width: 95vw;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
  p{
    font-size: 14px;
  }
  .menuleft p{
    font-size: 14px;
  }
  h2{
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .header-section img {
    width: 100%;
    height: auto;
  }

  .header-section {
    width: 100%;
  }
}