:root {
  --color-green: #10a63f;
  --color-green-dark: #0a8a34;
  --color-blue: #103d72;
  --color-blue-deep: #15355c;
  --color-text: #232323;
  --color-heading: #1f1f1f;
  --color-muted: #646464;
  --color-light: #f4f4f4;
  --color-border: #e7e7e7;
  --color-surface: #f3f3f3;
  --color-white: #ffffff;
  --shadow-soft: 0 25px 60px rgba(16, 35, 56, 0.12);
  --shadow-card: 0 12px 24px rgba(18, 52, 82, 0.05);
  --shadow-card-lg: 0 18px 36px rgba(18, 52, 82, 0.08);
  --radius-xl: 28px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  color: var(--color-text);
  background: var(--color-white);
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.section-space {
  padding: 72px 0;
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(2rem, 2.5vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 0;
}

.section-heading p {
  color: var(--color-muted);
  max-width: 760px;
  margin: 14px auto 0;
  font-size: 1.02rem;
}

.section-heading i {
  color: #f3b11f;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-blue);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 61, 114, 0.08);
  backdrop-filter: blur(14px);
}

.site-header .navbar {
  padding: 16px 0;
}

.navbar-brand {
  display: block;
  flex: 0 1 auto;
  max-width: min(68vw, 300px);
  margin-right: 12px;
}

.navbar-brand img {
  width: 100%;
  height: auto;
}

.navbar-toggler {
  border-color: rgba(16, 61, 114, 0.18);
  padding: 0.45rem 0.7rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(16, 61, 114, 0.12);
}

.navbar-nav {
  gap: 14px;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.2rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #1d1d1d;
  letter-spacing: 0.04em;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--color-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-item-products {
  position: relative;
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  min-width: 280px;
  padding: 16px 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 61, 114, 0.1);
  border-radius: 14px;
  box-shadow: 0 20px 45px rgba(18, 52, 82, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    visibility 0.22s ease;
  z-index: 20;
}

.nav-item-products:hover .nav-dropdown-panel,
.nav-item-products:focus-within .nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-list,
.nav-dropdown-sublist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-dropdown-list > li + li {
  margin-top: 10px;
}

.nav-dropdown-list a,
.nav-dropdown-sublist a {
  display: inline-block;
  color: #1d1d1d;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-list a:hover,
.nav-dropdown-sublist a:hover {
  color: var(--color-blue);
  transform: translateX(3px);
}

.nav-dropdown-group > a {
  font-weight: 700;
}

.nav-dropdown-sublist {
  margin-top: 8px;
  padding-left: 14px;
  border-left: 2px solid rgba(16, 61, 114, 0.12);
}

.nav-dropdown-sublist li + li {
  margin-top: 6px;
}

.nav-dropdown-group-nested {
  position: relative;
}

.nav-dropdown-group-nested > a::after {
  content: "\f105";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  margin-left: 8px;
  font-size: 0.78rem;
}

.nav-dropdown-subpanel {
  position: absolute;
  top: -12px;
  left: calc(100% + 16px);
  min-width: 210px;
  margin-top: 0;
  padding: 14px 16px;
  border-left: none;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(16, 61, 114, 0.1);
  box-shadow: 0 18px 34px rgba(18, 52, 82, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  z-index: 21;
}

.nav-dropdown-group-nested:hover .nav-dropdown-subpanel,
.nav-dropdown-group-nested:focus-within .nav-dropdown-subpanel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-cta,
.btn-whatsapp,
.btn-primary-blue,
.btn-outline-blue,
.btn-outline-success-custom,
.btn-whatsapp-inline,
.btn-product-green,
.btn-product-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--btn-radius, 10px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: var(--btn-font-size, 0.78rem);
  padding: var(--btn-padding, 0.92rem 1.35rem);
  border: 1px solid var(--btn-border, transparent);
  background: var(--btn-bg, transparent);
  color: var(--btn-color, inherit);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.header-cta,
.btn-whatsapp {
  --btn-bg: var(--color-green);
  --btn-border: var(--color-green);
  --btn-color: var(--color-white);
}

.header-cta:hover,
.header-cta:focus,
.header-cta:active,
.btn-whatsapp:hover,
.btn-whatsapp:focus,
.btn-whatsapp:active {
  --btn-bg: #000000;
  --btn-border: #000000;
  --btn-color: var(--color-white);
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-whatsapp i,
.btn-whatsapp-inline i {
  margin-right: 0;
  font-size: 1.35rem;
}

.btn-primary-blue {
  --btn-bg: var(--color-blue);
  --btn-border: var(--color-blue);
  --btn-color: var(--color-white);
}

.btn-primary-blue:hover,
.btn-primary-blue:focus,
.btn-primary-blue:active {
  --btn-bg: #000000;
  --btn-border: #000000;
  --btn-color: var(--color-white);
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-outline-blue {
  --btn-border: var(--color-blue);
  --btn-color: var(--color-blue);
}

.btn-outline-blue:hover,
.btn-outline-blue:focus,
.btn-outline-blue:active {
  --btn-bg: #000000;
  --btn-border: #000000;
  --btn-color: var(--color-white);
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-outline-success-custom {
  --btn-border: var(--color-green);
  --btn-color: var(--color-green);
}

.btn-outline-success-custom i {
  margin-right: 0;
  font-size: 1.3rem;
}

.btn-outline-success-custom:hover,
.btn-outline-success-custom:focus,
.btn-outline-success-custom:active {
  --btn-bg: #000000;
  --btn-border: #000000;
  --btn-color: var(--color-white);
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-whatsapp-inline {
  --btn-bg: var(--color-white);
  --btn-border: var(--color-white);
  --btn-color: var(--color-green-dark);
}

.btn-whatsapp-inline:hover {
  color: var(--color-green-dark);
  transform: translateY(-2px);
}

.cart-link {
  font-size: 1.2rem;
}

.hero-section {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  padding: 110px 0 74px;
  background:
    linear-gradient(180deg, rgba(34, 34, 34, 0.42), rgba(34, 34, 34, 0.58)),
    url("../images/foto banner home.png") center/cover no-repeat;
  overflow: hidden;
}

.page-hero {
  --page-hero-overlay: linear-gradient(
    180deg,
    rgba(28, 30, 34, 0.24),
    rgba(28, 30, 34, 0.24)
  );
  --page-hero-image: url("../images/banner estante de aço.jpg");
  position: relative;
  min-height: 285px;
  display: flex;
  align-items: center;
  padding: 72px 0;
  overflow: hidden;
  color: var(--color-white);
  background:
    var(--page-hero-overlay),
    var(--page-hero-image) center/cover no-repeat;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(22, 24, 28, 0.7),
    rgba(22, 24, 28, 0.18)
  );
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
}

.page-hero-contact {
  --page-hero-overlay: linear-gradient(
    180deg,
    rgba(28, 30, 34, 0.28),
    rgba(28, 30, 34, 0.28)
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.26)
  );
}

.hero-content {
  color: var(--color-white);
}

.hero-content h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  line-height: 1.08;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
  margin-bottom: 20px;
}

.hero-content p {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 1.17rem;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.hero-highlights {
  margin-top: 44px;
  row-gap: 18px;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-size: 0.92rem;
  line-height: 1.25;
}

.highlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  font-size: 2rem;
}

.brands-section {
  padding: 34px 0 38px;
  background: #efefef;
}

.brands-section .section-heading {
  margin-bottom: 22px;
}

.brands-section h2 {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
}

.brands-section .section-actions {
  margin-top: 26px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}

.media-card,
.about-image-card,
.product-feature-media,
.gallery-item,
.segment-thumb {
  border-radius: var(--media-radius, var(--radius-lg));
  overflow: hidden;
}

.media-card,
.about-image-card,
.product-feature-media {
  box-shadow: var(--shadow-soft);
}

.gallery-item,
.segment-thumb {
  box-shadow: var(--shadow-card-lg);
}

.media-card,
.about-image-card {
  --media-radius: var(--radius-xl);
}

.product-feature-media {
  --media-radius: 10px;
}

.gallery-item,
.segment-thumb {
  --media-radius: 18px;
}

.media-card img,
.about-image-card img,
.product-model-figure img,
.product-gallery-main img,
.product-feature-media img,
.gallery-item img,
.segment-thumb img {
  width: 100%;
  height: auto;
}

.content-copy h2 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 16px;
}

.content-copy p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.split-copy p strong,
.product-explainer .feature-list strong,
.product-detail-list strong,
.product-feature-copy strong {
  color: var(--color-heading);
}

.split-copy h2 {
  font-size: clamp(1.95rem, 2.4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.split-copy p {
  color: var(--color-muted);
  line-height: 1.68;
  margin-bottom: 0;
}

.about-solution-section .split-copy p,
.about-structure-section .split-copy p {
  font-size: 1.08rem;
  line-height: 1.8;
}

.about-story-section,
.about-solution-section,
.about-structure-section {
  padding: 72px 0;
}

.about-structure-section,
.reasons-section,
.gallery-section,
.product-feature-band-alt,
.contact-form-section,
.location-section,
.testimonials-soft,
.products-section {
  background: var(--color-surface);
}

.reasons-section {
  padding: 62px 0;
}

.reason-card {
  height: 100%;
  padding: 28px 22px;
  border: 1px solid #dddddd;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(18, 52, 82, 0.04);
  text-align: center;
}

.reason-card i {
  display: block;
  margin-bottom: 18px;
  font-size: 2.1rem;
  color: var(--color-green);
}

.reason-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.reason-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.58;
  font-size: 0.97rem;
}

.gallery-section {
  padding: 66px 0;
}

.product-catalog-section,
.product-explainer-section,
.product-faq-section,
.product-detail-top,
.product-specs-section,
.contact-info-section,
.contact-faq-section,
.segments-section,
.testimonials-section {
  background: var(--color-white);
}

.product-catalog-section {
  padding: 62px 0 46px;
}

.product-catalog-section .section-heading {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.product-model-card {
  height: 100%;
  padding: 18px 18px 20px;
  background: var(--color-white);
  border: 1px solid #dadada;
  box-shadow: 0 14px 28px rgba(18, 52, 82, 0.04);
  border-radius: 10px;
}

.product-model-figure {
  margin-bottom: 16px;
  border: 2px solid #e6e6e6;
}

.product-model-figure-link,
.product-model-card h3 a {
  color: inherit;
  text-decoration: none;
}

.product-model-figure-link {
  display: block;
}

.product-model-card h3 {
  margin-bottom: 12px;
  font-size: 1.7rem;
  line-height: 1.15;
  font-weight: 800;
  color: var(--color-blue);
}

.product-model-card ul {
  padding-left: 18px;
  margin-bottom: 18px;
  color: var(--color-muted);
  line-height: 1.6;
}

.product-model-card li,
.product-card li {
  margin-bottom: 4px;
}

.btn-product-green {
  width: 100%;
  --btn-radius: 6px;
  --btn-padding: 0.96rem 1.2rem;
  --btn-font-size: 0.86rem;
  --btn-bg: var(--color-green);
  --btn-border: var(--color-green);
  --btn-color: var(--color-white);
}

.btn-product-green:hover {
  --btn-bg: #000000;
  --btn-border: #000000;
  --btn-color: var(--color-white);
}

.catalog-pagination {
  margin-top: 18px;
  text-align: center;
  color: #2d2d2d;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-explainer-section {
  padding: 58px 0 34px;
}

.product-explainer {
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 70px;
  border-bottom: 1px solid #e4e4e4;
}

.product-explainer h2 {
  font-size: clamp(1.9rem, 2.3vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.product-explainer p {
  color: var(--color-muted);
  line-height: 1.76;
  margin-bottom: 12px;
}

.product-explainer .feature-list {
  padding-left: 18px;
  margin: 18px 0 0;
}

.product-explainer .feature-list li {
  margin-bottom: 12px;
  color: var(--color-muted);
  line-height: 1.72;
}

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

.product-faq-section .faq-wrap {
  max-width: 980px;
}

.product-detail-top {
  padding: 54px 0 36px;
}

.product-gallery-main {
  border: 1px solid #d6d6d6;
  background: var(--color-white);
  padding: 18px;
  overflow: hidden;
  border-radius: 10px;
}

.product-media-carousel .carousel-item {
  min-height: 470px;
}

.product-carousel-control {
  width: 52px;
  opacity: 1;
}

.product-carousel-control-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(24, 24, 24, 0.7);
  color: #ffffff;
  font-size: 1rem;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.product-carousel-control:hover .product-carousel-control-icon {
  background: rgba(16, 61, 114, 0.88);
  transform: scale(1.05);
}

.product-slide-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
}

.product-video-player {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  background: #121212;
  object-fit: cover;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.product-thumb-btn {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 10px;
  appearance: none;
  outline: none;
  box-shadow: none;
  transition: transform 0.2s ease;
}

.product-thumb-btn:hover {
  transform: translateY(-2px);
}

.product-thumb-btn:focus,
.product-thumb-btn:focus-visible {
  outline: none;
  box-shadow: none;
}

.product-thumb-btn.is-active .product-thumb {
  border-color: var(--color-green);
  box-shadow: 0 0 0 2px rgba(16, 166, 63, 0.14);
}

.product-thumb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--color-white), #f5f5f5);
  padding: 8px;
  overflow: hidden;
  height: 100%;
}

.product-thumb i {
  color: red;
}

.product-thumb img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  background: var(--color-white);
}

.product-thumb-video::after {
  content: "\f04b";
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.55rem;
  background: rgba(0, 0, 0, 0.42);
}

.product-slide-media .js-product-preview-trigger {
  cursor: zoom-in;
}

.product-preview-modal .modal-content {
  background: rgba(8, 10, 14, 0.96);
  border: 0;
  border-radius: 0;
}

.product-preview-close {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.2s ease;
}

.product-preview-close:hover {
  background: rgba(255, 255, 255, 0.28);
}

.product-preview-carousel .carousel-item {
  min-height: 100vh;
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.product-preview-slide {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}

.product-preview-slide img {
  width: auto;
  height: auto;
  max-width: min(94vw, 1500px);
  max-height: 88vh;
  object-fit: contain;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
  transform-origin: center center;
  transition: transform 0.24s ease;
}

.product-preview-slide img.is-zoomed {
  transform: scale(1.9);
  cursor: zoom-out;
}

.product-preview-control {
  width: 86px;
  opacity: 1;
}

.product-preview-control-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 1.05rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transition: background 0.2s ease;
}

.product-preview-control:hover .product-preview-control-icon {
  background: rgba(255, 255, 255, 0.34);
}

.product-detail-summary h1 {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
}

.product-detail-list {
  padding-left: 18px;
  margin-bottom: 26px;
}

.product-detail-list li {
  margin-bottom: 14px;
  color: var(--color-muted);
  line-height: 1.7;
}

.product-detail-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.product-ready-note {
  font-size: 1.55rem;
  font-weight: 800;
  color: #1f1f1f;
  white-space: nowrap;
}

.btn-product-outline {
  width: 100%;
  --btn-radius: 6px;
  --btn-padding: 0.96rem 1.2rem;
  --btn-font-size: 0.86rem;
  --btn-bg: #f7f7f7;
  --btn-border: #cfcfcf;
  --btn-color: #2d2d2d;
}

.btn-product-outline:hover {
  --btn-bg: #ececec;
  --btn-border: #b9b9b9;
  --btn-color: var(--color-heading);
}

.product-feature-band {
  padding: 42px 0;
}

.product-feature-copy h2 {
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.product-feature-copy p {
  color: var(--color-muted);
  line-height: 1.76;
  margin-bottom: 12px;
}

.product-feature-copy ul {
  padding-left: 18px;
  margin: 16px 0 0;
}

.product-feature-copy li {
  margin-bottom: 14px;
  color: var(--color-muted);
  line-height: 1.72;
}

.product-specs-section {
  padding: 26px 0 18px;
}

.product-specs-card {
  max-width: 1060px;
  margin: 0 auto;
  padding: 34px 30px;
  background: #f3f3f3;
}

.product-specs-card h2 {
  font-size: clamp(1.8rem, 2.1vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
}

.product-specs-table {
  background: #ffffff;
  border: 1px solid #cfcfcf;
}

.product-specs-row {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  border-bottom: 1px solid #cfcfcf;
}

.product-specs-row:last-child {
  border-bottom: none;
}

.product-specs-label,
.product-specs-value {
  padding: 10px 14px;
  line-height: 1.55;
}

.product-specs-label {
  font-weight: 800;
  color: #1f1f1f;
  border-right: 1px solid #cfcfcf;
}

.product-specs-value {
  color: var(--color-muted);
}

.contact-info-section {
  padding: 34px 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1060px;
  margin: 0 auto;
}

.contact-card {
  min-height: 136px;
  padding: 22px 18px;
  border: 1px solid #dfdfdf;
  background: #f3f3f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.contact-card i {
  display: block;
  margin-bottom: 12px;
  font-size: 2.5rem;
  color: #0f57c2;
}

.contact-card .fab.fa-whatsapp {
  color: var(--color-green);
}

.contact-card h3 {
  margin-bottom: 6px;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--color-heading);
}

.contact-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.contact-card .btn {
  margin-top: 12px;
  padding: 0.72rem 1rem;
  font-size: 0.72rem;
}

.contact-form-section {
  padding: 54px 0;
}

.contact-form-copy h2 {
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-form-copy p {
  max-width: 420px;
  color: var(--color-muted);
  line-height: 1.7;
}

.contact-form-card {
  max-width: 560px;
  margin-left: auto;
}

.contact-grid-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.contact-grid-form input,
.contact-grid-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d7d7d7;
  background: #ffffff;
  color: #1f1f1f;
  font-size: 0.95rem;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-grid-form input:focus,
.contact-grid-form textarea:focus {
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(16, 166, 63, 0.12);
}

.contact-grid-form .field-full {
  grid-column: 1 / -1;
}

.contact-grid-form textarea {
  min-height: 110px;
  resize: vertical;
}

.contact-submit {
  margin-top: 16px;
  width: 100%;
}

.map-card iframe {
  width: 100%;
  height: 450px;
  margin-bottom: -7px;
  border: none;
}

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

.gallery-section .section-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 780px;
  margin: 0 auto;
}

.segments-section {
  padding: 66px 0 58px;
}

.segments-intro {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.segments-intro h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.segments-intro p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.65;
}

.segment-row {
  margin-bottom: 36px;
}

.segment-row:last-child {
  margin-bottom: 0;
}

.segment-thumb {
  max-width: 260px;
}

.segment-copy h3 {
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.segment-copy h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.segment-copy p {
  margin-bottom: 10px;
  color: var(--color-muted);
  line-height: 1.72;
}

.segment-copy .segment-solution {
  color: #1e1e1e;
  font-weight: 700;
}

.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 16px 16px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.product-image {
  border: 2px solid #e8e8e8;
  margin-bottom: 16px;
}

.product-card h3 {
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.product-card h3 a {
  color: inherit;
}

.product-card ul {
  padding-left: 18px;
  margin-bottom: 16px;
  color: var(--color-muted);
}

.product-card .btn {
  margin: auto auto 0;
}

.strip-cta {
  padding: 42px 0;
  background: var(--color-green);
  color: var(--color-white);
}

.strip-cta h2 {
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 18px;
}

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
  color: #7a5b12;
}

.testimonial-card {
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-white);
  box-shadow: var(--shadow-card);
}

.testimonial-stars {
  color: #f3b11f;
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.testimonial-date {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: #a1a1a1;
}

.testimonial-card p {
  color: var(--color-muted);
  line-height: 1.6;
  min-height: 120px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 600;
}

.testimonial-author span,
.contact-card p,
.footer-contact a,
.footer-bottom-copy p {
  overflow-wrap: anywhere;
}

.author-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(214, 40, 118, 0.14);
  color: #b03063;
  font-weight: 800;
}

.dual-actions {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.location-section {
  background: #f3f3f3;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.location-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #343434;
  font-weight: 500;
}

.location-list i {
  color: #d63b3b;
  margin-top: 4px;
}

.location-address {
  align-items: stretch;
}

.location-pin {
  display: inline-flex;
  align-items: center;
  font-size: 2.1rem;
  line-height: 1;
  margin-top: 0;
}

.faq-wrap {
  max-width: 980px;
}

.custom-accordion .accordion-item {
  border: 1px solid var(--color-border);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 12px 24px rgba(18, 52, 82, 0.04);
}

.custom-accordion .accordion-button {
  font-weight: 700;
  color: #222222;
  background: #ffffff;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  color: #111111;
  background: #ffffff;
}

.custom-accordion .accordion-body {
  color: var(--color-muted);
  line-height: 1.7;
}

.bottom-cta {
  padding: 52px 0;
  background: #173d67;
  color: #ffffff;
}

.bottom-cta h2 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.bottom-cta p {
  max-width: 760px;
  margin: 0 auto 22px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.site-footer {
  padding: 52px 0 26px;
  background: #1a1a1a;
  color: rgba(255, 255, 255, 0.84);
}

.footer-top {
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.site-footer h3 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  transition:
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.footer-socials a:hover {
  background: #000000;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom-copy {
  text-align: left;
}

.footer-bottom-copy p {
  margin: 0;
}

.copyright-brand {
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .row.g-5,
  .row.gx-5 {
    --bs-gutter-x: 1.5rem;
  }

  .site-header {
    backdrop-filter: none;
  }

  .navbar-collapse {
    margin-top: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(16, 61, 114, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(18, 52, 82, 0.12);
    max-height: calc(100vh - 112px);
    overflow-y: auto;
  }

  .navbar-nav {
    align-items: flex-start !important;
    width: 100%;
    gap: 6px;
  }

  .nav-item-products {
    width: 100%;
  }

  .nav-item-products > .nav-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .nav-item-products > .nav-dropdown-toggle::before {
    content: "";
    display: inline-block;
    order: 2;
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .navbar-brand {
    max-width: min(60vw, 230px);
  }

  .nav-link {
    width: 100%;
    padding: 0.78rem 0;
  }

  .nav-dropdown-panel {
    display: block;
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    width: 100%;
    margin-top: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.24s ease,
      margin-top 0.24s ease;
  }

  .nav-item-products:hover .nav-dropdown-panel,
  .nav-item-products:focus-within .nav-dropdown-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-item-products.is-open .nav-dropdown-panel {
    max-height: 1000px;
    margin-top: 6px;
    margin-bottom: 10px;
  }

  .nav-item-products.is-open > .nav-dropdown-toggle::after {
    transform: scaleX(1);
  }

  .nav-item-products.is-open > .nav-dropdown-toggle::before {
    transform: rotate(-135deg);
  }

  .nav-dropdown-subpanel {
    position: static;
    top: auto;
    left: auto;
    min-width: 0;
    margin-top: 0;
    padding: 0 0 0 14px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.24s ease,
      margin-top 0.24s ease,
      padding-top 0.24s ease;
  }

  .nav-dropdown-group-nested > .nav-dropdown-parent-link {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .nav-dropdown-group-nested > .nav-dropdown-parent-link::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transform-origin: center;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .nav-dropdown-group-nested.is-open > .nav-dropdown-parent-link::after {
    transform: rotate(-135deg);
  }

  .nav-dropdown-group-nested.is-open > .nav-dropdown-subpanel {
    max-height: 1000px;
    margin-top: 6px;
    padding-top: 6px;
  }

  .nav-cta,
  .nav-icon {
    width: 100%;
    margin-top: 10px;
  }

  .nav-cta .header-cta,
  .nav-icon .cart-link {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-bottom-copy {
    text-align: center;
  }

  .hero-section {
    min-height: 520px;
    padding: 96px 0 60px;
  }

  .page-hero {
    min-height: 240px;
    padding: 60px 0;
  }

  .hero-highlights {
    margin-top: 32px;
  }

  .brands-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .segment-thumb {
    margin: 0 auto;
  }

  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-form-card {
    max-width: none;
    margin-left: 0;
  }

  .contact-card {
    min-height: auto;
  }

  .product-model-card h3 {
    font-size: 1.45rem;
  }

  .product-detail-actions {
    grid-template-columns: 1fr;
  }

  .product-ready-note {
    white-space: normal;
    text-align: center;
  }

  .product-media-carousel .carousel-item,
  .product-slide-media {
    min-height: 360px;
  }

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

  .product-specs-label {
    border-right: none;
    border-bottom: 1px solid #cfcfcf;
  }

  .map-card iframe {
    height: 380px;
  }
}

@media (max-width: 767.98px) {
  .section-space {
    padding: 52px 0;
  }

  .site-header .navbar {
    padding: 12px 0;
  }

  .navbar-brand {
    max-width: min(58vw, 210px);
  }

  .navbar-collapse {
    padding: 14px;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.04;
  }

  .page-hero h1 {
    font-size: clamp(1.85rem, 7vw, 2.3rem);
  }

  .hero-content p {
    font-size: 0.98rem;
  }

  .page-hero p,
  .section-heading p,
  .content-copy p,
  .split-copy p,
  .product-feature-copy p,
  .product-feature-copy li,
  .segment-copy p,
  .bottom-cta p {
    font-size: 0.98rem;
  }

  .brands-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-catalog-section .row {
    --bs-gutter-y: 1.5rem;
  }

  .contact-cards,
  .contact-grid-form {
    grid-template-columns: 1fr;
  }

  .reason-card,
  .product-model-card,
  .product-card,
  .testimonial-card,
  .contact-card {
    padding: 22px 18px;
  }

  .section-heading,
  .segments-intro {
    margin-bottom: 28px;
  }

  .section-heading h2,
  .content-copy h2,
  .split-copy h2,
  .contact-form-copy h2,
  .product-explainer h2,
  .product-feature-copy h2,
  .product-specs-card h2,
  .strip-cta h2,
  .bottom-cta h2 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .highlight-item {
    gap: 8px;
    font-size: 0.84rem;
  }

  .highlight-icon i {
    font-size: 1.55rem;
  }

  .product-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-media-carousel .carousel-item,
  .product-slide-media {
    min-height: 280px;
  }

  .product-carousel-control {
    width: 40px;
  }

  .product-carousel-control-icon {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .product-thumb img {
    height: 72px;
  }

  .product-preview-close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .product-preview-slide {
    padding: 24px 14px;
  }

  .product-preview-slide img {
    max-width: 96vw;
    max-height: 84vh;
  }

  .product-preview-control {
    width: 52px;
  }

  .product-preview-control-icon {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .product-specs-card {
    padding: 24px 18px;
  }

  .product-specs-label,
  .product-specs-value {
    padding: 12px;
  }

  .segment-copy h3 {
    font-size: 1.4rem;
  }

  .segment-copy h4 {
    font-size: 1rem;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .testimonial-author {
    align-items: flex-start;
  }

  .dual-actions {
    gap: 12px;
  }

  .map-card iframe {
    height: 320px;
  }

  .site-footer {
    padding: 44px 0 22px;
  }

  .footer-top {
    padding-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: auto;
    padding: 84px 0 46px;
  }

  .page-hero {
    min-height: auto;
    padding: 46px 0;
  }

  .navbar-brand {
    max-width: min(58vw, 190px);
  }

  .navbar-collapse {
    margin-top: 10px;
    padding: 12px;
  }

  .btn-whatsapp,
  .btn-primary-blue,
  .btn-outline-blue,
  .btn-outline-success-custom,
  .btn-whatsapp-inline,
  .btn-product-green,
  .btn-product-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 1.95rem;
  }

  .hero-content p,
  .page-hero p {
    font-size: 0.95rem;
  }

  .hero-highlights {
    margin-top: 26px;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }

  .brands-section,
  .strip-cta,
  .bottom-cta,
  .product-feature-band {
    padding: 32px 0;
  }

  .product-thumb img {
    height: 64px;
  }

  .product-ready-note {
    font-size: 1.25rem;
  }

  .contact-grid-form input,
  .contact-grid-form textarea {
    font-size: 16px;
  }

  .map-card iframe {
    height: 280px;
  }

  .footer-bottom {
    gap: 12px;
  }

  .dual-actions {
    flex-direction: column;
  }
}

.home-page .hero-content h1 {
  font-size: 3.05rem;
  line-height: 1.09;
  text-shadow:
    0 5px 24px rgba(0, 0, 0, 0.48),
    0 2px 6px rgba(0, 0, 0, 0.36);
}

.home-page .hero-content p {
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.46),
    0 1px 4px rgba(0, 0, 0, 0.34);
}

.home-page .section-heading h2,
.home-page .content-copy h2 {
  font-size: 2.1rem;
  line-height: 1.18;
}

.home-page .brands-section h2,
.home-page .strip-cta h2 {
  font-size: 1.95rem;
  line-height: 1.18;
}

.home-page .highlight-item {
  flex-direction: row;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.home-page .highlight-check,
.home-page .highlight-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
}

.home-page .highlight-check {
  color: var(--color-green);
  font-size: 1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.home-page .highlight-icon i {
  color: var(--color-white);
  font-size: 1.38rem;
}

.home-page .brands-grid img {
  filter: grayscale(1) saturate(0);
}

.home-page .strip-cta .btn-whatsapp-inline {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.home-page .strip-cta .btn-whatsapp-inline:hover,
.home-page .strip-cta .btn-whatsapp-inline:focus {
  --btn-bg: #f8f9fa;
  --btn-border: #f8f9fa;
  color: var(--color-green-dark);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .home-page .hero-content h1 {
    font-size: 2.65rem;
  }

  .home-page .section-heading h2,
  .home-page .content-copy h2 {
    font-size: 1.95rem;
  }

  .home-page .brands-section h2,
  .home-page .strip-cta h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767.98px) {
  .home-page .hero-content h1 {
    font-size: 2.12rem;
  }

  .home-page .section-heading h2,
  .home-page .content-copy h2 {
    font-size: 1.7rem;
  }

  .home-page .brands-section h2,
  .home-page .strip-cta h2 {
    font-size: 1.62rem;
  }

  .home-page .highlight-item {
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
  }

  .home-page .highlight-icon i {
    font-size: 1.18rem;
  }
}

@media (max-width: 575.98px) {
  .home-page .hero-content h1 {
    font-size: 1.82rem;
  }

  .home-page .section-heading h2,
  .home-page .content-copy h2 {
    font-size: 1.55rem;
  }

  .home-page .brands-section h2,
  .home-page .strip-cta h2 {
    font-size: 1.48rem;
  }

  .home-page .highlight-item {
    gap: 6px;
    font-size: 0.8rem;
  }

  .home-page .highlight-check {
    font-size: 0.88rem;
  }

  .home-page .highlight-icon i {
    font-size: 1.05rem;
  }
}

.products-page .page-hero-products {
  --page-hero-overlay: linear-gradient(
    90deg,
    rgba(17, 22, 30, 0.84) 0%,
    rgba(17, 22, 30, 0.68) 42%,
    rgba(17, 22, 30, 0.18) 100%
  );
}

.products-page .page-hero-products::before {
  background: none;
}

.products-page .page-hero h1 {
  max-width: 820px;
  font-size: 2.45rem;
  line-height: 1.12;
  text-shadow:
    0 5px 24px rgba(0, 0, 0, 0.48),
    0 2px 6px rgba(0, 0, 0, 0.34);
}

.products-page .page-hero p {
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.44),
    0 1px 4px rgba(0, 0, 0, 0.32);
}

.products-page .product-catalog-section .section-heading h2 {
  font-size: 2rem;
  line-height: 1.18;
}

.products-page .strip-cta h2,
.products-page .product-explainer h2,
.products-page .product-faq-section .section-heading h2 {
  font-size: 1.85rem;
  line-height: 1.2;
}

.products-page .strip-cta .btn-whatsapp-inline {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.products-page .strip-cta .btn-whatsapp-inline:hover,
.products-page .strip-cta .btn-whatsapp-inline:focus {
  --btn-bg: #f8f9fa;
  --btn-border: #f8f9fa;
  color: var(--color-green-dark);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}

@media (max-width: 991.98px) {
  .products-page .page-hero h1 {
    font-size: 2.25rem;
  }

  .products-page .product-catalog-section .section-heading h2 {
    font-size: 1.88rem;
  }

  .products-page .strip-cta h2,
  .products-page .product-explainer h2,
  .products-page .product-faq-section .section-heading h2 {
    font-size: 1.72rem;
  }
}

@media (max-width: 767.98px) {
  .products-page .page-hero-products {
    --page-hero-overlay: linear-gradient(
      90deg,
      rgba(17, 22, 30, 0.86) 0%,
      rgba(17, 22, 30, 0.7) 58%,
      rgba(17, 22, 30, 0.3) 100%
    );
  }

  .products-page .page-hero h1 {
    font-size: 1.9rem;
  }

  .products-page .product-catalog-section .section-heading h2 {
    font-size: 1.62rem;
  }

  .products-page .strip-cta h2,
  .products-page .product-explainer h2,
  .products-page .product-faq-section .section-heading h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .products-page .page-hero h1 {
    font-size: 1.72rem;
  }

  .products-page .product-catalog-section .section-heading h2 {
    font-size: 1.48rem;
  }

  .products-page .strip-cta h2,
  .products-page .product-explainer h2,
  .products-page .product-faq-section .section-heading h2 {
    font-size: 1.38rem;
  }
}

.about-page .page-hero-about {
  --page-hero-overlay: linear-gradient(
    90deg,
    rgba(17, 22, 30, 0.84) 0%,
    rgba(17, 22, 30, 0.66) 44%,
    rgba(17, 22, 30, 0.18) 100%
  );
}

.about-page .page-hero-about::before {
  background: none;
}

.about-page .page-hero h1 {
  max-width: 760px;
  font-size: 2.35rem;
  line-height: 1.12;
  text-shadow:
    0 5px 24px rgba(0, 0, 0, 0.48),
    0 2px 6px rgba(0, 0, 0, 0.34);
}

.about-page .page-hero p {
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.44),
    0 1px 4px rgba(0, 0, 0, 0.32);
}

.about-page .split-copy h2,
.about-page .section-heading h2 {
  font-size: 2rem;
  line-height: 1.18;
}

.about-page .brands-section h2 {
  font-size: 1.85rem;
  line-height: 1.18;
}

.about-page .brands-grid img {
  filter: grayscale(1) saturate(0);
}

@media (max-width: 991.98px) {
  .about-page .page-hero h1 {
    font-size: 2.18rem;
  }

  .about-page .split-copy h2,
  .about-page .section-heading h2 {
    font-size: 1.85rem;
  }

  .about-page .brands-section h2 {
    font-size: 1.72rem;
  }
}

@media (max-width: 767.98px) {
  .about-page .page-hero-about {
    --page-hero-overlay: linear-gradient(
      90deg,
      rgba(17, 22, 30, 0.86) 0%,
      rgba(17, 22, 30, 0.7) 58%,
      rgba(17, 22, 30, 0.3) 100%
    );
  }

  .about-page .page-hero h1 {
    font-size: 1.88rem;
  }

  .about-page .split-copy h2,
  .about-page .section-heading h2 {
    font-size: 1.62rem;
  }

  .about-page .brands-section h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .about-page .page-hero h1 {
    font-size: 1.7rem;
  }

  .about-page .split-copy h2,
  .about-page .section-heading h2 {
    font-size: 1.48rem;
  }

  .about-page .brands-section h2 {
    font-size: 1.38rem;
  }
}

.clients-page .page-hero h1 {
  max-width: 760px;
  font-size: 2.35rem;
  line-height: 1.12;
}

.clients-page .section-heading h2,
.clients-page .segments-intro h2 {
  font-size: 2rem;
  line-height: 1.18;
}

.clients-page .brands-section h2 {
  font-size: 1.85rem;
  line-height: 1.18;
}

.clients-page .segment-copy h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}

.clients-page .segment-copy h4 {
  font-size: 1rem;
  line-height: 1.35;
}

.clients-page .brands-grid img {
  filter: grayscale(1) saturate(0);
}

@media (max-width: 991.98px) {
  .clients-page .page-hero h1 {
    font-size: 2.18rem;
  }

  .clients-page .section-heading h2,
  .clients-page .segments-intro h2 {
    font-size: 1.85rem;
  }

  .clients-page .brands-section h2 {
    font-size: 1.72rem;
  }

  .clients-page .segment-copy h3 {
    font-size: 1.36rem;
  }
}

@media (max-width: 767.98px) {
  .clients-page .page-hero h1 {
    font-size: 1.88rem;
  }

  .clients-page .section-heading h2,
  .clients-page .segments-intro h2 {
    font-size: 1.62rem;
  }

  .clients-page .brands-section h2 {
    font-size: 1.5rem;
  }

  .clients-page .segment-copy h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 575.98px) {
  .clients-page .page-hero h1 {
    font-size: 1.7rem;
  }

  .clients-page .section-heading h2,
  .clients-page .segments-intro h2 {
    font-size: 1.48rem;
  }

  .clients-page .brands-section h2 {
    font-size: 1.38rem;
  }

  .clients-page .segment-copy h3 {
    font-size: 1.22rem;
  }
}

.contact-page .page-hero-contact {
  --page-hero-overlay: linear-gradient(
    90deg,
    rgba(17, 22, 30, 0.84) 0%,
    rgba(17, 22, 30, 0.66) 44%,
    rgba(17, 22, 30, 0.18) 100%
  );
}

.contact-page .page-hero-contact::before {
  background: none;
}

.contact-page .page-hero h1 {
  max-width: 760px;
  font-size: 2.35rem;
  line-height: 1.12;
  text-shadow:
    0 5px 24px rgba(0, 0, 0, 0.48),
    0 2px 6px rgba(0, 0, 0, 0.34);
}

.contact-page .page-hero p {
  text-shadow:
    0 3px 14px rgba(0, 0, 0, 0.44),
    0 1px 4px rgba(0, 0, 0, 0.32);
}

.contact-info-heading {
  max-width: 760px;
  margin: 0 auto 30px;
}

.contact-page .contact-info-heading h2,
.contact-page .contact-form-copy h2,
.contact-page .section-heading h2,
.contact-page .content-copy h2 {
  font-size: 2rem;
  line-height: 1.18;
}

.contact-page .contact-card h3 {
  font-size: 1.08rem;
  line-height: 1.25;
}

@media (max-width: 991.98px) {
  .contact-page .page-hero h1 {
    font-size: 2.18rem;
  }

  .contact-page .contact-info-heading h2,
  .contact-page .contact-form-copy h2,
  .contact-page .section-heading h2,
  .contact-page .content-copy h2 {
    font-size: 1.85rem;
  }
}

@media (max-width: 767.98px) {
  .contact-page .page-hero-contact {
    --page-hero-overlay: linear-gradient(
      90deg,
      rgba(17, 22, 30, 0.86) 0%,
      rgba(17, 22, 30, 0.7) 58%,
      rgba(17, 22, 30, 0.3) 100%
    );
  }

  .contact-page .page-hero h1 {
    font-size: 1.88rem;
  }

  .contact-page .contact-info-heading h2,
  .contact-page .contact-form-copy h2,
  .contact-page .section-heading h2,
  .contact-page .content-copy h2 {
    font-size: 1.62rem;
  }

  .contact-info-heading {
    margin-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .contact-page .page-hero h1 {
    font-size: 1.7rem;
  }

  .contact-page .contact-info-heading h2,
  .contact-page .contact-form-copy h2,
  .contact-page .section-heading h2,
  .contact-page .content-copy h2 {
    font-size: 1.48rem;
  }

  .contact-page .contact-card h3 {
    font-size: 1rem;
  }
}

.product-page .product-detail-summary h1 {
  font-size: 2.65rem;
  line-height: 1.1;
}

.product-feature-heading {
  max-width: 820px;
  margin: 0 auto 30px;
}

.product-feature-heading h2 {
  font-size: 2rem;
  line-height: 1.18;
  font-weight: 800;
  margin-bottom: 0;
}

.product-page .product-feature-copy h2,
.product-page .product-specs-card h2,
.product-page .product-faq-section .section-heading h2 {
  font-size: 2rem;
  line-height: 1.18;
}

.product-page .product-feature-band {
  padding: 50px 0;
}

@media (max-width: 991.98px) {
  .product-page .product-detail-summary h1 {
    font-size: 2.32rem;
  }

  .product-feature-heading h2,
  .product-page .product-feature-copy h2,
  .product-page .product-specs-card h2,
  .product-page .product-faq-section .section-heading h2 {
    font-size: 1.85rem;
  }

  .product-feature-heading {
    margin-bottom: 26px;
  }
}

@media (max-width: 767.98px) {
  .product-page .product-detail-summary h1 {
    font-size: 2rem;
  }

  .product-feature-heading h2,
  .product-page .product-feature-copy h2,
  .product-page .product-specs-card h2,
  .product-page .product-faq-section .section-heading h2 {
    font-size: 1.62rem;
  }

  .product-page .product-feature-band {
    padding: 42px 0;
  }
}

@media (max-width: 575.98px) {
  .product-page .product-detail-summary h1 {
    font-size: 1.78rem;
  }

  .product-feature-heading h2,
  .product-page .product-feature-copy h2,
  .product-page .product-specs-card h2,
  .product-page .product-faq-section .section-heading h2 {
    font-size: 1.48rem;
  }

  .product-feature-heading {
    margin-bottom: 22px;
  }
}
