/* =========================
   RESET BÁSICO
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BODY PADRÃO
========================= */
body {
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #293a30;
}

/* =========================
   BODY MENU PAGE
========================= */
body.menu-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.menu-center {
  flex: 1;
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  gap: 20px;
}
/* =========================
   HEADER
========================= */
header {
  position: relative;
  height: 50px;
  margin: 0 8vw;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding-top: 50px;
}

header .logo {
  height: 50px;
}

/* BOTÃO RESERVAR */
    .btn-reservar {
      display: inline-block;
      margin-top: 1.5rem;
      font-family: 'Work Sans', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      color: #dad8cb;
      border: 1px solid #dad8cb;
      padding: 0.65rem 1.4rem;
      text-decoration: none;
      transition: background 0.2s, color 0.2s;
      background-color: transparent;
    }
    .btn-reservar:hover { background: #dad8cb; color: #fff; 
}

/* =========================
   WIDGET RESERVAS
========================= */
.widget-reservas {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  gap: 20px;

  padding: 20px 0 50px;
  margin-top: 10px; /* menos espaço entre header e título */
}

.reservar-titulo {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 2rem;
  color: #E2DFD1;
  text-align: center;
  letter-spacing: 0.02em;
}

.widget-reservas iframe {
  width: 100%;
  max-width: 480px;
}

.reservar-nota {
  font-family: "Work Sans", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: #E2DFD1;
  text-align: center;
  line-height: 1.5;
  max-width: 400px;
      color: inherit;
    text-decoration: none;
}

.btn-voltar-mobile {
  display: none;
}

/* BOTÕES MENU */
.menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  height: 45px;
  padding: 0 25px;

  font-family: "Work Sans", sans-serif;
  font-size: 12px;

  background-color: #E2DFD1;
  color: #253D33;

  text-decoration: none;
  border: 1px solid #E2DFD1;

  gap: 4px;

  transition: all 0.3s ease;
}

.menu-btn:hover {
  background-color: transparent;
  color: #E2DFD1;
  border: 1px solid #E2DFD1;

  transform: translateY(-2px);
}

/* TIPOGRAFIA INTERNA DOS BOTÕES */
.menu-btn .pt {
  font-weight: 600;
}

.menu-btn .sep {
  font-weight: 300;
}

.menu-btn .en {
  font-weight: 300;
}

/* =========================
   FOOTER
========================= */
footer {
  background-color: rgba(220, 217, 213, 0.9);

  bottom: 0;
  left: 0;

  width: 100%;
  height: 60px;

  display: flex;
  align-items: center;

  z-index: 10;
}

footer .footer-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;

  padding: 0 120px;

  font-family: "Work Sans", sans-serif;
  font-size: 8pt;
  color: #333333;
}

footer .footer-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #333333;
}

/* =========================
   TÍTULOS
========================= */
h1, h2, h3, h4, h5, h6 {
  font-family: "EB Garamond", serif;
  font-weight: 600;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  /* HEADER */
  header {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;

    /* 🔥 mais espaço entre logo e botão */
    gap: 30px;

    height: auto;
  }

  header .logo {
    height: 54px;
  }

  header nav {
    display: none; /* VOLTAR sai do header em mobile */
  }

  .btn-voltar-mobile {
    display: inline-block; /* aparece abaixo do formulário em mobile */
    margin-top: 10px;
  }

  /* MENU CENTRAL */
.menu-center {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 🔥 chave da mudança */
  align-items: center;

  gap: 20px;

  height: 100dvh;

  padding: 20px 24px;

  /* empurra o menu para cima */
  padding-top: 60px;
}

  /* WIDGET RESERVAS */
  .widget-reservas {
    height: auto;
    padding: 20px 24px 40px;
  }

  .reservar-titulo {
    font-size: 1.4rem;
  }

  /* BOTÕES MENU */
  .menu-btn {
    width: 100%;
    max-width: 260px;
  }

  /* FOOTER */
  footer {
    height: auto;
    padding: 10px 0;
    margin-top: auto;
  }

  footer .footer-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 20px;
    text-align: center;
  }

  footer .footer-links {
    display: flex;
    gap: 15px;
  }

  footer .footer-links a {
    margin: 0;
  }
}