@font-face {
  font-family: 'Proxima Nova';
  src: url('../fonts/ProximaNova-Semibold.woff2') format('woff2'),
    url('../fonts/ProximaNova-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('../fonts/ProximaNova-Regular.woff2') format('woff2'),
    url('../fonts/ProximaNova-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Proxima Nova Rg';
  src: url('../fonts/ProximaNova-Bold.woff2') format('woff2'),
    url('../fonts/ProximaNova-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body,
html {
  overflow-x: hidden;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  /* removido overflow-y:hidden para permitir rolagem */
}

.review-section-top {
  margin-top: 34px;
}

.review-section-top-container {
  max-width: 1440px;
  margin: 0 auto;
}

.review-section-top-title {
  text-align: center;
}

.review-section-top-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 41px;
  text-align: center;
  margin-top: 20px;
  font-style: Italic;
  text-transform: uppercase;
}

.review-section-top-subtitle span {
  background-color: #fff4bc;
  padding: 5px 4px;
}

.green-banner-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  line-height: 150%;
  background-color: #acf4a1;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.promo-code {
  background-color: #000000;
  padding: 5px 11.5px;
  line-height: 100%;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
  min-height: 31px;
  color: #ffffff;
}

.d-none-desk {
  display: none;
}

.nav-section {
  max-width: 1440px;
  margin: 0 auto;
}

/* navbar.css */

.Navbar {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  height: 67px;
  padding-left: 243px;
  padding-right: 143px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 16px;
  font-weight: 400;
  color: #202e3b;
  /* margin-top: 44px; */
}

/* Estado fixo ao rolar além do banner */
.Navbar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 1440px; /* mantém alinhamento com conteúdo */
  margin: 0 auto;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.08); */
  animation: navbarSlide 0.25s ease;
}

@keyframes navbarSlide {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.Navbar__Link {
  padding-right: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #202e3b;
}

.Navbar__Items {
  display: flex;
}

.Navbar__Items--right {
  margin-left: auto;
  align-items: center;
}

.Navbar__Link-toggle {
  display: none;
  font-size: 26px;
}

.Order_Now_Button {
  background-color: #ffdc32;
  border: 1px solid #d4b000;
  color: white;
  border-radius: 8px;
  box-shadow: 0px 3px 0px 0px #dedede;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  width: 162px;
  height: 42px;
  color: #000000;
}

.EUA_Flag {
  width: 32px;
  height: 18px;
}

.menu-toggle {
  position: relative;
  width: 26px;
  height: 20px;
  cursor: pointer;
}

.menu-toggle img {
  position: absolute;
  top: 0;
  left: 0;
  width: 26px;
  height: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle .icon-bars {
  width: 26px;
  height: 20px;
  opacity: 1;
  transform: rotate(0deg);
}

.menu-toggle .icon-times {
  opacity: 0;
  transform: rotate(-90deg);
  width: 22.27px;
  height: 22.27px;
}

.menu-toggle.open .icon-bars {
  opacity: 0;
  transform: rotate(90deg);
}

.menu-toggle.open .icon-times {
  opacity: 1;
  transform: rotate(0deg);
}

.Navbar__Items {
  display: flex;
  /* gap: 12px; */
}

.button_ship_date {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.d-none-desk {
  display: none;
}

/* .Navbar__Link:hover {
  text-decoration: underline;
  text-decoration: underline;
  text-decoration-color: #ffdc32;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
} */

.go-to-offer-nav {
  color: #202e3b;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  margin-right: 12px;
}

.Navbar__Link-brand img {
  width: 169px;
  height: 37px;
}

.hero {
  background-color: #f7fbfd;
  margin: 0 auto;
  max-width: 1440px;
  /* margin-top: 41px; */
}

.dont-miss-out-hero {
  background-color: #fcfcfc;
  margin: 0 auto;
  max-width: 1440px;
  margin-top: 41px;
}

.hero-img {
  width: 100%;
  height: auto;
  max-width: 744px;
  aspect-ratio: 744 / 642;
}

.hero-container {
  /* padding-left: 240px; */
  max-width: 1440px;
  display: flex;
  justify-content: flex-end;
}

.hero-container-last {
  /* padding-left: 240px; */
  max-width: 1440px;
  display: flex;
  justify-content: flex-start;
}

.dont-miss-out-container {
  max-width: 1300px;
  display: flex;
}

.hero-left {
  max-width: 744px;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: end;
}

.hero-img-wrapper {
  position: relative;
  width: 100%;
  display: inline-block;
  max-width: 744px;
}

.hero-img-wrapper-last {
  position: relative;
  width: 100%;
  display: inline-block;
  max-width: 744px;
  margin-right: 25px;
}

.hero-left video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bottom-right-video-hero {
  position: absolute;
  max-width: 242.45px;
  max-height: 232.78px;
  right: 14.62px;
  bottom: 0;
  border: 3px solid #f7fbfd;
  border-radius: 4px;
  width: 35%;
  height: 46%;
}

.bottom-right-video-hero video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-90d {
  position: absolute;
  top: 24px;
  left: 29px;
  width: 96.61px;
  height: 107.34px;
}

.hero-halo-siren {
  position: absolute;
  top: 273px;
  left: -29%;
  width: 388px;
  height: 344px;
}

.hero-price-drop {
  position: absolute;
  bottom: -57px;
  right: -18.38px;
  width: 217px;
  height: 192px;
}

.hero-price-drop-dont {
  position: absolute;
  top: 140.54px;
  right: 14.62px;
  width: 56.12px;
  height: 56.12px;
}

.hero-right {
  display: flex;
  align-items: center;
  margin-right: 6px;
  min-width: 447px;
  /* padding-top: 20px; */
  /* padding-bottom: 20px; */
  /* padding-right: 16px; */
}

.hero-right-rating {
  padding-left: 3px;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}

.hero-right-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 51px;
  color: #db3535;
  margin-top: 8.16px;
  max-width: 456px;
}

.hero-right-title {
  font-family: proxima nova;
  letter-spacing: 0;
  font-weight: 800;
  font-size: 48px;
  line-height: 51px;
  /* max-width: 594.59px; */
  color: #5f5980;
  margin-top: 12.06px;
}

.hero-right-description {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 24px;
  margin-top: 16.15px;
  max-width: 447px;
  font-weight: 400;
}

.text-highlight {
  background-color: #fff4bc;
  padding: 5px 4px;
  font-weight: 700;
}

.hero-right-features {
  margin-top: 18.15px;
  display: flex;
  gap: 30px;
}

.hero-features-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-features-left-dont-miss-out {
  display: flex;
  flex-direction: column;
  gap: 16.47px;
  width: 484px;
}

.hero-left .img-fluid {
  height: 100%;
  object-fit: cover;
}

.hero-features-left-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-feature-line,
.hero-feature-line-last {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #343434;
}

.cta-btn {
  padding: 15px 10px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 23px;
  text-align: center;
  border-radius: 39px;
  background-color: #fff200;
  border: 1px solid #cab303;
  box-shadow: 0px 3px 0px 0px #dedede;
  width: 100%;
  text-decoration: none;
  color: #000000;
}

.stock-row {
  display: flex;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  line-height: 100%;
  gap: 5px;
}

.low-stock-text {
  display: flex;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  line-height: 100%;
  color: #d93c25;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.book-free-body {
  display: flex;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  line-height: 19px;
  gap: 9.98px;
}

.hero-features-right {
  align-self: flex-end;
}

.book-free {
  color: #db3535;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

.d-sm-none-desk {
  display: none;
}

.as-seen-on {
  margin-top: 50px;
}

.as-seen-on-container {
  background-color: #1e234e;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  color: #ffffff;
  padding: 19px 16px 36px 16px;
}

.as-seen-on-container img {
  width: 100%;
  height: auto;
  max-width: 999px;
}

.feedback {
  margin-top: 34px;
  max-width: 1440px;
}

.review-section {
  max-width: 1187.23px;
  margin: 0 auto;
  padding: 54px 16px 46.65px 16px;
}

.review-section-container {
  max-width: 1440px;
  margin: 0 auto;
}

/* .review-section-title {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 44px;
  text-align: center;
} */

.review-section-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 800;
  font-size: 21px;
  line-height: 41px;
  text-align: center;
  margin-top: 20px;
  font-style: Italic;
  text-transform: uppercase;
}

.review-section-subtitle span {
  background-color: #fff4bc;
  padding: 5px 4px;
}

.review-section-carousel-row {
  overflow: hidden;
  position: relative;
  margin-top: 18px;
}

.review-section-carousel-track {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.review-section-carousel-track img {
  flex-shrink: 0;
  display: block;
  height: 243px;
}

.efoam-quality-container {
  max-width: 1440px;
  margin: 0 auto;
  margin-top: 46.53px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 16px;
}

.efoam-quality-feature {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #0490b6;
}

.efoam-quality-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  color: #2f336e;
  max-width: 686px;
  margin-top: 8.5px;
}

.efoam-quality-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  text-align: center;
  max-width: 665.3px;
  margin-top: 8.5px;
}

.efoam-quality-row {
  max-width: 964.36px;
  margin: 0 auto;
  width: 100%;
  margin-top: 29.38px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.efoam-quality-row-right-text {
  max-width: 373px;
}

.efoam-quality-row-right-text-num {
  color: #0490b6;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
}

.efoam-quality-row-right-text-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  margin-top: 5px;
}

.efoam-quality-row-right-text-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  margin-top: 10px;
}

.efoam-quality-row-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.efoam-quality-row-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.efoam-quality-row-right-img {
  display: flex;
}

.efoam-quality-row-right-blue {
  background-color: #283244;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  padding-left: 35px;
}

.cta-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 39.6px;
}

.eyn {
  background-color: #f7fbfd;
  margin-top: 34.59px;
}

.eyn-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  color: #2f336e;
  max-width: 763.13px;
}

.eyn-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  text-align: center;
  margin-top: 19px;
}

.eyn-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 37.39px;
}

.eyn-row {
  margin-top: 32px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 964px;
  padding: 0 16px;
}

.eyn-row-divider {
  width: 1px;
  background-color: #d9d9ff;
  margin: 70px 0;
}

.eyn-row-col-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 32px;
  text-align: center;
}

.eyn-row-col-feature-text-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
}

.eyn-row-col-feature-text-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  max-width: 263px;
}

.eyn-row-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eyn-row-col-img {
  padding-top: 22px;
  padding-bottom: 8px;
  align-self: flex-start;
  min-height: 338px;
}

.eyn-row-col-img-center {
  padding-top: 22px;
  padding-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 338px;
}

.eyn-row-col-img-center-top {
  padding-top: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 338px;
}

.eyn-row-col-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 25.42px;
}

.eyn-row-col-feature {
  display: flex;
  gap: 7px;
}

.risk-free {
  background: linear-gradient(to bottom, #f9f9f9 40%, #fff 40%);
  /* max-width: 1440px; */
  margin: 0 auto;
  padding-top: 34px;
}

.risk-free-container {
  max-width: 816px;
  margin: 0 auto;
  background-color: #adf4a1;
  padding: 29px 80px;
  display: flex;
  gap: 18.12px;
  align-items: center;
}

.risk-free-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.risk-free-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 100%;
  text-transform: uppercase;
}
.risk-free-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
  margin-top: 5px;
}

.premium-clean {
  margin-top: 36.25px;
}

.premium-clean-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  color: #2f336e;
}

.premium-clean-text-title {
  margin-top: 17px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 24px;
  text-align: center;
}

.premium-clean-text-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin-top: 10px;
}

.premium-clean-col {
  max-width: 274px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.premium-clean-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 964px;
  margin: 28.14px auto;
  padding: 0 16px;
  gap: 20px;
}

.premium-clean-content video {
  max-width: 274px;
  max-height: 330px;
  width: 100%;
  height: auto;
}

.pros-and-cons-container {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 41px;
  letter-spacing: 0%;
  text-align: center;
  text-transform: uppercase;
  color: #2f336e;
}

.pros-and-cons {
  margin-top: 35px;
  padding-top: 49.16px;
  background: linear-gradient(to bottom, #f7fbfd 73%, #fff 73%);
}

.pros-and-cons-img {
  margin-top: 21.84px;
  padding: 0 16px;
}

.pros-and-cons-img img {
  width: 100%;
  height: auto;
  max-width: 685.06px;
}

.pros-and-cons-img-mob {
  display: none;
}

.complete-solution-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 46px;
  line-height: 62px;
  text-align: center;
  color: #5f5980;
  margin-top: 112px;
}

.complete-solution-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  margin-top: 20.39px;
  max-width: 583px;
}

.complete-solution-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.complete-solution-row {
  margin-top: 36.24px;
  display: flex;
  max-width: 922px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  width: 100%;
}

.complete-solution-card {
  max-width: 297px;
  /* background-color: #fbfbfe; */
  min-height: 402.82px;
}

.complete-solution-card-text-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 29px;
  text-align: center;
  margin-top: 18px;
  padding: 0 16px;
  color: #5f5980;
}

.complete-solution-card-text-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  padding: 17px 17px 28px 17px;
  color: #343434;
}

.d-none-desk-car {
  display: none;
}

.cost-effective {
  margin-top: 57.13px;
  padding-top: 52.15px;
  padding-bottom: 38.3px;
  background: #3442930a;
}

.cost-effective-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  color: #2f336e;
  max-width: 726px;
}

.cost-effective-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cost-effective-item {
  display: flex;
  align-items: center;
  gap: 12.22px;
}

.cost-effective-item-start {
  display: flex;
  align-items: flex-start;
  gap: 12.22px;
}

.cost-effective-text-headline {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 27px;
}

.cost-effective-col {
  gap: 12.33px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cost-effective-text-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 25px;
}

.cost-effective-text-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
}

.cost-effective-row {
  display: flex;
  width: 100%;
  align-items: center;
  margin-top: 36.84px;
  justify-content: center;
}

.cost-effective-img {
  max-width: 105.64px;
  margin-right: 55.18px;
  margin-left: 58.18px;
}

.text-highlight-cost {
  background-color: #fff4bc;
}

.cost-effective-text-description {
  width: fit-content;
}

.review-section-divider {
  border: 1px solid #cbcbcb;
  border-width: 1px;
  border-style: dashed;
  width: 100%;
  height: 1px;
  margin-top: 28.5px;
}

.review-section-container {
  margin-top: 28.86px;
  gap: 21px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.review-section-col {
  max-width: 272.84px;
  display: flex;
  flex-direction: column;
  gap: 19.8px;
}

.review-section-card {
  border: 1px solid #d3d3d3;
  border-radius: 4px;
}

.review-section-card-profile {
  display: flex;
  align-items: center;
  padding-left: 15.6px;
  padding-right: 16.35px;
  gap: 10px;
  margin-top: 17px;
}

.profile-name {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

.verified-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.verified-text {
  color: #3ab890;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

.review-section-card-rating {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px;
  margin: 15px auto;
  position: relative;
}

.review-section-card-rating::before,
.review-section-card-rating::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  height: 1px;
  background-color: #e3e3e3;
}

.review-section-card-rating::before {
  top: 0;
}

.review-section-card-rating::after {
  bottom: 0;
}

.review-section-card-rating span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  vertical-align: middle;
}

.review-section-card-title {
  padding-left: 15.6px;
  padding-right: 16.35px;
  margin-top: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  vertical-align: middle;
}

.review-section-card-description {
  padding-left: 15.6px;
  padding-right: 16.35px;
  padding-bottom: 27.06px;
  margin-top: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  vertical-align: middle;
}

.d-none-review-desk {
  display: none;
}

.d-none-card {
  display: none;
}

.profile-pic {
  border-radius: 5px;
}

.review-section-tag {
  color: #0490b6;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.review-section-title {
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 41px;
  text-align: center;
  text-transform: uppercase;
  max-width: 763px;
  color: #2f336e;
  margin: auto;
  margin-top: 14.51px;
}

.accordion-wrapper {
  max-width: 480px;
  max-height: 300px;
  margin: 20px auto;
  background: transparent;
}

/* .accordion-item:last-of-type {
  border-bottom: 1px solid #d4d5d5;
} */

.accordion-item {
  background: transparent;
  border: 1px solid #4f4f4f;
  border-radius: 4px;
  padding: 25px 24px 25px 30px;
}

.accordion-header {
  background: transparent;
  padding: 0;
  cursor: pointer;
  border: none;
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  color: #343434;
  text-decoration: none;
}

.bg-none {
  background: transparent !important;
}

.accordion-header img {
  width: 30px;
  height: 30px;
  transition: max-height 0.2s;
}

.accordion-content {
  font-family: 'Open Sans', sans-serif;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s;
  background-color: transparent;
  font-size: 17px;
  line-height: 28px;
  color: #343434;
}

.accordion-item:first-of-type .accordion-header {
  border-top: none;
}

.accordion-item.active .accordion-content {
  max-height: 600px;
  padding-bottom: 16px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-section-container {
  max-width: 1036px;
  margin: 0 auto;
}

.faq-section {
  padding-bottom: 75px;
  padding-top: 65.35px;
  padding-left: 16px;
  padding-right: 16px;
}

.faq-section-tag {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  color: #0490b6;
}

.faq-section-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 46px;
  line-height: 46px;
  text-align: center;
  color: #5f5980;
  margin-top: 17.92px;
}

.faq-section-row {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

footer {
  background-color: #f8f8f8;
  padding: 88px 16px 15px 16px;
  display: flex;
  flex-direction: column;
}

.copyright {
  color: #808080;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  vertical-align: middle;
  margin-top: 3px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 66px;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #dfdfdf;
  margin-top: 18px;
  margin-bottom: 13px;
}

.footer-links a,
.footer-links span {
  text-decoration: none;
  color: #808080;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  vertical-align: middle;
}

.floating-bar {
  display: none;
}

.hidden {
  display: none !important;
}

.hs-features-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.hs-features {
  padding: 49px 16px 0 16px;
}

.hs-features-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  font-size: 16px;
  line-height: 100%;
  font-family: 'Open Sans', sans-serif;
}

.divider-striped {
  border-bottom: 1px dashed #343434;
  max-width: 1100px;
  margin: 29px auto 0 auto;
  width: 100%;
}

.hs-features-container-mob {
  display: none;
}

.hs-conficence-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hs-confidence-img-wrapper {
  max-width: 563px;
}

.hs-confidence-img-wrapper img {
  width: 100%;
  height: auto;
  margin-top: 71px;
}

.hs-confidence-users img {
  width: 100%;
  max-width: 143.92px;
  height: auto;
}

.hs-confidence-section {
  margin-top: 49px;
  padding: 0 16px;
}

.hs-confidence-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 46px;
  line-height: 62px;
  letter-spacing: 0%;
  text-align: center;
  color: #5f5980;
}

.hs-confidence-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  margin-top: 16px;
  max-width: 933px;
}

.hs-confidence-users {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.hs-confidence-users span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 17px;
  max-width: 263px;
}

.hs-ultimate-safety-container {
  max-width: 954px;
  margin: 0 auto;
  padding-top: 76px;
  padding-left: 16px;
  padding-right: 16px;
}

.hs-ultimate-safety-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 46px;
  line-height: 54px;
  letter-spacing: 0%;
  text-align: center;
  color: #5f5980;
  margin-bottom: 80px;
}

.hs-ultimate-safety-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 37px;
}

.hs-ultimate-safety-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 37px;
}

.hs-ultimate-safety-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 37px;
  background: url('../images/deliver3.png') no-repeat center;
  background-size: cover;
  border-radius: 20px;
  width: 100%;
  padding-right: 16px;
}

.hs-ultimate-safety-full .hs-ultimate-safety-text-title,
.hs-ultimate-safety-full .hs-ultimate-safety-text-description {
  color: #ffffff !important;
  text-shadow: 0px 4px 4px #00000040 !important;
}

.hs-ultimate-safety-full .hs-ultimate-safety-text-description {
  max-width: 419px;
}

.mock-img-space {
  max-width: 448px;
  width: 100%;
  height: 265px;
}

.third-safety-img {
  display: none;
}

.hs-ultimate-safety-text-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 32px;
  line-height: 36px;
  letter-spacing: 0%;
  color: #5f5980;
}

.hs-ultimate-safety-text-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  margin-top: 16px;
  color: #343434;
}

.hs-ultimate-safety-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.hs-advantage {
  background: url('../images/advantage-bg.png') no-repeat center;
  position: relative;
  background-size: cover;
}

.frame-top,
.frame-bottom {
  display: none;
}

.hs-advantage-container {
  padding: 63px 16px;
}

.hs-advantage-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 46px;
  line-height: 46px;
  letter-spacing: 0%;
  text-align: center;
  color: #5f5980;
}

.hs-advantage-chart {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.hs-advantage-chart img {
  width: 100%;
  height: auto;

  max-width: 686px;
}

.hs-advantage-90d {
  width: 113.4px;
  height: 126px;
}

.hs-advantage-money-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17.6px;
  margin-top: 40px;
}

.hs-advantage-money-back-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #5f5980;
}

.hs-advantage-money-back-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  margin-top: 1px;
  max-width: 497px;
}

.hs-advantage .cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 352px;
  margin: 40px auto 0 auto;
}

.faq-section-container .cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 352px;
  margin: 48px auto 0 auto;
}

.hs-having-about-container .cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 352px;
  margin: 40px auto 61px auto;
}

.hs-having-about-title {
  font-family: proxima nova;
  font-weight: 700;
  font-size: 46px;
  line-height: 46px;
  letter-spacing: 0%;
  text-align: center;
  color: #5f5980;
}

.hs-having-about-container {
  padding-top: 99px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1010px;
  margin: 0 auto;
}

.hs-having-about-card {
  max-width: 308px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hs-having-about-card-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  letter-spacing: 0%;
}

.hs-having-about-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
}

.hs-having-about-author {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
}

.hs-having-about-content {
  margin-top: 59px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 41px;
}

.hs-having-about-content-five-stars {
  margin-top: 23px;
  margin-bottom: 3.84px;
}

.footer-logo {
  width: 252px;
  height: 54px;
  margin: 0 auto;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 1190px) {
  .Navbar {
    padding-right: 30px;
    padding-left: 30px;
  }

  .hero-right {
    margin-left: 20px;
  }

  .col-hidden {
    display: none;
  }
}

@media only screen and (max-width: 892px) {
  .col-hidden {
    display: flex;
  }
}

@media only screen and (max-width: 991px) {
  .hs-having-about-container {
    padding-top: 41px;
  }

  .hero-img-wrapper-last {
    margin-right: 0;
  }

  .hs-having-about-content {
    margin-top: 41px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    justify-items: center;
  }

  .frame-bottom {
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
  }

  .frame-top {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
  }

  .hs-advantage .cta-wrapper {
    margin-top: 21px;
    z-index: 999;
    width: 100%;
    max-width: 360px;
  }

  .faq-section-container .cta-wrapper {
    margin-top: 38px;
    z-index: 999;
    width: 100%;
    max-width: 360px;
  }

  .hs-having-about-container .cta-wrapper {
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .hs-advantage .cta-wrapper .cta-btn {
    z-index: 999;
  }

  .hs-advantage-money-back {
    text-align: center;
  }

  .hs-advantage-money-back-description {
    margin-top: 15px;
  }

  .hs-advantage-90d {
    display: none;
  }

  .hs-advantage-container {
    padding: 32px 16px;
  }

  .complete-solution-container {
    padding-bottom: 35px;
  }

  .hs-advantage-title,
  .hs-having-about-title {
    font-size: 32px;
    line-height: 34px;
  }

  .hs-advantage-chart {
    margin-top: 19px;
  }

  .third-safety-img {
    display: block;
    width: 100%;
    height: auto;
    /* max-width: 448px; */
    order: 2;
  }

  .mock-img-space {
    display: none;
  }

  .hs-ultimate-safety-left,
  .hs-ultimate-safety-right {
    flex-direction: column;
    width: 100%;
  }

  .hs-ultimate-safety-left img,
  .hs-ultimate-safety-right img {
    width: 100%;
  }

  .hs-ultimate-safety-left .hs-ultimate-safety-text,
  .hs-ultimate-safety-full .hs-ultimate-safety-text,
  .hs-ultimate-safety-right .hs-ultimate-safety-text {
    order: 2;
  }

  .hs-ultimate-safety-text-title {
    font-size: 26px;
    line-height: 36px;
  }

  .hs-ultimate-safety-full .hs-ultimate-safety-text-title {
    color: #5f5980 !important;
    text-shadow: none !important;
  }

  .hs-ultimate-safety-full .hs-ultimate-safety-text-description {
    color: #343434 !important;
    text-shadow: none !important;
  }

  .hs-ultimate-safety-full .hs-ultimate-safety-text-description {
    max-width: 100%;
  }

  .hs-ultimate-safety-full {
    background: none;
    flex-direction: column;
    padding: 0;
  }

  .hs-ultimate-safety-wrapper {
    gap: 30px;
  }

  .hs-ultimate-safety-container {
    padding-top: 28px;
  }

  .hs-features-container-mob {
    display: none;
    padding-left: 23px;
    padding-right: 25px;
  }

  .hs-features {
    padding-top: 33px;
  }
  .hs-features-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
  }

  .hs-features-container-mob {
    display: flex;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 44px;
  }

  .hero-img {
    aspect-ratio: 390 / 317;
  }

  .eyn-row-col-feature {
    gap: 8.56px;
  }

  .eyn-row-col {
    width: 100%;
  }

  .efoam-quality-row {
    gap: 35px;
  }

  .review-section-carousel-track img {
    height: 184px;
  }

  .review-section-top {
    margin-top: 22px;
  }

  .efoam-quality-container {
    margin-top: 40px;
  }

  .review-section-top-title {
    font-size: 28px;
    line-height: 34px;
    padding-left: 14.54px;
    padding-right: 14.54px;
  }

  .review-section-top-subtitle {
    font-size: 18px;
    line-height: 20px;
    background-color: #fff4bc;
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }

  .review-section-top-subtitle span {
    padding: 0;
    background-color: transparent;
  }

  .faq-section-title {
    font-size: 32px;
    line-height: 32px;
  }

  .hs-confidence-section {
    margin-top: 28px;
  }

  .hs-confidence-title,
  .hs-ultimate-safety-title {
    font-size: 30px;
    line-height: 33px;
  }

  .hs-ultimate-safety-title {
    margin-bottom: 28px;
  }

  .hs-confidence-users {
    flex-direction: column;
    margin-top: 39px;
    text-align: center;
  }

  .hs-confidence-img-wrapper img {
    margin-top: 39px;
  }

  footer {
    background-color: #f8f8f8;
    padding: 54px 16px 15px 16px;
  }

  .copyright {
    color: #808080;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
    vertical-align: middle;
    margin-top: 3px;
  }

  .footer-links a,
  .footer-links span {
    text-decoration: none;
    color: #808080;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    vertical-align: middle;
    margin-top: 47px;
  }

  .faq-section {
    padding-top: 30px;
    padding-bottom: 45px;
  }

  /* .review-section-carousel-track {
    animation: scroll 30s linear infinite;
  } */

  .accordion-item {
    padding: 24px 12px;
  }

  .accordion-content {
    padding-right: 30px;
    font-size: 16px;
    line-height: 24px;
  }

  .cost-effective-row {
    flex-direction: column;
    gap: 22px;
  }

  .complete-solution-title {
    font-size: 30px;
    line-height: 33px;
    padding: 0 16px;
    margin-top: 79px;
  }

  .cost-effective {
    margin-top: 36.45px;
    padding-top: 31.05px;
    padding-bottom: 41.8px;
  }

  .cost-effective-title {
    font-size: 32px;
    line-height: 32px;
    padding: 0 16px;
  }

  .complete-solution-card-text-description {
    padding: 17px 10px 19px 10px;
  }

  .complete-solution-row {
    justify-content: center;
    gap: 23.46px;
    margin-top: 30.36px;
  }

  .complete-solution-subtitle {
    margin-top: 18.49px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .complete-solution-card img {
    width: 100%;
    height: auto;
    /* aspect-ratio: 214/219; */
    object-fit: cover;
  }

  .complete-solution-card {
    max-width: 214px;
    /* background-color: #fbfbfe; */
    min-height: 402.82px;
  }

  .risk-free .cta-row {
    width: 100%;
  }

  .cta-how-it-woks .cta-row {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .cta-efoam .cta-row {
    width: 100%;
  }

  .complete-solution .cta-row {
    width: 100%;
    padding: 0 16px;
  }

  .complete-solution .cta-container {
    margin-top: 42.45px;
  }

  .pros-and-cons {
    padding-top: 31px;
    margin-top: 34px;
  }

  .pros-and-cons-title {
    font-size: 32px;
    line-height: 32px;
    padding: 0 16px;
  }

  .premium-clean-title {
    font-size: 32px;
    line-height: 32px;
    padding: 0 16px;
  }

  .premium-clean-row {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 964px;
    margin: 24.14px auto;
    padding: 0 16px;
    gap: 34px;
  }

  .risk-free {
    padding-left: 16px;
    padding-right: 16px;
  }

  .risk-free-container {
    flex-direction: column;
    padding: 15px 21px;
    gap: 16px;
    border-radius: 10px;
  }

  .risk-free-container img {
    width: 91px;
    height: 101px;
  }

  .risk-free-text {
    text-align: center;
  }

  .risk-free-title {
    font-size: 18px;
    line-height: 100%;
  }

  .risk-free-description {
    font-size: 17px;
    line-height: 28px;
    margin-top: 15px;
  }

  .efoam-quality-title {
    font-size: 32px;
    line-height: 32px;
    margin-top: 16.17px;
  }

  .efoam-quality-subtitle {
    margin-top: 16.49px;
    line-height: 26px;
    padding: 0 9px;
  }

  .eyn-description {
    max-width: 500px;
    padding: 0 16px;
    font-size: 16px;
    line-height: 26px;
    margin-top: 9px;
  }

  .eyn-row {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .eyn-row-col-img {
    align-self: center;
  }

  .eyn-row-col-title {
    font-size: 26px;
    line-height: 29px;
    width: 100%;
    min-width: auto;
  }

  .eyn-title {
    font-size: 32px;
    line-height: 32px;
    font-family: 'Roboto Condensed', sans-serif;
    padding: 0 16px;
    max-width: 600px;
  }

  .eyn-row-divider {
    width: 80%;
    height: 1px;
    background-color: #d9d9ff;
    margin: 0;
  }

  .eyn-row-col-list {
    margin-top: 25.32px;
    width: 100%;
    max-width: 500px;
  }

  .eyn-row-col-feature-text-description {
    width: 100%;
    max-width: 100%;
  }

  .eyn-row-col-img {
    padding-top: 21px;
    padding-bottom: 0;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .eyn-row-col-img-center {
    padding-bottom: 0;
  }

  .eyn-row-col-img-center-top {
    padding-top: 27.52px;
    min-height: auto;
  }

  .eyn-row-col-img {
    width: 100%;
    height: auto;
  }

  .cta-container {
    margin-top: 22.46px;
  }

  .cta-efoam {
    width: 100%;
  }

  .efoam-quality-row {
    max-width: 533px;
    margin-top: 40px;
  }

  .efoam-quality-row-right-blue {
    padding-left: 0;
    padding: 14px 14px 32.53px 14px;
  }

  .efoam-quality-row-right-blue,
  .efoam-quality-row-right-img,
  .efoam-quality-row-right-img img {
    width: 100%;
  }

  .efoam-quality-row-right,
  .efoam-quality-row-left,
  .efoam-quality-row-right-blue {
    flex-direction: column;
    gap: 14.1px;
  }

  .efoam-quality-row-right .efoam-quality-row-right-text,
  .efoam-quality-row-left .efoam-quality-row-right-text,
  .efoam-quality-row-right-blue .efoam-quality-row-right-text {
    order: 1;
    max-width: 100%;
  }

  .review-section-title {
    font-size: 32px;
    line-height: 32px;
    font-weight: 700;
  }

  .review-section-subtitle {
    font-size: 16px;
    line-height: 27px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .as-seen-on {
    overflow: hidden;
    margin: 0;
  }

  .as-seen-on-container {
    text-align: center;
    padding: 15px 16px 23px 16px;
  }

  .as-seen-on-slider {
    display: flex;
    width: max-content;
    transition: none;
    gap: 25px;
  }

  .as-seen-on-slider img {
    height: 50px;
    flex-shrink: 0;
    display: block;
    /* margin-right: 25px; */
  }

  @keyframes scrollBrands {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  .bottom-right-video-hero {
    display: none;
  }

  .hero {
    margin-top: 0px;
    padding-top: 17.53px;
    background-color: #f7fbfd;
  }

  .dont-miss-out-hero {
    margin-top: 0px;
    padding-top: 27.53px;
    background-color: #f7fbfd;
  }

  .hero-feature-line,
  .hero-feature-line {
    align-items: flex-start;
    line-height: 22px;
  }

  .hero-feature-line img,
  .hero-feature-line img {
    margin-top: 5px;
  }

  .hero-left {
    height: auto;
  }

  .hero-left .img-fluid {
    height: auto;
    object-fit: cover;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
    padding-left: 0px;
  }

  .hero-container-last {
    flex-direction: column;
    align-items: center;
    padding-left: 0px;
  }

  .dont-miss-out-container {
    flex-direction: column;
    align-items: center;
    padding-left: 0px;
  }

  .d-none-mob {
    display: none;
  }

  .hero-right {
    min-width: 0;
  }

  .hero-right-description {
    text-align: center;
    width: 100%;
    max-width: 100%;
    background-color: transparent;
    font-size: 16px;
    line-height: 23px;
    padding: 0;
    margin-top: 30px;
    padding: 0 16px;
  }

  .hero-left {
    margin-top: 32px;
    /* width: 100%; */
  }

  .hero-center-mob {
    text-align: center;
  }

  .hero-center-mob .hero-right-rating {
    justify-content: center;
    margin-bottom: 7px;
    flex-direction: column;
    font-size: 12px;
  }

  /* .hero-90d {
    width: 67px;
    height: 74px;
    bottom: 84.8px;
    right: 16px;
    top: auto;
  } */

  .hero-90d-dont {
    width: 67px;
    height: 74px;
  }

  /* .hero-price-drop {
    width: 47px;
    height: 47px;
    bottom: 29.58px;
    right: 16px;
    top: auto;
  } */

  .hero-price-drop-dont {
    width: 47px;
    height: 47px;
    top: 104px;
  }

  .hero-features-left-lines-dont-miss-out {
    max-width: 280px !important;
  }

  .hero-center-mob .hero-right-title {
    font-size: 40px;
    line-height: 36px;
    padding-left: 16px;
    padding-right: 16px;
    margin-top: 13px;
  }

  .hero-right-features {
    flex-direction: column;
    margin-top: 16px;
    align-items: center;
    gap: 21px;
    padding-right: 16px;
    padding-left: 16px;
    padding-bottom: 22.1px;
  }

  .hero-right {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    margin-left: 0;
    padding: 0;
    order: 2;
  }

  .d-none-mob {
    display: none;
  }

  .hero-features-right {
    align-self: center;
  }

  .book-free-body {
    gap: 15px;
  }

  .hero-feature-line {
    font-size: 16px;
    gap: 8.61px;
    width: 222px;
  }

  .hero-feature-line-last {
    font-size: 16px;
    gap: 8.61px;
    width: 227px;
  }

  .hero-right-content {
    width: 100%;
    max-width: 650px;
  }

  .hero-features-left {
    width: 100%;
    gap: 22.14px;
    align-items: center;
  }

  .hero-features-left-dont-miss-out {
    width: 100%;
    align-items: center;
  }

  .cta-wrapper {
    width: 100%;
    max-width: 360px;
  }

  .hero-features-left .cta-wrapper {
    align-self: center;
    max-width: 360px;
  }

  .hero-features-left-lines {
    gap: 12px;
    /* max-width: 339px; */
    align-items: center;
    width: 100%;
  }

  .d-none-desk {
    display: block;
  }

  .d-none-desk {
    display: block;
  }

  .Order_Now_Button {
    display: none;
  }

  .EUA_Flag {
    display: none;
  }

  .Navbar__Link-brand img {
    width: 133px;
    height: 29px;
  }

  .Navbar {
    flex-direction: row;
    align-items: center;
    padding-left: 16px;
    padding-right: 17px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #ffffff;
    height: 56px;
  }

  .Navbar__Link {
    border-bottom: 1px solid #d6d6d6;
    width: 100%;
    padding-left: 15px;
    justify-content: start;
    display: flex;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 46px;
  }

  .Navbar__Link:first-of-type {
    border-top: 1px solid #d6d6d6;
  }

  .Navbar__Link-brand {
    padding-left: 0;
  }

  .Navbar__Link-toggle {
    display: block;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 110;
    cursor: pointer;
  }

  .Navbar__Items {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 56px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 56px);
    background-color: #ffffff;
    z-index: 99;
    animation: fadeInMenu 0.3s ease forwards;
    gap: 0;
  }

  .Navbar__Items.Navbar__ToggleShow {
    display: flex;
  }

  .Navbar__Items--right {
    margin-left: 0;
  }

  .Navbar__Link {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInItem 0.4s ease forwards;
  }

  .Navbar__Items.Navbar__ToggleShow .Navbar__Link:nth-child(1) {
    animation-delay: 0.1s;
  }
  .Navbar__Items.Navbar__ToggleShow .Navbar__Link:nth-child(2) {
    animation-delay: 0.2s;
  }
  .Navbar__Items.Navbar__ToggleShow .Navbar__Link:nth-child(3) {
    animation-delay: 0.3s;
  }
  .Navbar__Items.Navbar__ToggleShow .Order_Now_Button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInItem 0.4s ease forwards;
    animation-delay: 0.4s;
  }
  .Navbar__Items.Navbar__ToggleShow .EUA_Flag {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInItem 0.4s ease forwards;
    animation-delay: 0.5s;
  }

  @keyframes fadeInItem {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes fadeInMenu {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}

@media only screen and (max-width: 740px) {
  .hs-having-about-content {
    margin-top: 41px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
}

@media only screen and (max-width: 1100px) {
  .bottom-right-video-hero {
    width: 140px;
    height: 140px;
  }
}

@media only screen and (max-width: 579px) {
  .efoam-quality-row-right-blue {
    margin-left: -16px;
    width: calc(100% + 32px) !important;
  }
}

@media only screen and (max-width: 575px) {
  .d-sm-none-mob {
    display: none;
  }

  .d-sm-none-desk {
    display: block;
  }

  .pros-and-cons-img-desk {
    display: none;
  }

  .pros-and-cons-img-mob {
    display: flex;
    max-width: 344px;
    height: 786px;
  }
}

/* @media (max-width: 460px) {
  .review-section-carousel-row {
    padding: 0 calc(10vw - 10px) !important;
  }
} */

/* @media (max-width: 350px) {
  .review-section-carousel-row {
    padding: 0 calc(6vw - 10px) !important;
  }
} */

/* carousel */
.carousel-indicators {
  display: none;
}

/* @media (max-width: 600px) {
   .review-section-carousel-row {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 calc(20vw - 10px);
  } 

  .carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
  }

  .carousel-indicator {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background-color: #ececec;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  .carousel-indicator.active {
    background-color: #5f5f5f;
  }

  .review-section-carousel-row::-webkit-scrollbar {
    display: none;
  }

  .review-section-carousel-track {
    animation: none;
    gap: 0;
  }

  .review-section-carousel-track img {
    scroll-snap-align: center;
    scroll-snap-stop: always;
    width: calc(100vw - 20px);
    max-width: 290px;
    height: auto;
    margin: 0 10px;
  }
} */

@media (max-width: 600px) {
  .floating-bar {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #ffffff;
    transition: 0.115s ease-in-out;
    padding: 9px 14px 12px 14px;
    z-index: 3;
  }

  .floating-bar .cta-container {
    margin-top: 0;
    width: 100%;
  }

  .floating-bar .cta-how-it-woks {
    padding: 0;
  }

  .col-hidden,
  .card-hidden {
    display: none;
  }

  .review-section {
    padding-top: 34.78px;
    padding-bottom: 19.51px;
  }

  .load-more-reviews {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    display: flex;
    justify-content: center;
    margin-top: 19.51px;
    cursor: pointer;
  }
  /* .review-section-title {
    font-size: 28px;
    line-height: 36px;
    padding: 0 20px;
  } */

  .review-section-subtitle {
    font-size: 15px;
    line-height: 24px;
    padding: 0 20px;
  }

  .d-none-review-desk {
    display: flex;
  }

  .d-none-review-mob {
    display: none;
  }
}

/* ========================= */
/* CARROSSEL MOBILE */
/* ========================= */
@media (max-width: 720px) {
  /* Mostrar/esconder versões mobile/desktop */
  .d-none-desk-car {
    display: block !important;
  }

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

  .complete-solution-row {
    display: block;
    width: 100%;
    margin-top: 44px;
  }

  /* Wrapper do carousel */
  .complete-solution-carousel {
    width: 100%;
    overflow: visible;
    position: relative;
    margin: 0 auto;
    touch-action: pan-y pinch-zoom;
    -webkit-overflow-scrolling: touch;
    -webkit-user-select: none;
    user-select: none;
    box-sizing: border-box;
  }

  /* Track que contém os cards */
  .carousel-track {
    display: flex;
    gap: 15px;
    padding: 0 15px;
    will-change: transform;
    /* Transition controlada pelo JS */
  }

  /* Cards individuais - MANTENDO 80% */
  .complete-solution-card {
    flex: 0 0 80%;
    max-width: 80%;
    min-width: 80%;
    /* background-color: #fbfbfe; */
    /* border-radius: 8px; */
    /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05); */
    scroll-snap-align: center;
    /* Prevenir seleção durante drag */
    -webkit-user-select: none;
    user-select: none;
    pointer-events: auto;
  }

  /* Prevenir drag de imagens */
  .complete-solution-card img {
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
    display: block;
  }

  /* Indicadores (dots) */
  .carousel-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding: 0 16px;
    width: 100%;
    box-sizing: border-box;
  }

  .indicator {
    width: 12px;
    height: 12px;
    background-color: #d9d9eb;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    padding: 0;
    flex-shrink: 0;
  }

  .indicator.active {
    background-color: #2f336e;
    transform: scale(1.15);
  }

  /* Garantir que o conteúdo do card não seja selecionável */
  .complete-solution-card-text-title,
  .complete-solution-card-text-description {
    -webkit-user-select: none;
    user-select: none;
  }

  .title-11 {
    margin-top: 31px !important;
  }
}
@media (max-width: 340px) {
  .green-banner-text {
    font-size: 14px;
    line-height: 25px;
  }
  .promo-code {
    font-size: 14px;
    line-height: 25px;
  }
}
