:root {
  --color-text: #5d5d5d;
  --color-text-light: #9d9d9d;
  --color-accent: #ff0613;
  --color-border: #b3b3b3;
  --font-base: 'Montserrat', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background-color: #fff;
}

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

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-on-scroll[data-reveal-delay="100"] {
  transition-delay: 0.1s;
}

.reveal-on-scroll[data-reveal-delay="200"] {
  transition-delay: 0.2s;
}

.reveal-on-scroll[data-reveal-delay="300"] {
  transition-delay: 0.3s;
}

.reveal-on-scroll[data-reveal-delay="400"] {
  transition-delay: 0.4s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #f2f2f2;
  position: relative;
  z-index: 10;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.35rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.primary-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.primary-nav a,
.primary-nav button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  color: var(--color-text);
  transition: color 0.2s ease;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

.primary-nav a:hover,
.primary-nav a:focus,
.primary-nav button:hover,
.primary-nav button:focus {
  color: var(--color-accent);
}

.nav-item {
  position: relative;
}

.nav-item__trigger {
  width: 100%;
  text-align: left;
}

.nav-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 14px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.nav-submenu li {
  width: 100%;
}

.nav-submenu a {
  padding: 0.55rem 1.5rem;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
}

.nav-submenu a:hover,
.nav-submenu a:focus {
  background-color: rgba(255, 6, 19, 0.08);
  color: var(--color-accent);
}

.nav-item--has-submenu:hover > .nav-submenu,
.nav-item--has-submenu.is-open > .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .has-arrow > :is(a, button)::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 8px;
  background: url('assets/images/seta.png') no-repeat center / contain;
  transform: translateY(1px);
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.nav-item--has-submenu.is-open > .nav-item__trigger::after,
.nav-item--has-submenu:hover > .nav-item__trigger::after {
  transform: translateY(1px) rotate(180deg);
}

/* Third-level submenu (subcategories) */
.nav-submenu-item--has-children {
  position: relative;
}

.nav-submenu-item--has-children > a::after {
  content: '›';
  float: right;
  font-size: 1.1em;
  color: #aaa;
  transition: color 0.2s;
}

.nav-submenu-item--has-children:hover > a::after {
  color: var(--color-accent);
}

.nav-submenu--nested {
  position: absolute;
  top: -0.75rem;
  left: 100%;
  min-width: 210px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 25;
}

.nav-submenu-item--has-children:hover > .nav-submenu--nested {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Fourth-level submenu (sub-subcategories) */
.nav-submenu--level3 {
  z-index: 30;
}

.nav-account img {
  width: 20px;
  height: 20px;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 0.35rem 0.9rem 0.35rem 1.35rem;
  min-height: 44px;
  margin-left: auto;
}

.header-search input {
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-text);
  background: transparent;
  width: 160px;
}

.header-search input::placeholder {
  color: var(--color-text-light);
}

.header-search button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.menu-toggle__bar {
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  background-color: #f8f8f8;
}

.hero__slides {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
}

.hero__slide {
  grid-area: 1 / 1 / 2 / 2;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.hero__slide img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__arrow img {
  width: 28px;
  height: auto;
}

.hero__arrow--prev {
  left: 32px;
}

.hero__arrow--next {
  right: 32px;
}

.hero__arrow:disabled {
  opacity: 0.25;
  pointer-events: none;
}

.hero__dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.hero__dot.is-active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  transform: scale(1.25);
}

.tooltips {
  padding: 3.5rem 0;
}

.tooltips__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.tooltip-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--color-text);
}

.tooltip-card img {
  width: 80px;
  height: auto;
}

.tooltip-card h3 {
  margin: 0;
  font-weight: 400;
  font-size: 25px;
}

.tooltip-card h3 strong {
  font-weight: 700;
}

.product-showcase {
  padding: 4rem 0 5rem;
  background: #fff;
}

.product-showcase__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.product-showcase__categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

.product-category {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.9rem;
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
  background: var(--category-color, #5d5d5d);
  cursor: pointer;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  text-decoration: none;
}

.product-category:is(:hover, :focus-visible) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.product-showcase__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.product-carousel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-carousel__header {
  width: 100%;
  text-align: center;
}

.product-carousel__title {
  margin: 0;
  font-size: 26px;
  font-weight: 600;
  color: var(--color-text);
}

.product-carousel__body {
  position: relative;
  width: 100%;
  padding: 0 72px;
}

.product-carousel__viewport {
  overflow: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.product-carousel__track {
  display: flex;
  gap: 2rem;
}

.product-carousel__track .product-card {
  scroll-snap-align: start;
}

.product-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-carousel__arrow img {
  width: 34px;
  height: auto;
}

.product-carousel__arrow--prev {
  left: 16px;
}

.product-carousel__arrow--next {
  right: 16px;
}

.product-carousel__arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.product-card {
  background: #fff;
  border-radius: 32px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.25s ease;
  flex: 0 0 calc((100% - 6rem) / 4);
}

.product-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:is(:hover, :focus-within) {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  background-color: var(--card-color, #f5f5f5);
}

.product-card:is(:hover, :focus-within) .product-card__title {
  color: #fff;
}

.product-card__figure {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 1.5rem;
}

.product-card__figure img {
  max-height: 100%;
}

.product-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.25s ease;
}

.brand-video {
  padding: 5rem 0;
  background: #fff;
}

.brand-video__content {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.brand-video__title {
  margin: 0;
  font-size: 34px;
  font-weight: 400;
  color: var(--color-text);
}

.brand-video__subtitle {
  margin: 0.5rem 0 0;
  font-size: 18px;
  font-weight: 400;
  color: #7a7a7a;
}

.brand-video__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-video__player:is(:hover, :focus-within) {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.brand-video__preview {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
  background: #000;
}

.brand-video__preview:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.8);
  outline-offset: -6px;
}

.brand-video__preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-video__preview-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
  transform: translate(-50%, -50%);
  transition: background 0.2s ease;
}

.brand-video__preview-play::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--color-accent);
}

.brand-video__preview:is(:hover, :focus-visible) .brand-video__preview-play {
  background: rgba(255, 255, 255, 0.92);
}

.brand-video__fallback {
  margin: 1rem 0 0;
  font-size: 15px;
  color: #7a7a7a;
  text-align: center;
}

.brand-video__fallback a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
}

.brand-video__fallback a:hover {
  text-decoration: underline;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #5d5d5d;
  color: #5d5d5d;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 0.5rem 1.75rem;
  text-transform: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.pill-button:hover,
.pill-button:focus-visible {
  background: #5d5d5d;
  color: #fff;
}

.product-lines__container .pill-button {
  margin-top: 1rem;
}

.product-lines {
  padding: 5rem 0 6rem;
  background: #fff;
}

.product-lines__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.product-lines__header h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

.product-lines__header h2 strong {
  font-weight: 700;
}

.product-lines__surface {
  width: min(1180px, 96%);
  padding: 2.3rem 2rem;
}

.product-lines__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.product-line-card {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 24px 48px rgba(32, 32, 32, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-line-card:hover,
.product-line-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.2);
}

.product-line-card__media {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.product-line-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.product-line-card__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.6rem;
  background: var(--line-color);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0 0 16px 16px;
}

.product-line-card__label img {
  width: 22px;
  height: 22px;
}

.product-line-card--third {
  grid-column: span 2;
}

.product-line-card--half {
  grid-column: span 3;
}

.product-line-card--half .product-line-card__media {
  aspect-ratio: 2 / 1;
}

.newsletter {
  background: #f4f4f4;
  padding: 4.5rem 0;
}

.newsletter__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.newsletter__header {
  text-align: center;
  max-width: 720px;
}

.newsletter__header h2 {
  margin: 0 0 0.75rem;
  font-size: 40px;
  font-weight: 500;
  color: var(--color-text);
}

.newsletter__header h2 strong {
  font-weight: 700;
}

.newsletter__header p {
  margin: 0;
  font-size: 18px;
  color: #7a7a7a;
  line-height: 1.5;
}

.newsletter__form {
  width: min(760px, 100%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter__row {
  display: flex;
  gap: 1rem;
}

.newsletter__row input {
  flex: 1;
}

.newsletter__row--full {
  display: block;
}

.newsletter__row--full input {
  width: 100%;
}

.newsletter__form input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #d9d9d9;
  border-radius: 6px;
  background: #fff;
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.newsletter__form input::placeholder {
  color: #9d9d9d;
}

.newsletter__form input:focus {
  border-color: #ff0613;
  box-shadow: 0 0 0 2px rgba(255, 6, 19, 0.15);
}

.newsletter__submit {
  align-self: center;
  border: none;
  background: #ff0613;
  color: #fff;
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  text-transform: none;
  padding: 0.85rem 2.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.newsletter__submit:hover,
.newsletter__submit:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.blog-highlights {
  padding: 5rem 0 6rem;
  background: #fff;
}

.blog-highlights__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.blog-highlights__header h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

.blog-highlights__header h2 strong {
  font-weight: 700;
}

.blog-carousel {
  position: relative;
  width: 100%;
  padding: 0 72px;
}

.blog-carousel__viewport {
  overflow: hidden;
  scroll-snap-type: x mandatory;
}

.blog-carousel__track {
  display: flex;
  gap: 1.5rem;
}

.blog-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.blog-carousel__arrow img {
  width: 34px;
  height: auto;
}

.blog-carousel__arrow--prev {
  left: 24px;
}

.blog-carousel__arrow--next {
  right: 24px;
}

.blog-carousel__arrow:disabled {
  opacity: 0.35;
  pointer-events: none;
}

.blog-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  display: flex;
  flex-direction: column;
  background: #f6f6f6;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
}

.blog-card__media {
  margin: 0;
  width: 100%;
}

.blog-card__media img {
  width: 100%;
  height: auto;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.75rem 1.75rem;
}

.blog-card__meta {
  font-size: 0.9rem;
  color: #7a7a7a;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card__body h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ff0613;
  line-height: 1.3;
}

.blog-card__body p {
  margin: 0;
  font-size: 16px;
  color: #5d5d5d;
  line-height: 1.5;
}

.blog-card__link {
  align-self: flex-start;
  background: #ff0613;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.blog-card__link:hover,
.blog-card__link:focus-visible {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

.pill-button--outline {
  border-color: #5d5d5d;
  color: #5d5d5d;
  background: transparent;
}

.pill-button--outline strong {
  font-weight: 700;
}

.pill-button--outline:hover,
.pill-button--outline:focus-visible {
  background: #5d5d5d;
  color: #fff;
}

.blog-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.blog-hero__content span {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 700;
  color: #ff0613;
  letter-spacing: 0.08em;
}

.blog-hero__content h1 {
  margin: 0.5rem 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.blog-hero__content p {
  margin: 0 auto;
  max-width: 640px;
  color: #5d5d5d;
}

.blog-grid {
  padding: 1rem 0 4rem;
}

.blog-grid__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.blog-card--grid {
  flex: 1;
}

.blog-card--grid .blog-card__media img {
  height: auto;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2.5rem 0 1rem;
  flex-wrap: wrap;
}

.pagination__numbers {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  padding: 0 0.6rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  color: #333;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.pagination__link:hover,
.pagination__link:focus-visible {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
}

.pagination__link--active {
  background: #e63946;
  color: #fff;
  border-color: #e63946;
  pointer-events: none;
}

.pagination__link--prev,
.pagination__link--next {
  padding: 0 1rem;
  font-weight: 600;
}

.pagination__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  color: #999;
  font-size: 0.9rem;
}

.blog-post-hero {
  padding: 3rem 0 1rem;
}

.breadcrumb {
  font-size: 0.95rem;
  color: #7a7a7a;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #ff0613;
  text-decoration: none;
  font-weight: 600;
}

.blog-post-hero__cover {
  margin: 1.5rem 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.blog-post-hero__cover img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-post-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 1rem 0 0.5rem;
}

.blog-post-hero__meta div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.blog-post-hero__meta small {
  color: #7a7a7a;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.blog-post-hero__meta strong {
  font-size: 1rem;
  color: #1f1f1f;
}

.blog-post-hero h1 {
  margin: 1rem 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.blog-post__excerpt {
  font-size: 1.1rem;
  color: #4a4a4a;
}

.blog-post-content {
  padding: 1rem 0 3rem;
}

.blog-post-content .wysiwyg-content p {
  font-size: 1.05rem;
  line-height: 1.8;
}

.blog-related {
  padding: 1rem 0 4rem;
  background: #fafafa;
}

.blog-related h2 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.social-follow {
  padding: 5rem 0 6rem;
  background: #fff;
}

.social-follow__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.social-follow__header {
  text-align: center;
}

.social-follow__header h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 500;
  color: var(--color-text);
}

.social-follow__header h2 strong {
  font-weight: 700;
}

.social-follow__header p {
  margin: 0.75rem 0 0;
  font-size: 18px;
  color: #7a7a7a;
}

.social-follow__icons {
  display: flex;
  gap: 1.5rem;
}

.social-follow__icons a {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.social-follow__icons a:hover,
.social-follow__icons a:focus-visible {
  transform: translateY(-3px);
}

.social-follow__icons img {
  width: 100%;
  height: auto;
  display: block;
}

.product-detail {
  padding-bottom: 4rem;
}

.product-hero {
  padding: 3rem 0 2rem;
}

.product-hero__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: start;
}

.product-hero__gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-hero__featured {
  margin: 0;
  border-radius: 24px;
  background: #f4f4f9;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero__featured img {
  max-height: 360px;
  object-fit: contain;
}

.product-hero__thumbs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.product-hero__thumb {
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  padding: 0.35rem;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-hero__thumb.is-active {
  border-color: #ff0613;
  box-shadow: 0 0 0 2px rgba(255, 6, 19, 0.15);
}

.product-hero__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.product-hero__summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-hero__category {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #7a7a7a;
  margin: 0;
}

.product-hero__subcategory {
  font-weight: 400;
  color: #999;
}

.product-hero__title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #ff0613;
}

.product-hero__description p {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.product-hero__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.product-hero__cta .link-inline {
  font-weight: 600;
  color: #6b6b6b;
}

.product-specs {
  padding: 2rem 0 3rem;
  background: #f9fafc;
}

.product-specs h2 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
  color: #1c1c1c;
}

.product-specs__table-wrapper {
  overflow-x: auto;
}

.product-specs__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.product-specs__table th,
.product-specs__table td {
  padding: 0.85rem;
  text-align: left;
  font-size: 0.95rem;
}

.product-specs__table thead {
  background: #f2f3f5;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #6b6b6b;
}

.product-specs__table tbody tr:nth-child(odd) {
  background: #fff;
}

.product-specs__table tbody tr:nth-child(even) {
  background: #f4f4f9;
}

.product-download {
  padding: 2.5rem 0;
}

.product-download__card {
  border-radius: 32px;
  padding: clamp(1.75rem, 4vw, 3rem);
  background: linear-gradient(135deg, #cf000f, #ff0613);
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.product-download__copy span {
  display: block;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 600;
}

.product-download__copy a {
  margin-top: 0.5rem;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 1.05rem;
}

.product-download__copy a span {
  font-size: 1.35rem;
  line-height: 1;
}

.product-download__media {
  margin: 0;
  text-align: right;
}

.product-download__media img {
  width: clamp(160px, 25vw, 280px);
  height: auto;
}

.product-related {
  padding: 3rem 0 4rem;
}

.product-related h2 {
  margin: 0 0 1.5rem;
  font-size: 2rem;
}

.product-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.product-related__card {
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.product-related__card figure {
  margin: 0;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-related__card img {
  max-height: 150px;
  object-fit: contain;
}

.product-related__card span {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #7a7a7a;
}

.product-related__card a {
  font-size: 1rem;
  font-weight: 600;
  color: inherit;
  text-decoration: none;
}

.category-hero {
  padding: 3rem 0 2rem;
  background: #fff;
}

.category-hero__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
}

.category-hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #ff0613;
}

.category-hero p {
  margin: 0.25rem 0 0;
  color: #7a7a7a;
  font-weight: 600;
}

.category-hero__sub {
  font-size: 1.1rem;
  color: #333;
  font-weight: 600;
  margin: 0.25rem 0 0;
}

.category-content {
  padding: 2rem 0 4rem;
}

.category-content__grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
}

.category-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.category-sidebar__title {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #ff0613;
}

.category-sidebar__subtitle {
  margin: 1.5rem 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
}

.category-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-sidebar li a {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  text-decoration: none;
  color: #5d5d5d;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-sidebar li.is-active > a {
  background: #ff0613;
  color: #fff;
}

.category-sidebar__nested {
  margin-left: 0.75rem;
  margin-top: 0.25rem;
  border-left: 2px solid #e0e0e0;
  padding-left: 0.5rem;
}

.category-sidebar__nested li a {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  background: transparent;
  color: #5d5d5d;
}

.category-sidebar__nested li.is-active > a {
  background: #ff0613;
  color: #fff;
}

.category-sidebar__banner {
  margin-top: 1.5rem;
  border-radius: 20px;
  padding: 1.25rem;
  background: #ff0613;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.category-sidebar__banner a {
  color: #fff;
  font-weight: 700;
}

.category-products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 1.25rem;
}

.category-card {
  text-align: center;
}

.category-card a {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.category-card figure {
  margin: 0;
  height: 200px;
  border-radius: 18px;
  background: #f6f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card img {
  max-width: 90%;
  max-height: 180px;
  object-fit: contain;
}

.category-card__meta {
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #7a7a7a;
}

.category-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.downloads-grid {
  align-items: stretch;
}

.download-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.download-card__cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
}

.download-card .download-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.75rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-base);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  background: #ff0613;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.download-card .download-card__button:hover,
.download-card .download-card__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(255, 6, 19, 0.25);
}

.download-card__button--disabled {
  background: #d7d7d7;
  color: #7a7a7a;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

/* Download Modal */
.dl-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.dl-modal__content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: 92%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.dl-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid #eee;
}

.dl-modal__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

.dl-modal__close {
  background: none;
  border: none;
  font-size: 1.75rem;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

.dl-modal__close:hover {
  color: #333;
}

.dl-modal__table {
  width: 100%;
  border-collapse: collapse;
  overflow-y: auto;
  flex: 1;
}

.dl-modal__table thead {
  background: #f5f5f5;
}

.dl-modal__table th {
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
}

.dl-modal__table td {
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  color: #333;
  border-bottom: 1px solid #eee;
  vertical-align: middle;
}

.dl-modal__table tr:hover {
  background: #fafafa;
}

.dl-preview {
  width: 80px;
  height: 60px;
  object-fit: contain;
  border-radius: 6px;
  background: #f5f5f5;
}

.dl-preview--pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 60px;
  background: #ff0613;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 6px;
}

.dl-modal__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding: 1.25rem 2rem;
  border-top: 1px solid #eee;
}

.dl-modal__btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-base);
}

.dl-modal__btn--close {
  background: #333;
  color: #fff;
}

.dl-modal__btn--download {
  background: #ff0613;
  color: #fff;
}

.dl-modal__btn--disabled {
  background: #d7d7d7;
  color: #7a7a7a;
  cursor: not-allowed;
}

@media (max-width: 900px) {
  .category-content__grid {
    grid-template-columns: 1fr;
  }

  .category-sidebar__banner {
    text-align: center;
  }
}

.site-footer {
  color: #fff;
  font-size: 15px;
}

.site-footer__top {
  background: #ff0613;
  padding: 4rem 0 3.5rem;
}

.site-footer__content {
  display: flex;
  gap: 4rem;
}

.site-footer__brand img {
  width: 160px;
  height: auto;
}

.site-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.footer-column h4 {
  margin: 0 0 1.25rem;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-column a {
  color: #ffe5e8;
  text-decoration: none;
  font-size: 15px;
  transition: opacity 0.2s ease;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  opacity: 0.75;
}

.footer-column__policies {
  margin-top: 2rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1.25rem;
}

.footer-column__policies a {
  text-decoration: underline;
}

.footer-contact-block {
  margin-bottom: 2.5rem;
}

.footer-contact-block:last-child {
  margin-bottom: 0;
}

.footer-contact-block h4 {
  text-decoration: underline;
}

.footer-column--contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
  color: #ffe5e8;
  font-size: 15px;
}

.footer-contact-item__icon {
  flex-shrink: 0;
}

.footer-contact-item__text {
  line-height: 1.5;
}

.footer-contact-item__text a {
  color: #ffe5e8;
}

.footer-contact-item__text strong {
  color: #fff;
}

.site-footer__bottom {
  background: #f0f0f0;
  color: #7a7a7a;
  font-size: 15px;
  text-align: center;
  padding: 1rem 0 1.2rem;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.25rem;
}

.footer-contact-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact-group strong {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.footer-contact-item__icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-item__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-contact-item__text {
  font-size: 14px;
  line-height: 1.6;
  color: #ffe5e8;
}

.footer-contact-item__text a {
  color: #ffe5e8;
  text-decoration: underline;
}

.footer-contact-item__text a:hover {
  opacity: 0.75;
}

.site-footer__certifications {
  background: #f5f5f5;
  padding: 2.5rem 0;
}

.certifications-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.certifications-grid__item img {
  height: 50px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.site-footer__bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.site-footer__agency {
  display: block;
  line-height: 0;
}

.site-footer__agency img {
  height: 36px;
  width: auto;
  max-width: 120px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.site-footer__agency:hover img {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .header-content {
    gap: 1rem;
  }

  .primary-nav__list {
    gap: 1.2rem;
  }

  .header-search input {
    width: 120px;
  }

  .product-carousel__body {
    padding: 0 56px;
  }

  .product-card__figure {
    height: 190px;
  }

  .product-card {
    flex: 0 0 calc((100% - 4rem) / 3);
  }

  .brand-video__title {
    font-size: 30px;
  }

  .brand-video__subtitle {
    font-size: 17px;
  }

  .product-lines__header h2 {
    font-size: 30px;
  }

  .product-lines__surface {
    padding: 2.25rem 1.75rem;
  }

  .product-lines__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .product-line-card {
    grid-column: span 2;
  }

  .product-line-card--half {
    grid-column: span 4;
  }

  .product-line-card--half .product-line-card__media {
    aspect-ratio: 1 / 0.8;
  }

  .newsletter__header h2 {
    font-size: 34px;
  }

  .newsletter__header p {
    font-size: 17px;
  }

  .blog-highlights__header h2 {
    font-size: 34px;
  }

  .blog-carousel {
    padding: 0 56px;
  }

  .blog-card {
    flex: 0 0 clamp(240px, 26vw, 300px);
  }

  .social-follow__header h2 {
    font-size: 34px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-flex;
    z-index: 15;
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem 5%;
    border-bottom: 1px solid #f0f0f0;
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 12;
  }

  .primary-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .primary-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-item {
    width: 100%;
  }

  .nav-item__trigger {
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    border: none;
    border-left: 2px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-top: 0.35rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
  }

  .nav-item--has-submenu.is-open > .nav-submenu,
  .nav-item--has-submenu:hover > .nav-submenu {
    display: flex;
  }

  .nav-submenu--nested {
    position: static;
    border: none;
    border-left: 2px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    padding: 0.35rem 0 0.35rem 0.75rem;
    margin-top: 0.25rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    width: 100%;
    min-width: 0;
  }

  .nav-submenu-item--has-children > a::after {
    content: '▾';
    float: right;
  }

  .nav-submenu-item--has-children.is-open > .nav-submenu--nested {
    display: flex;
  }

  .header-content {
    position: relative;
    justify-content: space-between;
  }

  .header-search {
    margin-left: auto;
  }

  .newsletter__header h2 {
    font-size: 30px;
  }

  .newsletter__row {
    flex-direction: column;
  }

  .newsletter__row input {
    width: 100%;
  }

  .blog-highlights__header h2 {
    font-size: 30px;
  }

  .blog-carousel {
    padding: 0 48px;
  }

  .social-follow__header h2 {
    font-size: 30px;
  }
}

@media (max-width: 720px) {
  .header-content {
    flex-wrap: wrap;
    gap: 1rem 0.5rem;
  }

  .header-search {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .header-search input {
    width: 100%;
  }

  .tooltips__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__arrow {
    width: 44px;
    height: 44px;
  }

  .hero__arrow--prev {
    left: 16px;
  }

  .hero__arrow--next {
    right: 16px;
  }

  .hero__dots {
    bottom: 20px;
  }

  .tooltip-card {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .tooltip-card img {
    width: 64px;
  }

  .product-showcase__categories {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .product-showcase__categories::-webkit-scrollbar {
    display: none;
  }

  .product-carousel__body {
    padding: 0 48px;
  }

  .product-card__figure {
    height: 180px;
  }

  .product-showcase__more {
    font-size: 22px;
  }

  .product-card {
    flex: 0 0 calc((100% - 2rem) / 2);
  }

  .brand-video {
    padding: 4rem 0;
  }

  .product-line-card {
    min-height: 210px;
  }
}

@media (max-width: 480px) {
  .product-carousel__body {
    padding: 0 32px;
  }

  .product-card {
    padding: 1.5rem 1rem;
    flex: 0 0 100%;
  }

  .product-card__figure {
    height: 160px;
  }

  .product-showcase__more {
    font-size: 20px;
    padding: 0.6rem 2rem;
  }

  .brand-video__title {
    font-size: 26px;
  }

  .brand-video__subtitle {
    font-size: 16px;
  }

  .product-lines {
    padding: 4rem 0 4.5rem;
  }

  .product-lines__header h2 {
    font-size: 26px;
  }

  .product-lines__surface {
    padding: 1.75rem 1.25rem;
    border-radius: 34px;
  }

  .product-lines__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .product-line-card,
  .product-line-card--half {
    grid-column: span 1;
  }

  .newsletter__header h2 {
    font-size: 30px;
  }

  .newsletter__row {
    flex-direction: column;
  }

  .newsletter__row input {
    width: 100%;
  }

  .blog-highlights__header h2 {
    font-size: 28px;
  }

  .blog-carousel {
    padding: 0 32px;
  }

  .blog-card {
    flex: 0 0 85%;
  }

  .blog-card__media img {
    height: 220px;
  }

  .social-follow {
    padding: 4rem 0 5rem;
  }

  .social-follow__header h2 {
    font-size: 28px;
  }

  .social-follow__header p {
    font-size: 16px;
  }

  .social-follow__icons {
    gap: 1.2rem;
  }

  .site-footer__content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .site-footer__brand img {
    width: 140px;
  }

  .site-footer__columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 1.75rem;
    text-align: left;
  }

  .footer-contact-info {
    align-items: center;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .site-footer__bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .site-footer__columns {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .product-card {
    flex: 0 0 100%;
  }
}

/* ===== Página A Kian ===== */

.about-page {
  color: #000;
}

/* Blocos de conteúdo com imagem + texto */
.about-block {
  background-color: #fff;
  padding: 3rem 0;
}

/* Seções com fundo cinza — A Kian (por ID) */
#historia,
#qualidade,
#politica_qualidade {
  background-color: #d9d9d9;
}

/* Seções alternadas — páginas institucionais genéricas */
.institutional-page .about-block:nth-child(even) {
  background-color: #f0f0f0;
}

.about-block__grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-block--image-right .about-block__grid {
  grid-template-columns: 1fr 45%;
}

.about-block--image-right .about-block__image {
  order: 2;
}

.about-block--image-right .about-block__content {
  order: 1;
}

.about-block__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.about-block__placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: #c0c0c0;
  border-radius: 8px;
}

/* Foto full-width da página RSA */
.rsa-hero-image {
  width: 100%;
  overflow: hidden;
}

.rsa-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 500px;
}

/* Botão de ação nos conteúdos */
.btn-accent {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: #ff0613;
  color: #fff !important;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
  margin-top: 1rem;
  clear: both;
}

.btn-accent:hover {
  background: #d10510;
}

.section-files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.about-block__content h2 {
  font-size: 1.5rem;
  color: #ff0000;
  margin: 0 0 1rem;
  font-weight: 700;
}

.about-block__content .wysiwyg-content {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #000;
}

.about-block__content .wysiwyg-content p {
  margin: 0 0 1rem;
}

.about-block__content .wysiwyg-content h3 {
  font-size: 1.5rem;
  color: #ff0000;
  margin: 1.5rem 0 0.5rem;
  font-weight: 700;
}

.about-block__content .wysiwyg-content h3:first-child {
  margin-top: 0;
}

.about-block__content .wysiwyg-content ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0;
}

.about-block__content .wysiwyg-content ul li {
  margin-bottom: 0.35rem;
}

/* Texto-only block */
.about-block--text {
  padding: 3rem 0;
}

.institutional-page .about-block--text {
  text-align: center;
  padding: 3.5rem 0;
}

.about-block--text h2 {
  font-size: 1.5rem;
  color: #ff0000;
  margin: 0 0 1rem;
  font-weight: 700;
}

.about-block--text .wysiwyg-content {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #000;
}

/* Números / Estatísticas */
.about-stats {
  background-color: #fff;
  padding: 2.5rem 0;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.about-stats__item strong {
  display: block;
  font-size: 2.25rem;
  color: #000;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.about-stats__item span {
  font-size: 0.95rem;
  color: #333;
}

/* Imagens dentro do conteúdo WYSIWYG */
.about-page .wysiwyg-content img {
  border-radius: 8px;
  margin: 1rem 0;
  max-width: 100%;
}

@media (max-width: 768px) {
  .about-mvv__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-block__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-block--image-right .about-block__image {
    order: 0;
  }

  .about-block--image-right .about-block__content {
    order: 0;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-stats__item strong {
    font-size: 1.75rem;
  }
}

/* ===================== Contact Page ===================== */

/* Hero */
.contact-hero {
  background-size: cover;
  background-position: 50% 0%;
  background-repeat: no-repeat;
  background-color: #333;
  padding: 5rem 0;
}

.contact-hero h1 {
  text-transform: uppercase;
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  padding: 0 40px;
}

/* Content wrapper */
.contact-content {
  padding: 0 0 4rem;
}

.contact-description {
  padding: 66px 40px;
}

.contact-description p {
  max-width: 100%;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0;
}

/* Main area: accordion left + info right */
.contact-area {
  display: flex;
  width: 85%;
  margin: 0 auto;
  box-shadow: none;
  border-radius: 0;
}

.contact-accordion {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.contact-accordion .ca-item:last-child {
  flex: 1;
}

/* Accordion items */
.ca-item {
  border: 1px solid gray;
  border-right: none;
}

.ca-item:first-child {
  border-bottom: none;
}

.ca-item:last-child {
  border-top: none;
}

.ca-header {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-base);
}

.ca-header__text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 0.75rem;
}

.ca-header__text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  margin: 0;
}

.ca-chevron {
  flex-shrink: 0;
  margin-top: 0.75rem;
  color: var(--color-accent);
  transition: transform 0.3s;
}

.ca-item.is-open .ca-chevron {
  transform: rotate(180deg);
}

/* Accordion body */
.ca-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.ca-body > * {
  padding: 0 2.5rem 2rem;
}

/* ---- Contact Form (cf) ---- */
.cf__grid {
  display: flex;
  gap: 1.5rem;
}

.cf__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cf__right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.cf__right textarea {
  flex: 1;
  resize: vertical;
}

.cf__right--file {
  gap: 0.75rem;
  justify-content: flex-start;
}

.cf__double {
  display: flex;
  gap: 1rem;
}

.cf__double > * {
  flex: 1;
}

.cf input[type="text"],
.cf input[type="email"],
.cf input[type="tel"],
.cf select,
.cf textarea {
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  font-family: var(--font-base);
  font-size: 0.95rem;
  color: var(--color-text);
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.cf input:focus,
.cf select:focus,
.cf textarea:focus {
  border-color: #b00510;
  box-shadow: 0 0 0 2px rgba(255, 6, 19, 0.12);
}

.cf input::placeholder,
.cf textarea::placeholder {
  color: #999;
}

/* File upload */
.cf__file-label {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border: 2px solid var(--color-accent);
  border-radius: 10px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s;
}

.cf__file-label:hover {
  background: var(--color-accent);
  color: #fff;
}

.cf__file-input {
  border: none !important;
  padding: 0 !important;
  font-size: 0.85rem !important;
}

.cf__file-hint {
  font-size: 0.85rem;
  color: var(--color-text);
  margin: 0;
}

/* Form bottom */
.cf__bottom {
  padding: 1.5rem 2.5rem 2rem;
}

.cf__consent {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.82rem;
  line-height: 1.5;
  color: #555;
  cursor: pointer;
}

.cf__consent input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
}

.cf__required {
  font-size: 0.82rem;
  color: #999;
  margin: 1rem 0 0;
}

.cf__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
}

.cf__submit {
  background: #61a229;
  color: #fff;
  border: none;
  font-family: var(--font-base);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.7rem 2.5rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.2s;
}

.cf__submit:hover {
  background: #4e8221;
}

.cf__arrow-top {
  background: none;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}

/* FAQ list inside accordion */
.faq-list {
  padding: 0 2.5rem 2rem;
}

.faq-list h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 1.5rem 0 0.5rem;
}

.faq-list h3:first-child {
  margin-top: 0;
}

.faq-list p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin: 0 0 0.5rem;
}

.faq-list a {
  color: var(--color-accent);
}

/* ---- Contact Info (sidebar) ---- */
.contact-info {
  width: 340px;
  flex-shrink: 0;
  background: #ff0613;
  border-radius: 0 60px 60px 0;
  color: #fff;
}

.contact-info__inner {
  padding: 2.5rem 2rem;
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-info__filial {
  margin-top: 2rem !important;
  font-size: 1.1rem !important;
}

.contact-info__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.ci-icon {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: #fff;
}

.contact-info__row div {
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-info__row p {
  margin: 0;
  color: #eee;
}

.contact-info__row strong {
  display: block;
  color: #fff;
  font-weight: 700;
}

.contact-info__row a {
  color: #fff;
  text-decoration: underline;
}

.contact-info__link {
  display: block;
  margin-top: 1.25rem;
  color: #fff !important;
  text-decoration: underline;
  font-size: 0.9rem;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  .contact-hero h1 {
    font-size: 28px;
    line-height: 31px;
    text-align: left;
  }

  .contact-area {
    flex-direction: column;
    width: 100%;
  }

  .contact-info {
    width: 100%;
    border-radius: 0;
  }

  .ca-item {
    border-right: 1px solid gray;
  }

  .cf__grid {
    flex-direction: column;
  }

  .contact-description {
    padding: 2rem 0;
  }
}

/* ===================== Press / Imprensa Page ===================== */

.press-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}

.press-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #222;
}

.press-hero p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text);
}

.press-list {
  padding: 2rem 0 5rem;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.press-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #f8f8f8;
  border-radius: 16px;
  transition: box-shadow 0.2s;
}

.press-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.press-card__icon {
  flex-shrink: 0;
  color: var(--color-accent);
}

.press-card__content {
  flex: 1;
  min-width: 0;
}

.press-card__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: #222;
}

.press-card__content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text);
}

.press-card__download {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  white-space: nowrap;
  align-self: center;
}

.press-card__download:hover {
  text-decoration: underline;
}

.press-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-self: center;
  flex-shrink: 0;
}

.press-card__files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.press-card__file {
  display: block;
  text-decoration: none;
}

.press-card__thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #eee;
  transition: border-color 0.2s;
}

.press-card__thumb:hover {
  border-color: #ff0613;
}

.press-card__pdf-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 45px;
  background: #ff0613;
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .press-grid {
    grid-template-columns: 1fr;
  }

  .press-card {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ── Product Lines Listing Page ── */

.lines-hero {
  background: var(--color-accent);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.lines-hero h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.lines-hero p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.lines-grid-section {
  padding: 3rem 0 5rem;
}

.lines-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem;
}

.lines-grid .product-line-card {
  grid-column: span 2;
}

@media (max-width: 992px) {
  .lines-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .lines-grid .product-line-card {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .lines-grid {
    grid-template-columns: 1fr;
  }

  .lines-grid .product-line-card {
    grid-column: span 1;
  }

  .lines-hero h1 {
    font-size: 1.5rem;
  }
}

/* ── Catalogs Page ── */

.catalogs-hero {
  background: var(--color-accent);
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}

.catalogs-hero h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem;
}

.catalogs-hero p {
  margin: 0;
  font-size: 1rem;
  opacity: 0.9;
}

.catalogs-grid-section {
  padding: 3rem 0 5rem;
}

.catalogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.catalog-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding-bottom: 1.5rem;
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.catalog-card__cover {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.catalog-card__cover img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
}

.catalog-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 1rem 1rem 0.5rem;
  text-align: center;
  color: var(--color-text);
}

.catalog-card__cta {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-accent);
}

.catalog-card:hover .catalog-card__cta {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .catalogs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .catalogs-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }

  .catalogs-hero h1 {
    font-size: 1.5rem;
  }
}

/* ── Institutional pages (generic) ── */
.institutional-page {
  padding-bottom: 4rem;
}

.institutional-hero {
  background: #f4f4f4;
  padding: 3.5rem 0;
}

.institutional-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222;
  margin: 0;
}

/* ── Search page ── */
.search-hero {
  background: #f4f4f4;
  padding: 3rem 0;
}

.search-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: #222;
}

.search-hero p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text);
}

.search-results {
  padding: 3rem 0 5rem;
}

.search-results .products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem 1.25rem;
}

.search-empty {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-text);
  padding: 3rem 0;
}
