:root {
  --blue: #ed1c24;
  --blue-dark: #9f000b;
  --red: #ed1c24;
  --red-dark: #b4000c;
  --red-deep: #730008;
  --condor-red: #ed1c24;
  --condor-dark-red: #b4000c;
  --ink: #111827;
  --muted: #64748b;
  --line: #e5e7eb;
  --surface: #f5f7fa;
  --white: #ffffff;
  --green: #17a85b;
  --green-wa: #20b15a;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 20px 55px rgba(14, 32, 58, 0.16);
  --shadow-soft: 0 18px 42px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

main {
  display: flex;
  flex-direction: column;
}

.home-page .brand-pages-section,
.home-page .solutions-section,
.home-page .catalog-section,
.home-page .quote-section,
.home-page .contact-section,
.home-page .distributor-section {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  backdrop-filter: none;
}

.utility-bar {
  background: var(--condor-dark-red);
  color: var(--white);
  font-size: 0.78rem;
}

.utility-inner,
.main-nav,
.section-inner,
.quick-tools-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.utility-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.utility-inner a {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.main-nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
}

.brand img {
  display: block;
  width: 220px;
  max-height: 72px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.nav-links a {
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  font-weight: 800;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 0.9rem;
  height: 0.9rem;
  transition: transform 0.2s ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  z-index: 40;
  min-width: 220px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown:focus-within .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  color: var(--blue-dark);
  padding: 0 12px;
  font-weight: 900;
}

.nav-dropdown-menu a:hover {
  background: var(--red);
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-toggle svg {
    transform: rotate(180deg);
  }
}

.nav-quote,
.button,
.tool-link,
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 6px;
  font-weight: 800;
}

.nav-quote {
  min-height: 42px;
  padding: 0 16px;
  background: var(--condor-dark-red);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(112, 0, 6, 0.22);
}

.nav-quote.shop-link {
  min-width: 150px;
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid var(--condor-red);
  border-radius: 0;
  background: #fff;
  color: var(--condor-red);
  box-shadow: none;
  gap: 10px;
  line-height: 1;
}

.nav-quote.shop-link svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
}

.nav-quote.shop-link span {
  display: grid;
  gap: 2px;
  text-align: left;
  min-width: 100px;
}

.nav-quote.shop-link b,
.nav-quote.shop-link small {
  display: block;
  color: var(--condor-red);
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-quote.shop-link b {
  font-size: 0.72rem;
  line-height: 1;
  text-transform: lowercase;
}

.nav-quote.shop-link small {
  font-size: 0.62rem;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-quote.shop-link:hover {
  background: #fff4f4;
  color: var(--condor-dark-red);
  transform: translateY(-1px);
}

.nav-quote.shop-link:hover b,
.nav-quote.shop-link:hover small {
  color: var(--condor-dark-red);
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-dark);
  padding: 0 12px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 470px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0d1624;
  order: 1;
}

.hero-slide,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slide {
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
  z-index: 0;
  transition: opacity 0.5s ease, transform 0.7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 1;
}

.hero-slide:not(.active) .hero-content {
  display: none;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.95) 0%, rgba(7, 17, 31, 0.78) 36%, rgba(7, 17, 31, 0.28) 64%, rgba(7, 17, 31, 0.05) 100%),
    linear-gradient(0deg, rgba(7, 17, 31, 0.2), rgba(7, 17, 31, 0.2));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  color: var(--white);
  padding: 48px 0 70px;
  animation: fadeUp 0.7s ease-out both;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  background: rgba(216, 15, 22, 0.95);
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.15rem, 3.2vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.95rem, 3vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.whatsapp {
  background: var(--green);
  color: var(--white);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(7, 17, 31, 0.35);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.hero-arrow.prev {
  left: 28px;
}

.hero-arrow.next {
  right: 28px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-dot {
  width: 42px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  cursor: pointer;
}

.hero-dot.active {
  background: #fff;
}

.button.full {
  width: 100%;
}

.quick-tools {
  position: relative;
  z-index: 3;
  background: var(--condor-dark-red);
  color: var(--white);
  order: 3;
}

.quick-tools-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 88px;
}

.site-search {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #243248;
  border-radius: 6px;
  padding: 0 16px;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
}

.tool-link {
  min-height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  white-space: nowrap;
}

.brand-marquee {
  overflow: hidden;
  background: #fff;
  color: #111;
  order: 3;
}

.brand-marquee-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  background: transparent;
  color: #111;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

.product-family-section {
  order: 2;
  padding: 32px 0 56px;
  background: #fff;
}

.compact-heading {
  margin-bottom: 24px;
}

.family-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.family-card {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  justify-content: flex-end;
  border: 0;
  color: #fff;
  padding: 18px 18px 20px;
  isolation: isolate;
  box-shadow: 0 18px 36px rgba(42, 8, 14, 0.12);
}

.family-card .family-product {
  position: absolute;
  left: 50%;
  top: 6px;
  z-index: 1;
  width: 78%;
  height: 148px;
  object-fit: contain;
  transform: translateX(-50%) translateY(0) scale(1);
  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.28));
  transition: transform 0.32s ease, filter 0.32s ease;
  pointer-events: none;
}

.family-card::before {
  content: "";
  position: absolute;
  inset: auto -22% 18% 38%;
  z-index: 0;
  height: 56%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  transform: rotate(-22deg);
  transition: transform 0.32s ease, opacity 0.32s ease;
}

.family-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08));
}

.family-card:hover .family-product,
.family-card:active .family-product,
.family-card.active .family-product {
  transform: translateX(-50%) translateY(-10px) scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 22px 18px rgba(0, 0, 0, 0.34));
}

.family-card:hover::before,
.family-card:active::before,
.family-card.active::before {
  transform: rotate(-12deg) scale(1.12);
  opacity: 0.85;
}

.family-card strong {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 170px;
  color: #fff;
  font-size: 1.32rem;
  line-height: 1.08;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.family-lubricantes {
  background: #ed1c24;
}

.family-pesado {
  background: #b4000c;
}

.family-filtro {
  background: #0f7f91;
}

.family-frenos {
  background: #243a8f;
}

.family-amortiguadores {
  background: #6a2c91;
}

.family-bujias {
  background: #a7ce27;
}

.family-iluminacion {
  background: #f4b000;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 28px;
  align-items: center;
  min-height: 46px;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #111;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee-track span::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 28px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.42);
}

.section {
  padding: 84px 0;
}

.intro-band {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  order: 10;
}

.two-column,
.company-layout,
.distributor-layout,
.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.company-layout {
  align-items: center;
}

.company-layout > div > p {
  max-width: 620px;
  margin-top: 18px;
}

.service-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.service-mini {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(216, 15, 22, 0.34);
  box-shadow: 0 18px 38px rgba(14, 32, 58, 0.12);
}

.service-mini svg {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--red);
}

.service-mini strong {
  color: var(--blue-dark);
  line-height: 1.15;
}

.service-mini span {
  color: var(--muted);
  font-size: 0.9rem;
}

.company-image-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-image-card img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}

.company-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 36, 64, 0), rgba(13, 36, 64, 0.78));
}

.company-image-card > div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
  display: grid;
  gap: 2px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 16px;
}

.company-image-card strong {
  color: var(--blue-dark);
  font-size: 1rem;
}

.company-image-card span {
  color: var(--muted);
  font-weight: 700;
}

h2 {
  margin: 0;
  color: var(--blue-dark);
  font-size: clamp(2rem, 3.4vw, 3.1rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 700px;
}

.stats-section {
  padding: 34px 0;
  background: var(--blue-dark);
  color: var(--white);
  order: 11;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.stat {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--blue-dark);
  padding: 22px;
}

.stat strong {
  display: block;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
  animation: statPulse 3.2s ease-in-out infinite;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.campaign-section {
  background: #fff;
}

.campaign-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.campaign-dot {
  width: 34px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: #cad4e3;
  cursor: pointer;
}

.campaign-dot.active {
  background: var(--red);
}

.campaign-slider {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--blue-dark);
  box-shadow: var(--shadow);
}

.campaign-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.55s ease;
}

.campaign-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.campaign-slide img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.campaign-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 17, 31, 0.9), rgba(7, 17, 31, 0.58) 40%, rgba(7, 17, 31, 0.12));
}

.campaign-copy {
  position: absolute;
  z-index: 1;
  left: 36px;
  bottom: 36px;
  width: min(560px, calc(100% - 72px));
  color: #fff;
}

.campaign-copy span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.campaign-copy h3 {
  margin: 16px 0 20px;
  font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.campaign-copy a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #fff;
  color: var(--blue-dark);
  padding: 0 16px;
  font-weight: 900;
}

#marcas {
  order: 5;
}

.brand-pages-section {
  order: 6;
  background: var(--surface);
}

.brand-page-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.brand-page-menu {
  position: sticky;
  top: 130px;
  display: grid;
  overflow: hidden;
  border-radius: 8px;
  background: var(--red);
  box-shadow: var(--shadow);
}

.brand-page-menu a {
  min-height: 62px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 0 22px;
  font-size: 1.05rem;
  font-weight: 900;
}

.brand-page-menu a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.brand-pages {
  display: grid;
  gap: 22px;
}

.brand-page {
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(14, 32, 58, 0.12);
  scroll-margin-top: 130px;
}

.brand-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 390px;
  background: var(--blue-dark);
  color: #fff;
}

.brand-page-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
}

.brand-page-hero span {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-page-hero h3 {
  margin: 14px 0 14px;
  color: #fff;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.92;
}

.brand-page-hero p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.brand-page-hero a {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  border-radius: 6px;
  background: #fff;
  color: var(--blue-dark);
  padding: 0 16px;
  font-weight: 900;
}

.brand-page-hero img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.brand-page-hero .brand-page-logo {
  width: min(300px, 100%);
  height: auto;
  min-height: 0;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 16px;
  margin: 0 0 24px;
}

.brand-page-hero > .brand-product-hero-img {
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74) 52%, rgba(255, 255, 255, 0.22)),
    rgba(255, 255, 255, 0.1);
  padding: 30px;
}

.brand-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.brand-page-grid div {
  min-height: 110px;
  display: grid;
  align-content: center;
  gap: 6px;
  background: #fff;
  padding: 20px;
}

.brand-page-grid strong {
  color: var(--blue-dark);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.brand-page-grid span {
  color: var(--muted);
  font-weight: 700;
}

.brand-product-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.brand-product-strip img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  background: #fff;
  padding: 14px;
}

.brand-copy-section {
  background: var(--surface);
  padding: 76px 0;
}

.brand-copy-card {
  max-width: 860px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 18px 42px rgba(14, 32, 58, 0.1);
}

.brand-copy-card h2 {
  margin-bottom: 22px;
  color: var(--blue-dark);
}

.brand-copy-card p {
  color: #4d5664;
  font-size: 1.04rem;
  line-height: 1.75;
}

.brand-copy-card p + p {
  margin-top: 18px;
}

.page-hero.brand-simple {
  min-height: 310px;
  background:
    linear-gradient(105deg, rgba(13, 36, 64, 0.96), rgba(176, 0, 12, 0.78)),
    url("assets/hero-automotriz.png") center / cover;
}

.page-hero.brand-simple h1 {
  margin-bottom: 0;
}

.brand-page.autoboss .brand-page-hero {
  background: linear-gradient(135deg, #d80f16, #7d0710);
}

.brand-page.nishimoto .brand-page-hero {
  background: linear-gradient(135deg, #155ca5, #092744);
}

.brand-page.mitsufil .brand-page-hero {
  background: linear-gradient(135deg, #0b5c48, #052d22);
}

.brand-page.sovko .brand-page-hero {
  background: linear-gradient(135deg, #f0a429, #873e04);
}

.brand-page.toyomitsu .brand-page-hero {
  background: linear-gradient(135deg, #263348, #070d18);
}

.product-showcase-section {
  order: 4;
  background: #fff;
  border-top: 1px solid var(--line);
}

.product-showcase-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  align-items: center;
}

.showcase-copy h2 {
  color: var(--red);
}

.showcase-copy p {
  max-width: 470px;
  margin-top: 18px;
  color: var(--muted);
}

.showcase-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.showcase-filter {
  min-height: 40px;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: #fff;
  color: var(--red);
  padding: 0 12px;
  font-weight: 900;
  cursor: pointer;
}

.showcase-filter:nth-child(3n) {
  color: var(--blue);
}

.showcase-filter:nth-child(4n) {
  color: #0b5c48;
}

.showcase-filter.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.showcase-carousel {
  min-width: 0;
}

.showcase-viewport {
  overflow: hidden;
  padding: 4px;
}

.showcase-track {
  display: flex;
  gap: 18px;
  transition: transform 0.35s ease;
  will-change: transform;
}

.showcase-card {
  flex: 0 0 calc((100% - 36px) / 3);
  min-height: 390px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 34px rgba(14, 32, 58, 0.08);
}

.showcase-card .product-visual {
  height: 124px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f9fc, #eef4fb);
}

.showcase-card .product-visual svg {
  width: 4rem;
  height: 4rem;
  padding: 12px;
}

.showcase-card h3 {
  margin: 22px 0 8px;
  color: var(--blue-dark);
  font-size: 1.1rem;
  line-height: 1.08;
}

.showcase-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.showcase-card .add-quote {
  margin-top: auto;
}

.showcase-controls {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 14px;
  align-items: center;
  margin-top: 20px;
}

.showcase-arrow {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--blue-dark);
  cursor: pointer;
}

.showcase-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf1f6;
}

.showcase-progress::before {
  content: "";
  display: block;
  width: var(--progress, 20%);
  height: 100%;
  border-radius: inherit;
  background: var(--red);
  transition: width 0.25s ease;
}

.brand-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 360px;
  padding: 28px;
  color: #fff;
  overflow: hidden;
}

.brand-panel::after {
  content: "";
  position: absolute;
  inset: auto -45px -65px auto;
  width: 180px;
  height: 180px;
  border: 28px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.brand-panel span {
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-panel h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: clamp(1.65rem, 2.7vw, 3rem);
  line-height: 0.95;
}

.brand-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.brand-panel.autoboss {
  background: linear-gradient(145deg, #d80f16, #9d0710);
}

.brand-panel.lider {
  background: linear-gradient(145deg, #b0000c, #123763);
}

.brand-panel.nishimoto {
  background: linear-gradient(145deg, #155ca5, #082b54);
}

.brand-panel.mitsufil {
  background: linear-gradient(145deg, #0b5c48, #063326);
}

.brand-panel.sovko {
  background: linear-gradient(145deg, #f0a429, #b35a09);
}

.brand-panel.philram {
  background: linear-gradient(145deg, #f4b000, #d80f16);
}

.brand-panel.toyomitsu {
  background: linear-gradient(145deg, #263348, #0b1424);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.brand-card,
.product-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.brand-card {
  position: relative;
  min-height: 250px;
  padding: 22px;
  overflow: hidden;
}

.brand-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--blue);
}

.brand-card-top::before {
  background: var(--red);
}

.brand-tag {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-card h3,
.product-card h3 {
  margin: 20px 0 10px;
  color: var(--blue-dark);
  font-size: 1.3rem;
  line-height: 1.1;
}

.brand-card p,
.product-card p {
  color: var(--muted);
  margin: 0;
}

.brand-card a {
  display: inline-block;
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.categories-section {
  background: var(--surface);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.category-card {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--blue-dark);
  padding: 16px;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-card.family-card {
  min-height: 244px;
  align-items: stretch;
  justify-content: flex-end;
  border: 0;
  border-radius: 8px;
  color: #fff;
  padding: 18px 18px 20px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.category-card.active,
.category-card:hover {
  border-color: rgba(216, 15, 22, 0.4);
  box-shadow: 0 12px 30px rgba(216, 15, 22, 0.13);
  transform: translateY(-2px);
}

.category-card.family-card.active,
.category-card.family-card:hover,
.category-card.family-card:active {
  border-color: transparent;
  box-shadow: 0 26px 48px rgba(44, 8, 12, 0.2);
  transform: translateY(-7px);
}

.category-card.family-lubricantes {
  background: #ed1c24;
}

.category-card.family-pesado {
  background: #b4000c;
}

.category-card.family-filtro {
  background: #0f7f91;
}

.category-card.family-frenos {
  background: #243a8f;
}

.category-card.family-amortiguadores {
  background: #6a2c91;
}

.category-card.family-bujias {
  background: #a7ce27;
}

.category-card.family-iluminacion {
  background: #f4b000;
}

.icon-box {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #eef4fb;
  color: var(--blue);
}

.category-card.active .icon-box {
  background: var(--red);
  color: var(--white);
}

.catalog-section {
  background: #fff;
  order: 9;
}

.solutions-section {
  background: #fff;
  order: 8;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(14, 32, 58, 0.12);
}

.solution-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--red);
}

.solution-card h3 {
  margin: 18px 0 10px;
  color: var(--blue-dark);
  font-size: 1.28rem;
  line-height: 1.1;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
}

.solution-card.featured {
  grid-column: span 1;
  padding: 0;
  background: var(--blue-dark);
  color: #fff;
}

.solution-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.solution-card.featured::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.12), rgba(7, 17, 31, 0.9));
}

.solution-card.featured > div {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
}

.solution-card.featured span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  padding: 0 10px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.solution-card.featured h3 {
  margin-bottom: 0;
  color: #fff;
}

.catalog-heading {
  align-items: start;
}

.catalog-controls {
  display: flex;
  gap: 10px;
}

.catalog-controls select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0 12px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  min-height: 306px;
  display: flex;
  flex-direction: column;
  padding: 18px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 92, 165, 0.28);
  box-shadow: 0 18px 38px rgba(14, 32, 58, 0.12);
}

.product-visual {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--blue);
}

.product-visual svg {
  width: 2.3rem;
  height: 2.3rem;
  padding: 8px;
  border-radius: 8px;
  background: #eef4fb;
}

.product-visual.lubricantes svg,
.product-visual.frenos svg {
  background: #fff0f1;
  color: var(--red);
}

.product-visual.has-image {
  height: 164px;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f9fc, #eef4fb);
  padding: 10px;
}

.product-visual.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.showcase-card .product-visual.has-image {
  height: 168px;
}

.product-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-mark {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef4fb;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-type {
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin-top: 18px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
}

.product-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--surface);
  color: #45546b;
  font-size: 0.76rem;
  font-weight: 800;
}

.add-quote {
  min-height: 42px;
  margin-top: 16px;
  border: 0;
  border-radius: 6px;
  background: var(--blue-dark);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.add-quote.added {
  background: var(--green);
}

.empty-state {
  margin-top: 22px;
  color: var(--muted);
  font-weight: 700;
}

.quote-section {
  padding: 88px 0;
  background:
    linear-gradient(135deg, rgba(13, 36, 64, 0.96), rgba(12, 29, 49, 0.98)),
    var(--blue-dark);
  color: #fff;
  order: 12;
}

.quote-section .eyebrow,
.quote-section h2,
.quote-section p {
  color: #fff;
}

.quote-section p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-panel {
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 24px;
  box-shadow: var(--shadow);
}

.quote-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.quote-header img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.quote-header strong,
.quote-header span {
  display: block;
}

.quote-header span {
  color: var(--muted);
  font-size: 0.88rem;
}

.quote-items {
  display: grid;
  gap: 10px;
  min-height: 54px;
  margin: 16px 0;
}

.quote-empty {
  color: var(--muted);
  font-weight: 700;
}

.quote-row {
  display: grid;
  grid-template-columns: 1fr 72px 34px;
  gap: 8px;
  align-items: center;
  padding: 10px;
  background: var(--surface);
  border-radius: 6px;
}

.quote-row strong {
  display: block;
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.quote-row span {
  color: var(--muted);
  font-size: 0.78rem;
}

.quote-row input {
  width: 100%;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 8px;
}

.remove-quote {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--red);
  cursor: pointer;
}

.quote-panel label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: var(--blue-dark);
  font-weight: 900;
}

.quote-panel input,
.quote-panel textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  padding: 11px 12px;
  resize: vertical;
}

.quote-panel .button {
  margin-top: 18px;
}

.contact-section {
  order: 13;
  background: #fff;
}

.contact-banner {
  min-height: 220px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(170, 9, 16, 0.96), rgba(216, 15, 22, 0.9)),
    url("assets/damasa-mark.png") right 20% center / 360px no-repeat,
    var(--red);
  color: #fff;
}

.contact-banner .eyebrow,
.contact-banner h2 {
  color: #fff;
}

.contact-banner h2 {
  margin: 8px 0 0;
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.contact-content {
  padding: 42px 0 72px;
}

.contact-intro {
  width: min(860px, 100%);
  margin: 0 auto 34px;
  text-align: left;
}

.contact-intro h3 {
  margin: 0;
  color: #101010;
  font-size: 1.14rem;
  font-weight: 500;
}

.contact-profile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(860px, 100%);
  margin: 0 auto 68px;
}

.contact-profile {
  min-height: 190px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  border-radius: 9px;
  color: #fff;
  padding: 20px 16px;
  text-align: center;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-profile:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 42px rgba(14, 32, 58, 0.18);
}

.contact-profile svg {
  width: 3.15rem;
  height: 3.15rem;
  stroke-width: 1.8;
}

.contact-profile strong {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.12;
  font-size: 0.86rem;
}

.contact-profile span {
  display: none;
}

.contact-profile b {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.26);
  padding: 0 14px;
  font-size: 0.82rem;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.16);
}

.contact-profile.blue {
  background: #45bdd4;
}

.contact-profile.red {
  background: #df284c;
}

.contact-profile.green {
  background: #009f54;
}

.contact-profile.amber {
  background: #f8b12a;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 90px;
  width: min(860px, 100%);
  margin: 0 auto;
  align-items: start;
}

.contact-info-card {
  min-height: 120px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.contact-info-card > svg {
  width: 4.6rem;
  height: 4.6rem;
  color: #00a859;
}

.contact-info-card.location > svg {
  width: 6.1rem;
  height: 6.1rem;
  color: var(--condor-red);
}

.contact-info-card span {
  display: block;
  color: #00a859;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info-card strong {
  display: block;
  margin: 4px 0 18px;
  color: #30333a;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1.16;
}

.contact-info-card p {
  margin: 8px 0 0;
  color: #111;
  font-weight: 500;
  line-height: 1.45;
}

.contact-info-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--red);
  font-weight: 900;
}

.contact-info-card .location-title {
  color: #151515;
  font-size: 1.62rem;
  font-weight: 400;
  line-height: 1.02;
  text-transform: none;
}

.contact-info-card .location-title em {
  display: block;
  color: var(--condor-red);
  font-style: normal;
}

.subpage-main {
  display: block;
}

.page-hero {
  min-height: 370px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(13, 36, 64, 0.95), rgba(216, 15, 22, 0.8)),
    url("assets/hero-automotriz.png") center / cover;
  color: #fff;
}

.page-hero.nishimoto {
  background:
    linear-gradient(105deg, rgba(9, 39, 68, 0.96), rgba(21, 92, 165, 0.72)),
    url("assets/nishimoto-ck4-10w40.png") right 10% center / contain no-repeat,
    #092744;
}

.page-hero.contact {
  min-height: 188px;
  background:
    linear-gradient(90deg, rgba(176, 0, 12, 0.98), rgba(198, 12, 18, 0.96)),
    url("assets/damasa-mark.png") center right 20% / 530px no-repeat,
    var(--condor-dark-red);
}

.page-hero.contact h1 {
  margin: 0;
  font-size: clamp(2rem, 3.3vw, 3.05rem);
  line-height: 1;
}

.page-hero.contact .section-inner {
  display: flex;
  align-items: center;
  min-height: 188px;
}

.page-hero.b2b {
  min-height: 330px;
  background:
    linear-gradient(105deg, rgba(18, 28, 46, 0.94), rgba(180, 0, 12, 0.76)),
    url("assets/logistics-heavy.png") center / cover;
}

.b2b-page .page-hero.b2b .section-inner {
  padding: 42px 0;
}

.b2b-page .page-hero.b2b h1 {
  max-width: 720px;
  margin: 8px 0 14px;
  font-size: clamp(1.85rem, 2.55vw, 2.75rem);
  line-height: 1.08;
  font-weight: 600;
}

.b2b-page .page-hero.b2b p {
  max-width: 760px;
  font-size: 0.98rem;
  line-height: 1.55;
}

.b2b-page .eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
}

.b2b-page .page-hero.b2b p + p {
  margin-top: 8px;
}

.b2b-page .page-actions {
  margin-top: 22px;
}

.b2b-page .section {
  padding: 56px 0;
}

.b2b-page .distributor-layout {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.b2b-page .distributor-layout h2,
.b2b-page .b2b-final-copy h2 {
  max-width: 680px;
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.18;
  font-weight: 600;
}

.b2b-page .distributor-layout p,
.b2b-page .b2b-final-copy p {
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.6;
}

.b2b-page .distributor-layout p + p {
  margin-top: 12px;
}

.b2b-page .benefit-list {
  gap: 10px;
}

.b2b-page .benefit-list li {
  min-height: 52px;
  padding: 12px 14px;
  font-size: 0.96rem;
  font-weight: 600;
}

.b2b-page .benefit-list svg {
  width: 1.05rem;
  height: 1.05rem;
}

.b2b-page .b2b-hero-lead {
  color: #fff;
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  font-weight: 700;
}

.b2b-two-column {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.b2b-two-column h2 {
  max-width: 560px;
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  line-height: 1.16;
  font-weight: 600;
}

.b2b-side-copy {
  max-width: 520px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.b2b-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.b2b-copy p + p {
  margin-top: 14px;
}

.b2b-intro-section {
  background: #fff;
}

.b2b-solutions-section {
  background: #f5f7fa;
}

.b2b-heading {
  align-items: start;
  margin-bottom: 26px;
}

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

.b2b-solution-card {
  display: flex;
  flex-direction: column;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 12px 30px rgba(14, 32, 58, 0.06);
}

.b2b-solution-card > span {
  width: 34px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(237, 28, 36, 0.1);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
}

.b2b-solution-card h3 {
  margin: 16px 0 10px;
  color: var(--blue-dark);
  font-size: 1.16rem;
  line-height: 1.16;
}

.b2b-card-subtitle {
  color: var(--ink) !important;
  font-weight: 800;
}

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

.b2b-solution-card p:last-of-type {
  margin-bottom: 0;
}

.b2b-solution-card strong {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.42;
}

.b2b-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.b2b-mini-list li {
  border: 1px solid rgba(237, 28, 36, 0.18);
  border-radius: 999px;
  background: rgba(237, 28, 36, 0.06);
  color: var(--blue-dark);
  padding: 5px 9px;
  font-size: 0.78rem;
  font-weight: 700;
}

.b2b-included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.b2b-included-list li {
  min-height: 34px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(237, 28, 36, 0.14);
  border-radius: 6px;
  background: rgba(237, 28, 36, 0.045);
  color: var(--ink);
  padding: 7px 9px;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.b2b-lines-section {
  background: #fff;
}

.b2b-line-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.b2b-line-grid li {
  min-height: 54px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 13px 14px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(14, 32, 58, 0.05);
}

.b2b-process-section {
  background: #f5f7fa;
}

.b2b-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.b2b-step-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(14, 32, 58, 0.06);
}

.b2b-step-card span {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--condor-red);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 900;
}

.b2b-step-card h3 {
  margin: 16px 0 10px;
  color: var(--blue-dark);
  font-size: 1.02rem;
  line-height: 1.22;
}

.b2b-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.52;
}

.b2b-why-section {
  background: #fff;
}

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

.b2b-benefit-list li:last-child {
  grid-column: 1 / -1;
}

.b2b-final-section {
  background:
    linear-gradient(105deg, rgba(180, 0, 12, 0.97), rgba(237, 28, 36, 0.92)),
    var(--condor-red);
  color: #fff;
}

.b2b-final-section .eyebrow,
.b2b-final-section h2,
.b2b-final-section p {
  color: #fff;
}

.b2b-final-copy {
  max-width: 820px;
}

.b2b-strong-line {
  margin-top: 16px;
  font-size: 1.08rem;
  font-weight: 700;
}

.b2b-final-section .button.primary {
  background: #fff;
  color: var(--condor-dark-red);
}

.b2b-highlight-band {
  background: var(--ink);
  color: #fff;
  padding: 42px 0;
}

.b2b-highlight-band .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 28px;
  align-items: center;
}

.b2b-highlight-band p,
.b2b-highlight-band strong {
  margin: 0;
  color: #fff;
}

.b2b-highlight-band p {
  max-width: 720px;
  font-size: clamp(1.28rem, 2.1vw, 2rem);
  font-weight: 700;
  line-height: 1.18;
}

.b2b-highlight-band strong {
  display: block;
  border-left: 4px solid var(--condor-red);
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .b2b-solutions-grid,
  .b2b-process-grid,
  .b2b-highlight-band .section-inner {
    grid-template-columns: 1fr;
  }

  .b2b-included-list,
  .b2b-line-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .market-topbar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .market-brand img {
    width: min(154px, 100%);
  }

  .market-user-link,
  .market-cart-link {
    display: none;
  }

  .market-menu {
    justify-content: flex-start;
  }

  .market-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .market-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .market-hero-visual {
    min-height: 340px;
  }

  .market-wheel {
    right: 0;
    width: 210px;
    height: 210px;
  }

  .market-oil-img {
    left: 16px;
    width: 150px;
  }

  .market-filter-img {
    left: 128px;
    width: 150px;
  }

  .market-shock-img {
    left: 148px;
    width: 140px;
  }

  .market-brake-img {
    right: 112px;
    width: 160px;
  }

  .market-trust-strip,
  .market-category-grid,
  .market-product-grid,
  .market-brands-section,
  .market-footer {
    grid-template-columns: 1fr;
  }

  .market-trust-strip div + div {
    border-left: 0;
    border-top: 1px solid #dce3ee;
  }

  .market-brand-chips {
    justify-content: flex-start;
  }

  .b2b-page .page-hero.b2b {
    min-height: auto;
  }

  .b2b-page .page-hero.b2b .section-inner {
    padding: 34px 0;
  }

  .b2b-page .page-hero.b2b h1 {
    max-width: none;
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .b2b-page .distributor-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    align-items: start;
  }

  .b2b-page .section {
    padding: 44px 0;
  }

  .b2b-page .page-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .b2b-page .page-actions .button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .b2b-two-column,
  .b2b-solutions-grid,
  .b2b-benefit-list {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .b2b-benefit-list li:last-child {
    grid-column: auto;
  }

  .b2b-solution-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .b2b-process-grid,
  .b2b-highlight-band .section-inner,
  .b2b-included-list,
  .b2b-line-grid {
    grid-template-columns: 1fr;
  }

  .market-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

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

  .market-hero-visual {
    min-height: 300px;
  }

  .market-footer {
    gap: 14px;
  }
}

.page-hero.catalog {
  background:
    linear-gradient(105deg, rgba(13, 36, 64, 0.94), rgba(8, 18, 32, 0.78)),
    url("assets/campaign-lubricantes.png") center / cover;
}

.page-hero.catalog-router {
  min-height: 300px;
  background:
    linear-gradient(105deg, rgba(176, 0, 12, 0.98), rgba(237, 28, 36, 0.78)),
    url("assets/damasa-mark.png") right 12% center / 460px no-repeat,
    var(--condor-dark-red);
}

.catalog-router-page .page-hero h1 {
  max-width: 680px;
  font-size: clamp(2rem, 3.6vw, 3.85rem);
  line-height: 1.02;
}

.catalog-router-page .page-hero p {
  max-width: 640px;
  font-size: 1.02rem;
}

.catalog-router-section {
  background: #fff;
  padding: 64px 0 72px;
}

.catalog-router-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.catalog-router-card {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(14, 32, 58, 0.1);
}

.catalog-router-card::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 320px;
  height: 320px;
  background: url("assets/damasa-mark.png") center / contain no-repeat;
  opacity: 0.08;
  pointer-events: none;
}

.catalog-route-logo-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 14px 32px rgba(14, 32, 58, 0.1);
}

.catalog-route-logo {
  width: min(340px, 100%);
  max-height: 92px;
  display: block;
  object-fit: contain;
}

.filters-logo {
  max-height: 76px;
}

.market-logo-panel {
  min-height: 112px;
  padding: 12px;
}

.market-logo {
  width: min(294px, 100%);
  max-height: 95px;
}

.catalog-router-card h2 {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 18px 0 12px;
  font-size: clamp(1.85rem, 2.5vw, 2.7rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

.catalog-router-card p {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0;
  color: inherit;
  font-size: 1rem;
}

.catalog-route-label {
  position: relative;
  z-index: 1;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.catalog-router-card .button {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.autoboss-route {
  background:
    linear-gradient(135deg, rgba(225, 20, 79, 0.98), rgba(142, 0, 42, 0.98)),
    var(--condor-red);
  color: #fff;
}

.autoboss-route .catalog-route-label {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.button.light {
  background: #fff;
  color: var(--condor-red);
  border-color: #fff;
}

.market-route {
  background:
    linear-gradient(180deg, rgba(255, 74, 18, 0.08), rgba(255, 255, 255, 0) 34%),
    #fff;
  color: var(--ink);
}

.market-route::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: #ff3d00;
}

.market-route::after {
  background: url("assets/autoboss-market-store.png") center / cover no-repeat;
  opacity: 0.08;
  filter: grayscale(1);
}

.market-route .catalog-route-logo-panel {
  border: 1px solid rgba(16, 30, 45, 0.08);
  background: #fff;
}

.market-route .catalog-route-label {
  background: rgba(255, 61, 0, 0.1);
  color: #ff3d00;
}

.catalog-route-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
  padding: 0;
  list-style: none;
}

.catalog-route-list li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 61, 0, 0.22);
  border-radius: 999px;
  background: #fff;
  color: #132231;
  padding: 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
}

.catalog-market-preview {
  margin-top: 28px;
}

.catalog-market-preview img {
  width: 100%;
  max-height: 520px;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 22px 55px rgba(14, 32, 58, 0.13);
}

.market-page {
  background: #fff;
  color: #101e2d;
}

.market-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  box-shadow: 0 8px 24px rgba(16, 30, 45, 0.08);
}

.market-topbar {
  width: min(1280px, calc(100% - 32px));
  min-height: 82px;
  display: grid;
  grid-template-columns: 190px minmax(280px, 1fr) auto auto;
  gap: 24px;
  align-items: center;
  margin: 0 auto;
}

.market-brand img {
  width: 167px;
  max-height: 52px;
  display: block;
  object-fit: contain;
}

.market-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 60px;
  overflow: hidden;
  border: 1px solid #d8dee8;
  border-radius: 8px;
  background: #fff;
}

.market-search input {
  min-height: 52px;
  border: 0;
  color: #101e2d;
  padding: 0 18px;
  outline: 0;
}

.market-search button {
  min-height: 52px;
  border: 0;
  background: #ff3d00;
  color: #fff;
  cursor: pointer;
}

.market-search svg {
  width: 1.35rem;
  height: 1.35rem;
}

.market-user-link,
.market-cart-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #101e2d;
  white-space: nowrap;
}

.market-user-link svg,
.market-cart-icon svg {
  width: 30px;
  height: 30px;
  color: #101e2d;
}

.market-user-link span,
.market-cart-link > span:last-child {
  display: grid;
  gap: 1px;
  line-height: 1.15;
}

.market-user-link strong,
.market-cart-link strong {
  font-size: 0.95rem;
}

.market-user-link small,
.market-cart-link small {
  color: #667084;
  font-size: 0.82rem;
}

.market-cart-icon {
  position: relative;
  display: inline-flex;
}

.market-cart-icon b {
  position: absolute;
  top: -9px;
  right: -9px;
  min-width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ff3d00;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
}

.market-menu {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow-x: auto;
  background: #101e2d;
  color: #fff;
  padding: 0 16px;
}

.market-menu a {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.market-menu a:hover {
  color: #ff6a2a;
}

.market-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #fff 0%, #fff 47%, rgba(244, 247, 250, 0.96) 47%, #f4f7fa 100%);
}

.market-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 44%;
  background: linear-gradient(120deg, transparent 0 28%, rgba(255, 61, 0, 0.1) 28% 43%, transparent 43%);
  pointer-events: none;
}

.market-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, calc(100% - 32px));
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(420px, 1.12fr);
  gap: 40px;
  align-items: center;
  margin: 0 auto;
  padding: 34px 0;
}

.market-hero-copy h1 {
  max-width: 560px;
  margin: 0;
  color: #101e2d;
  font-size: clamp(3.1rem, 5.2vw, 5.5rem);
  font-weight: 900;
  line-height: 0.96;
}

.market-hero-copy h1 span {
  display: block;
  color: #ff3d00;
}

.market-hero-copy p {
  max-width: 500px;
  margin: 18px 0 0;
  color: #4d5a6a;
  font-size: 1.06rem;
  line-height: 1.55;
}

.market-primary-button,
.market-product-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #ff3d00;
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
}

.market-primary-button {
  margin-top: 24px;
}

.market-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.market-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #101e2d;
  font-size: 0.84rem;
  font-weight: 800;
}

.market-hero-badges svg {
  width: 22px;
  height: 22px;
  color: #101e2d;
}

.market-hero-visual {
  position: relative;
  min-height: 380px;
}

.market-hero-visual img {
  position: absolute;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 24px 24px rgba(16, 30, 45, 0.22));
}

.market-wheel {
  position: absolute;
  right: 20px;
  top: 38px;
  width: 260px;
  height: 260px;
  border: 24px solid #1a2634;
  border-radius: 50%;
  background:
    radial-gradient(circle, #edf2f7 0 22%, #9aa5b1 23% 28%, transparent 29%),
    conic-gradient(from 12deg, #d6dce4 0 10deg, #697483 10deg 18deg, #d6dce4 18deg 28deg, #697483 28deg 36deg, #d6dce4 36deg 46deg, #697483 46deg 54deg, #d6dce4 54deg 64deg, #697483 64deg 72deg, #d6dce4 72deg 82deg, #697483 82deg 90deg, #d6dce4 90deg 100deg, #697483 100deg 108deg, #d6dce4 108deg 118deg, #697483 118deg 126deg, #d6dce4 126deg 136deg, #697483 136deg 144deg, #d6dce4 144deg 154deg, #697483 154deg 162deg, #d6dce4 162deg 172deg, #697483 172deg 180deg, #d6dce4 180deg 190deg, #697483 190deg 198deg, #d6dce4 198deg 208deg, #697483 208deg 216deg, #d6dce4 216deg 226deg, #697483 226deg 234deg, #d6dce4 234deg 244deg, #697483 244deg 252deg, #d6dce4 252deg 262deg, #697483 262deg 270deg, #d6dce4 270deg 280deg, #697483 280deg 288deg, #d6dce4 288deg 298deg, #697483 298deg 306deg, #d6dce4 306deg 316deg, #697483 316deg 324deg, #d6dce4 324deg 334deg, #697483 334deg 342deg, #d6dce4 342deg 360deg);
  box-shadow: 0 28px 42px rgba(16, 30, 45, 0.18);
}

.market-oil-img {
  left: 98px;
  bottom: 8px;
  width: 180px;
  z-index: 2;
}

.market-filter-img {
  left: 218px;
  bottom: 2px;
  width: 180px;
  z-index: 3;
}

.market-shock-img {
  left: 240px;
  top: 8px;
  width: 175px;
  z-index: 1;
}

.market-brake-img {
  right: 190px;
  bottom: 10px;
  width: 205px;
  z-index: 2;
}

.market-trust-strip,
.market-section,
.market-brands-section,
.market-footer {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.market-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #fff;
  transform: translateY(16px);
  box-shadow: 0 16px 32px rgba(16, 30, 45, 0.06);
}

.market-trust-strip div {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
}

.market-trust-strip div + div {
  border-left: 1px solid #dce3ee;
}

.market-trust-strip svg {
  width: 32px;
  height: 32px;
  color: #101e2d;
}

.market-trust-strip span {
  display: grid;
  line-height: 1.2;
}

.market-trust-strip strong {
  color: #101e2d;
  font-size: 0.95rem;
}

.market-trust-strip small {
  color: #667084;
  font-size: 0.8rem;
}

.market-fitment,
.market-service-strip {
  width: min(1280px, calc(100% - 32px));
  margin: 34px auto 0;
}

.market-fitment {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: linear-gradient(135deg, #101e2d 0%, #172c42 100%);
  color: #fff;
  padding: 22px 24px;
  box-shadow: 0 18px 38px rgba(16, 30, 45, 0.1);
}

.market-fitment-copy p {
  margin: 0 0 6px;
  color: #ff6a2a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-fitment-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.12;
}

.market-fitment-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: end;
}

.market-fitment-form label {
  display: grid;
  gap: 6px;
}

.market-fitment-form span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.market-fitment-form select {
  min-height: 44px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #fff;
  color: #101e2d;
  padding: 0 12px;
  font-weight: 800;
}

.market-fitment-form button {
  min-height: 44px;
  border: 0;
  border-radius: 6px;
  background: #ff3d00;
  color: #fff;
  padding: 0 18px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
}

.market-service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.market-service-strip a {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #101e2d;
  padding: 14px 18px;
  font-weight: 900;
}

.market-service-strip a + a {
  border-left: 1px solid #dce3ee;
}

.market-service-strip svg {
  width: 28px;
  height: 28px;
  color: #ff3d00;
  flex: 0 0 auto;
}

.market-section {
  padding: 42px 0 0;
}

.market-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.market-section-heading h2,
.market-brands-section h2 {
  margin: 0;
  color: #101e2d;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.15;
}

.market-section-heading a {
  color: #ff3d00;
  font-weight: 900;
}

.market-category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 14px;
}

.market-category-card {
  min-height: 134px;
  display: grid;
  grid-template-rows: 88px auto;
  align-items: center;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.market-category-card:hover,
.market-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 61, 0, 0.36);
  box-shadow: 0 18px 36px rgba(16, 30, 45, 0.1);
}

.market-category-card img {
  width: 100%;
  height: 86px;
  object-fit: contain;
}

.market-category-card span {
  display: flex;
  justify-content: space-between;
  color: #101e2d;
  font-size: 0.82rem;
  font-weight: 900;
}

.market-category-card span::after {
  content: "›";
  color: #ff3d00;
  font-size: 1.2rem;
  line-height: 1;
}

.market-category-deck {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.market-category-tile {
  position: relative;
  min-height: 214px;
  display: grid;
  grid-template-rows: 92px auto auto;
  align-content: start;
  overflow: hidden;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #fff;
  color: #101e2d;
  padding: 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.market-category-tile::after {
  content: "Ver categoría";
  align-self: end;
  color: #ff3d00;
  font-size: 0.82rem;
  font-weight: 900;
}

.market-category-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 61, 0, 0.36);
  box-shadow: 0 20px 40px rgba(16, 30, 45, 0.11);
}

.market-category-tile img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: left center;
}

.market-category-tile h3 {
  margin: 12px 0 6px;
  color: #101e2d;
  font-size: 1.02rem;
  line-height: 1.15;
}

.market-category-tile p {
  margin: 0 0 16px;
  color: #667084;
  font-size: 0.86rem;
  line-height: 1.45;
}

.market-category-tile small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.8rem;
  font-weight: 800;
}

.market-category-feature {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 444px;
  grid-template-rows: auto auto auto auto;
  background:
    linear-gradient(135deg, rgba(16, 30, 45, 0.92), rgba(16, 30, 45, 0.74)),
    #101e2d;
  color: #fff;
  padding: 24px;
}

.market-category-feature img {
  height: 210px;
  object-position: center;
  filter: drop-shadow(0 22px 24px rgba(0, 0, 0, 0.28));
}

.market-category-feature span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(255, 61, 0, 0.18);
  color: #ff8a57;
  padding: 6px 10px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-category-feature h3 {
  color: #fff;
  font-size: clamp(1.7rem, 2.8vw, 2.55rem);
}

.market-category-feature p {
  max-width: 420px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
}

.market-brands-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.55fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
  margin-top: 42px;
  border-radius: 8px;
  background: #101e2d;
  color: #fff;
  padding: 28px;
}

.market-brands-section p {
  margin: 0 0 8px;
  color: #ff6a2a;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.market-brands-section h2 {
  color: #fff;
}

.market-brand-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.market-brand-chips span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 0 14px;
  font-weight: 900;
}

.market-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.market-product-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dce3ee;
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.market-discount {
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 1;
  border-radius: 5px;
  background: #ff3d00;
  color: #fff;
  padding: 3px 8px;
  font-size: 0.72rem;
  font-weight: 900;
}

.market-product-card img {
  width: 100%;
  height: 142px;
  object-fit: contain;
  margin-top: 8px;
}

.market-product-card p {
  margin: 10px 0 4px;
  color: #667084;
  font-size: 0.82rem;
  font-weight: 800;
}

.market-product-card h3 {
  min-height: 42px;
  margin: 0;
  color: #101e2d;
  font-size: 0.95rem;
  line-height: 1.28;
}

.market-rating {
  margin-top: 8px;
  color: #ffad00;
  font-size: 0.82rem;
}

.market-rating span {
  color: #667084;
}

.market-product-card strong {
  display: block;
  margin: 8px 0 12px;
  color: #101e2d;
  font-size: 1.04rem;
}

.market-product-card a {
  width: 100%;
  margin-top: auto;
}

.market-footer {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin-top: 56px;
  padding: 34px 0 44px;
  border-top: 1px solid #dce3ee;
}

.market-footer img {
  width: 110px;
  max-height: 39px;
  object-fit: contain;
}

.market-footer p {
  max-width: 560px;
  margin: 0 0 10px;
  color: #667084;
}

.market-footer a {
  color: #ff3d00;
  font-weight: 900;
}

@media (max-width: 900px) {
  .market-topbar {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px 0;
  }

  .market-brand img {
    width: min(154px, 100%);
  }

  .market-user-link,
  .market-cart-link {
    display: none;
  }

  .market-menu {
    justify-content: flex-start;
  }

  .market-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .market-hero-copy h1 {
    font-size: clamp(2.6rem, 12vw, 4.2rem);
  }

  .market-hero-visual {
    min-height: 340px;
  }

  .market-wheel {
    right: 0;
    width: 210px;
    height: 210px;
  }

  .market-oil-img {
    left: 16px;
    width: 150px;
  }

  .market-filter-img {
    left: 128px;
    width: 150px;
  }

  .market-shock-img {
    left: 148px;
    width: 140px;
  }

  .market-brake-img {
    right: 112px;
    width: 160px;
  }

  .market-trust-strip,
  .market-category-grid,
  .market-product-grid,
  .market-brands-section,
  .market-footer {
    grid-template-columns: 1fr;
  }

  .market-trust-strip div + div {
    border-left: 0;
    border-top: 1px solid #dce3ee;
  }

  .market-brand-chips {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .market-section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

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

  .market-hero-visual {
    min-height: 300px;
  }

  .market-footer {
    gap: 14px;
  }
}

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

  .market-fitment-form {
    grid-template-columns: 1fr 1fr;
  }

  .market-fitment-form button {
    grid-column: 1 / -1;
  }

  .market-service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .market-service-strip a + a {
    border-left: 0;
  }

  .market-service-strip a:nth-child(n + 3) {
    border-top: 1px solid #dce3ee;
  }

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

  .market-category-feature {
    grid-column: 1 / -1;
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  .market-fitment-form,
  .market-service-strip,
  .market-category-deck {
    grid-template-columns: 1fr;
  }

  .market-service-strip a:nth-child(n + 2) {
    border-top: 1px solid #dce3ee;
  }

  .market-category-feature {
    min-height: 0;
  }

  .market-category-feature img {
    height: 160px;
  }
}

.home-page .brand-logo-section {
  padding: 44px 0 50px;
  background: #fff;
  overflow: hidden;
}

.home-page .brand-logo-section::before {
  content: none;
  display: none;
}

.home-page .brand-logo-section .brand-marquee-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  overflow: hidden;
  border: 0;
}

.brand-logo-track {
  width: max-content;
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: clamp(38px, 5vw, 78px);
  animation: brandLogoMarquee 38s linear infinite;
  will-change: transform;
}

.brand-logo-item {
  width: var(--brand-logo-width, 230px);
  height: 88px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-item img {
  width: auto;
  max-width: 100%;
  max-height: var(--brand-logo-height, 58px);
  display: block;
  object-fit: contain;
}

.brand-logo-autoboss {
  --brand-logo-width: 300px;
  --brand-logo-height: 56px;
}

.brand-logo-lider,
.brand-logo-philram,
.brand-logo-toyomitsu {
  --brand-logo-width: 220px;
  --brand-logo-height: 56px;
}

.brand-logo-toyomitsu {
  --brand-logo-width: 280px;
  --brand-logo-height: 58px;
}

.brand-logo-sovko {
  --brand-logo-width: 238px;
  --brand-logo-height: 57px;
}

.brand-logo-mitsufil,
.brand-logo-nishimoto {
  --brand-logo-width: 250px;
  --brand-logo-height: 58px;
}

@media (max-width: 700px) {
  .brand-logo-track {
    gap: 34px;
    animation-duration: 32s;
  }

  .brand-logo-item {
    width: calc(var(--brand-logo-width, 230px) * 0.78);
    height: 74px;
  }

  .brand-logo-item img {
    max-height: calc(var(--brand-logo-height, 58px) * 0.82);
  }
}

@keyframes brandLogoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.page-hero.company {
  min-height: 430px;
  background:
    linear-gradient(105deg, rgba(13, 36, 64, 0.96), rgba(176, 0, 12, 0.82)),
    url("assets/logistics-heavy.png") center / cover;
}

.page-hero.company p + p {
  margin-top: 12px;
}

.page-hero h1 {
  max-width: 780px;
  margin: 10px 0 14px;
  color: #fff;
  font-size: clamp(2.4rem, 5.6vw, 5.8rem);
  line-height: 0.94;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.1rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.page-subnav {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-subnav .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0;
}

.page-subnav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--blue-dark);
  padding: 0 13px;
  font-weight: 900;
}

.page-subnav a.active,
.page-subnav a:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.brand-index-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.brand-index-grid .brand-panel {
  min-height: 310px;
}

.single-brand-section {
  padding: 74px 0;
  background: var(--surface);
}

.single-brand-section .brand-page {
  margin: 0;
}

.brand-detail-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.brand-detail-aside {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
}

.brand-detail-aside a {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 0 12px;
  color: var(--blue-dark);
  font-weight: 900;
}

.brand-detail-aside a.active,
.brand-detail-aside a:hover {
  background: var(--red);
  color: #fff;
}

.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.b2b-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 12px 28px rgba(14, 32, 58, 0.08);
}

.b2b-card svg {
  width: 2.8rem;
  height: 2.8rem;
  color: var(--red);
}

.b2b-card h3 {
  margin: 20px 0 8px;
  color: var(--blue-dark);
}

.b2b-card p {
  color: var(--muted);
}

.company-page .section {
  padding: 76px 0;
}

.company-overview {
  background: #fff;
}

.company-text-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 58px;
  align-items: start;
}

.company-copy,
.company-value-copy {
  display: grid;
  gap: 16px;
}

.company-copy p,
.company-value-copy p,
.company-info-card p,
.commitment-card p {
  color: #59616f;
  line-height: 1.7;
}

.company-split-section,
.company-coverage-section {
  background: var(--surface);
}

.company-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.company-info-card {
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 30px;
  box-shadow: 0 14px 32px rgba(14, 32, 58, 0.08);
}

.company-info-card.strong {
  border-color: rgba(216, 15, 22, 0.22);
}

.company-info-card span,
.commitment-card span {
  color: var(--condor-red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-info-card h2 {
  margin: 12px 0 18px;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
}

.company-info-card p + p {
  margin-top: 14px;
}

.company-trust-section {
  padding: 66px 0;
  background: var(--blue-dark);
  color: #fff;
}

.company-trust-section .eyebrow,
.company-trust-section h2 {
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.trust-stat {
  min-height: 145px;
  display: grid;
  align-content: center;
  gap: 10px;
  background: var(--blue-dark);
  padding: 22px;
}

.trust-stat strong {
  color: #fff;
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
  line-height: 1;
}

.trust-stat span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.company-value-section {
  background: #fff;
}

.company-value-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 42px;
  align-items: start;
}

.benefits-panel {
  border-left: 4px solid var(--condor-red);
  background: var(--surface);
  padding: 28px 30px;
}

.benefits-panel h3 {
  margin: 0 0 18px;
  color: var(--blue-dark);
  font-size: 1.35rem;
}

.company-benefit-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-benefit-list li {
  position: relative;
  padding-left: 22px;
  color: #384252;
  font-weight: 800;
  line-height: 1.35;
}

.company-benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--condor-red);
}

.commitment-section {
  background: var(--surface);
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.commitment-card {
  min-height: 270px;
  display: grid;
  align-content: start;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 26px;
  box-shadow: 0 14px 32px rgba(14, 32, 58, 0.08);
}

.commitment-card p {
  margin: 0;
  font-weight: 700;
}

.company-close {
  padding: 78px 0;
  background: var(--condor-red);
  color: #fff;
}

.company-close h2,
.company-close .eyebrow,
.company-close p {
  color: #fff;
}

.company-close h2 {
  max-width: 860px;
}

.company-close p {
  max-width: 740px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.company-close strong {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 1.22rem;
}

.distributor-section {
  background:
    linear-gradient(90deg, rgba(245, 247, 250, 0.96), rgba(245, 247, 250, 0.82)),
    url("assets/logistics-heavy.png") center / cover;
  order: 14;
}

.benefit-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px 16px;
  color: var(--blue-dark);
  font-weight: 800;
}

.benefit-list svg {
  color: var(--green);
  flex: 0 0 auto;
}

.bottom-cta {
  min-height: 200px;
  display: flex;
  align-items: center;
  background: var(--condor-red);
  color: #fff;
}

.bottom-cta-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.45fr);
  gap: 50px;
  align-items: center;
}

.newsletter-lead {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 24px;
}

.newsletter-lead svg {
  width: 58px;
  height: 58px;
  stroke-width: 1.8;
}

.newsletter-lead h2 {
  max-width: 360px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.1;
  font-weight: 800;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(180px, 1fr) auto;
  gap: 26px;
  align-items: end;
}

.newsletter-form label {
  display: grid;
  gap: 10px;
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
}

.newsletter-form input {
  min-height: 34px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  color: #fff;
  outline: 0;
  padding: 0 2px 8px;
  font: inherit;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.68);
}

.newsletter-submit {
  min-height: 50px;
  min-width: 96px;
  border: 1px solid #fff;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.newsletter-submit:hover {
  background: #fff;
  color: var(--condor-red);
  transform: translateY(-2px);
}

.site-footer {
  background: #fff;
  color: #8a8d93;
}

.footer-inner {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(640px, 1.35fr) minmax(300px, 0.65fr);
  align-items: center;
  gap: 60px;
}

.footer-brand img {
  width: 230px;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

.footer-main-copy {
  margin: 12px 0 0;
  max-width: 400px;
  color: #9a9da3;
  font-size: 0.86rem;
}

.footer-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.footer-brand-row a,
.footer-brand-row span {
  min-width: 120px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d9d9d9;
  color: #a0a0a0;
  background: #fff;
  filter: grayscale(1);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
  transition: color 0.18s ease, border-color 0.18s ease, filter 0.18s ease;
}

.footer-brand-row a:hover,
.footer-brand-row span:hover {
  border-color: var(--condor-red);
  color: var(--condor-red);
  filter: grayscale(0);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  color: var(--condor-red);
  font-size: 0.86rem;
  font-weight: 900;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-links a {
  color: var(--condor-red);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 0.18s ease, color 0.18s ease;
}

.social-links a:hover {
  color: var(--condor-dark-red);
  transform: translateY(-2px);
}

.footer-bottom {
  background: #f6f6f6;
}

.footer-bottom-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 52px;
  align-items: center;
  gap: 28px;
  color: #8f9298;
  font-size: 0.86rem;
}

.footer-company span {
  display: block;
  margin-bottom: 8px;
  color: #9a9da3;
  font-size: 0.74rem;
  font-weight: 900;
}

.footer-company strong {
  color: #777a80;
  font-size: 1.65rem;
  line-height: 1;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.footer-legal a {
  color: #8f9298;
  font-weight: 800;
}

.footer-legal a + a::before {
  content: "|";
  margin: 0 7px;
  color: #b4b6bb;
}

.footer-seal {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 3px solid #7f8288;
  color: #777a80;
  font-weight: 900;
}

.floating-quote {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.floating-quote svg {
  width: 1.55rem;
  height: 1.55rem;
}

/* Home page premium refinements */
.home-page .site-header {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.home-page .utility-bar {
  background: var(--red-dark);
  font-size: 0.72rem;
}

.home-page .utility-inner {
  min-height: 30px;
}

.home-page .main-nav {
  min-height: 72px;
}

.home-page .brand img {
  width: 220px;
  max-height: 72px;
}

.home-page .nav-links {
  gap: 20px;
}

.home-page .nav-quote.shop-link {
  min-height: 48px;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.home-page .hero {
  min-height: 540px;
  background: #0b1220;
}

.home-page .hero-image {
  object-position: 68% center;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 15, 28, 0.94) 0%, rgba(9, 15, 28, 0.82) 38%, rgba(9, 15, 28, 0.32) 68%, rgba(9, 15, 28, 0.06) 100%),
    linear-gradient(180deg, rgba(115, 0, 8, 0.16), rgba(9, 15, 28, 0.18));
}

.home-page .hero-content {
  padding: 64px 0 86px;
}

.home-page .hero .eyebrow {
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(237, 28, 36, 0.88);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.home-page .hero h1,
.home-page .hero h2 {
  max-width: 720px;
  font-size: clamp(2.15rem, 3vw, 3.15rem);
  line-height: 1.04;
}

.home-page .hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.home-page .hero-actions {
  margin-top: 26px;
}

.home-page .button {
  min-height: 50px;
  border-radius: 8px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.home-page .button.primary {
  background: var(--red);
  box-shadow: 0 14px 28px rgba(237, 28, 36, 0.28);
}

.home-page .button.whatsapp {
  background: var(--green-wa);
  box-shadow: 0 14px 28px rgba(32, 177, 90, 0.24);
}

.home-page .button:hover,
.home-page .button:focus-visible {
  transform: translateY(-2px);
}

.home-page .button.primary:hover,
.home-page .button.primary:focus-visible {
  background: var(--red-dark);
}

.home-page .button.whatsapp:hover,
.home-page .button.whatsapp:focus-visible {
  background: #17944c;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-proof span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.9);
  padding: 0 13px;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.home-page .product-family-section {
  padding: 34px 0 58px;
  background: #fff;
}

.home-page .family-grid {
  gap: 18px;
}

.home-page .family-card,
.home-page .category-card.family-card {
  min-height: 238px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-lg);
  padding: 18px 16px 20px;
  box-shadow: var(--shadow-soft);
}

.home-page .family-card .family-product {
  top: 18px;
  height: 134px;
  width: 80%;
}

.home-page .family-card strong {
  max-width: 180px;
  font-size: 1.18rem;
  line-height: 1.12;
}

.home-page .family-lubricantes,
.home-page .category-card.family-lubricantes {
  background: linear-gradient(145deg, #ed1c24 0%, #b4000c 100%);
}

.home-page .family-pesado,
.home-page .category-card.family-pesado {
  background: linear-gradient(145deg, #b4000c 0%, #730008 100%);
}

.home-page .family-filtro,
.home-page .category-card.family-filtro {
  background: linear-gradient(145deg, #0f7f91 0%, #0b4f5c 100%);
}

.home-page .family-frenos,
.home-page .category-card.family-frenos {
  background: linear-gradient(145deg, #263e8f 0%, #152656 100%);
}

.home-page .family-amortiguadores,
.home-page .category-card.family-amortiguadores {
  background: linear-gradient(145deg, #6a2c91 0%, #3d1d5c 100%);
}

.home-page .family-bujias,
.home-page .category-card.family-bujias {
  background: linear-gradient(145deg, #a7ce27 0%, #5d7c15 100%);
}

.home-page .brand-marquee {
  background: #f8fafc;
  padding: 12px 0;
}

.home-page .brand-marquee-inner {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.home-page .marquee-track {
  min-height: 50px;
  gap: 34px;
}

.home-page .marquee-track span {
  color: #111827;
  font-size: 0.84rem;
}

.home-page .marquee-track span::after {
  width: 1px;
  height: 18px;
  margin-left: 34px;
  border-radius: 0;
  background: #d8dee8;
}

.home-page .product-showcase-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.home-page .product-showcase-layout {
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 38px;
}

.home-page .showcase-copy h2 {
  max-width: 440px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
}

.home-page .showcase-copy p {
  color: var(--muted);
}

.home-page .showcase-filter {
  border-color: var(--line);
  border-radius: 999px;
  color: #334155;
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-page .showcase-filter:nth-child(3n),
.home-page .showcase-filter:nth-child(4n) {
  color: #334155;
}

.home-page .showcase-filter:hover,
.home-page .showcase-filter:focus-visible {
  border-color: rgba(237, 28, 36, 0.35);
  color: var(--red-dark);
  transform: translateY(-1px);
}

.home-page .showcase-filter.active {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.home-page .showcase-card {
  min-height: 410px;
  border-color: var(--line);
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-page .showcase-card:hover {
  border-color: rgba(237, 28, 36, 0.28);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
  transform: translateY(-4px);
}

.home-page .showcase-card .product-visual {
  height: 150px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.home-page .showcase-card .product-visual.has-image {
  height: 172px;
}

.home-page .showcase-card .product-mark {
  width: max-content;
  margin-top: 16px;
  background: #fff1f2;
  color: var(--red-dark);
}

.home-page .showcase-card h3 {
  color: var(--ink);
  font-size: 1.08rem;
}

.home-page .showcase-card .add-quote,
.home-page .add-quote {
  min-height: 44px;
  border-radius: 8px;
  background: var(--red-dark);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-page .showcase-card .add-quote:hover,
.home-page .showcase-card .add-quote:focus-visible,
.home-page .add-quote:hover,
.home-page .add-quote:focus-visible {
  background: var(--red);
  transform: translateY(-1px);
}

.home-page .showcase-card .add-quote.added,
.home-page .add-quote.added {
  background: var(--green-wa);
}

.home-page .showcase-arrow {
  border-color: var(--line);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-page .showcase-arrow:hover,
.home-page .showcase-arrow:focus-visible {
  background: var(--red);
  color: #fff;
  transform: translateY(-1px);
}

.home-page .intro-band {
  padding: 72px 0;
  background: #fff;
}

.home-page .company-layout {
  gap: 44px;
}

.home-page .company-layout h2 {
  max-width: 660px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
}

.home-page .service-mini {
  min-height: 142px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.05);
}

.home-page .company-image-card {
  min-height: 380px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}

.home-page .company-image-card img {
  min-height: 380px;
}

.home-page .company-image-card > div {
  border-radius: 14px;
}

.home-page .stats-section {
  padding: 32px 0;
  background: linear-gradient(135deg, var(--red-deep), var(--red-dark));
}

.home-page .stats-grid {
  gap: 12px;
  border: 0;
  background: transparent;
}

.home-page .stat {
  min-height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
}

.home-page .stat strong {
  font-size: clamp(1.8rem, 2.4vw, 2.25rem);
  animation: none;
}

.home-page .stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.home-page .bottom-cta {
  min-height: 174px;
  background: var(--red);
}

.home-page .bottom-cta-inner {
  gap: 44px;
}

.home-page .newsletter-lead h2 {
  max-width: 420px;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
}

.home-page .newsletter-form {
  gap: 20px;
}

.home-page .newsletter-form input {
  min-height: 42px;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

.home-page .newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.72);
}

.home-page .newsletter-submit {
  min-width: 108px;
  border-radius: 4px;
  text-transform: uppercase;
}

.home-page .site-footer {
  color: #6b7280;
}

.home-page .footer-inner {
  min-height: 168px;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
}

.home-page .footer-brand img {
  width: 230px;
  max-height: 90px;
}

.home-page .footer-main-copy {
  max-width: 520px;
  color: #6b7280;
}

.home-page .footer-brand-row {
  margin-top: 20px;
}

.home-page .footer-brand-row a,
.home-page .footer-brand-row span {
  min-width: 106px;
  min-height: 40px;
  border-radius: 4px;
  background: #f8fafc;
  font-size: 0.85rem;
}

.home-page .footer-bottom-inner {
  min-height: 92px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

@keyframes statPulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }
}

@media (max-width: 1080px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 38px 0;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-bottom-inner {
    grid-template-columns: 220px 1fr 52px;
  }

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

  .category-grid,
  .family-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .product-showcase-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 28px;
  }

  .showcase-card {
    flex-basis: calc((100% - 18px) / 2);
  }

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

  .brand-page-layout {
    grid-template-columns: 1fr;
  }

  .brand-page-menu {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .brand-page-menu a {
    min-height: 52px;
    justify-content: center;
    padding: 0 10px;
    font-size: 0.88rem;
    text-align: center;
  }

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

  .brand-index-grid,
  .b2b-grid,
  .company-card-grid,
  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-text-layout,
  .company-value-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

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

  .brand-detail-aside {
    position: static;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .brand-detail-aside a {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 860px) {
  .main-nav {
    min-height: 74px;
  }

  .brand img {
    width: 190px;
    max-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 12px;
  }

  .nav-dropdown-menu {
    position: static;
    display: none;
    min-width: 0;
    margin: 0 0 6px;
    padding: 6px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
  }

  .nav-quote {
    margin-top: 6px;
  }

  .hero {
    min-height: 450px;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.62));
  }

  .quick-tools-inner {
    grid-template-columns: 1fr;
    padding: 16px 0;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
  }

  .hero-arrow.prev {
    left: 14px;
  }

  .hero-arrow.next {
    right: 14px;
  }

  .tool-link {
    justify-content: flex-start;
  }

  .two-column,
  .company-layout,
  .company-text-layout,
  .company-value-layout,
  .product-showcase-layout,
  .distributor-layout,
  .quote-layout,
  .section-heading {
    grid-template-columns: 1fr;
    display: grid;
    gap: 22px;
    align-items: start;
  }

  .stats-grid,
  .brand-grid,
  .product-grid,
  .solutions-grid,
  .trust-grid,
  .company-card-grid,
  .commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .brand-panel {
    min-height: 280px;
  }

  .brand-page-hero {
    grid-template-columns: 1fr;
  }

  .brand-page-hero img {
    min-height: 260px;
  }

  .brand-page-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    min-height: 330px;
  }

  .page-hero.catalog-router {
    min-height: 250px;
  }

  .catalog-router-section {
    padding: 38px 0 46px;
  }

  .catalog-router-grid {
    grid-template-columns: 1fr;
  }

  .catalog-router-card {
    min-height: auto;
    padding: 24px;
  }

  .catalog-route-logo-panel {
    min-height: 88px;
    padding: 16px;
  }

  .market-logo-panel {
    min-height: 74px;
  }

  .catalog-route-logo {
    max-height: 70px;
  }

  .market-logo {
    max-height: 65px;
  }

  .catalog-router-card h2 {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
  }

  .catalog-market-preview img {
    max-height: 360px;
  }

  .page-hero.company {
    min-height: 430px;
  }

  .page-hero.nishimoto {
    background:
      linear-gradient(105deg, rgba(9, 39, 68, 0.96), rgba(21, 92, 165, 0.82)),
      #092744;
  }

  .showcase-copy p {
    max-width: none;
  }

  .company-image-card,
  .company-image-card img {
    min-height: 320px;
  }

  .campaign-slider,
  .campaign-slide img {
    min-height: 390px;
  }

  .campaign-copy {
    left: 24px;
    right: 24px;
    bottom: 24px;
    width: auto;
  }

  .catalog-controls {
    width: 100%;
    flex-direction: column;
  }

  .catalog-controls select {
    width: 100%;
  }

  .bottom-cta-inner,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    gap: 18px;
  }
}

@media (max-width: 620px) {
  .utility-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    min-height: 470px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    padding: 42px 0 70px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .button {
    width: 100%;
  }

  .stats-grid,
  .brand-grid,
  .product-grid,
  .category-grid,
  .service-mini-grid,
  .brand-showcase,
  .solutions-grid,
  .trust-grid,
  .company-card-grid,
  .commitment-grid {
    grid-template-columns: 1fr;
  }

  .page-hero.company {
    min-height: 500px;
  }

  .company-info-card,
  .commitment-card,
  .benefits-panel {
    padding: 22px;
  }

  .brand-page-menu {
    grid-template-columns: 1fr;
  }

  .brand-page-hero > div {
    padding: 28px;
  }

  .brand-product-strip img {
    height: 150px;
  }

  .contact-banner {
    min-height: 190px;
    background:
      linear-gradient(90deg, rgba(170, 9, 16, 0.96), rgba(216, 15, 22, 0.92)),
      url("assets/damasa-mark.png") right -80px center / 280px no-repeat,
      var(--red);
  }

  .contact-content {
    padding: 42px 0 58px;
  }

  .contact-profile-grid {
    grid-template-columns: 1fr;
  }

  .contact-profile {
    min-height: 180px;
  }

  .contact-info-card {
    grid-template-columns: 1fr;
  }

  .brand-index-grid,
  .b2b-grid,
  .brand-detail-aside {
    grid-template-columns: 1fr;
  }

  .brand-index-grid .brand-panel {
    min-height: 230px;
  }

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

  .family-card {
    min-height: 190px;
  }

  .family-card strong {
    font-size: 1.12rem;
  }

  .hero-dots {
    bottom: 18px;
  }

  .hero-dot {
    width: 30px;
  }

  .hero-arrow {
    display: none;
  }

  .showcase-card {
    flex-basis: 100%;
    min-height: 360px;
  }

  .showcase-controls {
    grid-template-columns: 40px 1fr 40px;
  }

  .brand-panel {
    min-height: 230px;
  }

  .marquee-track {
    min-height: 40px;
    animation-duration: 20s;
  }

  .campaign-dots {
    align-self: start;
  }

  .campaign-slider,
  .campaign-slide img {
    min-height: 430px;
  }

  .campaign-copy h3 {
    font-size: 1.7rem;
  }

  .solution-card {
    min-height: 210px;
  }

  .stat {
    min-height: 96px;
  }

  .brand-card,
  .product-card {
    min-height: auto;
  }

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

  .remove-quote {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .bottom-cta {
    padding: 44px 0;
  }

  .newsletter-lead {
    grid-template-columns: 44px 1fr;
    gap: 16px;
  }

  .newsletter-lead svg {
    width: 44px;
    height: 44px;
  }

  .footer-brand-row a,
  .footer-brand-row span {
    width: 100%;
    min-width: 0;
  }

  .footer-social {
    display: grid;
    justify-items: start;
    gap: 16px;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 28px 0;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .footer-seal {
    justify-self: start;
  }

  .floating-quote {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 1080px) {
  .home-page .product-showcase-layout {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  }

  .home-page .family-card,
  .home-page .category-card.family-card {
    min-height: 224px;
  }

  .home-page .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .home-page .utility-inner {
    min-height: 32px;
  }

  .home-page .main-nav {
    min-height: 70px;
  }

  .home-page .brand img {
    width: 190px;
    max-height: 70px;
  }

  .home-page .nav-links {
    gap: 0;
  }

  .home-page .nav-quote.shop-link {
    justify-content: flex-start;
    width: 100%;
    min-height: 50px;
    margin-top: 8px;
  }

  .home-page .hero {
    min-height: 500px;
  }

  .home-page .hero-overlay {
    background:
      linear-gradient(90deg, rgba(9, 15, 28, 0.95), rgba(9, 15, 28, 0.68)),
      linear-gradient(180deg, rgba(115, 0, 8, 0.14), rgba(9, 15, 28, 0.22));
  }

  .home-page .hero-content {
    padding: 50px 0 82px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    max-width: 680px;
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }

  .home-page .product-showcase-layout,
  .home-page .company-layout {
    grid-template-columns: 1fr;
  }

  .home-page .service-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-page .bottom-cta-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 36px 0;
  }
}

@media (max-width: 620px) {
  .home-page .utility-inner {
    min-height: 34px;
    padding: 4px 0;
  }

  .home-page .utility-inner a {
    display: none;
  }

  .home-page .brand img {
    width: 170px;
    max-height: 64px;
  }

  .home-page .hero {
    min-height: 500px;
  }

  .home-page .hero-image {
    object-position: 68% center;
  }

  .home-page .hero-content {
    padding: 38px 0 72px;
  }

  .home-page .hero .eyebrow {
    max-width: 100%;
    font-size: 0.66rem;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    font-size: clamp(1.85rem, 8vw, 2.2rem);
    line-height: 1.02;
  }

  .home-page .hero-copy {
    font-size: 0.98rem;
  }

  .hero-proof {
    gap: 8px;
    margin-top: 12px;
  }

  .hero-proof span {
    min-height: 32px;
    font-size: 0.78rem;
  }

  .home-page .product-family-section {
    padding: 26px 0 44px;
  }

  .home-page .family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-page .family-card,
  .home-page .category-card.family-card {
    min-height: 184px;
    padding: 14px;
  }

  .home-page .family-card .family-product {
    top: 15px;
    height: 100px;
  }

  .home-page .family-card strong {
    font-size: 0.98rem;
  }

  .home-page .brand-marquee {
    padding: 8px 0;
  }

  .home-page .marquee-track {
    min-height: 42px;
    gap: 24px;
  }

  .home-page .marquee-track span::after {
    margin-left: 24px;
  }

  .home-page .product-showcase-section,
  .home-page .intro-band {
    padding: 48px 0;
  }

  .home-page .showcase-card {
    min-height: 370px;
  }

  .home-page .service-mini-grid {
    grid-template-columns: 1fr;
  }

  .home-page .company-image-card,
  .home-page .company-image-card img {
    min-height: 300px;
  }

  .home-page .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .home-page .stat {
    min-height: 92px;
    padding: 16px;
  }

  .home-page .newsletter-lead {
    grid-template-columns: 42px 1fr;
  }

  .home-page .newsletter-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-page .newsletter-submit {
    width: 100%;
  }

  .home-page .footer-inner {
    min-height: 0;
    padding: 34px 0;
  }

  .home-page .footer-bottom-inner {
    min-height: 0;
  }
}

/* Bettanin-inspired DAMASA home direction: cleaner, lighter, visibly different. */
.home-page .site-header {
  border-bottom: 0;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.home-page .utility-bar {
  background: #b6000b;
}

.home-page .main-nav {
  min-height: 74px;
  background: #fff;
}

.home-page .nav-links {
  color: #242b38;
  font-size: 0.88rem;
}

.home-page .nav-links > a,
.home-page .nav-dropdown-toggle {
  min-height: 42px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-page .nav-links > a:hover,
.home-page .nav-dropdown-toggle:hover {
  color: #ed1c24;
  border-color: #ed1c24;
}

.home-page .nav-quote.shop-link {
  min-width: 176px;
  min-height: 50px;
  border: 2px solid #ed1c24;
  color: #ed1c24;
  font-weight: 900;
}

.home-page .nav-quote.shop-link:hover {
  background: #ed1c24;
  color: #fff;
}

.home-page .nav-quote.shop-link:hover b,
.home-page .nav-quote.shop-link:hover small {
  color: #fff;
}

.home-page .hero {
  min-height: 610px;
  align-items: stretch;
  background:
    linear-gradient(90deg, #fff 0%, #fff 52%, #f4f6f9 52%, #eef2f7 100%);
  border-bottom: 1px solid #eef2f7;
}

.home-page .hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 6px;
  background: #ed1c24;
}

.home-page .hero-slide {
  align-items: center;
}

.home-page .hero-image {
  inset: 0 0 0 auto;
  width: min(54vw, 880px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 120px;
  box-shadow: -24px 0 50px rgba(15, 23, 42, 0.13);
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, #fff 0%, #fff 46%, rgba(255, 255, 255, 0.88) 56%, rgba(255, 255, 255, 0.25) 75%, rgba(237, 28, 36, 0.2) 100%),
    radial-gradient(circle at 91% 22%, rgba(237, 28, 36, 0.52) 0 18%, transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(237, 28, 36, 0.08));
}

.home-page .hero-content {
  display: grid;
  align-content: center;
  min-height: 610px;
  color: #111827;
  padding: 56px 0 68px;
}

.home-page .hero .eyebrow {
  width: fit-content;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ed1c24;
  padding: 0 0 0 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  position: relative;
}

.home-page .hero .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 22px;
  border-radius: 999px;
  background: #ed1c24;
  transform: translateY(-50%);
}

.home-page .hero h1,
.home-page .hero h2 {
  max-width: 650px;
  color: #111827;
  font-size: clamp(2.45rem, 3.45vw, 4rem);
  line-height: 1;
  font-weight: 900;
}

.home-page .hero-copy {
  max-width: 610px;
  color: #4b5563;
  font-size: clamp(1rem, 1.15vw, 1.14rem);
}

.home-page .hero-actions {
  margin-top: 24px;
}

.home-page .button.primary {
  background: #ed1c24;
  box-shadow: 0 18px 32px rgba(237, 28, 36, 0.22);
}

.home-page .button.whatsapp {
  background: #20b15a;
}

.home-page .hero-proof span {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.hero-catalog-strip {
  width: min(650px, 100%);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.hero-catalog-strip a {
  min-height: 84px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border-right: 1px solid #e5e7eb;
  transition: background 0.2s ease, color 0.2s ease;
}

.hero-catalog-strip a:last-child {
  border-right: 0;
}

.hero-catalog-strip strong,
.hero-catalog-strip span {
  display: block;
}

.hero-catalog-strip strong {
  color: #111827;
  font-size: 0.95rem;
  line-height: 1.15;
}

.hero-catalog-strip span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.25;
}

.hero-catalog-strip a:hover {
  background: #ed1c24;
}

.hero-catalog-strip a:hover strong,
.hero-catalog-strip a:hover span {
  color: #fff;
}

.home-page .hero-arrow {
  border: 1px solid #e5e7eb;
  background: rgba(255, 255, 255, 0.88);
  color: #ed1c24;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.13);
}

.home-page .hero-arrow:hover {
  background: #ed1c24;
  color: #fff;
}

.home-page .hero-dot {
  background: #d7dce5;
}

.home-page .hero-dot.active {
  background: #ed1c24;
}

.home-page .product-family-section {
  padding: 42px 0 68px;
  background: #fff;
}

.home-page .family-card,
.home-page .category-card.family-card {
  min-height: 270px;
  border-radius: 0;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.home-page .family-card .family-product {
  top: 24px;
  height: 158px;
}

.home-page .family-card strong {
  font-size: 1.32rem;
}

.home-page .brand-marquee {
  padding: 22px 0;
  background: #f6f6f6;
}

.home-page .brand-marquee-inner {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.home-page .marquee-track span {
  color: #222;
  font-size: 0.95rem;
}

.home-page .bottom-cta {
  background: #ed1c24;
}

.home-page .site-footer {
  border-top: 1px solid #eee;
}

@media (max-width: 1080px) {
  .home-page .hero {
    min-height: 570px;
  }

  .home-page .hero-content {
    min-height: 570px;
  }

  .home-page .hero-image {
    width: 50vw;
  }

  .hero-catalog-strip {
    grid-template-columns: 1fr;
    width: min(440px, 100%);
  }

  .hero-catalog-strip a {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .hero-catalog-strip a:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 860px) {
  .home-page .hero {
    min-height: 620px;
    background: #fff;
  }

  .home-page .hero-slide {
    min-height: 620px;
  }

  .home-page .hero-image {
    inset: auto 0 0 0;
    width: 100%;
    height: 44%;
    border-radius: 56px 0 0 0;
    opacity: 0.95;
  }

  .home-page .hero-overlay {
    background:
      linear-gradient(180deg, #fff 0%, #fff 54%, rgba(255, 255, 255, 0.88) 66%, rgba(237, 28, 36, 0.1) 100%);
  }

  .home-page .hero-content {
    align-content: start;
    min-height: 620px;
    padding: 34px 0 42px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    max-width: 100%;
    font-size: clamp(2rem, 7vw, 3.1rem);
  }

  .home-page .hero-copy {
    max-width: 100%;
  }

  .home-page .hero-catalog-strip {
    display: none;
  }

  .home-page .hero-proof {
    max-width: 100%;
  }

  .home-page .hero-arrow {
    display: none;
  }
}

@media (max-width: 620px) {
  .home-page .hero {
    min-height: 620px;
  }

  .home-page .hero-slide {
    min-height: 620px;
  }

  .home-page .hero-content {
    min-height: 620px;
    padding: 30px 0 38px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
    line-height: 1.02;
  }

  .home-page .hero-copy {
    font-size: 0.96rem;
  }

  .home-page .hero-actions {
    gap: 10px;
  }

  .home-page .hero-proof {
    margin-top: 12px;
  }

  .home-page .hero-proof span {
    min-height: 30px;
    font-size: 0.74rem;
  }

  .home-page .family-card,
  .home-page .category-card.family-card {
    min-height: 205px;
  }

  .home-page .family-card .family-product {
    height: 110px;
  }
}

/* Bettanin-style final home skin: header, campaign hero, categories, newsletter and footer. */
.home-page .utility-bar {
  display: none;
}

.home-page .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
}

.home-page .main-nav {
  width: 100%;
  min-height: 90px;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(170px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 clamp(20px, 4vw, 58px);
  background: #fff;
}

.home-page .brand {
  grid-column: 2;
  justify-self: center;
}

.home-page .brand img {
  width: 230px;
  max-height: 78px;
}

.home-page .nav-toggle {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: inline-flex;
  width: 56px;
  height: 56px;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ed1c24;
  padding: 0;
}

.home-page .nav-toggle svg {
  width: 38px;
  height: 38px;
  stroke-width: 1.7;
}

.home-page .nav-toggle span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.home-page .nav-search-link {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  margin-left: 70px;
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  color: #ed1c24;
}

.home-page .nav-search-link svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.8;
}

.home-page .nav-quote.shop-link {
  grid-column: 3;
  justify-self: end;
  min-width: 150px;
  min-height: 52px;
  border: 1px solid #ed1c24;
  border-radius: 0;
  background: #fff;
  color: #ed1c24;
  box-shadow: none;
  padding: 0 16px;
}

.home-page .nav-quote.shop-link svg {
  width: 24px;
  height: 24px;
}

.home-page .nav-quote.shop-link b {
  font-size: 0.74rem;
}

.home-page .nav-quote.shop-link small {
  font-size: 0.62rem;
}

.home-page .nav-quote.shop-link:hover {
  background: #ed1c24;
}

.home-page .nav-links {
  position: absolute;
  top: 100%;
  left: clamp(20px, 4vw, 58px);
  z-index: 60;
  width: min(360px, calc(100vw - 40px));
  display: none;
  align-items: stretch;
  flex-direction: column;
  gap: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
  padding: 20px 0;
}

.home-page .nav-links.open {
  display: flex;
}

.home-page .nav-links > a,
.home-page .nav-dropdown-toggle {
  min-height: 58px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  color: #2d3442;
  padding: 0 34px;
  font-size: 1.22rem;
  font-weight: 900;
}

.home-page .nav-links > a:hover,
.home-page .nav-dropdown-toggle:hover {
  color: #ed1c24;
}

.home-page .nav-dropdown {
  width: 100%;
}

.home-page .nav-dropdown-menu {
  position: static;
  display: none;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: #f5f5f5;
  box-shadow: none;
  padding: 8px 0;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.home-page .nav-dropdown.open .nav-dropdown-menu,
.home-page .nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.home-page .nav-dropdown-menu a {
  min-height: 44px;
  border-radius: 0;
  color: #555;
  padding: 0 44px;
  font-size: 0.98rem;
}

.home-page .nav-dropdown-menu a:hover {
  background: #ed1c24;
  color: #fff;
}

.home-page .hero {
  min-height: 560px;
  display: block;
  overflow: hidden;
  background: #f2f2f2;
  border-bottom: 0;
}

.home-page .hero::before {
  display: none;
}

.home-page .hero-slide {
  min-height: 560px;
  align-items: stretch;
}

.home-page .hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(255, 255, 255, 0.02) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.1));
}

.home-page .hero-content {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  padding: 54px 0 74px;
}

.home-page .hero .eyebrow {
  width: fit-content;
  margin: 0 0 18px;
  border: 0;
  background: #ed1c24;
  color: #fff;
  padding: 8px 14px;
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.home-page .hero .eyebrow::before {
  display: none;
}

.home-page .hero h1,
.home-page .hero h2 {
  max-width: 920px;
  color: #fff;
  font-size: clamp(3rem, 4.6vw, 5rem);
  line-height: 0.9;
  font-weight: 900;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.home-page .hero h1 span {
  display: block;
  width: fit-content;
  margin: 0.05em 0;
  background: rgba(159, 0, 75, 0.92);
  padding: 0 0.12em 0.06em;
  color: #fff;
}

.home-page .hero h1::first-line,
.home-page .hero h2::first-line {
  background: rgba(159, 0, 11, 0.92);
}

.home-page .hero-copy {
  max-width: 660px;
  margin-top: 22px;
  color: #fff;
  font-size: clamp(1.12rem, 1.55vw, 1.55rem);
  line-height: 1.2;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.42);
}

.home-page .hero-actions,
.home-page .hero-proof,
.home-page .hero-catalog-strip {
  display: none;
}

.home-page .hero-arrow {
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}

.home-page .hero-arrow:hover {
  background: #ed1c24;
  border-color: #ed1c24;
}

.home-page .hero-dots {
  bottom: 28px;
}

.home-page .hero-dot {
  width: 46px;
  height: 6px;
  background: rgba(255, 255, 255, 0.76);
}

.home-page .hero-dot.active {
  background: #ed1c24;
}

.home-page .product-family-section {
  padding: 88px 0 76px;
  background: #fff;
}

.bettanin-section-title {
  margin-bottom: 34px;
  text-align: center;
}

.bettanin-section-title h2 {
  color: #666a72;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}

.bettanin-section-title strong {
  color: #555a63;
  font-weight: 900;
}

.home-page .family-grid {
  gap: 24px;
}

.home-page .family-card,
.home-page .category-card.family-card {
  min-height: 252px;
  border: 0;
  border-radius: 8px;
  padding: 20px 20px 24px;
  box-shadow: none;
}

.home-page .family-card .family-product {
  top: 18px;
  height: 150px;
}

.home-page .family-card strong {
  font-size: 1.22rem;
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

.home-page .brand-marquee {
  padding: 54px 0;
  background: #fff;
}

.home-page .brand-marquee::before {
  content: "nuestras marcas";
  display: block;
  margin: 0 auto 28px;
  color: #6b6f77;
  text-align: center;
  font-size: clamp(1.8rem, 2.8vw, 2.8rem);
  font-weight: 400;
}

.home-page .brand-marquee-inner {
  width: min(980px, calc(100% - 32px));
  border: 0;
  background: transparent;
}

.home-page .marquee-track {
  min-height: 54px;
  gap: 30px;
  animation-duration: 32s;
}

.home-page .marquee-track span {
  color: #111;
  font-size: 1.02rem;
  font-weight: 900;
}

.home-page .product-showcase-section {
  padding: 70px 0 82px;
  background: #f8f8f8;
  border-top: 0;
}

.home-page .intro-band {
  padding: 76px 0;
  background: #fff;
}

.home-page .stats-section {
  padding: 34px 0;
  background: #b6000b;
}

.home-page .bottom-cta {
  min-height: 190px;
  background: #ed1c24;
}

.home-page .bottom-cta-inner {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.45fr);
}

.home-page .newsletter-lead h2 {
  color: #fff;
  font-weight: 700;
  text-transform: none;
}

.home-page .newsletter-form input {
  border-bottom: 1px solid rgba(255, 255, 255, 0.86);
}

.home-page .newsletter-submit {
  border-radius: 0;
  border: 1px solid #fff;
}

.home-page .site-footer {
  background: #fff;
  color: #8c8f96;
  border-top: 0;
}

.home-page .footer-inner {
  min-height: 220px;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 70px;
  align-items: center;
}

.home-page .footer-brand img {
  width: 270px;
  max-height: 106px;
}

.home-page .footer-main-copy {
  max-width: 560px;
  color: #777b84;
}

.home-page .footer-brand-row {
  gap: 8px;
}

.home-page .footer-brand-row a,
.home-page .footer-brand-row span {
  min-width: 116px;
  min-height: 42px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  background: #fff;
  color: #a0a0a0;
  filter: grayscale(1);
}

.home-page .footer-social {
  justify-content: flex-end;
  color: #ed1c24;
}

.home-page .footer-bottom {
  background: #f5f5f5;
}

.home-page .footer-bottom-inner {
  min-height: 108px;
}

@media (max-width: 1080px) {
  .home-page .main-nav {
    grid-template-columns: minmax(104px, 1fr) auto minmax(150px, 1fr);
  }

  .home-page .brand img {
    width: 210px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    font-size: clamp(2.8rem, 6vw, 5rem);
  }

  .home-page .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-page .footer-social {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .home-page .main-nav {
    min-height: 82px;
    grid-template-columns: 88px 1fr 126px;
    gap: 10px;
    padding: 0 16px;
  }

  .home-page .brand img {
    width: min(176px, 42vw);
    max-height: 62px;
  }

  .home-page .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .home-page .nav-toggle svg {
    width: 32px;
    height: 32px;
  }

  .home-page .nav-search-link {
    display: none;
  }

  .home-page .nav-quote.shop-link {
    min-width: 0;
    width: 112px;
    min-height: 44px;
    padding: 0 8px;
    gap: 6px;
  }

  .home-page .nav-quote.shop-link svg {
    width: 19px;
    height: 19px;
  }

  .home-page .nav-quote.shop-link b {
    font-size: 0.6rem;
  }

  .home-page .nav-quote.shop-link small {
    font-size: 0.52rem;
  }

  .home-page .nav-links {
    left: 16px;
  }

  .home-page .hero,
  .home-page .hero-slide,
  .home-page .hero-content {
    min-height: 560px;
  }

  .home-page .hero-content {
    justify-content: flex-start;
    padding: 52px 0 70px;
  }

  .home-page .hero-image {
    object-position: 66% center;
  }

  .home-page .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.14)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.08));
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    max-width: 92%;
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .home-page .hero-copy {
    max-width: 92%;
    font-size: 1.05rem;
  }

  .home-page .product-family-section {
    padding: 54px 0 48px;
  }

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

  .home-page .family-card,
  .home-page .category-card.family-card {
    min-height: 188px;
  }

  .home-page .family-card .family-product {
    height: 105px;
  }

  .home-page .bottom-cta-inner,
  .home-page .newsletter-form {
    grid-template-columns: 1fr;
  }

  .home-page .footer-inner {
    padding: 38px 0;
  }

  .home-page .footer-brand img {
    width: 220px;
  }
}

/* Clean ordered DAMASA pass: calmer type, consistent cards, tighter layout. */
.home-page {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  color: #111827;
}

.home-page .main-nav {
  min-height: 86px;
}

.home-page .brand img {
  width: 235px;
  max-height: 76px;
}

.home-page .nav-toggle,
.home-page .nav-search-link {
  color: #ed1c24;
}

.home-page .nav-quote.shop-link {
  width: auto;
  min-width: 172px;
  min-height: 50px;
}

.home-page .hero,
.home-page .hero-slide,
.home-page .hero-content {
  min-height: 500px;
}

.home-page .hero {
  background: #111827;
}

.home-page .hero-image {
  object-position: center;
}

.home-page .hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 13, 24, 0.76) 0%, rgba(8, 13, 24, 0.56) 34%, rgba(8, 13, 24, 0.16) 65%, rgba(8, 13, 24, 0.08) 100%);
}

.home-page .hero-content {
  justify-content: center;
  padding: 54px 0 68px;
}

.home-page .hero .eyebrow {
  margin-bottom: 16px;
  background: #ed1c24;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 800;
  box-shadow: none;
}

.home-page .hero h1,
.home-page .hero h2 {
  max-width: 610px;
  font-size: clamp(2.8rem, 4.8vw, 4.8rem);
  line-height: 0.96;
  font-weight: 800;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
}

.home-page .hero h1 span,
.home-page .hero h2 span {
  display: block;
  width: fit-content;
  margin: 0.04em 0;
  background: rgba(159, 0, 11, 0.9);
  color: #fff;
  padding: 0.02em 0.13em 0.08em;
}

.home-page .hero h1::first-line,
.home-page .hero h2::first-line {
  background: transparent;
}

.home-page .hero-copy {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.05rem, 1.25vw, 1.28rem);
  line-height: 1.35;
  font-weight: 400;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.home-page .hero-dots {
  bottom: 22px;
}

.home-page .product-family-section {
  padding: 58px 0 52px;
  background: #fff;
}

.bettanin-section-title {
  margin-bottom: 28px;
}

.bettanin-section-title h2 {
  color: #5b6472;
  font-size: clamp(1.9rem, 2.5vw, 2.55rem);
  font-weight: 300;
  letter-spacing: 0;
}

.bettanin-section-title strong {
  color: #374151;
  font-weight: 700;
}

.home-page .family-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-page .family-card,
.home-page .category-card.family-card {
  min-height: 205px;
  border: 1px solid #e5e7eb;
  border-top: 5px solid #ed1c24;
  border-radius: 8px;
  background: #fff;
  color: #111827;
  padding: 16px 14px 18px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.home-page .family-card::before,
.home-page .family-card::after {
  display: none;
}

.home-page .family-card .family-product {
  position: relative;
  inset: auto;
  width: 100%;
  height: 112px;
  object-fit: contain;
  transform: none;
  filter: none;
  margin: 0 auto 14px;
}

.home-page .family-card:hover .family-product,
.home-page .family-card:active .family-product,
.home-page .family-card.active .family-product {
  transform: translateY(-4px);
  filter: none;
}

.home-page .family-card strong {
  color: #111827;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: none;
}

.home-page .family-pesado,
.home-page .category-card.family-pesado,
.home-page .family-filtro,
.home-page .category-card.family-filtro,
.home-page .family-frenos,
.home-page .category-card.family-frenos,
.home-page .family-amortiguadores,
.home-page .category-card.family-amortiguadores,
.home-page .family-bujias,
.home-page .category-card.family-bujias,
.home-page .family-iluminacion,
.home-page .category-card.family-iluminacion,
.home-page .family-lubricantes,
.home-page .category-card.family-lubricantes {
  background: #fff;
}

.home-page .family-filtro,
.home-page .category-card.family-filtro {
  border-top-color: #0f7f91;
}

.home-page .family-frenos,
.home-page .category-card.family-frenos {
  border-top-color: #263e8f;
}

.home-page .family-amortiguadores,
.home-page .category-card.family-amortiguadores {
  border-top-color: #6a2c91;
}

.home-page .family-bujias,
.home-page .category-card.family-bujias {
  border-top-color: #8caf18;
}

.home-page .family-iluminacion,
.home-page .category-card.family-iluminacion {
  border-top-color: #f4b000;
}

.home-page .brand-marquee {
  padding: 42px 0 46px;
  background: #fff;
}

.home-page .brand-marquee::before {
  margin-bottom: 20px;
  color: #5b6472;
  font-size: clamp(1.8rem, 2.3vw, 2.45rem);
  font-weight: 300;
}

.home-page .brand-marquee-inner {
  width: min(840px, calc(100% - 32px));
}

.home-page .marquee-track {
  min-height: 42px;
  gap: 26px;
}

.home-page .marquee-track span {
  color: #151515;
  font-size: 0.9rem;
  font-weight: 800;
}

.home-page .product-showcase-section {
  padding: 58px 0 64px;
  background: #f4f5f7;
}

.home-page .showcase-copy h2,
.home-page .company-layout h2 {
  color: #111827;
  font-size: clamp(2rem, 2.7vw, 2.85rem);
  line-height: 1.08;
  font-weight: 700;
}

.home-page .showcase-copy .eyebrow,
.home-page .company-layout .eyebrow {
  color: #607089;
  font-weight: 800;
}

.home-page .showcase-card {
  min-height: 390px;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.home-page .showcase-card h3 {
  font-size: 1rem;
  font-weight: 800;
}

.home-page .intro-band {
  padding: 54px 0 58px;
}

.home-page .service-mini {
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.home-page .stats-section {
  padding: 26px 0;
}

.home-page .stat {
  min-height: 88px;
  border-radius: 8px;
}

.home-page .stat strong {
  font-weight: 800;
}

.home-page .bottom-cta {
  min-height: 150px;
}

.home-page .newsletter-lead h2 {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.12;
}

.home-page .footer-inner {
  min-height: 170px;
}

.home-page .footer-brand img {
  width: 250px;
}

@media (max-width: 1080px) {
  .home-page .family-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-page .main-nav {
    min-height: 78px;
  }

  .home-page .brand img {
    width: min(170px, 42vw);
    max-height: 58px;
  }

  .home-page .nav-quote.shop-link {
    width: 108px;
    min-height: 42px;
  }

  .home-page .hero,
  .home-page .hero-slide,
  .home-page .hero-content {
    min-height: 500px;
  }

  .home-page .hero-content {
    padding: 42px 0 64px;
  }

  .home-page .hero h1,
  .home-page .hero h2 {
    max-width: 94%;
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .home-page .hero-copy {
    max-width: 94%;
    font-size: 0.98rem;
  }

  .home-page .product-family-section {
    padding: 42px 0 40px;
  }

  .home-page .family-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-page .family-card,
  .home-page .category-card.family-card {
    min-height: 172px;
  }

  .home-page .family-card .family-product {
    height: 88px;
  }

  .home-page .brand-marquee {
    padding: 34px 0;
  }

  .home-page .product-showcase-section,
  .home-page .intro-band {
    padding: 38px 0;
  }

  .home-page .stats-section {
    padding: 22px 0;
  }

  .home-page .bottom-cta {
    min-height: 0;
    padding: 34px 0;
  }

  .home-page .footer-inner {
    padding: 30px 0;
  }
}
