.productContainer {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px;
}

.productContainer--narrow {
  max-width: 980px;
}

.productSection {
  padding: 90px 0;
}

.productSection--light {
  background: #e9e7e4;
}

/* HERO */
.productHero {
  margin-top: var(--header-h);
  position: relative;
  min-height: 92vh;
  background: #000;
  overflow: hidden;
}

.productHero__fallback,
.productHero__videoWrap,
.productHero__overlay {
  position: absolute;
  inset: 0;
}

.productHero__fallback {
  background-size: cover;
  background-position: center;
}

.productHero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productHero__overlay {
  background:
    linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.18) 100%);
}

.productHero__content {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 24px 72px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  color: #fff;
}

.productHero__label,
.productHero__from,
.productHero__note {
  font-size: 13px;
  opacity: .92;
}

.productHero__title {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 900;
  line-height: .95;
  margin-top: 8px;
}

.productHero__price {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  margin: 8px 0;
}

/* BANNER */
.productBanner {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: #000;
}

.productBanner__bg,
.productBanner__shade {
  position: absolute;
  inset: 0;
}

.productBanner__bg {
  background-size: cover;
  background-position: center;
}

.productBanner__shade {
  background: linear-gradient(to right, rgba(0,0,0,.08) 0%, rgba(0,0,0,.55) 100%);
}

.productBanner__container {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
  min-height: 640px;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.productBanner__copy {
  width: min(760px, 100%);
  color: #fff;
  text-align: right;
}

.productBanner__copy h2 {
  font-size: clamp(52px, 8vw, 120px);
  font-weight: 900;
  line-height: .92;
  margin-bottom: 12px;
}

.productBanner__copy h2 span {
  display: block;
  font-size: clamp(34px, 5vw, 78px);
}

.productBanner__copy p {
  font-size: clamp(22px, 2.4vw, 44px);
  line-height: 1.15;
}

/* SECTION HEADING */
.sectionHeading {
  margin-bottom: 42px;
}

.sectionHeading h2 {
  font-size: 42px;
  font-weight: 900;
  color: #111;
}

.sectionHeading span {
  display: block;
  width: 58px;
  height: 2px;
  background: #c30000;
  margin-top: 16px;
}

/* SPLIT */
.featureSplit {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}

.featureSplit--reverse {
  grid-template-columns: .9fr 1.1fr;
}

.featureSplit--reverse .featureSplit__media {
  order: 2;
}

.featureSplit--reverse .featureSplit__card {
  order: 1;
}

.featureSplit__media img {
  width: 100%;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  min-height: 460px;
}

.featureSplit__card {
  background: #f7f7f7;
  border-radius: 22px;
  padding: 44px 38px;
}

.featureSplit__card h3 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 22px;
}

.featureSplit__card p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* GRID 2 */
.featureGrid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.featureCard__image img {
  width: 100%;
  border-radius: 20px;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.featureCard h3 {
  font-size: 28px;
  font-weight: 900;
  margin-top: 22px;
}

.featureCard p {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.7;
}

/* VIDEO */
.productVideoSection {
  background: #171717;
  color: #fff;
  padding: 90px 0 120px;
}

.productVideoSection__title {
  text-align: center;
  font-size: clamp(28px, 3vw, 54px);
  line-height: 1.2;
  font-weight: 900;
  max-width: 860px;
  margin: 0 auto 42px;
}

.productVideoCard {
  max-width: 920px;
  margin: 0 auto;
  border: 10px solid #c30000;
  background: #000;
}

.productVideoCard iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display: block;
}

/* FICHA TÉCNICA */
.specTabs__nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.specTab {
  border: none;
  background: #d9d9d9;
  color: #222;
  padding: 14px 22px;
  font-weight: 700;
  cursor: pointer;
}

.specTab.is-active {
  background: #c30000;
  color: #fff;
}

.specPanel {
  display: none;
}

.specPanel.is-active {
  display: block;
}

.specList {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.specList li {
  font-size: 16px;
  line-height: 1.65;
}

/* VOCÊ TAMBÉM VAI GOSTAR */
.recommendHeader {
  text-align: center;
  margin-bottom: 28px;
}

.recommendHeader h2 {
  font-size: 42px;
  font-weight: 900;
}

.products--recommend {
  padding: 0;
}

/* CTA */
.productCtaBar {
  background: #e9e7e4;
  padding: 0 0 64px;
}

.productCtaBar__inner {
  display: flex;
  justify-content: flex-end;
}

.productCtaBar__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  background: #c30000;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* RESPONSIVO */
@media (max-width: 1100px) {
  .featureSplit,
  .featureSplit--reverse {
    grid-template-columns: 1fr;
  }

  .featureSplit--reverse .featureSplit__media,
  .featureSplit--reverse .featureSplit__card {
    order: initial;
  }

  .featureGrid2 {
    grid-template-columns: 1fr;
  }

  .productBanner__copy {
    text-align: left;
  }

  .productBanner__container {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .productHero__content {
    min-height: 78vh;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: 42px;
  }

  .productBanner {
    min-height: 420px;
  }

  .productBanner__container {
    min-height: 420px;
  }

  .productSection {
    padding: 56px 0;
  }

  .sectionHeading h2,
  .recommendHeader h2 {
    font-size: 30px;
  }

  .featureSplit__card {
    padding: 28px 22px;
  }

  .featureSplit__card h3 {
    font-size: 26px;
  }

  .featureSplit__media img,
  .featureCard__image img {
    min-height: 280px;
  }

  .productVideoSection {
    padding: 56px 0 72px;
  }

  .productVideoCard {
    border-width: 6px;
  }
}

@media (max-width: 540px) {
  .productContainer {
    padding: 0 16px;
  }

  .specTab {
    width: 100%;
    text-align: left;
  }

  .productCtaBar__inner {
    justify-content: stretch;
  }

  .productCtaBar__button {
    width: 100%;
  }
}


