@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  position: relative;
}

html {
  height: -webkit-fill-available;
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-size: 1.2vw;
}
@media (orientation: portrait) {
  html {
    font-size: 4.15vw;
  }
}

body {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  scroll-behavior: smooth;
}
@media (orientation: landscape) {
  body {
    scroll-snap-type: y proximity;
  }
}
@media (orientation: portrait) {
  body {
    overflow-x: hidden;
  }
}

.clicked-caban {
  display: flex;
}

.hidden-caban {
  display: none;
}

.clicked-img {
  display: flex;
}

.hidden-img {
  display: none;
}

.overhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 3.75rem;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #FFF;
}
@media (orientation: portrait) {
  .overhead {
    display: none;
    visibility: hidden;
  }
}
.overhead nav {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
.overhead div {
  transform: scale(0);
}
.overhead .active-svg {
  transform: scale(1);
  position: absolute;
  right: 10%;
  display: flex;
  pointer-events: all;
  cursor: pointer;
}
@keyframes showMenu {
  to {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
.overhead .menu-overhead {
  display: flex;
  position: absolute;
  right: 16.5%;
  animation: showMenu 0.4s forwards;
}
.overhead .menu-overhead ul {
  display: flex;
  gap: 1.125rem;
  list-style: none;
  color: #FFF;
}
.overhead .menu-overhead ul li {
  min-width: 2.5rem;
  align-self: center;
}
.overhead .menu-overhead ul a {
  color: var(--night, #342F2C);
  text-align: center;
  font-family: Poppins;
  font-size: 0.652rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4vw;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  padding: 0px 0.42rem;
}
.overhead .menu-overhead ul a:hover {
  font-family: "Times New Roman";
  font-style: italic;
  text-transform: lowercase;
  font-size: 0.875rem;
}

.overhead-mobile {
  display: none;
  visibility: hidden;
}
@media (orientation: portrait) {
  .overhead-mobile {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    visibility: visible;
    height: 5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: fixed;
    background-color: transparent;
    z-index: 30;
    transition: background 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  .overhead-mobile form label {
    display: none;
    width: 0;
    height: 0;
  }
  .overhead-mobile form label input {
    width: 100%;
    height: 100%;
    display: flex;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: none;
    font-family: Times New Roman;
    font-size: 1rem;
    color: #FFF;
    background: none;
  }
  .overhead-mobile form label input::-moz-placeholder {
    font-family: Times New Roman;
    font-size: 1rem;
  }
  .overhead-mobile form label input::placeholder {
    font-family: Times New Roman;
    font-size: 1rem;
  }
  .overhead-mobile svg {
    color: white;
    fill: white;
    cursor: pointer;
  }
}

@media (orientation: portrait) {
  .overhead-mobile.search form {
    display: flex;
    position: absolute;
    flex-direction: row-reverse;
    left: 1rem;
    width: 16.875rem;
    gap: 0.31rem;
  }
  .overhead-mobile.search form label {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
  }
  .overhead-mobile.search form label::after {
    content: "";
    width: 100%;
    border-bottom: 1px solid #FFF;
  }
}

.hidden {
  transform: translateY(-100%);
}

.show {
  background-color: #342F2C;
}

.banner {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 31.25rem;
  width: 100%;
}
.banner img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner svg {
  height: 13.75rem;
  max-width: 70vw;
}
@media (orientation: portrait) {
  .banner {
    height: 100vh;
  }
}

.whatsapp {
  display: none;
}
@media (orientation: portrait) {
  .whatsapp {
    cursor: pointer;
    display: flex;
    position: fixed;
    width: 2.42425rem;
    height: 2.5rem;
    align-items: flex-end;
    z-index: 100;
    right: 1.58rem;
    bottom: 1.5rem;
  }
  .whatsapp svg {
    transform: translateZ(5rem);
    filter: drop-shadow(0px 10px 7px rgba(0, 0, 0, 0));
    width: 100%;
    height: 100%;
  }
}

.banner2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 29rem;
  width: 100%;
}
.banner2 img {
  display: none;
}
@media (orientation: portrait) {
  .banner2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 33.8rem;
    background: black;
    opacity: 50%;
  }
  .banner2 img {
    display: flex;
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.banner2 .page-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}
@media (orientation: portrait) {
  .banner2 .page-title {
    z-index: 10;
  }
}
.banner2 .page-title h1 {
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 3.125rem;
  font-style: normal;
  font-weight: 250;
  line-height: 3.4375rem;
  text-transform: uppercase;
  margin-bottom: 1.375rem;
  z-index: 30;
}
@media (orientation: portrait) {
  .banner2 .page-title h1 {
    margin: 1.4rem 0px;
    font-size: 2rem;
  }
}
.banner2 .page-title span {
  width: 19.5rem;
  height: 1px;
  background: #FFF;
  z-index: 20;
}

.header2 {
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0;
  width: 100%;
  height: 5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background 0.7s ease-in-out;
}
.header2 svg {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 40;
  pointer-events: none;
}
@media (orientation: portrait) {
  .header2 svg {
    display: none;
  }
}
.header2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33.8rem;
  background: black;
  opacity: 50%;
}
.header2 h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-align: center;
  font-family: Poppins;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 250;
  line-height: 4rem;
  text-transform: uppercase;
  margin-bottom: 0.625rem;
  z-index: 30;
  transform: scale(0);
}
.header2 h2::after {
  content: "";
  position: absolute;
  left: 80%;
  background: #FFF;
  width: 5rem;
  height: 1px;
  transform: rotate(90deg);
}
.header2 img {
  position: absolute;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  visibility: visible;
  width: 100%;
  height: 33.8rem;
  z-index: -1;
  transition: visibility 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@media (orientation: portrait) {
  .header2 {
    display: none;
  }
}
.header2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
  list-style: none;
  z-index: 1000;
}
.header2 ul li {
  min-width: 4rem;
  align-self: center;
}
.header2 ul button {
  position: absolute;
  right: -10%;
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  z-index: 1000000;
}
.header2 ul a {
  color: var(--night, #FFF);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4vw;
  letter-spacing: 1.8px;
  max-width: 6.8rem;
  text-transform: uppercase;
  outline: none;
  text-decoration: none;
  cursor: pointer;
  transition: font-style 0.3s ease-out;
}
.header2 ul a:hover {
  font-family: "Times New Roman";
  font-style: italic;
  text-transform: lowercase;
  transform: translateY(-1px);
  font-size: 1.015rem;
}

.container {
  padding: 0px 10%;
}
@media (orientation: portrait) {
  .container {
    padding: 0;
    width: 22.8125rem;
  }
}

.menu-header {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 30;
  background-color: #FFF;
}
.menu-header ul {
  display: flex;
  justify-content: center;
  list-style: none;
  height: 1.25rem;
  gap: 1.25rem;
}
.menu-header ul li {
  display: flex;
  justify-content: center;
}
.menu-header ul a {
  color: var(--night, #342F2C);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 8.125rem;
  max-width: 8.125rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  outline: none;
  color: #342F2C;
  text-decoration: none;
  cursor: pointer;
}
.menu-header ul a:hover {
  font-family: "Times New Roman";
  font-style: italic;
  text-transform: lowercase;
  font-size: 1rem;
  transform: translateY(-3px);
}
.menu-header span {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: black;
  position: absolute;
  bottom: 0;
}
.menu-header svg {
  display: none;
  visibility: none;
}
@media (orientation: portrait) {
  .menu-header {
    position: absolute;
    visibility: hidden;
  }
  .menu-header svg {
    display: flex;
    visibility: visible;
    position: absolute;
    top: 5vw;
    right: 8vw;
    cursor: pointer;
  }
}

h1 {
  width: 23.125rem;
  margin-top: 2vw;
  font-family: Poppins;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.1875rem;
  text-transform: uppercase;
}
@media (orientation: portrait) {
  h1 {
    color: var(--Grass, #7D8168);
    font-weight: 300;
    letter-spacing: 0.25rem;
  }
}

p {
  color: var(--night, #342F2C);
  margin-top: 4.35rem;
  font-family: Times New Roman;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem;
}
@media (orientation: portrait) {
  p {
    line-height: 1.25rem;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12.5rem;
  max-width: 12.5rem;
  height: 2.5rem;
  margin-left: auto;
  margin-top: auto;
  color: var(--Night, #342F2C);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1875rem;
  border: 1px solid black;
  padding: 0.75rem 1.75rem 0.75rem 3.75rem;
  transition: -webkit-text-decoration 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: text-decoration 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition: text-decoration 0.4s cubic-bezier(0.37, 0, 0.63, 1), -webkit-text-decoration 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.btn::after {
  position: absolute;
  left: 1.25rem;
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: rotate(45deg);
}
@media (orientation: portrait) {
  .btn::after {
    left: 0.5rem;
  }
}
.btn::before {
  position: absolute;
  left: -4.375rem;
  content: "";
  width: 6.25rem;
  height: 1px;
  background: black;
  transition: transform 0.2s cubic-bezier(0.37, 0, 0.63, 1);
  transform-origin: right;
}
@media (orientation: portrait) {
  .btn::before {
    left: -4rem;
    width: 5rem;
  }
}
@media (orientation: portrait) {
  .btn {
    height: 2.5rem;
    bottom: 1.125rem;
  }
}

.btn:hover {
  font-family: "Times New Roman";
  font-style: italic;
  text-transform: lowercase;
  font-size: 1rem;
}
.btn:hover::before {
  transform: scaleX(0.8);
}

.cards-container {
  padding: 0px 10%;
}
@media (orientation: portrait) {
  .cards-container {
    padding: 1rem;
  }
}

.cards {
  display: flex;
  width: 100%;
  scroll-margin-top: 2.1875rem;
  margin-bottom: 6.25rem;
}
.cards svg {
  align-self: center;
}
.cards h2 {
  color: var(--grass, #7D8168);
  text-align: center;
  margin-top: 1.85rem;
  font-family: Poppins;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.cards .cards-colection {
  margin-top: 3.125rem;
  display: flex;
  gap: 1.375rem;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (orientation: portrait) {
  .cards .cards-colection {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.cards .cards-colection .more {
  width: 100%;
  margin-bottom: 1.25rem;
}
@media (orientation: portrait) {
  .cards .cards-colection .more {
    width: 100%;
    padding: 0px;
  }
}
.cards .cards-colection .more p {
  align-self: center;
}
@media (orientation: portrait) {
  .cards .cards-colection .more p {
    width: 100%;
    margin-top: 5rem;
    align-self: flex-start;
  }
}
.cards .cards-colection .more b {
  display: inline-block;
  width: 100%;
  min-width: 43.75rem;
  background: black;
  height: 1px;
}
@media (orientation: portrait) {
  .cards .cards-colection .more b {
    width: 100%;
    min-width: 0px;
  }
}
.cards .cards-colection .card {
  display: flex;
  flex-direction: column;
  width: 21.3rem;
  gap: 1.25rem;
}
.cards .cards-colection .card a {
  width: 100%;
  height: 21.25rem;
}
.cards .cards-colection .card a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (orientation: portrait) {
  .cards .cards-colection .card {
    width: 100%;
    height: 48.8rem;
  }
  .cards .cards-colection .card a {
    width: 100%;
    height: 22.8125rem;
  }
  .cards .cards-colection .card a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.cards .cards-colection .card h3 {
  color: #342F2C;
  height: 6.8125rem;
  font-family: Poppins;
  font-size: 1.75rem;
  font-style: normal;
  font-weight: 250;
  line-height: 2.1825rem;
  text-transform: uppercase;
}
@media (orientation: portrait) {
  .cards .cards-colection .card h3 {
    color: #342F2C;
    font-family: Poppins;
    font-size: 1.75rem;
    font-style: normal;
    font-weight: 250;
    line-height: 2rem; /* 114.286% */
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 0px;
    height: 6.25rem;
  }
}
.cards .cards-colection .card span {
  color: #342F2C;
  font-family: Times New Roman;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem;
}
@media (orientation: portrait) {
  .cards .cards-colection .card span {
    color: #342F2C;
    font-family: Times New Roman;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.75rem;
    margin-bottom: 1.57rem;
  }
}

.footer {
  display: flex;
  flex-direction: column;
}
@media (orientation: portrait) {
  .footer {
    align-self: center;
    align-items: center;
    justify-content: center;
    width: 22.8125rem;
  }
}
.footer .banner-footer {
  width: 110%;
  height: 18.75rem;
  scroll-margin-top: 6.875rem;
}
.footer .banner-footer::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  background: black;
  opacity: 25%;
}
.footer .banner-footer .btn {
  width: 17.0625rem;
  max-width: 17.0625rem;
  height: 2.5rem;
  top: 0;
  right: 4.3rem;
  padding-right: 0px;
}
@media (orientation: portrait) {
  .footer .banner-footer .btn {
    position: static;
  }
}
.footer .banner-footer svg {
  position: absolute;
  top: 18%;
  left: 5%;
  z-index: 10;
}
@media (orientation: portrait) {
  .footer .banner-footer svg {
    display: flex;
    visibility: visible;
    position: absolute;
    top: 4.1875rem;
    left: 28%;
    z-index: 15;
  }
}
.footer .banner-footer img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (orientation: portrait) {
  .footer .banner-footer {
    height: 37.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
  }
}
.footer .banner-footer .reserve {
  display: flex;
  position: absolute;
  z-index: 15;
  align-items: center;
  justify-content: center;
  right: 13%;
  top: 50%;
}
@media (orientation: portrait) {
  .footer .banner-footer .reserve {
    right: 20%;
    bottom: 20%;
  }
  .footer .banner-footer .reserve a {
    width: 14rem;
    padding-right: 0.875rem;
  }
}
.footer .banner-footer .reserve a {
  color: #FFF;
  border-color: #FFF;
}
.footer .banner-footer .reserve a::before {
  color: #FFF;
  border-color: #FFF;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}
.footer .banner-footer .reserve a::after {
  color: #FFF;
  border-color: #FFF;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
}
.footer .banner-footer span {
  position: absolute;
  top: 40%;
  left: 43%;
  z-index: 10;
  margin-right: 2.125rem;
  color: #FFF;
  font-family: Poppins;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 275;
  line-height: 2.1875rem;
  text-transform: uppercase;
}
@media (orientation: portrait) {
  .footer .banner-footer span {
    margin-top: 4.5rem;
    left: 25%;
  }
}
.footer .banner-footer span h6 {
  color: #FFF;
  font-family: Times New Roman;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 4rem;
  text-transform: lowercase;
}
.footer .section-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 4.1825rem;
}
@media (orientation: portrait) {
  .footer .section-footer {
    width: 100%;
    margin-top: 3.125rem;
  }
}
.footer .section-footer span {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: black;
  transition: transform 0.7s var(--ease) 1s;
}
@media (orientation: portrait) {
  .footer .section-footer span {
    width: 100%;
  }
}
@media (orientation: portrait) {
  .footer .section-footer {
    display: flex;
    flex-direction: column;
  }
}
.footer .section-footer .upper-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 3.125rem;
}
.footer .section-footer .upper-section .tx-upper {
  display: flex;
  gap: 3rem;
}
@media (orientation: portrait) {
  .footer .section-footer .upper-section .tx-upper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin: 3.125rem 0px;
  }
  .footer .section-footer .upper-section .tx-upper :nth-child(1) {
    width: 7.82rem;
    font-size: 0.75rem;
  }
}
@media (orientation: portrait) {
  .footer .section-footer .upper-section {
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    margin-bottom: 0px;
  }
}
.footer .section-footer .upper-section .div1 ul {
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  list-style: none;
}
.footer .section-footer .upper-section .div1 ul li {
  width: 10rem;
}
.footer .section-footer .upper-section .div1 ul li a {
  color: var(--night, #342F2C);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 5rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
.footer .section-footer .upper-section .div1 ul li a:hover {
  font-family: "Times New Roman";
  font-style: italic;
  text-transform: lowercase;
  transform: translateY(-1px);
  font-size: 1.1rem;
}
.footer .section-footer .upper-section .div2 ul {
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  list-style: none;
}
.footer .section-footer .upper-section .div2 ul :nth-child(1) {
  width: 7.82rem;
  font-size: 0.75rem;
  margin-left: 0px;
}
.footer .section-footer .upper-section .div2 ul li {
  width: 16rem;
}
.footer .section-footer .upper-section .div2 ul li a {
  color: var(--Pistachio, #CFE1A6);
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 5rem;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
.footer .section-footer .upper-section .div2 ul li a:hover {
  font-family: "Times New Roman";
  font-style: italic;
  text-transform: lowercase;
  transform: translateY(-1px);
  font-size: 1.1rem;
}
.footer .section-footer .upper-section .newsletter {
  display: flex;
  flex-direction: column;
  width: 21.4375rem;
  margin-bottom: 5.44rem;
}
@media (orientation: portrait) {
  .footer .section-footer .upper-section .newsletter {
    width: 100%;
    align-self: center;
  }
}
.footer .section-footer .upper-section .newsletter label {
  color: var(--night, #342F2C);
  /* G & L/L text-sans-S */
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 4.44rem;
}
@media (orientation: portrait) {
  .footer .section-footer .upper-section .newsletter label {
    margin-bottom: 4.87rem;
  }
}
.footer .section-footer .upper-section .newsletter label h6 {
  color: var(--night, #342F2C);
  font-family: Times New Roman;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 4rem;
  text-transform: lowercase;
}
.footer .section-footer .upper-section .newsletter input {
  border: none;
  outline: none;
  border-bottom: 1px solid black;
  padding-bottom: 0.2rem;
  height: 1.5rem;
}
.footer .section-footer .upper-section .newsletter input::-moz-placeholder {
  color: var(--night, #342F2C);
  font-family: Times New Roman;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem;
}
.footer .section-footer .upper-section .newsletter input::placeholder {
  color: var(--night, #342F2C);
  font-family: Times New Roman;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5rem;
}
.footer .section-footer .upper-section .newsletter .send {
  display: flex;
  justify-content: flex-end;
  gap: 1.8vw;
}
.footer .section-footer .upper-section .newsletter .send svg {
  height: 0.5rem;
  width: 8rem;
  margin-bottom: 0.8rem;
  transition: transform 0.3s cubic-bezier(0.37, 0, 0.63, 1);
  position: absolute;
  left: -10rem;
  bottom: 0;
}
@media (orientation: portrait) {
  .footer .section-footer .upper-section .newsletter .send svg {
    position: absolute;
    right: 4rem;
    bottom: 0.14rem;
  }
}
.footer .section-footer .upper-section .newsletter .send button {
  display: flex;
  border: none;
  outline: none;
  width: 3.9375rem;
  height: 1.5rem;
  align-self: flex-end;
  margin-top: 1.88rem;
  text-transform: uppercase;
  color: var(--night, #342F2C);
  background-color: transparent;
  text-align: center;
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: font-style 1.4s cubic-bezier(0.37, 0, 0.63, 1) font-size 1.4s cubic-bezier(0.37, 0, 0.63, 1);
}
@media (orientation: portrait) {
  .footer .section-footer .upper-section .newsletter .send button {
    margin-top: 1.75rem;
    padding: 0.5rem;
  }
}
.footer .section-footer .upper-section .newsletter .send button:hover {
  font-family: "Times New Roman";
  font-style: italic;
  text-transform: lowercase;
  font-size: 1rem;
}
.footer .section-footer .upper-section .newsletter .send button:hover svg {
  transform: scale(0.7) translate(1.875rem, 0.3rem);
}
.footer .section-footer .last-seciton {
  display: flex;
  margin: 2.6875rem 0px;
  gap: 4rem;
  padding: 0px 10.06rem 0px 11.25rem;
}
@media (orientation: portrait) {
  .footer .section-footer .last-seciton {
    display: flex;
    flex-direction: column;
    gap: 3.125rem;
    align-items: center;
  }
}
.footer .section-footer .last-seciton .social {
  display: flex;
  flex-direction: column;
  gap: 0.6875rem;
}
@media (orientation: portrait) {
  .footer .section-footer .last-seciton .social {
    margin-right: 0px;
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
  }
}
.footer .section-footer .last-seciton .social h5 {
  color: var(--night, #342F2C);
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.footer .section-footer .last-seciton .social .line {
  display: flex;
  gap: 0.31rem;
  outline: none;
  text-decoration: none;
  align-items: center;
}
.footer .section-footer .last-seciton .logo {
  margin-top: -1vw;
}
.footer .section-footer .last-seciton .address {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  outline: none;
  text-decoration: none;
  color: var(--night, #342F2C);
}
@media (orientation: portrait) {
  .footer .section-footer .last-seciton .address {
    margin-left: 0px;
    margin-bottom: 2.8125rem;
  }
}
.footer .section-footer .last-seciton .address text {
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.slide-in {
  position: fixed;
  right: -100%;
  height: 100vh;
  width: 100%;
  background-color: white;
  box-shadow: -0.3125rem 0 0.9375rem rgba(0, 0, 0, 0.3);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: right 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.slide-in ul {
  display: flex;
  list-style: none;
  width: 100%;
}
.slide-in ul li {
  margin-top: 25%;
}
.slide-in ul .menu-sides {
  display: flex;
  width: 100%;
  height: 30rem;
}
.slide-in ul .menu-sides .white-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  background-color: #FFF;
  padding-left: 1.25rem;
  padding-bottom: 0.625rem;
}
@media (orientation: portrait) {
  .slide-in ul .menu-sides .white-side {
    width: 14rem;
  }
}
.slide-in ul .menu-sides .white-side a {
  color: #342F2C;
}
.slide-in ul .menu-sides .white-side :nth-child(1) {
  padding-top: 1rem;
}
.slide-in ul .menu-sides .black-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
  background-color: #342F2C;
  padding-left: 1.25rem;
}
@media (orientation: portrait) {
  .slide-in ul .menu-sides .black-side {
    width: 14rem;
  }
}
.slide-in ul .menu-sides .black-side svg {
  position: absolute;
  top: 0.9375rem;
  right: 0.625rem;
  cursor: pointer;
  z-index: 100000;
}
.slide-in ul .menu-sides .black-side a {
  color: #FFF !important;
}
.slide-in ul .menu-sides .black-side :nth-child(2) {
  padding-top: 1rem;
}
.slide-in ul a {
  text-align: center;
  font-family: Poppins;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4vw;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  outline: none;
  text-decoration: none;
  cursor: pointer;
}
@media (orientation: portrait) {
  .slide-in ul a {
    font-size: 0.875rem;
  }
}
.slide-in .menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  height: 100%;
  background: var(--Sand, #F4E8E4);
}
.slide-in .menu-footer .social {
  display: flex;
  padding-top: 0.625rem;
  gap: 1.57rem;
}
.slide-in .menu-footer .social .line {
  display: flex;
  justify-content: flex-end;
  gap: 0.625rem;
}
.slide-in .menu-footer .social .line h5 {
  color: var(--Night, #342F2C);
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding-top: 0.25rem;
}
.slide-in .menu-footer .add {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  padding-bottom: 0.75rem;
}
.slide-in .menu-footer .add text {
  color: var(--Night, #342F2C);
  font-family: Poppins;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.slide-in.active {
  right: 0;
}

.close-button {
  cursor: pointer;
}

.search div {
  pointer-events: painted;
}

.search form input :last-of-type {
  width: 0;
}

.search li {
  display: none;
}

.search a {
  display: none;
}
@media (orientation: portrait) {
  .search a {
    display: flex;
    visibility: hidden;
    pointer-events: all;
  }
}

.search button {
  right: 2rem;
}
.search button::before {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: #FFF;
  border: none;
  border-radius: 0;
  transform: translate(0, 0) rotate(-45deg);
}
.search button::after {
  content: "";
  width: 1.25rem;
  height: 2px;
  background: #FFF;
  transform: translate(0, 0) rotate(45deg);
}
.search button:hover {
  transform: scale(1.4);
}

.logo-hide {
  visibility: hidden;
  left: -100vw;
}

.search-btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border: none;
  background: transparent;
  width: 1rem;
  height: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  z-index: 8000;
  cursor: pointer;
  transition: transform 0.7s;
}
.search-btn::before, .search-btn::after {
  transition: transform 0.5s;
}
.search-btn::before {
  content: "";
  position: absolute;
  width: 1rem;
  height: 1rem;
  border: 2px solid #FFF;
  border-radius: 50%;
  transform: translate(-2px, -2px);
  background: transparent;
}
.search-btn::after {
  content: "";
  position: absolute;
  width: 0.95rem;
  height: 2px;
  background: #FFF;
  transform: translate(0.5rem, 0.55rem) rotate(45deg);
}
@media (orientation: landscape) {
  .search-btn:hover {
    transform: rotate(22deg);
  }
}
@media (orientation: portrait) {
  .search-btn {
    margin-left: 2rem;
    margin-bottom: 0.4rem;
  }
}

ul label {
  visibility: hidden;
  width: 0;
  background: transparent;
}
ul label input {
  width: 100%;
  height: 100%;
  font-family: Times New Roman;
  font-size: 1rem;
  font-style: italic;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: transparent;
  color: #FFF;
}
ul label::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFF;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

#header-2-ul form {
  visibility: hidden;
  width: 0;
}

#header-2-ul.search form {
  visibility: visible;
  width: 48rem;
  left: 0;
}
#header-2-ul.search form label {
  width: 100%;
  height: 1.57rem;
  visibility: visible;
}
@media (orientation: portrait) {
  #header-2-ul.search form label input::-moz-placeholder {
    content: "O que você procura?";
  }
  #header-2-ul.search form label input::placeholder {
    content: "O que você procura?";
  }
}
#header-2-ul.search form label::after {
  transform: scaleX(1);
}/*# sourceMappingURL=global.css.map */