@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Ubuntu+Condensed&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Italianno&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playwrite+VN:wght@100..400&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*

#a47764
#b79384
#caafa4
#a4b9ca

*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  border: none;
  text-decoration: none;
  font-family: "Be Vietnam Pro", serif;
}

html {
  width: 100vw;
  height: 100vh;
  font-size: 62.5%;
  overflow-x: hidden;
  background-color: #fafafa;
  scroll-behavior: smooth;
}

body{
  background: #d8d8d8 !important;
}

/* loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.spinner {
  width: 50px;
  height: 50px;
  border: 5px solid rgba(0, 0, 0, 0.1);
  border-top: 5px solid #000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* menu */
.content {
  width: 100vw;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 99;
  border-bottom: 1px solid #612144;
  background-color: rgba(50, 10, 10, 0.6);
  transition: all 0.5s ease-in-out;
  box-shadow: 0 15px 25px rgba(105, 105, 105, 0.4);
}

.content:hover {
  opacity: 0.9;
  border: none;
  border-bottom: 1px solid #612144;
  transition: all 0.5s ease-in-out;
}

#navbar {
  transition: 0.9s;
}

.content .list-menu {
  width: 800px;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
}

.content .list-menu li i {
  font-size: 2.8rem;
  color: #a1a1a1;
  transition: all 0.5s ease-in-out;
}

.separador{
  color: #a1a1a1;
}

.content .list-menu li i:hover {
  color: #f34f0e;
  transition: all 0.5s ease-in-out;
}

.content .list-menu li a {
  padding: 1rem;
  color: #a1a1a1;
  font-size: 1.8rem;
  font-weight: 300;
  transition: all 200ms ease-in;
  text-decoration: none;
}

.content .list-menu li a:hover {
  color: #f34f0e;
}

.logo {
  width: 50px;
  height: 50px;
  /* background-color: rgba(131, 1, 72, 0.5); */
  border-radius: 50%;
  padding: 5px;
  border: 1px solid #612144;
  box-shadow: 0 15px 25px rgba(105, 105, 105, 0.4);
  transition: all 0.5s ease-in-out;
}

.logo:hover {
  scale: 1.05;
  transition: all 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.5);
}

/* home */
.home {
  height: 100vh;
  margin-bottom: 50px;
  background-image: url(../img/back_home.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.home-background {
  position: relative;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50%;
  width: 100%;
  margin:auto 0;
  border-bottom: 1px solid #612144;
  box-shadow: 0 15px 25px rgba(105, 105, 105, 0.4);
}

.titulo {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 100%;
}

.titulo h1 {
  font-family: "Great Vibes", cursive;
  font-size: 8rem;
  color: #e2e2e2;
  margin-top: 12rem;
}

.home-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 10px;
}

.home-content h2 {
  display: flex;
  justify-content: center;
  margin: auto;
  font-size: 2.8rem;
  font-weight: 300;
  color: #fff !important;
  width: 100%;
}

.home-content h3 {
  font-size: 2.2rem;
  color: #bba98b;
  font-weight: 300;
  font-style: normal;
  padding: 15px;
}

.home-content h3 a {
  text-decoration: none;
  color: #a1a1a1;
  transition: all 0.7s ease;
}

.home-content h3 a:hover {
  color: #f34f0e;
  transition: all 0.7s ease;
}

/* sobre nós */
.sobre-nos {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 50px 0;
  width: 100%;
  height: 500px;
  align-items: center;
  justify-content: space-around;
  background-image: url(../img/grill.jpg);
  background-size: cover;
  background-position: center center;
  border-top: 1px solid #612144;
  border-bottom: 1px solid #612144;
}

h2 {
  color: #a47764 !important;
  font-size: 2rem;
  font-weight: 300;
  text-transform: uppercase;
  margin-left: 30px;
}

.sobre-nos p {
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 2rem;
  text-align: justify;
  font-weight: 300;
}

.content-sobre {
  background: rgba(26, 26, 26, 0.8);
  padding: 30px;
  width: 75%;
  border: 1px solid #612144;
  box-shadow: 0 15px 25px rgba(105, 105, 105, 0.4);
}

.grid {
  display: grid;
  grid-template-columns: 300px 300px 300px;
  justify-content: center; /* Alinha horizontalmente */
  align-items: center; /* Alinha verticalmente */
  background: linear-gradient(to right, #2f2f2f, #1a1a1a);
  margin: 50px 0;
  padding: 50px;
}

.carousel-inner {
  margin: 10px;
}

#carouselExampleAutoplaying {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 100%;
}

.carousel-inner h2 {
  font-size: 2rem;
  color: #a47764;
  text-transform: uppercase;
  margin: 1.5rem;
  transition: 0.5s ease-in-out;
}

.carousel-inner h2:hover {
  transition: 0.5s ease-in-out;
  color: #bba98b;
}

.carousel-item p {
  padding-top: 20px;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 300;
}

.carousel-item img {
  display: flex;
  width: 100%;
  margin: auto;
  border: 1px solid #612144;
  transition: 0.5s ease-in-out;
  padding: 10px;
}

.carousel-item img:hover {
  opacity: 0.9;
  transition: 0.5s ease-in-out;
  scale: 0.99;
}

.experiencia {
  display: flex;
  justify-content: center;
  margin: auto;
  width: 100%;
  color: #a47764;
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  margin: auto;
}

.experiencia-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  margin: auto;
  color: #fafafa;
  font-size: 2rem;
  font-weight: 300;
  line-height: 40px;
  margin-bottom: 3rem;
  margin-top: 30px;
  width: 100%;
  border: 1px solid #a1a1a1;
  background-image: url(../img/prato-central.png);
  background-size: cover;
  height: 500px;
}

.experiencia-content p {
  background-color: rgba(26, 26, 26, 0.8);
  padding: 30px;
  width: 60%;
  border: 1px solid #612144;
  box-shadow: 0 15px 25px rgba(105, 105, 105, 0.4);
}

/* contatos */
.contatos {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 300;
  color: #252525;
  margin: 50px 0;
}

.contatos h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #a47764;
  text-transform: uppercase;
}

.contatos-secao {
  width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 20px;
  padding: 5px;
  gap: 10px;
  border: 1px solid #a1a1a1;
}

.contatos-secao a {
  color: #252525;
  text-decoration: none;
}

.contatos-secao a:hover {
  color: #a47764;
  transition: 1s;
}

#mensagem {
  display: none;
  width: 50%;
  height: auto;
  margin: 10px;
  padding: 10px;
  background-color: #765445;
  border: 1px solid #a47764;
  color: #fff;
}

#infoBtn {
  cursor: pointer;
}

.top {
  display: flex;
  position: fixed;
  align-items: center;
  justify-content: center;
  left: 95%;
  top: 92%;
  color: #612144;
  font-size: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(214, 214, 214, 0.3);
  border-radius: 50px;
  border: 1px solid #a4b9ca;
  text-decoration: none;
  z-index: 99;
  transition: 0.5s ease-in-out;
}

.top:hover {
  background-color: #612144;
  transition: 0.5s ease-in-out;
  color: #fff;
}

.mapa {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  height: 440px;
  width: 100%;
}

.redes-sociais {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  gap: 1rem;
}

.redes-sociais i {
  font-size: 30px;
  color: #a47764;
}

.redes-sociais img {
  width: 36px;
}

footer img {
  font-size: 1rem;
  transition: all 0.5s ease-in-out;
}

footer img:hover {
  opacity: 0.8;
  transition: all 0.5s ease-in-out;
  scale: 1.05;
}

footer i:hover {
  transition: all 0.5s ease-in-out;
  color: #f34f0e;
  scale: 1.1;
}

footer {
  margin-top: 50px;
  border-top: 1px solid #272727;
  background-color: rgba(172, 172, 172, 0.6);
}

.copyright {
  height: 50px;
}

.copyright a {
  font-size: 1.5rem;
  color: #a47764;
  text-decoration: none;
  text-align: center;
  transition: all 0.5s ease-in-out;
}

.copyright a:hover {
  transition: all 0.5s ease-in-out;
  color: #f34f0e;
}

/* efeitoMouse */
/* .circle {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  animation: fadeOut 2s backwards infinite alternate-reverse;
  background-image: url(../img/logo-pequeno.png);
  background-size: cover;
}

@keyframes fadeOut {
  to {
      opacity: 0;
      transform: scale(0);
  }
} */

/* responsividade */
@media (max-width: 1200px) {
  .content {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 12%;
    padding-left: 0px;
  }

  .sobre-nos {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .sobre-nos p {
    width: 100%;
    text-align: center;
  }
}

/* menu */
@media (max-width: 768px) {
  html {
    font-size: 50%;
  }

  .grid {
    grid-template-columns: 350px 350px;
  }
  .top {
    left: 90%;
  }

  .titulo-oninho {
    width: 75%;
  }
  iframe {
    width: 75%;
  }
  .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0px 40px;
  }
  .content .list-menu {
    display: none;
  }
  .one,
  .two,
  .three {
    width: 80%;
    height: 2px;
    background-color: white;
    margin: 6px auto;
    transition-duration: 0.5s;
  }
  .menu-toggle {
    width: 30px;
    height: 30px;
  }
  .content.on {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .content.on .menu-toggle {
    position: absolute;
    right: 40px;
    top: 20px;
  }
  .content.on .list-menu {
    display: block;
  }
  .content.on .list-menu li {
    display: flex;
    justify-content: center;
  }
  .content.on .list-menu li a {
    font-size: 2.5rem;
  }
  .content.on .menu-toggle .two {
    opacity: 0;
  }
  .content.on .menu-toggle .one {
    transform: rotate(45deg) translate(5px, -8px);
  }
  .content.on .menu-toggle .three {
    transform: rotate(-45deg) translate(20px, -6px);
  }
  .contatos-secao {
    display: block;
    text-align: center;
    font-size: 2rem;
    width: 75%;
  }
  .content-sobre {
    width: 75%;
  }
}

@media (max-width: 375px) {
  .sobre-nos {
    display: block;
  }
  .content-sobre {
    width: 100%;
    padding: 0;
  }
  .sobre-nos h2 {
    padding-top: 20px;
  }
  .grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 100%;
  }
  .titulo h1 {
    font-size: 4rem;
  }
  .home-content h2 {
    font-size: 2rem;
  }
  .home-content h3 {
    text-align: center;
    font-size: 1.8rem;
  }
  .experiencia-content p {
    display: block;
    font-size: 1.8rem;
    width: 90%;
  }

  #carouselExampleAutoplaying {
    width: 100%;
  }
  .top {
    left: 310px;
  }
  .titulo-oninho {
    width: 90%;
    font-size: 1.8rem;
  }
  .oninho {
    width: 90%;
  }
  .contatos-secao {
    width: 96%;
  }
  .contatos-secao h2 {
    margin-top: 3rem;
    font-size: 1.6rem;
  }
  iframe {
    width: 90%;
  }
}
