/*!**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/.pnpm/css-loader@6.7.1_webpack@5.74.0/node_modules/css-loader/dist/cjs.js!./node_modules/.pnpm/postcss-loader@7.0.1_postcss@8.4.16_webpack@5.74.0/node_modules/postcss-loader/dist/cjs.js!./node_modules/.pnpm/sass-loader@13.0.2_sass@1.55.0_webpack@5.74.0/node_modules/sass-loader/dist/cjs.js!./src/sass/themes/blocks/hero-sample.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/* TODO: optimizar a scss */
/* - FONTS - */
/* [ END FONTS ] */
/* [ MEDIA QUERIES ] */
/* - MEDIA QUERIES WP - */
/* [ END MEDIA QUERIES ] */
/* [ COLOR ] */
/* [ END COLOR ] */
.swiper {
  overflow: visible;
}
.swiper-slide-active {
  z-index: 1;
}

.stories-slider {
  /* button */
  /* pagination */
}
.stories-slider-button {
  --stories-slider-z-navigation: 30;
  position: absolute;
  z-index: var(--stories-slider-z-navigation);
  top: 0;
  height: calc(100% - 3em);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 25px;
  overflow: hidden;
}
@media (min-width:600px) {
  .stories-slider-button {
    display: none;
  }
}
.stories-slider-button:before {
  --opacity: 0;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: var(--opacity);
  -webkit-transition-duration: 0.2s;
       -o-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
.stories-slider-button[data-click="1"]:before {
  --opacity: 1;
}
.stories-slider-button-prev {
  --bg-op: rgba(0, 0, 0, .4);
  left: 20px;
  width: 30%;
  max-width: 4em;
}
.stories-slider-button-prev:before {
  background-image: -webkit-gradient(linear, left top, right top, from(var(--bg-op)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(left, var(--bg-op), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, var(--bg-op), rgba(0, 0, 0, 0));
}
.stories-slider-button-next {
  --bg-op: rgba(0, 0, 0, .4);
  right: 20px;
  width: 70%;
  max-width: 4em;
}
.stories-slider-button-next:before {
  background-image: -webkit-gradient(linear, right top, left top, from(var(--bg-op)), to(rgba(0, 0, 0, 0)));
  background-image: -o-linear-gradient(right, var(--bg-op), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, var(--bg-op), rgba(0, 0, 0, 0));
}
.stories-slider-pagination {
  --stories-slider-z-pagination: 40;
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  left: 25px !important;
  bottom: unset !important;
  width: auto !important;
  right: 25px;
  top: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  z-index: var(--stories-slider-z-pagination);
  pointer-events: none;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}
@media (min-width:600px) {
  .stories-slider-pagination {
    width: 30px;
    height: 100%;
    left: auto !important;
    right: 55px !important;
    margin-left: 0;
    margin-right: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
    pointer-events: auto;
  }
}
.stories-slider-pagination-bullet {
  width: 100%;
  margin-top: 15px;
  margin-bottom: 15px;
  -ms-flex-negative: 10;
      flex-shrink: 10;
  border-radius: 999px;
  height: 5px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.stories-slider-pagination-bullet:before {
  --swiper-theme-color: #9b9b9b;
  content: "";
  position: absolute;
  background: var(--swiper-theme-color);
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  height: 5px;
}
@media (min-width:600px) {
  .stories-slider-pagination-bullet {
    width: 20px;
    height: 20px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .stories-slider-pagination-bullet:hover {
    cursor: pointer;
  }
  .stories-slider-pagination-bullet:before {
    height: 20px;
  }
}
.stories-slider-pagination-bullet[data-active=active]:before {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 3800ms ease-in;
  transition: -webkit-transform 3800ms ease-in;
  -o-transition: transform 3800ms ease-in;
  transition: transform 3800ms ease-in;
  transition: transform 3800ms ease-in, -webkit-transform 3800ms ease-in;
}
@media (min-width:600px) {
  .stories-slider-pagination-bullet[data-active=active]:before {
    --swiper-theme-color: $white;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.stories-slider-pagination-bullet[data-active=actived]:before {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
@media (min-width:600px) {
  .stories-slider-pagination-bullet[data-active=actived]:before {
    --swiper-theme-color: $white;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}
.stories-slider-pagination-bullet.swiper-pagination-bullet-active {
  --swiper-theme-color: #FFF;
  -webkit-transition: -webkit-transform 3800ms ease;
  transition: -webkit-transform 3800ms ease;
  -o-transition: transform 3800ms ease;
  transition: transform 3800ms ease;
  transition: transform 3800ms ease, -webkit-transform 3800ms ease;
  -webkit-box-shadow: 0 0 1px var(--swiper-theme-color);
          box-shadow: 0 0 1px var(--swiper-theme-color);
}
@media (min-width:600px) {
  .stories-slider-pagination-bullet.swiper-pagination-bullet-active:before {
    --swiper-theme-color: #9b9b9b;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fx-hero--sample {
  --max-width: 1400px;
  height: auto;
  min-height: 650px;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (min-width:600px) {
  .fx-hero--sample {
    min-height: 470px;
    overflow: visible;
  }
}
.fx-hero__mask {
  z-index: -1;
  position: absolute;
  height: calc(100% - 2em);
  width: 100%;
  padding: 0 20px 15px;
}
@media (min-width:600px) {
  .fx-hero__mask {
    height: calc(100% - 3em);
    padding: 0;
  }
}
.fx-hero__mask-bg {
  --border-radius: 30px;
  border-radius: var(--border-radius);
  background: #eceded;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
}
@media (min-width:600px) {
  .fx-hero__mask-bg {
    --border-radius: 0;
  }
}
@media (min-width:1400px) {
  .fx-hero__mask-bg {
    --border-radius: 30px;
  }
}
.fx-hero__mask-picture {
  --border-radius: 30px;
  border-radius: var(--border-radius);
  background: #eceded;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  height: 100%;
  width: 100%;
}
@media (min-width:600px) {
  .fx-hero__mask-picture {
    --border-radius: 0;
    -o-object-position: center;
       object-position: center;
  }
}
@media (min-width:1400px) {
  .fx-hero__mask-picture {
    --border-radius: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
  }
}
.fx-hero__content {
  --mh: 650px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(12, minmax(-webkit-min-content, 8.3333333333%));
  grid-template-rows: repeat(12, minmax(min-content, 8.3333333333%));
  grid-auto-rows: minmax(-webkit-min-content, 8.3333333333%);
  grid-auto-rows: minmax(min-content, 8.3333333333%);
  grid-auto-flow: row;
  height: 100%;
  width: 100%;
  min-height: var(--mh);
}
@media (min-width:600px) {
  .fx-hero__content {
    --mh: 470px;
    grid-template-rows: repeat(12, minmax(-webkit-min-content, 2.2em));
    grid-template-rows: repeat(12, minmax(min-content, 2.2em));
    grid-auto-rows: minmax(-webkit-min-content, 2.2em);
    grid-auto-rows: minmax(min-content, 2.2em);
  }
}
.fx-hero__content-inner {
  --grid-column-figure: 2 / -2;
  --grid-row-figure: 1 / span 6;
  grid-column: var(--grid-column-figure);
  grid-row: var(--grid-row-figure);
  padding-top: 2em;
  padding-bottom: 2em;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
}
@media (min-width:600px) {
  [dir="ltr"] .fx-hero__content-inner{
    text-align: left;
  }
  [dir="rtl"] .fx-hero__content-inner{
    text-align: right;
  }
  .fx-hero__content-inner {
    --grid-column-figure-md: 2 / span 4;
    --grid-row-figure-md: 1 / -1;
    grid-column: var(--grid-column-figure-md);
    grid-row: var(--grid-row-figure-md);
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
  }
}
.fx-hero__content-breadcrumbs {
  --grid-column-figure: 2 / -2;
  --grid-row-figure: 1 / span 6;
  grid-column: var(--grid-column-figure);
  grid-row: var(--grid-row-figure);
  padding-top: 2em;
  padding-bottom: 2em;
  margin-top: 10px;
  margin-bottom: 10px;
  text-align: center;
  justify-self: center;
}
@media (min-width:600px) {
  [dir="ltr"] .fx-hero__content-breadcrumbs{
    text-align: left;
  }
  [dir="rtl"] .fx-hero__content-breadcrumbs{
    text-align: right;
  }
  .fx-hero__content-breadcrumbs {
    --grid-column-figure-md: 2 / span 4;
    --grid-row-figure-md: 1 / -1;
    grid-column: var(--grid-column-figure-md);
    grid-row: var(--grid-row-figure-md);
    align-self: center;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1em;
    justify-self: start;
  }
}
.fx-hero__figure {
  --mt: 0;
  --mr: 0;
  --mb: 0;
  --ml: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: var(--mt) var(--mr) var(--mb) var(--ml);
  height: 100%;
  z-index: 1;
  --grid-column-figure: 1 / -1;
  --grid-row-figure: 7 / -1;
  grid-column: var(--grid-column-figure);
  grid-row: var(--grid-row-figure);
  /* switch admin at 7 / -1 */
}
@media (min-width:600px) {
  .fx-hero__figure {
    --mt-md: 0;
    --mr-md: 0;
    --mb-md: 0;
    --ml-md: 0;
    --grid-column-figure-md: 6 / -1;
    --grid-row-figure-md: 1 / -1;
    margin: var(--mt-md) var(--mr-md) var(--mb-md) var(--ml-md);
    grid-column: var(--grid-column-figure-md);
    grid-row: var(--grid-row-figure-md);
  }
}
@media (min-width:992px) {
  .fx-hero__figure {
    --mt-lg: 0;
    --mr-lg: 0;
    --mb-lg: 0;
    --ml-lg: 0;
    --grid-column-figure-lg: 6 / -1;
    --grid-row-figure-lg: 1 / -1;
    margin: var(--mt-lg) var(--mr-lg) var(--mb-lg) var(--ml-lg);
    grid-column: var(--grid-column-figure-lg);
    grid-row: var(--grid-row-figure-lg);
  }
  .fx-hero__figure--hidden-desktop {
    display: none;
  }
}
.fx-hero__figure--outer {
  --mt: 0;
  --mr: 0;
  --mb: 0;
  --ml: 0;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  margin: var(--mt) var(--mr) var(--mb) var(--ml);
}
.fx-hero__figure picture {
  max-height: 320px;
  height: 100%;
  width: 100%;
  /* auxiliar admin contain image */
}
@media (min-width:600px) {
  .fx-hero__figure picture {
    overflow: hidden;
    /* evita que se desborde mas allá */
    position: relative;
  }
}
.fx-hero__figure picture img {
  --object-position: bottom;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: var(--object-position);
     object-position: var(--object-position);
}
.fx-hero__figure--sm picture {
  max-height: 70px;
  width: 70px;
}
.fx-hero__figure--md picture {
  max-height: 90px;
  width: 90px;
}
.fx-hero__figure--lg picture {
  max-height: 110px;
  width: 110px;
}
.fx-hero__figure--xl picture {
  max-height: 130px;
  width: 130px;
}
.fx-hero__figure--xxl picture {
  max-height: 150px;
  width: 150px;
}
.fx-hero__title, .fx-hero__title h1 {
  --title-size: 30px;
  --color-white: #fff;
  --lh: 1.2;
  color: var(--color-white);
  text-transform: uppercase;
  font-family: var(--font-family-opens-sans);
  font-size: var(--title-size);
  line-height: var(--lh);
  font-weight: 800;
  margin-bottom: 10px;
  line-height: var(--lh);
}
.fx-hero__title p {
  margin: 0;
  --lh: 1.2;
  line-height: var(--lh);
}
.fx-hero__title span[style="font-weight: normal;"] {
  font-family: var(--font-family-opens-sans-regular);
}
.fx-hero__title span[style="font-weight: bold;"] {
  font-family: var(--font-family-opens-sans);
}
@media (min-width:600px) {
  .fx-hero__title, .fx-hero__title h1 {
    text-align: left;
  }
}
.fx-hero__title h1 {
  --color-white: inherit;
}
@media (min-width:600px) {
  .fx-hero__title h1 {
    text-align: left;
  }
}
.fx-hero__title--gray {
  color: #53575a !important;
}
.fx-hero__title--gray h1,
.fx-hero__title--gray h2,
.fx-hero__title--gray h3,
.fx-hero__title--gray h4,
.fx-hero__title--gray h5,
.fx-hero__title--gray h6,
.fx-hero__title--gray p,
.fx-hero__title--gray span,
.fx-hero__title--gray strong,
.fx-hero__title--gray b {
  color: #53575a !important;
}
.fx-hero__subtitle, .fx-hero__subtitle h2 {
  --title-size: 18px;
  --color-white: #fff;
  --lh: 1.2;
  color: var(--color-white);
  font-family: var(--font-family-opens-sans-regular);
  font-size: var(--title-size);
  line-height: var(--lh);
  font-weight: 400;
  margin-top: 8px;
  margin-bottom: 8px;
}
@media (min-width:600px) {
  .fx-hero__subtitle, .fx-hero__subtitle h2 {
    text-align: left;
  }
}
.fx-hero__subtitle span[style="font-weight: normal;"] {
  font-family: var(--font-family-opens-sans);
}
.fx-hero__subtitle span[style="font-weight: bold;"] {
  font-family: var(--font-family-opens-sans);
}
.fx-hero__subtitle h2 {
  --title-size: 25px;
  --color-white: inherit;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width:600px) {
  .fx-hero__subtitle h2 {
    padding-left: 0;
    padding-right: 0;
    text-align: left;
  }
}
.fx-hero__subtitle p {
  margin: 0;
  --lh: 1.2;
  line-height: var(--lh);
}
.fx-hero__subtitle b {
  font-family: var(--font-family-opens-sans);
}
.fx-hero__subtitle span[style="font-weight: normal;"] {
  font-family: var(--font-family-opens-sans);
}
.fx-hero__subtitle span[style="font-weight: bold;"] {
  font-family: var(--font-family-opens-sans);
}
.fx-hero__subtitle--uppercase, .fx-hero__subtitle--uppercase b, .fx-hero__subtitle--uppercase strong {
  text-transform: uppercase;
}
.fx-hero__subtitle--gray {
  color: #53575a !important;
}
.fx-hero__subtitle--gray h1,
.fx-hero__subtitle--gray h2,
.fx-hero__subtitle--gray h3,
.fx-hero__subtitle--gray h4,
.fx-hero__subtitle--gray h5,
.fx-hero__subtitle--gray h6,
.fx-hero__subtitle--gray p,
.fx-hero__subtitle--gray span,
.fx-hero__subtitle--gray strong,
.fx-hero__subtitle--gray b {
  color: #53575a !important;
}
.fx-hero__footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width:768px) {
  .fx-hero__footer {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.fx-hero__footer--switch-media button {
  display: none;
}
.fx-hero__footer--switch-media a {
  display: block;
}
@media (min-width:600px) {
  .fx-hero__footer--switch-media button {
    display: block;
  }
  .fx-hero__footer--switch-media a {
    display: none;
  }
}
.fx-payments-methods {
  margin-top: 15px;
  margin-bottom: 15px;
}
@media (min-width:600px) {
  .fx-payments-methods {
    max-width: 80%;
  }
}
.fx-payments-methods img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: left;
     object-position: left;
}

/*# sourceMappingURL=switch-hero.min.css.map*/