:root {
  --main-bg-color: rgb(255, 255, 255);
  --shadow: 0 12px 40px rgba(10, 8, 6, 0.205);
}

.header {
  color: #fff;
  min-height: 75vh;
  display: flex;
  position: relative;
  flex-direction: column;
  background: url(./img/BackgroundInicio.png) center / cover no-repeat;
}
.header::before {
  content: "";           /* obrigatório para existir */
  position: absolute;    /* flutua sobre o header */
  top: 0;
  left: 0;
  width: 100%;           /* cobre toda a largura */
  height: 100%;          /* cobre toda a altura */
  background: rgba(20, 20, 20, 0.5); /* vidro escuro semitransparente */
}

.conteiner, .butao, #logo {
  position: relative;
  z-index: 1;
}

.topbar {
display: flex;
justify-content: space-around;
padding: 10px;
}

#logo {
  display: flex;
  font-family: "BJCree", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 2rem;
  /* text-shadow:
    -1px -1px 0 rgb(0, 0, 0),
     1px -1px 0 rgb(28, 28, 28),
    -1px  1px 0 rgb(63, 62, 62),
     1px  1px 0 rgb(77, 77, 77);  */
}

.do {
  font-family: "Dancing Script", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  color: orange;
}

.nav-list {
  display: flex;
  gap: 28px;
  padding: 12px;
  font-family: "BJCree", serif;
  font-weight: 600;
  font-style: normal;
}

.nav-list a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
ul {
  list-style-type: none;
}

.listah {
  position: relative;
  padding: 0.3rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  background: none;
  border: 1px solid orange;
  border-radius: 100px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.listah {
  background: linear-gradient(orange 0 0) no-repeat calc(200% - var(--p, 0%))
    100% / 200% var(--p, 0.2em);
  transition: 0.3s var(--t, 0s),
    background-position 0.3s calc(0.3s - var(--t, 0s));
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}

.listah:hover {
  --p: 100%;
  --t: 0.3s;
  color: #fff;
}

#list {
  text-decoration: none;
  color: inherit;
  display: flex;
  font-family: "BJCree", serif;
  font-weight: 600;
  font-style: normal;
  padding: 12px;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.6));
}

.nav-reserva {
  text-decoration: none;
  color: inherit;
  font-family: "BJCree", serif;
  font-weight: 600;
  font-style: normal;
  background-color: orange;
  border-radius: 20px;
  border: 5px solid orange;
  box-shadow: 20px;
}

.conteiner {
  display: flex;
  flex-direction: column;
  padding: 100px;
  font-style: normal;
  font-family: "BJCree", serif;
  font-weight: 600;
}

.tag {
  color: orange;
  font-weight: 600;
  color: orange;
}

.titulo {
  
}

.desc {
  
}

.butao {
  display: flex;
  margin-left: 100px;
  gap: 40px;
  font-family: "BJCree", serif;
  font-weight: 600;
  font-style: normal;
}

.butao a {
  text-decoration: none;
  color: inherit;
}

#botaoa {
  display: flex;
  background-color: orange;
  border: 1px dotted orange;
  border-radius: 20px;
  cursor: pointer;
  padding: 10px;
}
#botaoa:hover {
  background: rgba(255, 166, 0, 0.74);
  border-color: transparent;
}

#botaob {
  display: flex;
  background-color: rgba(255, 255, 255, 0.219);
  border: 6px hidden rgba(255, 255, 255, 0.521);
  border-radius: 20px;     /*dotted dashed double groove ridge inset outset*/
  cursor: pointer;
  padding: 10px;
}
#botaob:hover {
  background: rgba(255,255,255, 0.12);
  border-color: white;
}

.SegundaLogo {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin-top: 170px;
  margin-left: 1500px;
  z-index: 2;
  width: 30%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  overflow-x: hidden; 
}

.barra-infos {
  background: var(--main-bg-color);
  border-bottom: 1px solid var(--main-bg-color);
  margin-top: -40px;
  position: relative;
  z-index: 2;
  border-radius: 14px;
  width: min(1100px, 92%);
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow);
}

.conteiners-infos {
  display: flex;
  flex-direction: row;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px;
  padding: 28px 32px;
  justify-content: center;
  font-family: "BJCree", serif;
  font-weight: 300;
  font-style: normal;
}

.info-time {
  display: flex;
}

.info-ender {
  display: flex;
}

.info-tel {
  display: flex;
}


@media (max-width: 600px) {}