/* Importação das fontes e ícones da Font Awesome */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

/* Estilos gerais */
body {
    font-family: 'Inter';
    background-color: #faf4ec;
    margin: 0;
    padding-top: 85px;
  }
  
  ::selection {
    background-color: rgb(178, 195, 157);
  }
  
  :link {
    color: #8fa07a;
  }
  
  :visited {
    color: #4a573a;
  }

  ::-webkit-scrollbar {
    width: 12px;
    height: 0px;
}

::-webkit-scrollbar-thumb {
    background-color: #bcbcbc;
    border-radius: 12px;
    border-width: 5px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #a6a9aa;
}

::-webkit-scrollbar-thumb:active {
    cursor: pointer;
    background-color: #a6a9aa;
}

::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 12px;
}

::-webkit-scrollbar-track:hover {
    background: #e0e0e0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.return {
  text-align: center;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background-color: #8fa07a;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 998;
  box-shadow: 0 0 10px #0000004d;
  transition: transform 0.3s ease-in-out;
}

.return i {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 5px;
  height: 24px;
  width: 24px;
  font-size: 20px;
  border-radius: 50%;
  padding: 8px;
  color: #282c23;
  background-color: #aec396;
  transition: background-color 0.25s ease, transform 0.2s;
}

.return i:hover {
  background-color: #8fa07a;
}

.return i:active {
  transform: scale(0.8);
}

.swal2-title, .swal2-content {
  /* color: rgba(232, 232, 232, 0.8); */
}

.swal2-popup {
  border-radius: 18px;
  transition: border-radius 0.2s;
  backdrop-filter: blur(15px);
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
}

.swal2-popup .swal2-actions .swal2-styled {
  border-radius: 8px;
  transition: transform 0.2s;
}

.swal2-popup:active .swal2-actions:active .swal2-styled:active {
  transform: scale(0.9);
}

/* Estilos para o cabeçalho */
header {
  top: 0;
  width: 100%;
  position: fixed;
  padding: 10px 0;
  text-align: center;
  align-items: center;
  z-index: 800;
  transition: background-color 0.3s, box-shadow 0.3s;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  backdrop-filter: blur(15px);
  z-index: -1;
}

.dropdown {
  backdrop-filter: blur(15px);
}

.botoes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.botoes .texto {
  text-align: left;
  margin-left: 32px;
  flex-grow: 1;
}

.botoes .logo {
  background-color: rgba(214, 193, 161, 0.581);
  margin-left: 16px;
  width: 150px;
  padding: 10px;
  cursor: pointer;
  border-radius: 12px;
  transition: background-color 0.2s, transform 0.2s;
}

.botoes .logo:hover {
  background-color: rgba(194, 171, 137, 0.581);
}

/* Menu */
.menu {
  margin-right: 20px;
  cursor: pointer;
  display: none;
}

.barrinha-menu {
  height: 4px;
  width: 32px;
  border-radius: 4px;
  background-color: #5a3f32;
  display: block;
  margin-bottom: 4px;
  transition: width 0.3s ease-in-out, margin 0.3s ease;
}

.barrinha-menu:last-child {
  margin-bottom: 0;
}

.menu.active .barrinha-menu:nth-child(1) {
  width: 27px;
}

.menu.active .barrinha-menu:nth-child(2) {
  width: 19px;
}

.menu.active .barrinha-menu:nth-child(3) {
  width: 32px;
}

.rounded-underline {
  position: relative;
  text-decoration: none;
}

.rounded-underline::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(7px);
  height: 3px;
  width: 0px;
  background-color: #95af75;
  border-radius: 3px;
  z-index: -1;
  transition: width 0.35s ease-out;
}

.headerButtons .button:hover .rounded-underline::after {
  width: 100%;
}

.sociais {
  background-color: #ffffff50;
  user-select: none;
  position: absolute;
  backdrop-filter: blur(10px);
  z-index: 1000;
  right: 150px;
  margin-top: 345px;
  border-radius: 8px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
  transform: translateY(-15px);
  transition: opacity 0.20s ease-in-out, transform 0.25s ease, visibility 0.2s ease-in-out;
}

.sociais ul {
  padding: 2px 6px;
  border-radius: 8px;
  margin: 8px;
  list-style-type: none;
}

.sociais ul a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #000000;
  padding-right: 15px;
  text-decoration: none;
  background-color: rgba(217, 192, 155, 0.71);
  border-radius: 8px;
  margin: 8px 0;
  transition: background-color 0.5s, color 0.5s;
  cursor: pointer;
}

.sociais ul a:hover {
  background-color: rgba(197, 179, 137, 0.8);
}

.sociais ul a span {
  margin-left: 12px;
}


.sociais ul a svg,
.sociais ul a img {
  display: inline;
  justify-content: flex-start;
  vertical-align: middle;
}

.sociais ul a:hover {
  background-color: rgba(187, 162, 126, 0.708);
}

.headerButtons {
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  overflow: auto;
}

.desktopSocial {
  margin-left: 30px;
}

.left {
  margin-left: 0px;
}

.headerButtons .button, .galleryButton {
  text-decoration: none;
  margin-left: 30px;
  border: none;
  padding: 9px 13px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.5s, transform 0.15s;
}

.headerButtons .button {
  background-color: #00000000;
}

/* Botão da galeria */
.dropdown .galleryButton {
  color: #fff;
  border: none;
  padding: 13.5px 20px;
  font-size: 15.5px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  width: calc(100% - 16px);
  margin-top: 10px;
  text-align: center;
  transition: background-color 0.5s;
}

.galleryButton {
  font-size: 15px;
  border-radius: 25px;
  font-weight: bold;
  background-color: #b48d66;
  color: #fff;
}

.galleryButton:hover {
  background-color: #977450;
}

.galleryButton:active {
  transform: scale(0.9);
}

/* Banner slider */
.slider {
  width: 700px;
  height: 300px;
  position: relative;
  transition: width 0.2s, height 0.2s;
  margin-top: 70px;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.381);
}

.slider img {
  width: 700px;
  height: 300px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  object-fit: cover;
  transition: width 0.2s, height 0.2s;
}

.slider img:first-child {
  z-index: 0;
}

.slider img:nth-child(2) {
  z-index: 0;
}

/* Botões do slider */
.navigation-button {
  user-select: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.dot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin-left: 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.2s;
}

.dot.active,
.dot:hover {
  background-color: #717171;
}

.social { 
  position: absolute;
  padding: 0;
  visibility: hidden;
  overflow: hidden;
  max-height: 0;
}

.social.active {
  max-height: 400px;
  visibility: visible;
  opacity: 1;
  max-width: 1000px;
}

.arrow-down {
  display: inline-block;
}

.setaAnimada {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.setaAnimada.active .arrow-down {
  transform: rotate(180deg) translateY(-4px);
}

.arrow-down {
  transition: transform 0.3s ease-out;
  margin-left: 5px;
}

/* Rodapé */
footer {
  max-width: 100%;
  height: 30px;
  border-radius: 6px;
  margin-top: 10px;
}

.bar {
  transform: translateX(-5px);
  border-radius: 6px;
  background-color: #af907b;
  height: 30px;
  width: 6px;
}

.galleryBtMobile {
  height: 32px;
  font-size: 13px;
  display: none;
  position: absolute;
  right: 85px;
}

.dropdown {
  display: none;
}

.icon {
  margin: 5px;
}

.ic {
  width: 32px;
}

/* Estilos responsivos */
@media (max-width: 950px) {
  .social.active {
    position: relative;
    max-height: 400px;
    visibility: visible;
    opacity: 1;
    max-width: 1000px;
  }

  .galleryBtMobile {
    display: flex;
  }
  .menu {
    display: block;
  }

  .menu.active + .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .headerButtons {
    display: none;
  }
  /* Dropdown */
  .dropdown {
    display: block;
    left: 20px;
    top: -110px;
    margin-top: 200px;
    user-select: none;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    right: 20px;
    background-color: #ffffffa9;
    backdrop-filter: blur(10px);
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 8px;
    transform: translateY(-15px);
    transition: opacity 0.20s ease-in-out, transform 0.25s ease, visibility 0.2s ease-in-out;
  }
  
  .menu.active + .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  
  .dropdown a {
    height: 20px;
    color: #000000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    background-color: rgba(217, 192, 155, 0.708);
    border-radius: 8px;
    margin: 8px;
    transition: background-color 0.5s, color 0.5s;
    cursor: pointer;
  }
  
  .dropdown a:hover {
    background-color: rgba(187, 162, 126, 0.708);
  }
  
  .dropdown ul {
    background-color: #acacac3b;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 8px;
    margin: 8px;
    list-style-type: none;
  }
  
  .dropdown ul a span {
    margin-left: 12px;
  }
  
  .dropdown ul a {
    display: flex;
    align-items: center;
    background-color: rgba(217, 192, 155, 0.708);
    padding: unset;
    height: auto;
    vertical-align: middle;
    transition: color 0.15s, background-color 0.15s;
  }
  
  .dropdown ul a svg,
  .dropdown ul a img {
    display: inline;
    justify-content: flex-start;
    vertical-align: middle;
  }
  
  .dropdown ul a:hover {
    background-color: rgba(187, 162, 126, 0.708);
  }
}

@media (max-width: 720px) {
  header {
    height: auto;
  }

  .botoes .logo {
    max-width: 130px;
    padding: 10px;
  }

  .headerButtons {
    visibility: hidden;
  }

  .menu {
    display: block;
    margin-right: 10px;
  }
  
  .botoes .logo:hover {
    background-color: rgba(199, 177, 143, 0.581);
  }

  .slider {
    width: 450px;
    height: 215px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .slider img {
    width: 450px;
    height: 215px;
  }

  .dropdown {
    left: 20px;
    top: -110px;
    z-index: 1000;
    margin-top: 200px;
    transform: translateY(-10px);
    transition: opacity 0.20s ease-in-out, transform 0.20s ease-in-out, visibility 0.20s;
  }

  .menu.active + .dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .dot {
    height: 7px;
    width: 7px;
  }
}

@media (max-width: 480px) {
  .slider {
    width: 330px;
    height: 160px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .slider img {
    width: 330px;
    height: 160px;
  }
}
