@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Inter", sans-serif;
  color: #222;
  background: linear-gradient(rgba(255, 238, 214, 0.8)),
    url("../img/background.jpg") no-repeat center/cover;
}

header {
  background: linear-gradient(90deg, #803907 0%, #ff9019 100%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 10vh;
  padding: 10px 40px;
  border-bottom: 2px solid #00eaff;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
}

header p {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: #00eaff;
  text-underline-offset: 8px;
  letter-spacing: 2px;
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0; /* posição da linha */
  width: 0%;
  height: 2px;
  background: #00eaff; /* cor da linha */
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.133);
  color: #00eaff;
}

h1 {
  text-align: center;
  font-size: 1.7rem;
  font-weight: bold;
  color: #803907;
  letter-spacing: 2px;
}

main {
  width: 90%;
  min-width: 320px;
  max-width: 1000px;
  margin: 40px auto;
  text-align: center;
  padding: 32px;
  background: #fff;
  border: 2px solid #8a4704;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.2);
  flex: 1;
}

.apresentacao {
  margin-top: 32px;
  background-color: #fff3e0;
  border-left: 6px solid #803907;
  border-radius: 8px;
  padding: 32px;
}

.apresentacao p {
  text-align: left;
  color: #af5b07;
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.diferenciais {
  margin-top: 32px;
  background-color: #fff3e0;
  border-left: 6px solid #803907;
  border-radius: 8px;
  padding: 32px;
}

.diferenciais h2 {
  color: #803907;
}

.diferenciais ul {
  margin-top: 12px;
  padding-left: 24px;
}

.diferenciais li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #af5b07;
}

.diferenciais li::before {
  content: "🔥";
  color: #ff6b35;
}

table {
  border-collapse: collapse;
  width: 100%;
  text-align: center;
}

caption {
  margin: 20px 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #803907;
}

th {
  background-color: #803907;
  color: #fff;
}

th,
td {
  border: 1px solid #000;
  padding: 10px;
}

.sugestoes-chef {
  margin-top: 32px;
  padding: 16px;
  background: #fff3e0;
  border-left: 6px solid #803907;
  border-radius: 8px;
}

.sugestoes-chef h2 {
  margin-top: 0;
  color: #803907;
}

ol {
  padding-left: 20px;
  margin-top: 12px;
}

li {
  margin-bottom: 8px;
  font-size: 1.1rem;
  text-align: left;
  color: #5d4037;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.img-pratos {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.pratos {
  width: 300px;
  height: 300px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
}

.pratos:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.link-instagram {
  background-color: #803907;
  border: 3px solid #5d4037;
  border-radius: 10px;
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  width: fit-content;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.link-instagram a {
  text-decoration: none;
  color: #fff;
  padding: 5px;
  position: relative;
  transition: color 0.2s;
}

.link-instagram a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background-color: #00eaff;
  transition: width 0.3s;
}

.link-instagram a:hover::after {
  width: 100%;
}

.link-instagram a:hover {
  color: #00eaff;
}

.contato {
  width: 80%;
  min-height: 300px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 32px;
  background-color: #fff3e0;
  border: 3px solid #803907;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.horario-funcionamento {
  background-color: #803907;
  font-size: 1.3rem;
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  border-left: 6px solid #00eaff;
}

.contato ul {
  background-color: #803907;
  padding: 32px;
  border-left: 6px solid #00eaff;
  border-radius: 10px;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.contato ul li > a {
  display: block;
  color: #fff;
  border-radius: 3px;
  font-size: 1.7rem;
  text-decoration: none;
  transition: all 0.2s;
}

.contato ul li > a:hover {
  color: #00eaff;
  transform: scale(1.07);
  background: rgba(255, 255, 255, 0.133);
}

.fa-envelope {
  color: #ff1414;
}

.fa-whatsapp {
  color: rgb(0, 255, 0);
}

.location {
  width: 80%;
  margin: 32px auto;
  background-color: #fff3e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  border: 3px solid #803907;
  padding: 32px;
}

.location h2 {
  width: 40%;
  min-width: 100px;
  margin: 0 auto;
  margin-bottom: 16px;
  padding: 12px;
  background-color: #803907;
  color: #fff;
  border-radius: 10px;
  font-size: 1.2rem;
  border-bottom: 3px solid #00eaff;
  border-left: 1px solid #00eaff;
  border-right: 1px solid #00eaff;
}

.iframe-maps {
  border-radius: 10px;
  width: 100%;
  height: 400px;
  border: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.passo-a-passo {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 16px;
  background-color: #fff3e0;
  border-left: 6px solid #803907;
  border-radius: 10px;
}

.title-pp {
  font-size: 2rem;
  font-weight: bold;
  padding: 16px 0;
  color: #803907;
}

.passo-a-passo ul {
  padding-left: 24px;
  list-style: none;
}

footer {
  text-align: center;
  padding: 18px 0;
  background: #803907;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 1px;
  border-top: 2px solid #00eaff;
}

@media (max-width: 780px) {
  header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  nav ul {
    flex-direction: column;
    gap: 12px;
  }

  main {
    margin: 20px;
    padding: 24px;
  }

  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  table,
  th,
  td {
    font-size: 0.9rem;
  }

  .img-pratos {
    flex-direction: column;
    align-items: center;
  }

  .horario-funcionamento,
  .contato ul {
    flex: 1 1 100%; 
  }

  .horario-funcionamento,
  .contato ul li>a {
    font-size: 1rem;
  }

  .location h2 {
    font-size: 0.75rem;
  }

  .location {
    min-width: 300px;
    width: 90%;
    margin: 20px auto;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #803907;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }

  .iframe-maps {
    height: 300px;
    border-radius: 8px;
    width: 100%;
  }
}