@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --pink: #FC898B;
  --blue: #B2C5D3;
  --blue-dark: #799ab1;
  --yellow: #FAD02C;
  --black: #000;
  --white: #FFF;
  --gray: #808080;
  --gray-dark: #333132;
  --gray-darkest: #1A1A1A;
  --beige-light: #EDECEA;
  --beige: #E4DCDA;
  --beige-dark: #D8CBC5;
  --beige-darkest: #BDA8A3;
  --pad-small: 4rem;
  --pad-large: 6rem;
  --pad-xlarge: 8rem;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}
@media (orientation: portrait) {
  :root {
    --pad-small: 2rem;
    --pad-large: 4rem;
  }
}

body > nav .logo {
  height: 5rem;
}

section, .filter, footer a:not(menu a):not(menu *), footer button {
  background-color: var(--color);
}

@media (orientation: portrait) {
  footer a:not(menu a):not(menu *) {
    width: 100%;
  }
}

h1, h2, h3, h4, h5 {
  font-family: "Zilla Slab", sans-serif;
  letter-spacing: 0.02em;
}

h1, h2, h3, small {
  text-transform: lowercase;
  line-height: 1.1;
}

h1 {
  font-size: 2.2rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

h4 {
  font-size: 1.3rem;
  font-weight: 400;
}

p, span, small {
  font-weight: 300;
}

.line {
  padding: 0 !important;
}
.line::after {
  content: none;
}

menu.fj-menu {
  font-family: "Zilla Slab", sans-serif;
}
menu.fj-menu details summary, menu.fj-menu a {
  text-transform: lowercase;
}

section.grid {
  background: var(--blue);
}
section.grid a.btn {
  padding: 0.4rem 1.4rem;
  color: white;
  font-size: 1.2rem;
  transition: all 0.5s ease;
  word-spacing: 0.1rem;
  background: var(--blue-dark);
}
section.grid a.btn:hover {
  transition: all 0.5s ease;
  opacity: 0.6;
}
section.grid small {
  border: 1px solid white;
  align-self: flex-start;
  padding: 0.3rem 2rem 0.4rem;
  opacity: 0.8;
}
section.grid.fj-variation > div:first-of-type {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  width: 100%;
}
section.grid.fj-variation > div:first-of-type > p {
  grid-column: 2/5;
}
section.grid.fj-variation .image-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
}
section.grid.fj-variation .image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}
section.grid.fj-variation .image-wrapper .white-transparent-cover {
  position: absolute;
  inset: 0;
  z-index: 100;
  transition: all 0.3s ease;
  background: transparent;
}
section.grid.fj-variation .image-wrapper .white-transparent-cover:hover {
  background-color: rgba(255, 255, 255, 0.15); /* efeito desbotado */
}
section.grid.fj-variation small {
  transition: all 0.3s ease;
}
section.grid.fj-variation small:hover {
  transform: scale(0.95);
}
section.grid.fj-variation .btn {
  transition: all 0.5s ease;
}
section.grid.fj-variation .btn:hover {
  transform: scale(0.95);
}
@media (orientation: portrait) {
  section.grid.fj-variation > div:first-of-type {
    grid-template-columns: 1fr;
  }
  section.grid.fj-variation > div:first-of-type > p {
    grid-column: 1/5;
    gap: 2rem;
  }
}

section.links {
  padding: 0;
}
section.links a {
  justify-content: center;
  align-items: center;
  color: white;
  height: auto;
  aspect-ratio: 2/3;
}
section.links a img {
  padding: 0;
  aspect-ratio: 2/3;
  height: auto;
  transition: all 0.25s ease;
}
section.links a:hover img {
  filter: brightness(0.6);
}
@media (orientation: portrait) {
  section.links a:first-of-type h2 {
    margin-left: 0;
  }
}

footer nav {
  gap: 0.5rem;
}
footer nav a {
  text-transform: lowercase;
}
footer > div {
  grid-column: span 2;
  padding: 1rem var(--pad-small);
}
@media (orientation: portrait) {
  footer > div {
    grid-column: span 1;
  }
}
footer h3 {
  letter-spacing: 0.2rem;
  margin-bottom: 1rem;
}
footer p {
  font-size: 1.2rem;
}
footer > button, footer > a {
  padding: var(--pad-small) var(--pad-small);
}
footer menu {
  font-family: "Roboto", sans-serif;
  font-size: 1.33rem;
  padding: var(--pad-small) var(--pad-small);
  gap: 6rem;
}
@media (orientation: portrait) {
  footer menu {
    gap: 0.75rem;
  }
}
footer .logo {
  height: 5rem;
}

section.branch-info {
  display: flex;
  align-items: flex-end;
  width: 100%;
  padding: var(--pad-xlarge) var(--pad-large) var(--pad-small);
  gap: 6rem;
}
section.branch-info > div:first-of-type {
  width: 30%;
}
section.branch-info > div:first-of-type h1 {
  margin-bottom: 5rem;
}
section.branch-info > div:first-of-type > div {
  padding-left: 3rem;
}
@media (orientation: portrait) {
  section.branch-info {
    flex-direction: column;
    padding: var(--pad-xlarge) var(--pad-small) var(--pad-small) var(--pad-small);
    gap: 6rem;
  }
  section.branch-info > div:first-of-type {
    width: 100%;
  }
  section.branch-info > div > div.address, section.branch-info > div div.opening-hours, section.branch-info > div div.contact {
    padding-left: 0rem;
  }
}

section.variable-grid > div > div {
  gap: 0.3rem;
}
section.variable-grid > div > div > a {
  display: flex;
  flex-direction: column;
  text-transform: lowercase;
  color: var(--black);
}

section.product-description > div:first-of-type {
  justify-content: center;
  gap: 4rem;
}
section.product-description > div:first-of-type p.feature-description::before {
  content: "—";
  font-weight: normal;
  display: block;
}
section.product-description > div:first-of-type p.feature-description {
  font-weight: bold;
  font-size: 1.1rem;
}
section.product-description > div:first-of-type div.horizontal-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.product-description > div:first-of-type div.horizontal-menu > div {
  display: flex;
  width: 100%;
}
section.product-description > div:first-of-type div.horizontal-menu > div:first-of-type {
  justify-content: flex-start;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1rem;
}
section.product-description > div:first-of-type div.horizontal-menu > div:first-of-type > label {
  display: flex;
  justify-content: center;
  width: 100%;
  text-transform: uppercase;
  background: var(--beige);
  cursor: pointer;
  font-size: 0.9rem;
  letter-spacing: 0.02rem;
  padding-block: 0.2rem;
}
section.product-description > div:first-of-type div.horizontal-menu > div:first-of-type > label.active {
  background: var(--beige-dark);
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type {
  flex-direction: column;
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type input {
  display: none;
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div img, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div a, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div p, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div small {
  opacity: 0;
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div a img {
  width: 2rem;
  height: 2rem;
}
@media (orientation: portrait) {
  section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div a, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div small {
    font-size: 1rem;
  }
  section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div a br, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type .checkbox-accordion > div small br {
    display: none;
  }
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type input:checked + .checkbox-accordion {
  grid-template-rows: 1fr;
  border-bottom: 1px solid var(--beige);
  padding-bottom: 1rem;
}
section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type input:checked + .checkbox-accordion img, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type input:checked + .checkbox-accordion a, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type input:checked + .checkbox-accordion p, section.product-description > div:first-of-type div.horizontal-menu > div:last-of-type input:checked + .checkbox-accordion small {
  opacity: 1;
}
section.product-description.full-description {
  grid-template-columns: 1fr;
  padding-inline: calc(var(--pad-xlarge) * 3);
}
section.product-description.full-description > div:last-of-type {
  aspect-ratio: initial;
}
@media (orientation: portrait) {
  section.product-description.full-description {
    padding-inline: var(--pad-small);
  }
}

section.full-screen-banner {
  padding-inline: var(--pad-large);
  padding-top: var(--pad-xlarge);
}
@media (orientation: portrait) {
  section.full-screen-banner {
    padding-inline: var(--pad-small);
  }
}
section.full-screen-banner > div h3 {
  font-family: "Roboto", sans-serif;
}

section.full-screen-tag-banner {
  display: flex;
  justify-content: flex-start;
  align-items: end;
  height: 100vh;
  width: 100%;
  color: var(--white);
}
section.full-screen-tag-banner.align-text-center {
  justify-content: center;
  align-items: center;
}
section.full-screen-tag-banner.align-text-center div {
  display: flex;
  gap: 0;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.full-screen-tag-banner.align-text-center div small {
  margin-bottom: 0;
}
section.full-screen-tag-banner.align-text-center h1, section.full-screen-tag-banner.align-text-center h4 {
  text-align: center;
  padding: 0rem;
}
section.full-screen-tag-banner a {
  padding: 8rem 10rem;
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  display: flex;
  align-items: end;
}
section.full-screen-tag-banner:not(:has(a)) {
  padding: 8rem 10rem;
  width: 100%;
  justify-content: flex-end;
  display: flex;
  align-items: end;
}
section.full-screen-tag-banner img, section.full-screen-tag-banner video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
section.full-screen-tag-banner div small {
  margin-bottom: 1rem;
  background: var(--beige-darkest);
  padding: 0.3rem 1.5rem;
  font-size: 1.3rem;
}
section.full-screen-tag-banner div small.yellow {
  background: var(--yellow);
}
section.full-screen-tag-banner div h1, section.full-screen-tag-banner div h4 {
  line-height: 1.5;
  padding-left: 3rem;
}
section.full-screen-tag-banner div h1 {
  font-size: 3.6rem;
  line-height: 0.9;
}
section.full-screen-tag-banner div h4 {
  font-size: 2.2rem;
}
section.full-screen-tag-banner.color-black > div {
  color: var(--black);
}
section.full-screen-tag-banner.align-content-left {
  justify-content: flex-start;
}
section.full-screen-tag-banner.align-content-left > a {
  justify-content: flex-start;
}
section.full-screen-tag-banner.align-content-center {
  justify-content: center;
}
section.full-screen-tag-banner.align-content-center > a {
  justify-content: center;
}
section.full-screen-tag-banner.align-content-right {
  justify-content: flex-end;
}
section.full-screen-tag-banner.align-content-right > a {
  justify-content: flex-end;
}
section.full-screen-tag-banner.align-content-center-left {
  align-items: center;
  justify-content: flex-end;
}
section.full-screen-tag-banner.align-content-center-left > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
section.full-screen-tag-banner.align-content-center-left > div h1, section.full-screen-tag-banner.align-content-center-left > div h4 {
  padding: 0;
}
section.full-screen-tag-banner.align-content-vertical {
  align-items: center;
}
section.full-screen-tag-banner.align-content-vertical > a {
  align-items: center;
}

section.centralized-content-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center 0; /* importante para o parallax */
  width: 100%;
  height: 100vh;
  gap: 1rem;
  color: var(--white);
  scroll-behavior: smooth;
  background-attachment: scroll; /* funciona no iOS e desktop */
}
section.centralized-content-banner h2 {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}
section.centralized-content-banner .black-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
section.centralized-content-banner a {
  background: rgba(255, 255, 255, 0.7);
  color: var(--gray-dark);
  padding: 0.4rem 1.4rem;
  word-spacing: 0.1rem;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
}
section.centralized-content-banner a:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(0.95);
}

section.video-youtube {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-inline: var(--pad-small);
}
section.video-youtube > img, section.video-youtube > video, section.video-youtube > iframe {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  max-height: 80vh;
}
section.video-youtube .yt-wrapper {
  width: 70rem;
  aspect-ratio: 16/9;
  max-height: 80vh;
}
section.video-youtube .yt-wrapper img, section.video-youtube .yt-wrapper video, section.video-youtube .yt-wrapper iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
section.video-youtube.lg-side-pad {
  padding: var(--pad-large) var(--pad-large);
}
section.video-youtube:has(.video-thumbnail)::before, section.video-youtube:has(.video-thumbnail)::after {
  content: "";
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}
section.video-youtube:has(.video-thumbnail)::before {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--black);
}
section.video-youtube:has(.video-thumbnail)::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.7rem solid transparent;
  border-bottom: 0.7rem solid transparent;
  border-left: 1rem solid var(--white);
  transform: translateX(0.15rem);
}

section.slider p {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
}

.pink {
  background: var(--pink);
}

.blue {
  background: var(--blue);
}

.padding-top {
  padding-top: var(--pad-large);
}

.padding-bottom {
  padding-bottom: var(--pad-large);
}

@media (orientation: portrait) {
  br {
    display: none;
  }
}
.hidden.left-fade-in {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.8s ease;
}
.hidden.bottom-fade-in {
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.8s ease;
}
.hidden.reveal-text {
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.hidden.reveal-text::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: translateX(0);
  transition: transform 2s ease;
}

.show.left-fade-in {
  opacity: 1;
  transform: translateX(0);
}
.show.bottom-fade-in {
  opacity: 1;
  transform: translateY(0);
}
.show.reveal-text::after {
  transform: translateX(100%);
}/*# sourceMappingURL=fj.css.map */