/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Definindo fonte e cores base */
body {
  font-family: 'Arial', sans-serif;
  background-color: #003891;
  color: #333;
  line-height: 1.6;
}

/* Cabeçalho */
header {
  background-color: #003891;
  color: #fff;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  padding: 2rem 0;
}

header .container {
  position: relative;
  z-index: 2;
}

header h1 {
  font-size: 3rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* Imagem do cabeçalho */
.header-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin-top: 20px;
}

/* Estilos do conteúdo */
main {
  padding: 2rem 0;
}

/* Container centralizado */
.container {
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
}

/* Entradas */
#entradas {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

#entradas h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#entradas ul {
  list-style: none;
  padding: 0;
}

#entradas li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

#entradas .menu-image {
  margin-right: 15px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}

/* Cardápio */
#menu {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

#menu h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#menu ul {
  list-style: none;
  padding: 0;
}

#menu li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

#menu .menu-image {
  margin-right: 15px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}

/* Seção de Sobremesas */
#sobremesas {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

#sobremesas h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

#sobremesas ul {
  list-style: none;
  padding: 0;
}

#sobremesas li {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

#sobremesas .menu-image {
  margin-right: 15px;
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}

/* Localização e Contato */
#localizacao, #contato {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin-bottom: 2rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.location-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
  border-radius: 8px;
}

/* Link de email */
a {
  color: #4CAF50;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Rodapé */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

footer p {
  font-size: 1rem;
}
