/* Produtos Page */
.products-page {
  background: #ffffff;
  overflow: hidden;
}

.products-page__hero {
  position: relative;
  background: linear-gradient(180deg, #f5f5f5 0%, #ffffff 100%);
  overflow: hidden;
  padding: 170px 0 124px;
}

.products-page__hero-union {
  position: absolute;
  right: -120px;
  top: -437px;
  width: 1215px;
  height: 1108px;
  pointer-events: none;
}

.products-page__hero-inner {
  width: 1216px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.products-page__hero-title {
  margin: 0;
  width: min(702px, 100%);
  color: #1a1a1a;
  font-size: 64px;
  line-height: 1.15;
  font-weight: 600;
}

.products-page__hero-description {
  margin: 0;
  width: min(590px, 100%);
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
}

.products-page__hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 6px;
  background: #980577;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.products-page__hero-button:hover,
.products-page__hero-button:focus-visible {
  background: #7c0461;
}

.products-page__offer {
  padding: 24px 0 56px;
}

.products-page__offer-inner {
  width: 1216px;
  margin: 0 auto;
  border: 1px solid #e5e5e5;
  padding: 12px;
  display: grid;
  grid-template-columns: 532px minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.products-page__offer-image-wrap {
  margin: 0;
  width: 100%;
  height: 433px;
  overflow: hidden;
  background: #4d4648;
}

.products-page__offer-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-page__offer-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.products-page__offer-title {
  margin: 0;
  color: #1a1a1a;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
}

.products-page__offer-description {
  margin: 0;
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
}

.products-catalog {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
  padding: 120px 0 72px;
}

.products-catalog__union {
  position: absolute;
  left: -48px;
  top: -675px;
  width: 1215px;
  height: 1108px;
  pointer-events: none;
  transform: rotate(180deg) scaleY(-1);
}

.products-catalog__inner {
  width: 1216px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 64px;
  position: relative;
  z-index: 1;
}

.products-catalog__intro {
  display: grid;
  grid-template-columns: 518px 1fr;
  gap: 133px;
  align-items: start;
}

.products-catalog__title {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
}

.products-catalog__description {
  margin: 0;
  color: #e5e5e5;
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-line;
}

.products-catalog__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.products-catalog__filter-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
}

.products-catalog__filter-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: transparent;
  padding: 16px 24px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.products-catalog__filter-pill.is-active {
  background: rgba(245, 245, 245, 0.1);
}

.products-catalog__filter-pill:hover:not(.is-active) {
  background: rgba(255, 255, 255, 0.05);
}

.products-catalog__cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  width: 100%;
}

.products-catalog__slide {
  flex: 0 0 280px;
  min-width: 0;
}

.products-catalog__slide[hidden] {
  display: none;
}

.products-catalog__card {
  width: 280px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px;
  box-sizing: border-box;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.products-catalog__card.is-selected,
.products-catalog__card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.products-catalog__card-action {
  width: 100%;
  border: 0;
  border-radius: inherit;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  cursor: pointer;
}

.products-catalog__card-image-wrap {
  width: 100%;
  height: 196px;
  border-radius: 6px;
  background: #ffffff;
  overflow: hidden;
  flex-shrink: 0;
}

.products-catalog__card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-catalog__card-footer {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products-catalog__card-title {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}

.products-catalog__more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 6px;
  background: #980577;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.products-catalog__more-button:hover,
.products-catalog__more-button:focus-visible {
  background: #7c0461;
}

.products-drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.products-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  border: 0;
  opacity: 0;
  cursor: pointer;
  transition: opacity 0.24s ease;
}

.products-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(720px, 100%);
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: -8px 0 60px rgba(0, 0, 0, 0.1);
  padding: 40px 48px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.24s ease;
}

.products-drawer.is-open {
  pointer-events: auto;
}

.products-drawer.is-open .products-drawer__overlay {
  opacity: 1;
}

.products-drawer.is-open .products-drawer__panel {
  transform: translateX(0);
}

body.products-drawer-open {
  overflow: hidden;
}

.products-drawer__close {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0 0 24px;
  cursor: pointer;
}

.products-drawer__close img {
  width: 24px;
  height: 24px;
  display: block;
}

.products-drawer__image-wrap {
  margin: 0;
  width: 100%;
  height: 270px;
  border-radius: 6px;
  background: #f5f5f5;
  overflow: hidden;
}

.products-drawer__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-drawer__content {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.products-drawer__title {
  margin: 0;
  color: #1a1a1a;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
}

.products-drawer__lead {
  margin: 0;
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
}

.products-drawer__brand-row {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

.products-drawer__brand-label {
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.products-drawer__brand-value {
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
}

.products-drawer__accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.products-drawer__accordion-item {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #ffffff;
  overflow: hidden;
}

.products-drawer__accordion-item.is-open {
  border-color: #b2abae;
}

.products-drawer__accordion-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
}

.products-drawer__accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 20px;
}

.products-drawer__accordion-icon::before,
.products-drawer__accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: #332f30;
  transform: translate(-50%, -50%);
}

.products-drawer__accordion-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.products-drawer__accordion-item.is-open .products-drawer__accordion-icon::after {
  opacity: 0;
}

.products-drawer__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.24s ease;
}

.products-drawer__accordion-content p {
  margin: 0;
  padding: 0 12px 16px;
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
  white-space: pre-line;
}

.products-drawer__accordion-item.is-open .products-drawer__accordion-content {
  max-height: 360px;
}

.products-drawer__cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 6px;
  background: #980577;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.products-drawer__cta:hover,
.products-drawer__cta:focus-visible {
  background: #7c0461;
}

.products-page__applications {
  background: #ffffff;
  padding: 72px 0;
}

.products-page__applications-inner {
  width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 80px;
  align-items: center;
}

.products-page__applications-title {
  margin: 0;
  color: #1a1a1a;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
}

.products-page__applications-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.products-page__applications-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.products-page__applications-item img {
  width: 32px;
  height: 32px;
  display: block;
}

.products-page__applications-item p {
  margin: 0;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
}

.products-page__applications-divider {
  width: 1px;
  margin: 0 16px;
  background: #e5e5e5;
}

.products-page__support {
  position: relative;
  background: #f5f5f5;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 640px;
  overflow: hidden;
}

.products-page__support-union {
  position: absolute;
  right: -80px;
  top: -469px;
  width: 1215px;
  height: 1108px;
  pointer-events: none;
}

.products-page__support-media {
  min-height: 640px;
  position: relative;
  z-index: 1;
}

.products-page__support-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.products-page__support-content {
  width: min(590px, calc(100% - 56px));
  margin: 0 auto;
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.products-page__support-content h2 {
  margin: 0;
  color: #1a1a1a;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
}

.products-page__support-content p {
  margin: 0;
  color: #332f30;
  font-size: 16px;
  line-height: 1.5;
}

.products-page__cta {
  position: relative;
  min-height: 522px;
  background: #000000;
  overflow: hidden;
}

.products-page__cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}

.products-page__cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.products-page__cta-inner {
  width: min(463px, calc(100% - 24px));
  margin: 0 auto;
  min-height: 522px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.products-page__cta-inner h2 {
  margin: 0;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 600;
}

.products-page__cta-inner p {
  margin: 0;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
}

.products-page__cta-inner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 32px;
  border-radius: 6px;
  background: #980577;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 600;
  text-decoration: none;
}

/* Notebook */
@media (max-width: 1439px) {

  .products-page__hero-inner,
  .products-page__offer-inner,
  .products-catalog__inner,
  .products-page__applications-inner {
    width: calc(100% - 48px);
  }

  .products-page__hero {
    padding-top: 148px;
    padding-bottom: 104px;
  }

  .products-page__hero-title {
    font-size: 56px;
  }

  .products-page__offer-inner {
    grid-template-columns: 460px minmax(0, 1fr);
    gap: 48px;
  }

  .products-page__offer-image-wrap {
    height: 390px;
  }

  .products-catalog__intro {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }

  .products-catalog__title,
  .products-page__offer-title,
  .products-page__applications-title,
  .products-page__support-content h2,
  .products-page__cta-inner h2 {
    font-size: 36px;
  }

  .products-catalog__slide {
    flex-basis: 250px;
  }

  .products-catalog__card {
    width: 250px;
  }

  .products-page__applications-inner {
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 48px;
  }
}

/* Tablet */
@media (max-width: 1023px) {

  .products-page__hero,
  .products-page__offer,
  .products-catalog,
  .products-page__applications {
    padding-left: 0;
    padding-right: 0;
  }

  .products-page__hero-inner,
  .products-page__offer-inner,
  .products-catalog__inner,
  .products-page__applications-inner {
    width: calc(100% - 40px);
  }

  .products-page__hero {
    padding-top: 136px;
    padding-bottom: 88px;
  }

  .products-page__hero-title {
    font-size: 48px;
  }

  .products-page__offer {
    padding-bottom: 48px;
  }

  .products-page__offer-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-page__offer-image-wrap {
    height: 360px;
  }

  .products-catalog {
    padding-top: 88px;
  }

  .products-catalog__intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .products-catalog__filter-pills {
    flex-wrap: wrap;
    gap: 8px;
  }

  .products-catalog__filter-pill {
    padding: 12px 20px;
    font-size: 15px;
  }

  .products-catalog__slide {
    flex-basis: 240px;
  }

  .products-catalog__card {
    width: 240px;
  }

  .products-drawer__panel {
    padding: 32px 24px;
  }

  .products-drawer__title {
    font-size: 32px;
  }

  .products-drawer__image-wrap {
    height: 220px;
  }

  .products-page__applications {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .products-page__applications-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .products-page__applications-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .products-page__applications-divider {
    display: none;
  }

  .products-page__support {
    grid-template-columns: 1fr;
  }

  .products-page__support-media {
    min-height: 420px;
  }

  .products-page__support-content {
    width: calc(100% - 40px);
    padding: 48px 0 56px;
  }

  .products-page__cta {
    min-height: 460px;
  }

  .products-page__cta-inner {
    min-height: 460px;
  }
}

/* Mobile */
@media (max-width: 767px) {

  .products-page__hero-inner,
  .products-page__offer-inner,
  .products-catalog__inner,
  .products-page__applications-inner,
  .products-page__support-content {
    width: calc(100% - 24px);
  }

  .products-page__hero {
    padding-top: 120px;
    padding-bottom: 72px;
  }

  .products-page__hero-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .products-page__hero-description,
  .products-page__offer-description,
  .products-catalog__description,
  .products-page__support-content p,
  .products-page__cta-inner p,
  .products-page__applications-item p,
  .products-drawer__lead,
  .products-drawer__brand-label,
  .products-drawer__brand-value,
  .products-drawer__accordion-content p,
  .products-drawer__cta {
    font-size: 15px;
  }

  .products-page__hero-button,
  .products-page__cta-inner a {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 15px;
  }

  .products-page__offer {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .products-page__offer-inner {
    padding: 10px;
  }

  .products-page__offer-image-wrap {
    height: 260px;
  }

  .products-page__offer-title,
  .products-catalog__title,
  .products-page__applications-title,
  .products-page__support-content h2,
  .products-page__cta-inner h2 {
    font-size: 30px;
    line-height: 1.25;
  }

  .products-catalog {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  .products-catalog__filter-pills {
    gap: 8px;
  }

  .products-catalog__filter-pill {
    padding: 10px 16px;
    font-size: 14px;
  }

  .products-catalog__cards-grid {
    gap: 16px;
  }

  .products-catalog__slide {
    flex-basis: min(268px, calc(100vw - 52px));
  }

  .products-catalog__card {
    width: min(268px, calc(100vw - 52px));
    min-height: unset;
  }

  .products-catalog__card-image-wrap {
    height: 160px;
  }

  .products-catalog__card-title {
    font-size: 16px;
  }

  .products-drawer__panel {
    padding: 24px 16px 40px;
  }

  .products-drawer__title {
    font-size: 28px;
  }

  .products-drawer__image-wrap {
    height: 200px;
  }

  .products-page__applications {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .products-page__applications-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .products-page__support-media {
    min-height: 300px;
  }

  .products-page__support-content {
    padding: 36px 0 44px;
  }

  .products-page__cta {
    min-height: 400px;
  }

  .products-page__cta-inner {
    min-height: 400px;
    gap: 24px;
  }
}