html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  cursor: default;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
p,
pre,
blockquote,
figure,
figcaption,
hr,
dl,
dd {
  margin: 0;
  padding: 0;
}
ul,
ol {
  list-style: none;
}
input,
textarea,
select,
button {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}
input[type="text"],
textarea {
  width: 100%;
}
input,
textarea,
button {
  border: 1px solid gray;
}
button {
  padding: 0;
  line-height: inherit;
  border-radius: 0;
  background-color: transparent;
  cursor: pointer;
}
button * {
  pointer-events: none;
}
img,
iframe,
video,
object,
embed {
  display: block;
  max-width: 100%;
}
svg {
  max-width: 100%;
}
table {
  table-layout: fixed;
  width: 100%;
}
[hidden] {
  opacity: 0;
  visibility: hidden;
}
noscript {
  display: block;
  margin-bottom: 1em;
  margin-top: 1em;
}
[tabindex="-1"] {
  outline: none !important;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}
* {
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}
img {
  display: block;
  max-width: 100%;
}
a {
  margin: 0px;
  padding: 0px;
  display: block;
}
table {
  border-spacing: 0px;
}
button {
  border: none;
}
hr {
  border: none;
}
:root {
  --main: #eb3237;
  --light: #ffffff;
  --sec: #a08b6c;
  --dark: #1a1818;
  --font: "canada-type-gibson", sans-serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.whats-fixed {
  position: fixed;
  bottom: 40px;
  right: 40px;
  animation: move 3s infinite;
  z-index: 222;
  max-width: 65px;
}
@keyframes move {
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
html {
  font-family: "plantin", sans-serif;
  font-size: 16px;
  color: var(--light);
  background-color: var(--sec);
}
a,
svg path,
button {
  transition: 0.3s;
}
.guarda {
  background: url(/img/main-bg.webp) no-repeat center center;
  background-size: cover;
  padding: 40px 10px;
}
.btn {
  background-color: var(--main);
  border-radius: 20px;
  padding: 14px 35px 10px;
  color: var(--light);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4em;
  max-width: fit-content;
}
@media only screen and (max-width: 310px) {
  .btn {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4em;
  }
}
.btn:hover {
  box-shadow: 0 0 0 2px var(--main);
  color: var(--main);
  background-color: var(--light);
}
.footer {
  background-color: var(--sec);
  padding: 10px;
}
.footer-grid {
  display: grid;
  justify-items: center;
  text-align: center;
}
.footer-grid a {
  font-family: var(--font);
}
.footer-grid a:hover {
  color: var(--main);
}
.header {
  padding: 10px 0px 50px;
}
.header-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 30px;
  background-color: var(--dark);
  padding: 30px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4em;
  border-radius: 21px;
}
.header-grid > a {
  border-bottom: 3px dashed transparent;
}
.header-grid > a:hover {
  color: var(--main);
  border-bottom: 3px dashed var(--main);
}
.top-menu-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
.top-menu-grid p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
}
@media only screen and (max-width: 360px) {
  .top-menu-grid {
    flex-direction: column;
    justify-content: center;
  }
}
.redes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.menu-items {
  display: none;
}
@media only screen and (max-width: 590px) {
  .header-grid {
    display: grid;
    justify-items: center;
  }
  .header-grid > a {
    display: none;
  }
  .menu-items {
    display: flex;
    gap: 15px;
  }
  .menu-items a {
    border-bottom: 3px dashed var(--main);
  }
  .menu-items a:hover {
    color: var(--main);
  }
}
@media only screen and (max-width: 590px) and (max-width: 350px) {
  .menu-items {
    flex-direction: column;
  }
}
.main {
  padding: 130px 0px 100px;
}
.main-grid {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 15px;
}
.main-grid h1 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2em;
}
@media only screen and (max-width: 335px) {
  .main-grid h1 {
    font-size: 1.5625rem;
    font-weight: 600;
    line-height: 1.2em;
  }
}
.main-grid span {
  display: block;
  border-bottom: 3px dotted var(--main);
  width: 100%;
  max-width: 500px;
  box-shadow: 0 0 100px 5px var(--main);
}
.main-grid h2 {
  font-family: var(--font);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.4em;
  margin-bottom: 30px;
}
#btn-mobile {
  display: none;
  position: absolute;
  align-self: center;
  justify-content: flex-end;
  color: #000 !important;
  background-color: #ffffff00 !important;
}
.social-menu-overflow {
  display: none;
}
@keyframes top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@media only screen and (min-width: 651px) and (max-width: 770px) {
  #menu {
    visibility: hidden;
    display: block;
    position: absolute;
    background: #ffffff;
    z-index: 1000000000;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.1);
  }
  .nav-menu a {
    transition: none !important;
  }
  #nav.active #menu {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    align-content: space-evenly;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    visibility: visible;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    animation: top ease-in 1s alternate;
    align-content: center;
    grid-gap: 20px;
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 0rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
    z-index: 22222222222;
    right: 10px;
    color: currentColor;
  }
  #hamburger {
    border-top: 3px solid;
    width: 32px;
  }
  #hamburger::after,
  #hamburger::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: currentColor;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  #nav button:hover {
    box-shadow: none;
    transform: none;
  }
}
@media only screen and (min-width: 0px) and (max-width: 650px) {
  #menu {
    visibility: hidden;
    display: block;
    position: absolute;
    background: #ffffff;
    z-index: 1000000000;
    box-shadow: 5px 5px 40px rgba(0, 0, 0, 0.1);
  }
  #nav button:hover {
    box-shadow: none;
    transform: none;
  }
  .nav-menu a {
    transition: none !important;
  }
  #nav.active #menu {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    align-content: center;
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    padding: 0;
    visibility: visible;
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    justify-content: center;
    animation: top ease-in 1s alternate;
    grid-gap: 20px;
  }
  #btn-mobile {
    display: flex;
    padding: 0.5rem 0rem;
    font-size: 1rem;
    border: none;
    background: none;
    cursor: pointer;
    gap: 0.5rem;
    z-index: 22222222222;
    right: 10px;
    color: currentColor;
  }
  #hamburger {
    border-top: 3px solid;
    width: 32px;
  }
  #hamburger::after,
  #hamburger::before {
    content: "";
    display: block;
    width: 32px;
    height: 3px;
    background: currentColor;
    margin-top: 5px;
    position: relative;
    transition: 0.3s;
  }
  #nav.active #hamburger {
    border-top-color: transparent;
  }
  #nav.active #hamburger::before {
    transform: rotate(135deg);
  }
  #nav.active #hamburger::after {
    transform: rotate(-135deg);
    top: -7px;
  }
  .nav-menu ul {
    padding: 20px 0px;
    display: grid;
    justify-content: center;
    grid-gap: 40px;
  }
}
.politica p,
.termos p {
  margin-top: 10px;
}
.politica h3,
.termos h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}
.politica ul,
.termos ul {
  margin-top: 5px;
  margin-bottom: 5px;
}
.politica ul li,
.termos ul li {
  text-indent: 50px;
}
.politica h2,
.termos h2 {
  margin-top: 20px;
  font-size: 2rem;
  text-align: center;
}
.politica,
.termos {
  padding: 10px 10px;
}
.digitalmix {
  text-align: center;
  color: #f2f2f280;
  background-color: #121412;
  padding: 30px 10px;
}
.digitalmix-grid {
  display: grid;
  gap: 15px;
}
.digitalmix-grid > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.digitalmix-grid > p,
.digitalmix-grid > div > p {
  font-size: 1rem !important;
}
@media only screen and (max-width: 360px) {
  .digitalmix-grid > div {
    display: grid;
    justify-items: center;
    gap: 10px;
  }
}
.cardapio {
  background: url(/img/cardapio-bg.webp) no-repeat center center;
  background-size: cover;
  padding: 100px 10px;
}
.cardapio-grid {
  display: grid;
  gap: 30px;
  justify-items: center;
}
.cardapio-grid > h3 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2em;
}
.cardapio-content {
  display: grid;
  gap: 30px;
  justify-items: center;
  width: 100%;
}
.cardapio-title {
  width: 100%;
  border-bottom: 3px dashed var(--main);
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.2em;
}
.guarda-cardapio-section {
  display: flex;
  justify-content: space-around;
  align-items: start;
  gap: 40px;
  width: 100%;
}
@media only screen and (max-width: 960px) {
  .guarda-cardapio-section {
    display: grid;
    justify-items: center;
    gap: 60px;
    width: 100%;
  }
}
.cardapio-section {
  display: grid;
  max-width: 480px;
  width: 100%;
  gap: 30px;
}
.cardapio-section h4 {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.2em;
}
.cardapio-section > div {
  display: grid;
  width: 100%;
}
.cardapio-section > div p {
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4em;
}
@media only screen and (max-width: 460px) {
  .cardapio-section > div p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4em;
  }
}
@media only screen and (max-width: 360px) {
  .cardapio-section > div p {
    text-align: center;
  }
}
.cardapio-section > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 100%;
}
@media only screen and (max-width: 360px) {
  .cardapio-section > div > div {
    flex-direction: column;
    margin-bottom: 6px;
  }
  .cardapio-section > div > div > span {
    max-width: 100px;
  }
}
.cardapio-section > div > div h3 {
  max-width: fit-content;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4em;
}
@media only screen and (max-width: 460px) {
  .cardapio-section > div > div h3 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4em;
  }
}
.cardapio-section > div > div > span {
  display: block;
  width: 100%;
  min-width: 5px;
  height: 2px;
  border-bottom: 3px dashed var(--main);
}
.cardapio-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.bebidas {
  gap: 10px;
}
.bebidas > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 100%;
}
@media only screen and (max-width: 360px) {
  .bebidas > div {
    flex-direction: column;
    margin-bottom: 6px;
  }
  .bebidas > div > span {
    max-width: 100px;
  }
}
.bebidas > div h3 {
  max-width: fit-content;
  width: 100%;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4em;
}
@media only screen and (max-width: 460px) {
  .bebidas > div h3 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4em;
  }
}
.bebidas > div > span {
  display: block;
  width: 100%;
  min-width: 5px;
  height: 2px;
  border-bottom: 3px dashed var(--main);
}
.reservas {
  padding: 80px 10px;
}
.reservas-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.reservas-content {
  display: grid;
  gap: 20px;
  max-width: 680px;
}
.reservas-content h3 {
  width: 100%;
  text-align: start;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2em;
  border-bottom: 3px dashed var(--main);
}
.reservas-content p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4em;
  font-family: var(--font);
}
@media only screen and (max-width: 430px) {
  .reservas-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2em;
  }
  .reservas-content p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4em;
  }
}
@media only screen and (max-width: 340px) {
  .reservas-content .btn {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4em;
  }
}
.reservas-img {
  width: 100%;
  max-width: 400px;
}
.conforto {
  background: #504636;
}
.conforto .reservas-grid {
  justify-content: space-around;
}
.conforto .reservas-grid .reservas-content {
  max-width: 520px;
}
.conforto .reservas-grid .reservas-content h4 {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.4em;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: var(--font);
}
.conforto .reservas-grid .reservas-content .btn {
  padding: 14px 45px 10px;
}
.local {
  background: url(/img/local-bg.webp) no-repeat top center;
  background-size: cover;
  padding: 100px 10px;
}
.local-grid {
  display: grid;
  justify-items: center;
  gap: 20px;
  text-align: center;
}
.local-grid p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4em;
  font-family: var(--font);
}
.local-grid a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: var(--font);
}
.title {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2em;
  border-bottom: 3px dashed var(--main);
  max-width: fit-content;
}
.mapouter,
.mapouter iframe {
  height: 469px;
  max-width: 778px;
  width: 100%;
  border-radius: 32px;
}
@media only screen and (max-width: 415px) {
  .mapouter,
  .mapouter iframe {
    height: 300px;
  }
}
.galeria {
  padding: 80px 10px;
  background: url(/img/cardapio-bg.webp) no-repeat center center;
  background-size: cover;
}
.galeria-grid {
  display: grid;
  justify-items: center;
  gap: 30px;
  max-width: 1000px;
}
.galeria-grid p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4em;
  font-family: var(--font);
  text-align: center;
}
.galeria-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.sobre {
  background-color: var(--main);
  padding: 70px 10px;
}
.sobre-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.sobre-content {
  display: grid;
  gap: 20px;
  max-width: 693px;
}
.sobre-content h3 {
  width: 100%;
  text-align: start;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2em;
  border-bottom: 3px dashed var(--sec);
}
.sobre-content p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.4em;
  font-family: var(--font);
}
@media only screen and (max-width: 430px) {
  .sobre-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2em;
  }
  .sobre-content p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.4em;
  }
}
.sobre-content .btn {
  background-color: var(--sec);
}
@media only screen and (max-width: 340px) {
  .sobre-content .btn {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4em;
  }
}
.sobre-content .btn:hover {
  box-shadow: 0 0 0 2px var(--main);
  color: var(--main);
  background-color: var(--light);
}
.reservas-img {
  width: 100%;
  max-width: 400px;
}
