/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corpo */
body {
  font-family: 'Poppins', sans-serif;
}

/* ================= HEADER TOP ================= */
.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 60px;
  background: transparent;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-top: 5px;
}

.header-top .left {
  display: flex;
  gap: 400px;
}

.header-top .left i {
  font-size: 16px;
}

.header-top .right a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-size: 18px;
}

.header-top .right a:hover {
  color: yellow;
}

/* ================= HEADER BOTTOM ================= */
.header-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  background: transparent;
  transition: all 0.3s ease;
}

.header-bottom .logo img {
  height: 70px;
}

.nav-menu {
  display: flex;
  gap: 37px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 19px;
}

.nav-menu a:hover {
  color: yellow;
}

.btn-reservar {
  background: linear-gradient(to right, #2b682b, #309130);
  color: #fff !important;
  padding: 12px 24px 12px 20px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
  transition: background 0.3s ease;
  border: none;
  font-size: 14px;
}

/* ================= FIXO AO ROLAR ================= */
header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
}

header.scroll .header-bottom {
  background: linear-gradient(135deg, #f59506, #e79a0a);
  height: 70px;
}

header.scroll .header-top {
  display: none;
}

/* ================= MOBILE ================= */
.hamburguer {
  display: none;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Offcanvas */
.offcanvas {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100%;
  background: #111;
  color: white;
  padding: 20px;
  z-index: 1000;
  transition: left 0.3s ease;
}

.offcanvas.active {
  left: 0;
}

.offcanvas a {
  display: block;
  color: white;
  text-decoration: none;
  margin: 15px 0;
  font-size: 1.1rem;
}

.offcanvas a:hover {
  color: yellow;
}

/* Responsivo */
@media (max-width: 768px) {
  .nav-menu {
      display: none;
  }
  .hamburguer {
      display: block;
  }
  .header-bottom {
      justify-content: space-between;
      align-items: center;
      padding: 15px 20px;
     
  }
  .btn-reservar {
    padding: 8px 16px 8px 14px;
    font-size: 14px;
  }
  .header-top {
    display: none; /* Oculta no mobile */
}
}

/* Botão do WhatsApp (fica abaixo do Chatbot) */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color:transparent;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.whatsapp-button img {
  width: 55px;
  height: 55px;
}
.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
      .whatsapp-button {
      width: 50px;
      height: 50px;
      bottom: 15px;
      right: 15px;
  }

  .whatsapp-button img {
      width: 40px;
      height: 40px;
  }
}