:root {
  --font-body: "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  --font-cond: "Barlow", var(--font-body);

  --content: 1158px;
  --article: 712px;
  --sidebar: 311px;

  --tablet-width-lg: 1024px;
  --tablet-width: 768px;

  --mobile-width-lg: 450px;
  --mobile-width-md: 390px;
  --mobile-width-sm: 375px;

  --button-primary-bg: #FFDC32;
  --button-primary-color: #000;

  --color-dark: #202528;
  --color-review-text: #020211;
  --built-section-bg: linear-gradient(180deg, #FCFCFC 0%, #F9F9F9 45.87%);
}

h1 {
  font-family: Barlow;
  font-weight: 800;
  font-size: 42px;
  line-height: 50px;
  letter-spacing: 0%;
  text-align: center;
  margin: 0;
}

h2 {
  font-family: Inter;
  font-weight: 800;
  font-size: 28px;
  line-height: 23px;
  letter-spacing: 0%;
  margin: 0;
}

h3,
h4 {
  font-family: Inter;
}

p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0%;
  margin: 0;
}

li {
  font-family: Inter;
}

a.cta-link {
  display: flex;
  text-decoration: none;
  font-family: Roboto;
  font-weight: 800;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
  cursor: pointer;

  align-items: center;
  max-width: 335px;
  padding: 9px 12px;
  height: 42px;
  background: var(--button-primary-bg);
  color: var(--button-primary-color);
  border-radius: 8px;
  border: 1px solid #D4B000;
  box-sizing: border-box;
}

.cta-box a.cta-link {
  height: 50px;
  justify-content: center;
  width: 100%;
}

html,
body {
  margin: 0;
  width: 100%;
  scroll-behavior: smooth;
}

#features,
#comparison,
#reviews {
  scroll-margin-top: 25px;
  /* altura do seu header + folga */
}

.mobile-expanded-menu .nav-item.active {
  background: var(--button-primary-bg);
}

.container {
  width: 100%;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}


main {
  overflow: hidden;
  margin-top: 34px !important;
  margin-bottom: 34px !important;
}

hr.divider {
  width: 100%;
  margin: 0;
  border: 1px solid #D2D2D2;
}

.mobile-cta {
  display: none;
}

.mobile-cta.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hide-on-tablet {
    display: none;
  }
}

@media (max-width: 768px) {
  main {
    margin-top: 21px !important;
  }

  h1 {
    font-size: 28px;
    line-height: 34px;
  }

  h2 {
    font-size: 23px;
    line-height: 23px;
  }

  p {
    font-size: 16px;
    line-height: 26px;
  }
}

/* 
  HEADER NAVBAR
*/

header {
  height: 78px;
  width: 100%;
  position: sticky;
  background: #fff;
  top: 0;
  z-index: 1000;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

header.menu-open {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
}

body.no-scroll {
  overflow: hidden;
}

header div.navbar {
  display: flex;
  align-items: center;
  height: 78px;
  box-shadow: 0px 1px 0px 0px #0000002B;
  width: 100%;
  position: relative;
  z-index: 1000;
  overflow: hidden;
}

header div.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  border-bottom: 1px solid #D6D6D6;
}

header .header-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

header .header-right .nav-links {
  display: flex;
  gap: 22px
}

header .header-right .nav-links a {
  font-family: Roboto;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0%;
  cursor: pointer;
}

header .header-right :last-child {
  display: flex;
  align-items: center;
  gap: 15px;
}

header .header-right :last-child button {
  width: 148px;
  height: 42px;
  border-radius: 8px;

  color: var(--button-primary-color);
  background: var(--button-primary-bg);
  border: 1px solid #D4B000;
  box-shadow: 0px 3px 0px 0px #DEDEDE;
}

.menu-icon {
  display: none;
  transition: opacity 0.2s ease;
}

.mobile-expanded-menu {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 78px);
  background: #fff;
  z-index: 1100;
}

@media (max-width: 768px) {
  .header-right {
    display: none !important;
  }

  .menu-icon.open {
    width: 26px;
    height: 20px;
  }

  .menu-icon.close {
    width: 22px;
    height: 22px;
  }

  .menu-icon.active {
    display: inline;
    opacity: 1;
  }

  .mobile-expanded-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    height: calc(100dvh - 78px) !important;
    /* adicionado !important */
  }

  .mobile-expanded-menu a {
    font-family: Roboto;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    line-height: 46px;
    border-bottom: 1px solid #D6D6D6;
    padding: 0 15px;
    z-index: 999;
  }

  .mobile-expanded-menu p.active {
    background: var(--button-primary-bg);
  }
}

@media (max-width: 450px) {
  main {
    margin-top: 10px !important;
  }

  header div.navbar {
    height: 68px
  }
}

/*
  HERO SECTION
*/

.hero-section {
  display: flex;
  width: 100%;
  gap: 57px;
}

.desktop-hero {
  flex: 1;
}

.hero-section .content {
  flex: 1;
}

.visible-on-tablet,
.visible-on-mobile {
  display: none;
}

/*
  CAROUSEL STYLE
*/
.carousel-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  background: transparent;
  overflow: hidden;
}

.slides-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  max-height: 530px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: #f5c400;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 22px;
  font-weight: 900;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: background 0.2s;
  color: #111;
}

.arrow:hover {
  background: #e0b000;
}

.arrow.prev {
  left: 10px;
}

.arrow.next {
  right: 10px;
}

.arrow.next img {
  margin-right: -3px;
}

.thumbnails {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-top: 12px;
}

.thumb {
  flex: 1;
  aspect-ratio: 1 / 1;
  max-height: 100px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  background: #ccc;
}

.thumb.active {
  border-color: #111;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.desktop-hero {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

.desktop-hero .desktop-hero-poster {
  display: none;
}

/* MUDANÇA: cada filho ocupa exatamente 50% */
.desktop-hero>* {
  flex: 1 1 0;
  min-width: 0;
}

.desktop-hero .content {
  flex: 1 1 0;
  min-width: 0;
}

/*
  HERO CONTENT
*/

.rating {
  display: flex;
  text-align: start;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
}

.rating p {
  font-family: Roboto;
  font-weight: 400;
  font-size: 13px;
}

.main-texts {
  margin-top: 6px;
}

.main-texts img {
  width: 100%;
  height: auto;
}

.visible-on-tablet {
  width: 100%;
}

.main-texts h1 {
  text-align: start;
  font-weight: 800;
  font-size: 48px;
  line-height: 50px;
}

.main-texts h1 span {
  color: #DB011C;
}

.main-texts p {
  padding: 10px 0;
  margin: 20px 0;
  border-bottom: 2px solid #000000;
  border-top: 2px solid #000000;
}

.main-texts p b {
  font-weight: 700;
  line-height: 26px;
  letter-spacing: 0%;
}

.bullets ul {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bullets ul li {
  display: flex;
  list-style-type: none;
  align-items: center;
  gap: 9px;
}

.bullets ul li p {
  margin-top: 2px;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}

.bullets ul li p b {
  font-weight: 700;
}

.cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 342px;
  max-width: 335px;
  align-items: center;
  gap: 4px
}

.cta-box .top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cta-box .top-text p {
  font-family: Arial;
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  margin-top: 3px;
}

.cta-box a {
  max-width: 335px;
  width: 100%;
  height: 50px;
  background: var(--button-primary-bg);
  color: var(--button-primary-color);
  border-radius: 8px;
  border: 1px solid #D4B000
}

.cta-box a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.cta-box a span div {
  margin-top: 2px;
}

.bottom-text {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bottom-text p {
  font-size: 11px;
}

.external {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b0e7a3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.internal {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fd66e;
}

.low-stock-icon {
  display: flex;
  align-items: center;
  gap: 2px;
}

.low-stock-square {
  width: 8px;
  height: 8px;
  background: #D9D9D9;
}

.low-stock-square.red {
  background: #D93C25;
}

.bottom-text .red {
  color: #D93C25;
}

.comment {
  display: flex;
  align-items: flex-start;
  margin-top: 16px;
  gap: 15px
}

.comment img.profile {
  margin-top: 18px;
}

.comment p {
  max-width: 375px;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.carousel-wrapper.tablet {
  display: none;
}

@media (max-width: 1024px) {
  .hero-section {
    justify-content: center;
  }

  .desktop-hero {
    display: none;
  }

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

  .hero-section .content .main-texts,
  .hero-section .content .main-texts h1 {
    text-align: center;
  }

  .hero-tablet-layout {
    display: flex;
    gap: 15px
  }

  .carousel-wrapper.tablet {
    display: inline;
    flex: 1;
  }

  .tablet-layout-content {
    flex: 1;
  }

  .visible-on-tablet {
    display: inline;
  }
}

@media (max-width: 820px) {
  .carousel-wrapper.tablet {
    flex: 1;
  }

  .tablet-layout-content {
    flex: 1;
  }
}

@media (max-width: 450px) {
  .cta-box {
    max-width: 100%;
  }

  .carousel-wrapper.tablet {
    display: none;
  }

  .visible-on-tablet {
    display: none;
  }

  .visible-on-mobile {
    display: inline;
    margin: 21px 0;
  }

  .desktop-hero {
    display: none;
  }

  .hero-section .content .main-texts h1 {
    font-size: 32px;
    line-height: 37px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
  }

  .hero-section .content .main-texts p {
    margin: 0 16px !important;
  }

  .hero-section .content .main-texts img {
    width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
  }
}

/* 
  AS SEEN SECTION
*/

.as-seen {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 19px;
}

.as-seen-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}

.as-seen-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 35px;
}


.as-seen-images.mobile {
  display: none;
  overflow: hidden;
  position: relative;
  justify-content: flex-start;
}

.as-seen-images.mobile .marquee-track {
  display: flex;
  align-items: center;
  animation: marquee-scroll 25s linear infinite;
  will-change: transform;
}

.as-seen-images.mobile .marquee-set {
  display: flex;
  align-items: center;
  gap: 39px;
  padding-right: 39px;
}

.as-seen-images.mobile .marquee-set img {
  flex-shrink: 0;
  width: auto;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 450px) {
  .as-seen-images.desktop {
    display: none;
  }

  .as-seen-images.mobile {
    display: flex;
  }
}

/* 
  SEE HOW SECTION
*/

.see-how {
  display: flex;
  gap: 36px;
  margin: 27px 0;
  background: #202528;
  color: #fff;
  padding: 72px 50px;
  border-radius: 2px;
}

.see-how-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  flex: 3;
}

.see-how-video {
  flex: 4;
}

.see-how h1 {
  font-family: Barlow;
  text-align: start;
  font-weight: 800;
  font-size: 36px;
  line-height: 43px;
  margin-top: 27px;
}

.see-how h1 span {
  color: #DB011C;
}

.see-how video {
  height: auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .see-how {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 0;
    margin-left: -16px !important;
    margin-right: -16px !important;
  }

  .see-how h1 {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
    margin-top: 0;
    padding: 16px;
  }

  .see-how p {
    display: none;
  }
}

/* 
  FEATURES SECTION
*/

.features-head {
  text-align: center;
  margin: 0 auto 29px;
}

.features-title {
  margin: 0 auto 14px;
  max-width: 450px;
}

.features-head p {
  max-width: 564px;
  margin: 0 auto;
}

/* --- 4.2 Linha de feature (texto + mídia) --- */
.features-section {
  margin-top: 9px;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 588px);
  grid-template-areas: "text media";
  gap: 64px;
  align-items: center;
  margin-bottom: 54px;
}

.feature-row.reverse {
  grid-template-columns: minmax(0, 588px) minmax(0, 1fr);
  grid-template-areas: "media text";
}

.feature-text {
  grid-area: text;
  max-width: 440px;
}

.feature-media {
  grid-area: media;
  position: relative;
}

.feature-text h2 {
  line-height: 30px;
  margin: 0 0 15px;
}

.feature-text>p {
  margin: 0;
}

.feature-media img,
.feature-media video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

/* --- 4.3 Depoimento (rating + quote) --- */
.testimonial {
  margin-top: 24px;
}

.rating {
  display: flex;
  text-align: start;
  justify-content: flex-start;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}

.rating img {
  width: 70px;
  height: 13px;
  display: block;
}

.rating p {
  font-weight: 400;
  font-size: 13px;
}

.testimonial>p {
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: var(--color-black);
  max-width: 438px;
  margin: 0;
}

.testimonial>p b {
  font-weight: 700;
}

/* --- 4.4 Variante escura (80-Minute) — box de 1100px centralizado --- */
.feature-row.dark {
  position: relative;
  color: #fff;
  grid-template-columns: minmax(0, 1fr) minmax(0, 511px);
  max-width: 100%;
  background: var(--color-dark);
}

.feature-row.dark .feature-text {
  padding-left: 40px;
  padding-right: 20px;
}

.feature-row.dark .feature-media {
  padding-right: 0;
}

.feature-row.dark .feature-text>p,
.feature-row.dark .testimonial>p {
  color: #fff;
}

.feature-row.dark .feature-media img,
.feature-row.dark .feature-media video {
  border-radius: 2px;
}

@media (max-width: 450px) {
  .hide-on-mobile {
    display: none;
  }

  .see-how-text {
    max-width: 370px;
  }
}


/* --- 4.5 Rodapé / CTA box --- */
.features-foot {
  display: flex;
  justify-content: center;
  margin-top: -18px;
}

.feature-cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 342px;
  align-items: center;
  gap: 4px
}

.feature-cta-box .top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.feature-cta-box .top-text p {
  font-family: Arial;
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  margin-top: 3px;
}

.feature-cta-box a {
  max-width: 335px;
  justify-content: center;
  width: 100%;
  height: 50px;
  background: var(--button-primary-bg);
  color: var(--button-primary-color);
  border-radius: 8px;
  border: 1px solid #D4B000
}

.feature-cta-box a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.feature-cta-box a span div {
  margin-top: 2px;
}

.bottom-text {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bottom-text p {
  font-size: 11px;
}

.low-stock-icon {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* --- 4.6 Features: TABLET (769–1024px) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .feature-text {
    max-width: none;
  }

  .feature-row {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row .feature-media img,
  .feature-row .feature-media video {
    width: 100%;
    height: auto;
  }

  .feature-row.reverse {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row.dark .feature-media,
  .feature-row.dark .feature-media img {
    height: 100%;
    width: 100%;
  }

  .feature-row.dark {
    grid-template-columns: 1fr 1fr;
  }

  .feature-row.dark {
    width: 100%;
  }

  .feature-row.dark .feature-text {
    padding: 20px 16px 20px 24px;
  }

  .testimonial>p {
    max-width: none;
  }

  .howto-steps {
    gap: 24px;
  }

  .engineered-text {
    padding: 28px;
    gap: 14px;
  }
}

@media (max-width: 820px) {
  .feature-row {
    gap: 35px;
  }
}

/* --- 4.7 Features: MOBILE (≤768px) — empilha título > mídia > texto --- */
@media (max-width: 768px) {

  .feature-row,
  .feature-row.reverse,
  .feature-row.dark {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    gap: 0;
    margin-bottom: 32px;
  }

  .feature-text {
    display: contents;
    max-width: none;
    margin: 0;
  }

  .feature-text h2 {
    order: 1;
    margin: 0 0 16px;
  }

  .feature-media {
    order: 2;
    margin: 0 0 13px;
  }

  .feature-text>p {
    order: 3;
    margin: 0;
  }

  .testimonial {
    order: 4;
    margin-top: 21px;
  }

  .testimonial p {
    max-width: 100%;
  }


  .feature-media img,
  .feature-media video {
    height: auto;
    aspect-ratio: 588 / 350;
    border-radius: 4px;
  }

  /* Box escuro vira full-bleed na tela */
  .feature-row-dark-box {
    margin: 0 -16px;
  }

  .feature-row.dark {
    display: flex;
    background: var(--color-dark);
    padding: 30px 13px;
  }

  .feature-row.dark .feature-text {
    padding-left: 0;
    padding-right: 0;
  }

  .feature-row.dark .feature-media {
    padding-right: 0;
  }
}

/* --- 4.8 Features: MOBILE PEQUENO (≤450px) — tipografia --- */
@media (max-width: 450px) {
  .features-title {
    font-size: 28px;
    line-height: 34px;
  }

  h2 {
    font-size: 23px;
    line-height: 26px;
  }

  p {
    font-size: 16px;
    line-height: 26px;
  }

  .feature-text h2 {
    line-height: 28px;
  }

  .testimonial>p {
    font-size: 14px;
    line-height: 22px;
  }
}

/* 
  HOW TO USE SECTION
*/

/* --- 5.1 Base --- */
.howto-section {
  margin-top: 72px;
}

.howto-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 46px;
  text-align: center;
  margin: 0 0 40px;
}

/* --- 5.2 Steps (3 colunas fluidas, máx. 336px) --- */
.howto-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 336px));
  gap: 45px;
  margin-bottom: 48px;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}

.step {
  text-align: center;
  width: 100%;
  max-width: 336px;
  margin: 0 auto;
}

.step-media {
  position: relative;
  margin-bottom: 16px;
  overflow: hidden;
}

.step-media img,
.step-media video {
  width: 100%;
  aspect-ratio: 336 / 300;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.step h3 {
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 10px;
}

.step p {
  font-size: 15px;
  line-height: 23px;
}

@media (max-width: 450px) {
  .howto-section .howto-steps .step h3 {
    font-size: 22px;
    line-height: 23px;
  }
}

/* --- 5.3 Painel "Engineered" (largura cheia 1158px) --- */
.engineered {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  background: var(--color-dark);
  color: #fff;
  border-radius: 2px;
  overflow: hidden;
}

.engineered-media img,
.engineered-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.engineered-text {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.engineered-text h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 32px;
  margin: 0;
}

.engineered-text p {
  font-size: 16px;
  line-height: 25px;
  color: #d8d8d8;
}

.engineered-text p b {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .engineered {
    margin-left: -16px;
    margin-right: -16px;
  }

}

/* --- 5.4 How To Use: MOBILE (≤768px) — empilha e centraliza --- */
@media (max-width: 768px) {
  .howto-steps {
    gap: 36px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .step {
    text-align: center;
    margin: 0 auto;
  }

  .step-media {
    overflow: hidden;
    max-width: 282px;
    margin: 0 auto 16px;
  }

  .step-media img,
  .step-media video {
    width: 106%;
    margin-left: -5%;
    height: auto;
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
  }

  .step h3,
  .step p {
    max-width: 342px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Engineered empilhado com fundo full-bleed */
  .engineered {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    padding: 32px 0;
    margin-top: 40px;
    width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
    gap: 20px;
  }

  .engineered::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--color-dark);
    z-index: -1;
  }

  .engineered-text {
    display: contents;
  }

  .engineered-text h2 {
    order: 1;
    text-align: center;
    padding: 0 18px;
  }

  .engineered-media {
    order: 2;
  }

  .engineered-media img,
  .engineered-media video {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }

  .engineered-text p {
    order: 3;
    padding: 0 18px;
  }
}

/* --- 5.5 How To Use: MOBILE PEQUENO (≤450px) — tipografia --- */
@media (max-width: 450px) {
  .howto-steps {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .step {
    text-align: center;
    margin: 0 auto;
  }

  .step-media {
    overflow: hidden;
    width: 282px;
    margin: 0 auto 16px;
  }

  .step-media img,
  .step-media video {
    width: 106%;
    margin-left: -5%;
    height: 247px;
    max-width: none;
    aspect-ratio: auto;
    object-fit: cover;
    display: block;
  }

  .howto-section {
    margin-top: 50px;
  }

  .howto-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 30px;
  }

  .step h3 {
    font-size: 17px;
    line-height: 21px;
  }

  .step p {
    font-size: 15px;
    line-height: 23px;
  }

  .engineered-text h2 {
    font-size: 23px;
    line-height: 28px;
  }

  .engineered-text p {
    font-size: 15px;
    line-height: 24px;
  }
}

/* 
  COMPARISON SECTION
*/

/* --- 6.1 Base --- */
.compare-section {
  margin-top: 72px;
}

.compare-title {
  font-weight: 800;
  font-size: 42px;
  line-height: 46px;
  text-align: center;
  margin: 0 0 14px;
}

.compare-sub {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.compare-inner {
  max-width: 922px;
  margin: 0 auto;
}

/* --- 6.2 Grid de comparação (good | VS | bad) --- */
.compare-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 378fr) minmax(0, 166fr) minmax(0, 378fr);
  grid-template-rows: auto auto;
  justify-content: center;
}

.cmp-good-media {
  grid-column: 1;
  grid-row: 1;
}

.cmp-bad-media {
  grid-column: 3;
  grid-row: 1;
}

.cmp-good-body {
  grid-column: 1;
  grid-row: 2;
}

.cmp-bad-body {
  grid-column: 3;
  grid-row: 2;
}

.cmp-media img {
  width: 100%;
  aspect-ratio: 378 / 262;
  object-fit: cover;
  display: block;
}

/* VS e linha divisória — top/height ajustados via JS (compare-align.js) */
.cmp-vs {
  position: absolute;
  top: 89px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.cmp-vs span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ED4646;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.cmp-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 144px;
  height: 455px;
  width: 1px;
  background: #000;
}

/* --- 6.3 Listas de comparação --- */
.cmp-body {
  max-width: 340px;
}

.cmp-body h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 1.2;
  margin: 20px 0 25px;
}

.compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-list li {
  font-size: 16px;
  line-height: 1.4;
  padding: 0 0 13px;
  border-bottom: 1px solid #E6E6E6BF;
}

.compare-list li+li {
  padding-top: 10px;
}

/* --- 6.4 Bloco "Don't Cook" --- */
.dont-cook {
  background: var(--color-dark);
  color: #fff;
  border-radius: 1px;
  margin-top: 40px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.dont-cook h2 {
  font-weight: 800;
  font-size: 28px;
  line-height: 1.2;
  margin: 0;
}

.dont-cook>p {
  max-width: 630px;
  color: #d8d8d8;
  font-size: 16px;
  line-height: 25px;
}

.dont-cook .cta-box {
  margin-top: 10px;
}

/* --- 6.5 Comparison: MOBILE (≤768px) — empilha colunas --- */
@media (max-width: 768px) {
  .compare-inner {
    max-width: none;
  }

  .compare-grid {
    display: flex;
    flex-direction: column;
  }

  .cmp-line {
    display: none;
  }

  .cmp-vs {
    position: static;
    transform: none;
    order: 3;
    align-self: center;
    margin: 32px 0 30px;
  }

  .cmp-vs span {
    width: 53px;
    height: 53px;
    font-size: 18px;
  }

  .cmp-good-media {
    order: 1;
  }

  .cmp-good-body {
    order: 2;
    max-width: none;
  }

  .cmp-bad-media {
    order: 4;
  }

  .cmp-bad-body {
    order: 5;
    max-width: none;
  }

  .cmp-media img {
    aspect-ratio: 378 / 262;

  }

  /* Don't Cook full-bleed */
  .dont-cook {
    position: relative;
    background: transparent;
    border-radius: 0;
    padding: 40px 16px;
  }

  .dont-cook::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--color-dark);
    z-index: -1;
  }
}


@media (min-width: 451px) and (max-width: 768px) {
  .compare-grid {
    justify-content: center;
    align-items: center;
  }

  .cmp-media img {
    aspect-ratio: 378 / 262;
  }
}

/* --- 6.6 Comparison: MOBILE PEQUENO (≤450px) — tipografia --- */
@media (max-width: 450px) {
  .compare-title {
    font-size: 28px;
    line-height: 34px;
  }

  .cmp-body h3 {
    font-size: 19px;
  }

  .compare-list li {
    font-size: 15px;
  }

  .dont-cook h2 {
    max-width: 280px;
    font-size: 23px;
  }

  .dont-cook>p {
    font-size: 15px;
    line-height: 24px;
  }
}

/* =========================================================
  BUILT SECTION
  ========================================================= */

.built-section {
  position: relative;
  padding: 62px 0 0px;
}

.built-section-bg {
  display: flex;
  justify-content: center;
  overflow: visible;
  width: 100%;
  background: linear-gradient(180deg, #FCFCFC 0%, #F9F9F9 45.87%);
  padding-bottom: 150px;
}

.built-section-container {
  max-width: var(--content);
  min-width: 0;
}

.built-section .built-head img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.built-section .built-head {
  text-align: center;
  margin: 0 auto 40px;
}

.built-section .built-title {
  max-width: 560px;
  margin: 0 auto 14px;
}

.built-section .built-head p {
  color: #000;
  max-width: 600px;
  margin: 0 auto;
}

.built-section .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  column-gap: 18px;
  row-gap: 17px;
  justify-content: center;
  margin: 0 auto;
}

.built-section .fbox {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  aspect-ratio: 250 / 200;
  max-width: 250px !important;
  background: #ffffff;
  border: 1px solid #DEDEDE;
  border-radius: 4px;
  padding: 16px 8px 16px 16px;
  box-sizing: border-box;
}

.built-section .fbox .icon {
  display: block;
}

.built-section .fbox .icon.icon-1 {
  margin-bottom: 11px;
}

.built-section .fbox .icon.icon-2 {
  margin-bottom: 8px;
}

.built-section .fbox .icon.icon-3 {
  margin-bottom: 6px;
}

.built-section .fbox .icon.icon-4 {
  margin-bottom: 4px;
}

.built-section .fbox .icon.icon-5 {
  margin-bottom: 7px;
}

.built-section .fbox .icon.icon-6 {
  margin-bottom: 6px;
}

.built-section .fbox .icon.icon-7 {
  margin-bottom: 9px;
}

.built-section .fbox .icon.icon-8 {
  margin-bottom: 4px;
}

.built-section .fbox h3 {
  font-weight: 800;
  font-size: 20px;
  line-height: 25px;
  margin: 0 0 4px;
  color: #000000;
}

.built-section .fbox p {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  margin: 0;
  color: #000000;
}

.built-section .included-wrap {
  margin-top: 72px;
}

.built-section .included-title {
  text-align: center;
  margin: 0 0 40px;
}

.built-section .included-grid {
  width: 683px;
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 265px 1px auto;
  column-gap: 0;
  align-items: start;
}

.built-section .box-col {
  margin-right: 10px;
}

.built-section .specs-col {
  margin-left: 24px;
}

.built-section .box-col h4 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 19px;
  color: #000000;
}

.built-section .box-col .box-img {
  width: 260px;
  height: 195px;
  max-width: 100%;
  display: block;
  margin-bottom: 12px;
}

.built-section .box-col .box-row {
  display: block;
}

.built-section .box-col .box-contents {
  font-family: "Inter";
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  max-width: 261px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.built-section .included-divider {
  width: 1px;
  align-self: stretch;
  background: #ECECEC;
  min-height: 372px;
}

.built-section .specs-col h4 {
  font-family: "Inter", "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 13px;
  color: #000000;
}

.built-section .specs-list {
  width: 387px;
  max-width: 100%;
}

.built-section .spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 13px;
  border-bottom: 1px solid #ECECEC;
}

.built-section .spec-row+.spec-row {
  padding-top: 10px;
}

.built-section .spec-row:last-child {
  border-bottom: 0;
}

.built-section .spec-row .label {
  font-family: "Inter", "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: #000;
}

.built-section .spec-row .value {
  font-family: "Inter", "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #000000;
  text-align: right;
}

.built-section .risk-band {
  position: relative;
  margin-top: -90px;
}

.built-section .risk-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: #ffffff;
  z-index: -1;
}

.built-section .risk-box {
  max-width: 688px;
  margin: 0 auto;
  background: #D8FF85;
  border-radius: 8px;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.built-section .risk-box .seal {
  width: 99px;
  height: 110px;
  flex: 0 0 99px;
  display: block;
}

.built-section .risk-box .risk-text h3 {
  font-family: "Roboto", "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 8px;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: #000000;
}

.built-section .risk-box .risk-text p {
  font-size: 15px;
  line-height: 23px;
  margin: 0;
  color: #000;
}

.built-section .built-foot {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.built-section .cta-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 335px;
  align-items: center;
  gap: 9px;
}

.built-section .cta-box .top-text {
  display: flex;
  align-items: center;
  gap: 4px;
}

.built-section .cta-box .top-text p {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 23px;
  margin: 3px 0 0;
}

.built-section .cta-box a {
  max-width: 335px;
  width: 100%;
  height: 50px;
  background: #FFDC32;
  color: #000000;
  border-radius: 8px;
  border: 1px solid #D4B000;
  font-family: "Roboto", "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
  font-weight: 800;
  font-size: 18px;
  cursor: pointer;
}

.built-section .cta-box a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.built-section .cta-box a span div {
  margin-top: 2px;
}

.built-section .bottom-text {
  display: flex;
  align-items: center;
  gap: 5px;
}

.built-section .bottom-text p {
  font-size: 11px;
  margin: 0;
}

.built-section .externo {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b0e7a3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.built-section .interno {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #7fd66e;
}

.built-section .low-stock-icon {
  display: flex;
  align-items: center;
  gap: 2px;
}

.built-section .low-stock-square {
  width: 8px;
  height: 8px;
  background: #D9D9D9;
}

.built-section .low-stock-square.red {
  background: #D93C25;
}

.built-section .bottom-text .red {
  color: #D93C25;
}

@media (min-width: 769px) and (max-width: 1024px) {
  .built-section .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 250px));
  }

  .built-section .included-grid {
    width: 100%;
  }

}

@media (max-width: 768px) {
  .built-section {
    padding: 35px 0 33px;
  }

  .built-section-bg {
    max-width: var(--content);
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }

  .built-section .feature-grid {
    grid-template-columns: 1fr;
    row-gap: 14px;
    column-gap: 0;
  }

  .built-section .fbox {
    width: 100%;
    aspect-ratio: auto;
    max-width: 100% !important;
    height: auto;
    min-height: 0;
    padding: 20px 18px;
  }

  .built-section .included-wrap {
    margin-top: 48px;
  }

  .built-section .included-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .built-section .included-divider {
    display: none;
  }

  .built-section .box-col {
    display: block;
  }

  .built-section .box-col h4 {
    font-family: "Barlow", "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
    font-weight: 800;
    font-size: 23px;
    line-height: 28px;
    text-align: left;
    margin-bottom: 12px;
  }

  .built-section .box-col .box-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
  }

  .built-section .box-col .box-img {
    width: 200px;
    height: 150px;
    margin: 0;
  }

  .built-section .box-col .box-contents {
    font-family: "Inter", "Source Sans 3", "Source Sans Pro", system-ui, sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 22px;
  }

  .built-section .specs-list {
    width: 100%;
  }

  .built-section .spec-row .label {
    font-size: 16px;
    line-height: 23px;
  }

  .built-section .spec-row .value {
    font-size: 16px;
    line-height: 23px;
  }

  .built-section .risk-band {
    padding: 0 16px;
  }

  .built-section .risk-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 28px 24px;
  }

  .built-section .risk-box .risk-text h3 {
    text-align: center;
  }

  .built-section .risk-box .risk-text p {
    text-align: center;
  }

}

@media (max-width: 450px) {
  .built-section .box-col .box-contents {
    width: 122px;
    max-width: 122px;
  }

  .included-grid .box-col,
  .included-grid .specs-col {
    margin: 0;
  }
}

/*
  REVIEWS SECTION
*/

.reviews-section {
  margin-top: 30px;
}

.reviews-section .reviews-title {
  margin-bottom: 24px;
}

.summary {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin: 0 auto 25px;
  width: 100%;
}

.summary>.ratings {
  justify-self: start;
}

.summary>.score-block {
  justify-self: center;
  margin: 0 78px 0 59px;
}

.summary>.thumbs {
  justify-self: end;
}

.ratings {
  width: 100%;
  max-width: 460px;
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 398px;
  min-height: 32px;
  gap: 20px;
}

.rating-row .label {
  font-family: Inter;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  width: 165px;
  flex: 1 1 165px;
  text-align: left;
}

.rating-row .stars {
  width: 168px;
  height: 32px;
  display: block;
  flex: 0 0 auto;
  max-width: 50%;
}

.rating-row .score {
  font-family: Inter;
  font-weight: 600;
  font-size: 15px;
  line-height: 24px;
  width: 25px;
  flex: 0 0 25px;
  text-align: left;
  margin-left: 0;
}

.rating-divider {
  width: 100%;
  max-width: 418px;
  height: 0;
  background: none;
  border: 0;
  border-top: 1px solid #E1E1E1;
  margin: 4px 0;
}

/* --- 4.8 central --- */
.score-block {
  width: 198px;
  text-align: center;
}

.score-block .big {
  font-family: Inter;
  font-weight: 800;
  font-size: 70px;
  line-height: 120%;
  text-align: center;
  margin: 0;
}

.score-block .big-stars {
  width: 198px;
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.score-block .caption {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  text-align: center;
}

.thumbs {
  width: 402px;
  max-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 96px);
  column-gap: 6px;
  row-gap: 8px;
  justify-content: start;
}

.thumbs img {
  width: 96px;
  height: 96px;
  border-radius: 5px;
  display: block;
  object-fit: cover;
}

/* =========================================================
      GRID DE REVIEWS — 4 colunas
      ========================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
  max-width: 1126px;
  margin: 0 auto;
}

.review-card {
  width: 100%;
  max-width: 270px;
  justify-self: center;
  border: 1px solid #D3D3D3;
  border-radius: 4px;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.review-card .photo {
  width: 100%;
  aspect-ratio: 270 / 254;
  display: block;
  object-fit: cover;
  border-radius: 4px 4px 0 0;
}

.review-body {
  padding: 16px 16px 20px 15px;
  display: flex;
  flex-direction: column;
}

/* autor */
.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-author .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: block;
  flex: 0 0 50px;
  object-fit: cover;
}

.review-author .name {
  font-family: Inter;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.review-author .verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: Inter;
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: #3AB890;
  margin-left: 4px;
}

.review-author .verified img {
  width: 14px;
  height: 14px;
  display: block;
}

.card-divider {
  width: 100%;
  height: 0;
  background: none;
  border: 0;
  border-top: 1px solid #E3E3E3;
  margin: 15px 0;
}

/* estrelas + data */
.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-meta .stars {
  width: 83px;
  height: 16px;
  display: block;
}

.review-meta .date {
  font-family: Inter;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
}

.review-title {
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 120%;
  color: var(--color-review-text);
  margin: 0;
}

.review-text {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: var(--color-review-text);
  margin: 15px 0 0;
}

/* =========================================================
      RESPONSIVO
      ========================================================= */

@media (max-width: 1180px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 850px;
  }
}

@media (max-width: 1000px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 600px;
  }
}

/* ESTÁGIO INTERMEDIÁRIO — ratings centralizado em cima;
      4.8 + imagens lado a lado embaixo */
@media (max-width: 1209px) {
  .summary {
    grid-template-columns: auto auto;
    grid-template-areas:
      "ratings ratings"
      "score   thumbs";
    justify-content: center;
    align-items: center;
    column-gap: 48px;
    row-gap: 36px;
  }

  .summary>.ratings {
    grid-area: ratings;
    justify-self: center;
  }

  .summary>.score-block {
    grid-area: score;
    justify-self: end;
    margin: 0;
  }

  .summary>.thumbs {
    grid-area: thumbs;
    justify-self: start;
  }

  .ratings {
    width: 100%;
    max-width: 460px;
  }
}

@media (max-width: 700px) {
  .summary {
    grid-template-columns: 1fr;
    grid-template-areas:
      "ratings"
      "score"
      "thumbs";
    justify-items: center;
    column-gap: 0;
    row-gap: 36px;
  }

  .summary>.score-block,
  .summary>.thumbs {
    justify-self: center;
  }

  .ratings {
    width: 100%;
    max-width: 460px;
  }

  .rating-row {
    max-width: none;
  }

  .rating-divider {
    max-width: none;
  }

  .score-block {
    width: auto;
  }

  .thumbs {
    width: 100%;
    max-width: 460px;
    grid-template-columns: repeat(4, 1fr);
    justify-content: center;
  }

  .thumbs img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 20px;
  }

  .review-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 20px 0 30px;
  }

  .reviews-title {
    margin-bottom: 32px;
  }
}

/* =========================================================
      MOBILE — specs detalhadas
      ========================================================= */
@media (max-width: 480px) {

  .summary {
    gap: 0;
  }

  .ratings {
    width: 100%;
    max-width: 327px;
  }

  .rating-row {
    width: 100%;
    max-width: 327px;
    gap: 4px;
  }

  .rating-row .label {
    width: auto;
    flex: 1 1 auto;
    font-size: 14px;
    line-height: 24px;
  }

  .rating-row .stars {
    flex: 0 0 auto;
  }

  .rating-row .score {
    width: auto;
    flex: 0 0 auto;
    margin-left: 4px;
  }

  .rating-divider {
    max-width: 327px;
    margin: 4px 0;
  }

  /* 13px entre ratings e 4.8 */
  .summary>.score-block {
    margin-top: 13px;
  }

  .score-block .big {
    font-weight: 700;
    font-size: 53px;
    line-height: 120%;
  }

  .score-block .big-stars {
    width: 125px;
    height: 22px;
    margin: 9px auto 9px;
  }

  .score-block .caption {
    font-size: 16px;
    line-height: 120%;
  }

  .summary>.thumbs {
    margin-top: 13px;
    width: 100%;
    max-width: 341px;
  }

  .thumbs {
    gap: 0;
    grid-template-columns: repeat(4, 81px);
    column-gap: 6px;
    row-gap: 8px;
    justify-content: center;
  }

  .thumbs img {
    width: 81px;
    height: 81px;
    aspect-ratio: auto;
    border-radius: 5px;
  }

  .summary {
    margin-bottom: 35px;
  }

  .reviews-grid {
    max-width: 343px;
  }

  .review-card {
    width: 100%;
    max-width: 343px;
  }

  .review-card .photo {
    aspect-ratio: 343 / 321;
  }

  .review-body {
    padding: 21px 20px 27px;
  }

  .review-author .name {
    color: var(--color-review-text);
  }

  .card-divider {
    width: 100%;
    margin: 15px 0;
  }

  .review-meta {
    gap: 10px;
  }

  .review-title {
    margin: 15px 0 0;
  }

  .review-text {
    margin: 15px 0 0;
  }
}

@media (max-width: 450px) {
  .score-block .big {
    font-size: 53px;
  }
}

/* 
  DONT MISS SECTION
*/

.dont-miss-bg {
  padding-top: 40px;
  padding-bottom: 40px;
  margin-top: 50px;
  background: #F9F9F9;
}

.dont-miss-section {
  display: flex;
  width: 100%;
  gap: 57px;
}

.desktop-dont-miss {
  flex: 1;
}

.dont-miss-section .content {
  flex: 1;
}

.desktop-dont-miss {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  margin-top: 15px;
}

.desktop-dont-miss .desktop-dont-miss-poster {
  display: none;
}

/* MUDANÇA: cada filho ocupa exatamente 50% */
.desktop-dont-miss>* {
  flex: 1 1 0;
  min-width: 0;
}

.desktop-dont-miss .content {
  flex: 1 1 0;
  min-width: 0;
}

.dont-miss-section .content .main-texts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.dont-miss-section .content .main-texts h1 {
  max-width: 400px;
}

.dont-miss-tablet-poster.tablet {
  display: none;
}

@media (max-width: 1024px) {
  .dont-miss-section {
    justify-content: center;
  }

  .dont-miss-tablet-poster {
    margin-top: 20px;
  }

  .dont-miss-tablet-poster img {
    max-height: 380px;
  }

  .desktop-dont-miss {
    display: none;
  }

  .dont-miss-tablet-poster.tablet {
    display: inline;
  }

  .dont-miss-section .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .dont-miss-section .content .main-texts,
  .dont-miss-section .content .main-texts h1 {
    text-align: center;
  }

  .dont-miss-tablet-layout {
    display: flex;
    gap: 15px;
    align-items: center;
  }
}

@media (max-width: 710px) {
  .desktop-dont-miss {
    display: none;
  }

  .dont-miss-bg .visible-on-mobile {
    display: inline;
  }

  .dont-miss-tablet-poster.tablet {
    display: none;
  }

  .dont-miss-section .content .main-texts h1 {
    font-size: 32px;
    line-height: 37px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    max-width: 300px;
  }

  .dont-miss-section .content .main-texts p {
    margin: 0 16px !important;
  }

  .dont-miss-section .content .main-texts img {
    width: 100vw;
    margin-left: -16px;
    margin-right: -16px;
  }

}

@media (max-width:450px) {

  .dont-miss-section .content .main-texts,
  .dont-miss-section .content .main-texts h1 {
    align-items: center;
  }

  .dont-miss-bg {
    margin-top: 0px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .dont-miss-bg .tablet-layout-content .bullets {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .dont-miss-bg .tablet-layout-content .bullets ul {
    max-width: 270px;
  }

  .dont-miss-bg .tablet-layout-content .bullets ul li {
    display: flex;
    align-items: baseline;
  }

  .dont-miss-bg .tablet-layout-content .bullets ul li img {
    align-self: flex-start;
    margin-top: 3px;
  }
}

/* 
  FAQ SECTION
*/

.faq-section {
  padding: 64px 0 44px;
}

.faq-title {
  margin: 0 0 25px;
  font-size: 42px;
  line-height: 48px;
}

/* área de 922px centralizada */
.faq-list {
  width: 922px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: 1px solid #CFCFCF;
  border-radius: 4px;
  box-shadow: 0px 4px 8px 0px #A3A3A31A;
  background: #fff;
  overflow: hidden;
}

/* cabeçalho clicável (pergunta + ícone) */
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 25px 24px 24px 27px;
  transition: padding-bottom 0.35s ease;
}

.faq-q .q-text {
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 35px;
  margin: 0;
  max-width: 796px;
  flex: 1 1 auto;
  min-width: 0;
  color: #000;
  text-decoration: none;
}

.faq-q .q-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-q .q-icon svg {
  width: 29px;
  height: 29px;
  display: block;
}

.faq-q .q-icon .ic-plus {
  display: block;
}

.faq-q .q-icon .ic-minus {
  display: none;
}

/* resposta — escondida por padrão, animada por max-height (suave, sem pulo) */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

/* o padding da pergunta NÃO muda ao abrir (evita o pulo);
      o respiro pergunta->resposta fica dentro da área animada */
.faq-a-inner {
  padding: 0 27px 15px 27px;
}

.faq-a-inner p {
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
  margin: 0;
}

.faq-item.open .faq-q {
  padding-bottom: 0;
}

/* estado aberto */
.faq-item.open .faq-q .q-icon .ic-plus {
  display: none;
}

.faq-item.open .faq-q .q-icon .ic-minus {
  display: block;
}

/* =========================================================
      RESPONSIVO
      ========================================================= */
@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0 24px;
  }

  .faq-item {
    border-radius: 4px;
  }

  .faq-q {
    padding: 18px 14px 18px 20px;
    align-items: center;
  }

  .faq-q .q-text {
    font-size: 16px;
    line-height: 24px;
    max-width: 270px;
  }

  .faq-q .q-icon {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
  }

  .faq-a-inner {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 450px) {
  .faq-title {
    font-size: 28px;
    line-height: 34px;
  }
}

/* 
  FOOTER
*/

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-top: 1px solid #D2D2D2;
  padding: 21px 0;
}

footer a,
footer p {
  font-family: Inter;
  text-decoration: none;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: 31px;
  letter-spacing: 0%;
  text-align: center;
}

@media (max-width: 450px) {
  .mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 998;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);

    /* animação */
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }

  .mobile-cta .btn-cta {
    font-size: 18px;
    padding: 14px 18px;
  }
}