@charset "UTF-8";
:host {
  container-type: inline-size;
}

/* É obrigatório ter :host no arquivo .css para funcionar dentro do Shadow DOM */
:host, :root {
  scroll-behavior: smooth;
  container-type: inline-size;
}

:host, :root {
  --font-main: 'Electrolux Sans', sans-serif;
  --fw-regular: 400;
  --fw-semibold: 600;
  --bs-white: #FFFFFF;
  --bs-electrolux-lightblue: #ADB9C3;
  --bs-electrolux-darkblue: #011E41;
  --bs-electrolux-green: #B4C3AD;
  --bs-electrolux-bluegray: #DFE7EA;
  --bs-electrolux-gray: #7B8A9C;
  --bs-electrolux-green-rgb: 180, 195, 173;
  --bs-electrolux-lightblue-rgb: 173, 185, 195;
  --bs-electrolux-darkblue-rgb: 1, 30, 65;
  --bs-electrolux-bluegray-rgb: 223, 231, 234;
  --bs-electrolux-gray-rgb: 123, 138, 156;
  --bs-white-rgb: 255, 255, 255;
  --bs-body-font-family: var(--font-main);
  --bs-body-font-size: 1.5 3rem;
  --bs-body-font-weight: 400;
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
}

/* É obrigatório ter :host no arquivo .css para funcionar dentro do Shadow DOM */
* {
  font-variant-ligatures: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Não devemos mais atribuir estilo direto ao "body". Precisamos manter o main ou a div que agloba todo infográfico junto ao body como primário. */
main, body {
  max-width: 1440px;
  margin: auto;
  display: block;
  width: 100%;
  position: relative;
  box-sizing: border-box;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Não devemos mais atribuir estilo direto ao "body". Precisamos manter o main ou a div que agloba todo infográfico junto ao body como primário. */
@font-face {
  font-family: "Electrolux Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local("Electrolux Sans"), url("./../fonts/ElectroluxSans-Regular.woff") format("woff");
}
@font-face {
  font-family: "Electrolux Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local("Electrolux Sans"), url("./../fonts/ElectroluxSans-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Electrolux Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local("Electrolux Sans"), url("./../fonts/ElectroluxSans-Bold.woff") format("woff");
}
.font-feature {
  font-feature-settings: "liga" off;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}
a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb) ;
}
a.link {
  text-decoration: none;
  color: var(--bs-white);
}

strong {
  font-weight: 600;
}

button {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  border-radius: 0;
  text-transform: none;
}

button, [type=button] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

iframe {
  border: 0;
}

.visually-hidden, .visually-hidden-focusable:not(:focus):not(:focus-within) {
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden:not(caption), .visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.g-0 {
  --bs-gutter-x: 0 ;
}

.col-md-6 {
  flex: 0 0 auto;
  width: 100%;
}
@container (min-width: 768px) {
  .col-md-6 {
    width: 50%;
  }
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-flex-wrap {
  flex-wrap: wrap;
}

.d-flex-center-start {
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
}

.d-flex-center-center {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.d-none {
  display: none !important;
}

.d-block-mobile {
  display: block !important;
}
@container (min-width: 768px) {
  .d-block-mobile {
    display: none !important;
  }
}

.d-block-desktop {
  display: none !important;
}
@container (min-width: 768px) {
  .d-block-desktop {
    display: block !important;
  }
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.top-0 {
  top: 0 !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.flex-row {
  flex-direction: row !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start-center {
  align-items: start;
}
@container (min-width: 768px) {
  .align-items-start-center {
    align-items: center;
  }
}

.align-content-center {
  align-content: center !important;
}

.align-self-center {
  align-self: center !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.position-absolute-desktop {
  position: relative;
}
@container (min-width: 768px) {
  .position-absolute-desktop {
    position: absolute;
  }
}

.flex-direction-md-column-reverse {
  flex-direction: column-reverse;
}
@container (min-width: 768px) {
  .flex-direction-md-column-reverse {
    flex-direction: row-reverse;
  }
}

.flex-direction-md-row-reverse {
  flex-direction: inherit;
}
@container (min-width: 768px) {
  .flex-direction-md-row-reverse {
    flex-direction: row-reverse;
  }
}

sup {
  vertical-align: text-top;
  font-size: small;
}
@container (min-width: 768px) {
  sup {
    vertical-align: super;
    font-size: small;
  }
}

.p-0 {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.mg-top-6 {
  margin-top: 6%;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-electrolux-darkblue {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-electrolux-darkblue-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.bg-electrolux-lightblue {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-electrolux-lightblue-rgb), var(--bs-bg-opacity)) !important;
}

.bg-electrolux-darkblue {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-electrolux-darkblue-rgb), var(--bs-bg-opacity)) !important;
}

.bg-electrolux-bluegray {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-electrolux-bluegray-rgb), var(--bs-bg-opacity)) !important;
}

.bg-electrolux-gray {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-electrolux-gray-rgb), var(--bs-bg-opacity)) !important;
}

.bg-electrolux-green {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-electrolux-green-rgb), var(--bs-bg-opacity)) !important;
}

@container (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-none {
    display: none !important;
  }
  .order-lg-1 {
    order: 1 !important;
  }
  .order-lg-2 {
    order: 2 !important;
  }
}
h2 {
  font-family: var(--bs-body-font-family);
  font-weight: 600;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: calc(22px + 32 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  h2 {
    font-size: calc(24px + 26 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  h2 {
    font-size: 50px;
  }
}
h2.sz-40 {
  font-size: calc(20px + 28 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  h2.sz-40 {
    font-size: calc(21px + 19 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  h2.sz-40 {
    font-size: 40px;
  }
}
h2.sz-38 {
  font-size: calc(18px + 26 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  h2.sz-38 {
    font-size: calc(21px + 17 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  h2.sz-38 {
    font-size: 38px;
  }
}

p {
  font-family: var(--bs-body-font-family);
  margin: 0;
  padding: 0;
  font-weight: 400;
  line-height: 1.2;
  font-size: calc(14.5px + 20.5 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  p {
    font-size: calc(18px + 17 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  p {
    font-size: 35px;
  }
}
p.sz-30 {
  font-size: calc(14.5px + 20.5 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  p.sz-30 {
    font-size: calc(16px + 14 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  p.sz-30 {
    font-size: 30px;
  }
}
p.sz-25 {
  font-size: calc(18px + 22 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  p.sz-25 {
    font-size: calc(14px + 11 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  p.sz-25 {
    font-size: 25px;
  }
}
p.sz-20 {
  font-size: calc(13px + 17 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  p.sz-20 {
    font-size: calc(10px + 10 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  p.sz-20 {
    font-size: 20px;
  }
}
p.sz-14 {
  font-size: calc(8px + 10 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  p.sz-14 {
    font-size: calc(8px + 6 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  p.sz-14 {
    font-size: 14px;
  }
}

#header .box-container {
  width: 100%;
  padding: 6% 5%;
  top: 0;
}
@container (min-width: 768px) {
  #header .box-container {
    width: 33.6%;
    max-width: 484px;
    margin-left: 3.6%;
    padding: inherit;
    top: inherit;
  }
}
#header .box-container .box-text {
  padding: 6% 0 9% 8%;
}
#header .box-container .box-text + .box-text {
  padding: 5% 0 10% 8%;
}
#header .box-container .box-text .box-logo > img {
  width: 46%;
}
@container (min-width: 768px) {
  #header .box-container .box-text .box-logo > img {
    width: 68%;
  }
}
#header .box-container .box-text h2 {
  margin-top: 6%;
}
#header .box-container .box-text h2 span {
  display: block;
  margin-top: 3%;
  font-weight: 400;
}

#video .ratio {
  position: relative;
  width: 100%;
}
#video .ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}
#video {
  vertical-align: super;
}
#video .ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
#video .ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videoBanner {
  overflow: hidden;
}

.banner.compacta h2 {
  padding: 3.5%;
}
.banner.compacta h2 sup {
  vertical-align: super;
  font-size: calc(7px + 23 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  .banner.compacta h2 sup {
    font-size: calc(14px + 14 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .banner.compacta h2 sup {
    font-size: 28px;
  }
}

.section h2 + p {
  margin-top: 5%;
}
.section.page-image-full .btn-change-text {
  position: absolute;
  background-color: var(--bs-electrolux-darkblue);
  color: var(--bs-body-bg);
  border-radius: 50%;
  width: calc(32px + 40 * (100vw - 320px) / 447);
  height: calc(32px + 40 * (100vw - 320px) / 447);
  padding-top: 0.2%;
  text-align: center;
  padding-bottom: 0.3%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  font-size: calc(42px + 56 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  .section.page-image-full .btn-change-text {
    font-size: calc(52px + 68 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .section.page-image-full .btn-change-text {
    font-size: 120px;
  }
}
.section.page-image-full .btn-change-text.active {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  background-color: var(--bs-body-bg);
  color: var(--bs-electrolux-lightblue);
  border: 3px solid var(--bs-electrolux-darkblue);
}
@container (min-width: 768px) {
  .section.page-image-full .btn-change-text {
    padding-top: 1.2%;
    width: calc(32px + 18 * (100vw - 768px) / 672);
    height: calc(32px + 18 * (100vw - 768px) / 672);
    padding-top: 0.3%;
    font-weight: 400;
  }
}
@container (min-width: 1440px) {
  .section.page-image-full .btn-change-text {
    width: 72px;
    height: 72px;
  }
}
.section.page-image-full.page2 .text-container {
  padding: 7% 0;
  text-align: center;
}
.section.page-image-full.page2 .text-container .mg-top {
  margin-top: 12%;
}
@container (min-width: 768px) {
  .section.page-image-full.page2 .text-container {
    padding: 0;
    text-align: left;
    right: 0;
  }
  .section.page-image-full.page2 .text-container .mg-top {
    margin-top: 32%;
  }
}
.section.page-image-full.page3 .text-container {
  padding: 12% 0;
  text-align: center;
}
.section.page-image-full.page3 .text-container .text-content {
  display: flex;
  flex-direction: column;
  height: 92%;
  width: 94%;
}
.section.page-image-full.page3 .text-container .text-content .mg-auto {
  margin: auto 0;
}
@container (min-width: 768px) {
  .section.page-image-full.page3 .text-container {
    padding: 0;
    text-align: left;
  }
  .section.page-image-full.page3 .text-container .text-content {
    display: flex;
    flex-direction: column;
    height: 92%;
    width: 74%;
  }
  .section.page-image-full.page3 .text-container .text-content .mg-auto {
    margin: auto 0;
  }
}
.section.page-image-full.page4 .text-container {
  padding: 12% 0;
  text-align: center;
}
.section.page-image-full.page4 .text-container .text-content {
  width: 72%;
}
.section.page-image-full.page4 .text-container .text-content .selo-10anos {
  width: 88%;
  max-width: 442px;
  margin-top: 12%;
}
@container (min-width: 768px) {
  .section.page-image-full.page4 .text-container {
    padding: 0;
    text-align: left;
  }
}
.section.page-image-full.page05 .text-container {
  padding: 12% 0;
  text-align: center;
}
.section.page-image-full.page05 .text-container .text-content {
  width: 100%;
}
@container (max-width: 767px) {
  .section.page-image-full.page05 .text-container .text-content .bg-electrolux-darkblue {
    width: 90%;
    padding: 1% 0 7%;
  }
  .section.page-image-full.page05 .text-container .text-content .bg-electrolux-darkblue p {
    margin-left: 10%;
  }
}
@container (min-width: 768px) {
  .section.page-image-full.page05 .text-container {
    padding: 0;
    text-align: left;
  }
  .section.page-image-full.page05 .text-container .mg-left {
    margin-left: 20%;
  }
  .section.page-image-full.page05 .text-container .pd-left {
    width: 82%;
    padding: 1% 0 5% 20%;
    padding-left: 20%;
  }
}
.section.page-image-full.page6 .text-container {
  padding: 12% 0;
  text-align: center;
}
.section.page-image-full.page6 .text-container .text-content {
  display: flex;
  flex-direction: column;
  height: 92%;
  width: 90%;
}
.section.page-image-full.page6 .text-container .text-content p {
  text-align: left;
}
.section.page-image-full.page6 .text-container .text-content .mg-auto {
  margin: auto 0;
}
.section.page-image-full.page6 .text-container .text-content .d-flex {
  align-items: center;
}
.section.page-image-full.page6 .text-container .text-content .icon {
  width: calc(50px + 60 * (100vw - 320px) / 447);
  height: calc(50px + 60 * (100vw - 320px) / 447);
  margin-right: 4%;
}
@container (min-width: 768px) {
  .section.page-image-full.page6 .text-container {
    padding: 0;
    text-align: left;
  }
  .section.page-image-full.page6 .text-container .text-content {
    width: 76%;
  }
  .section.page-image-full.page6 .text-container .text-content .d-flex {
    align-items: inherit;
  }
  .section.page-image-full.page6 .text-container .text-content .icon {
    width: calc(60px + 50 * (100vw - 768px) / 672);
    height: calc(60px + 50 * (100vw - 768px) / 672);
    margin-right: 4%;
  }
}
.section.carousel-features .text-title {
  padding: 8% 0 0%;
}
@container (min-width: 768px) {
  .section.carousel-features .text-title {
    padding: 5% 0 2%;
  }
}

.dadosTecnicos .specifications {
  width: 88%;
  margin: 10% auto 0;
}
@container (min-width: 768px) {
  .dadosTecnicos .specifications {
    width: 82%;
    padding: 0;
    margin: 0 auto;
  }
}
.dadosTecnicos .specifications .text-header-specifications {
  margin-bottom: 3%;
}
.dadosTecnicos .specifications .text-header-specifications p {
  font-size: calc(22px + 13 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  .dadosTecnicos .specifications .text-header-specifications p {
    font-size: calc(16.5px + 13.5 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .dadosTecnicos .specifications .text-header-specifications p {
    font-size: 30px;
  }
}
.dadosTecnicos .specifications .text-divisor p {
  font-size: calc(22px + 13 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  .dadosTecnicos .specifications .text-divisor p {
    font-size: calc(16.5px + 13.5 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .dadosTecnicos .specifications .text-divisor p {
    font-size: 30px;
  }
}
.dadosTecnicos .specifications .text-divisor p strong {
  font-weight: 700 !important;
}
.dadosTecnicos .specifications .block-specs.specs-3 {
  margin-top: 5%;
}
.dadosTecnicos .specifications .block-specs .text-title-specs h2 {
  font-weight: 600;
}
.dadosTecnicos .specifications .block-specs ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dadosTecnicos .specifications .block-specs ul li {
  display: flex;
  justify-content: space-between;
  background-color: #ffffff;
  margin: 2% 0;
  padding: 0.25% 3%;
  border-radius: 7px;
  padding: 1% 3%;
}
@container (min-width: 768px) {
  .dadosTecnicos .specifications .block-specs ul li {
    margin: 1.9% 0;
  }
}
.dadosTecnicos .specifications .block-specs ul li p {
  font-size: calc(18px + 22 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  .dadosTecnicos .specifications .block-specs ul li p {
    font-size: calc(13px + 10 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .dadosTecnicos .specifications .block-specs ul li p {
    font-size: 23px;
  }
}
.dadosTecnicos .specifications .block-specs ul li.text-title-specs {
  padding-left: 3%;
}
.dadosTecnicos .specifications .block-specs ul li.text-title-specs h2 {
  font-size: calc(15px + 27 * (100vw - 320px) / 447);
}
@container (min-width: 768px) {
  .dadosTecnicos .specifications .block-specs ul li.text-title-specs h2 {
    font-size: calc(16px + 11 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .dadosTecnicos .specifications .block-specs ul li.text-title-specs h2 {
    font-size: 28px;
  }
}

.footer {
  margin-top: -1%;
  padding: 12% 0;
}
.footer img {
  width: 57%;
  max-width: 291px;
}
@container (min-width: 320px) {
  .footer sup {
    vertical-align: super;
    font-size: 6px;
  }
}
@container (min-width: 430px) {
  .footer sup {
    vertical-align: super;
    font-size: 7px;
  }
}
@container (min-width: 530px) {
  .footer sup {
    vertical-align: super;
    font-size: 12px;
  }
}
@container (min-width: 768px) {
  .footer sup {
    vertical-align: super;
    font-size: 4px;
  }
}
@container (min-width: 1024px) {
  .footer sup {
    vertical-align: super;
    font-size: 6px;
  }
}
@container (min-width: 1440px) {
  .footer sup {
    vertical-align: super;
    font-size: 7px;
  }
}
.footer .cool-text {
  padding: 8% 5%;
}
.footer .cool-text p {
  font-size: calc(10px + 14 * (100vw - 320px) / 448);
}
@container (min-width: 768px) {
  .footer .cool-text p {
    font-size: calc(7px + 7 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .footer .cool-text p {
    font-size: 14px;
  }
}
.footer .cool-text p {
  line-height: 1.2;
  font-weight: 300;
  margin-top: 2.5%;
}
@container (min-width: 768px) {
  .footer .cool-text {
    padding: 0;
  }
}
@container (min-width: 768px) {
  .footer {
    padding: 3% 0;
  }
  .footer img {
    width: 22%;
  }
}

.carousel {
  position: relative;
}
.carousel.carousel-fade .carousel-inner {
  position: relative;
}
.carousel.carousel-fade .carousel-item {
  position: absolute;
  inset: 0;
  width: 100%;
  display: block !important;
  opacity: 0;
  transition: opacity 0.6s ease;
  transition-property: opacity;
  transform: none;
}
.carousel.carousel-fade .carousel-item.active {
  position: relative;
  opacity: 1;
  z-index: 1;
}
.carousel .carousel-item.active {
  display: block;
}
.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 1;
  transition: opacity 0.15s ease;
}
@container (min-width: 768px) {
  .carousel-control-prev, .carousel-control-next {
    top: -8%;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 1;
}
@container (prefers-reduced-motion: reduce) {
  .carousel-control-prev, .carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev {
  left: 0.7%;
}
.carousel-control-next {
  right: 0.7%;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  display: inline-block;
  width: 4rem;
  height: 4rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
  cursor: pointer;
}
.carousel-control-prev-icon {
  background-image: url("https://content.electrolux.com.br/test/arizona/novo-modelo-info/ke5gt-thiago/v1/img/icons/carousel-prev.svg");
}
.carousel-control-next-icon {
  background-image: url("https://content.electrolux.com.br/test/arizona/novo-modelo-info/ke5gt-thiago/v1/img/icons/carousel-next.svg");
}
.carousel-indicators {
  display: flex;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  z-index: 2;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 8px;
  margin-left: 8px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 2px solid rgba(0, 0, 0, 0);
  border-bottom: 2px solid rgba(0, 0, 0, 0);
  opacity: 1;
  transition: opacity 0.6s ease;
}
@container (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-features #carouselFeatures .carousel-indicators {
  justify-content: center;
  width: 100%;
  top: inherit;
  bottom: 2.5%;
  left: inherit;
}
.carousel-features #carouselFeatures .carousel-indicators [data-bs-target] {
  border-radius: 50px;
  width: calc(28px + 12 * (100vw - 320px) / 447);
  height: calc(28px + 12 * (100vw - 320px) / 447);
  background-color: var(--bs-electrolux-lightblue);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.carousel-features #carouselFeatures .carousel-indicators [data-bs-target].active {
  background-color: #fff;
}
@container (min-width: 768px) {
  .carousel-features #carouselFeatures .carousel-indicators {
    bottom: 5%;
    top: inherit;
  }
  .carousel-features #carouselFeatures .carousel-indicators [data-bs-target] {
    width: calc(28px + 17 * (100vw - 768px) / 672);
    height: calc(28px + 17 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .carousel-features #carouselFeatures .carousel-indicators [data-bs-target] {
    width: 45px;
    height: 45px;
  }
}
.carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container {
  text-align: center;
  margin: 0 auto;
  padding: 14% 0 16%;
  min-height: 230px;
  aspect-ratio: 14/15;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container h1 {
  line-height: 1.2;
  margin-top: 2%;
  font-size: calc(22px + 46 * (100vw - 320px) / 447);
}
.carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container p {
  line-height: 1.2;
  margin-top: 4%;
  font-size: calc(16px + 36 * (100vw - 320px) / 447);
}
@container (min-width: 768px) {
  .carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container {
    margin-left: 15%;
    text-align: left;
    padding: 9% 0;
  }
  .carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container h1 {
    font-size: calc(30px + 20 * (100vw - 768px) / 672);
    line-height: 1.1;
    margin-top: 2.4%;
  }
  .carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container p {
    margin-top: 6%;
    font-size: calc(23px + 12 * (100vw - 768px) / 672);
  }
}
@container (min-width: 1440px) {
  .carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container h1 {
    font-size: 50px;
  }
  .carousel-features .carousel .carousel-inner .carousel-item .box-texto .box-container p {
    font-size: 35px;
  }
}/*# sourceMappingURL=main.css.map */