:root {
  --bg: #08090d;
  --surface: #12141b;
  --surface-2: #1a1d26;
  --ink: #f6f7fb;
  --muted: #a9afbd;
  --brand: #cf1235;
  --brand-dark: #970824;
  --accent: #ef3152;
  --line: rgba(255, 255, 255, 0.12);
  --soft: #f4f5f7;
  --soft-ink: #15171e;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar__content {
  min-height: 82px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
}
.brand__logo {
  width: 148px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.28));
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  font-size: 14px;
  color: #f2f3f7;
}
.navlinks a:not(.btn):hover {
  color: var(--accent);
}
.menu-toggle,
.menu-button {
  display: none;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 23px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 16px 36px rgba(215, 25, 32, 0.28);
  cursor: pointer;
  font: inherit;
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow: none;
}
.btn--small {
  min-height: 40px;
  padding: 0 16px;
}
.btn--secondary {
  background: #2a2d35;
  box-shadow: none;
}
.text-link {
  color: var(--accent);
  font-weight: 850;
}
.hero-video {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
}
.hero-video__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08);
}
.hero-video__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 72% 35%,
      rgba(215, 25, 32, 0.33),
      transparent 32%
    ),
    linear-gradient(
      90deg,
      rgba(5, 5, 6, 0.94),
      rgba(5, 5, 6, 0.76) 48%,
      rgba(5, 5, 6, 0.24)
    );
}
.hero-video__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  padding: 100px 0;
}
.eyebrow {
  display: inline-flex;
  color: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  margin-bottom: 14px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(45px, 7.5vw, 88px);
  line-height: 0.94;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
}
h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.055em;
  margin-bottom: 18px;
}
h3 {
  font-size: 21px;
  line-height: 1.2;
  margin-bottom: 10px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.brand-carousel {
  padding: 28px 0;
  background: #0f1016;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.brand-carousel .container {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: scrollBrands 28s linear infinite;
}
.brand-logo {
  width: 190px;
  height: 104px;
  padding: 16px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: inset 0 0 0 1px rgba(215, 25, 32, 0.08);
}
.brand-logo img {
  max-width: 100%;
  max-height: 70px;
  object-fit: contain;
}
@keyframes scrollBrands {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}
.stats {
  padding: 44px 0 0;
}
.stats__grid {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
}
.stats__grid div {
  padding: 28px;
  border-right: 1px solid var(--line);
}
.stats__grid div:last-child {
  border-right: 0;
}
.stats__grid strong {
  display: block;
  font-size: 34px;
  color: var(--accent);
  line-height: 1;
}
.stats__grid span {
  color: var(--muted);
  font-weight: 800;
  font-size: 14px;
}
.section {
  padding: 100px 0;
}
.section--muted {
  background: #f0f1f4;
  color: var(--soft-ink);
}
.section--muted .eyebrow {
  color: var(--brand);
}
.section--dark {
  background:
    radial-gradient(
      circle at top left,
      rgba(215, 25, 32, 0.24),
      transparent 28%
    ),
    linear-gradient(135deg, #151720, #050506);
  color: #fff;
}
.section__head {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}
.section__head p,
.split p,
.services p,
.values-grid p {
  color: var(--muted);
}
.section__head--left {
  margin-left: 0;
  text-align: left;
}
.split__grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 58px;
  align-items: center;
}
.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.media-card img {
  width: 100%;
  height: clamp(300px, 36vw, 400px);
  object-fit: cover;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.values-grid article {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.values-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.services article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.services article span {
  color: var(--accent);
  font-weight: 950;
  font-size: 14px;
}
.contact-hero,
.catalog-hero {
  padding: 120px 0 92px;
  background:
    radial-gradient(
      circle at 75% 20%,
      rgba(215, 25, 32, 0.35),
      transparent 28%
    ),
    linear-gradient(135deg, #11131a, #050506);
}
.contact-hero p,
.catalog-hero p {
  color: var(--muted);
  max-width: 760px;
  font-size: 19px;
}
.contact-page {
  background: var(--bg);
}
.contact__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}
.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-info-card p {
  color: var(--muted);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  color: #dfe2e8;
  display: grid;
  gap: 12px;
}
.form {
  background: #fff;
  color: var(--soft-ink);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}
.form label,
.catalog-filters label {
  display: grid;
  gap: 8px;
  font-weight: 850;
  font-size: 14px;
}
.form input,
.form textarea,
.form select,
.catalog-filters input,
.catalog-filters select {
  width: 100%;
  border: 1px solid #d7dae2;
  border-radius: 15px;
  padding: 14px 15px;
  font: inherit;
  outline: none;
  background: #fafafa;
}
.form textarea {
  min-height: 140px;
  resize: vertical;
}
.form input:focus,
.form textarea:focus,
.form select:focus,
.catalog-filters input:focus,
.catalog-filters select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
}
.alert {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 750;
}
.alert--error {
  background: #fff0f0;
  color: #9f1117;
  border: 1px solid #f0b6b8;
}
.whatsapp-contact {
  padding-top: 80px;
}
.whatsapp-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.whatsapp-card {
  background: #fff;
  color: var(--soft-ink);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 8px;
}
.whatsapp-card strong {
  font-size: 22px;
  color: #075e54;
}
.whatsapp-card span {
  color: #5c6270;
}
.whatsapp-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
}
.whatsapp-widget input {
  display: none;
}
.wa-bubble {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  border: 3px solid #fff;
}
.wa-bubble svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}
.wa-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 285px;
  background: #fff;
  color: var(--soft-ink);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.wa-panel strong {
  display: block;
  margin-bottom: 12px;
}
.wa-panel a {
  display: block;
  padding: 13px 14px;
  border-radius: 14px;
  background: #f1f8f5;
  color: #075e54;
  font-weight: 850;
  margin-top: 9px;
}
.whatsapp-widget input:checked ~ .wa-panel {
  display: block;
}
.catalog-section {
  background: #f4f5f7;
  color: var(--soft-ink);
}
.catalog-filters {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 14px;
  align-items: end;
}
.filter-actions {
  display: flex;
  gap: 10px;
  grid-column: 1/-1;
}
.filter-actions .btn {
  min-height: 44px;
}
.catalog-count {
  margin: 34px 0 18px;
  color: #626873;
  font-weight: 850;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.catalog-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e2e4e8;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.catalog-card__image {
  height: 260px;
  background: #eceef1;
  display: grid;
  place-items: center;
}
.catalog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px;
}
.image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 220px;
  background: linear-gradient(135deg, #e8eaee, #f8f9fa);
  color: #8b909a;
  font-weight: 900;
}
.image-placeholder--large {
  min-height: 520px;
}
.catalog-card__body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.catalog-card__body h2 {
  font-size: 25px;
  letter-spacing: -0.03em;
  margin: 10px 0 12px;
}
.catalog-card__body p {
  color: #626873;
  flex: 1;
}
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-meta span {
  padding: 6px 9px;
  border-radius: 999px;
  background: #f1f2f4;
  color: #555b65;
  font-size: 12px;
  font-weight: 850;
}
.catalog-card__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 38px;
}
.pagination a {
  font-weight: 850;
  color: var(--brand);
}
.empty-state {
  padding: 60px 30px;
  text-align: center;
  background: #fff;
  color: var(--soft-ink);
  border-radius: 22px;
}
.product-detail {
  background: #f4f5f7;
  color: var(--soft-ink);
}
.product-detail__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: 110px;
}
.product-gallery__main {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e2e4e8;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}
.product-gallery__main img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  padding: 22px;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.gallery-thumb {
  border: 2px solid transparent;
  border-radius: 14px;
  background: #fff;
  padding: 6px;
  cursor: pointer;
}
.gallery-thumb.is-active {
  border-color: var(--brand);
}
.gallery-thumb img {
  width: 100%;
  height: 74px;
  object-fit: contain;
}
.product-detail__content h1 {
  font-size: clamp(42px, 5vw, 68px);
  margin: 18px 0;
}
.product-lead {
  font-size: 19px;
  color: #60656e;
}
.product-meta--detail {
  margin-top: 24px;
}
.quote-main {
  margin: 10px 0 28px;
}
.detail-sections {
  display: grid;
  gap: 18px;
}
.detail-sections section {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e4e6e9;
}
.detail-sections h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.detail-sections p {
  color: #555b65;
  margin-bottom: 0;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-list span {
  background: #f1f2f4;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 13px;
}
.footer {
  background: #050506;
  color: #fff;
  border-top: 1px solid var(--line);
  padding: 38px 0;
}
.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer__identity {
  display: grid;
  gap: 8px;
}
.footer__logo {
  width: 160px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}
.footer p {
  color: var(--muted);
  margin: 0;
}
.footer__grid > div:last-child {
  display: flex;
  gap: 18px;
  font-weight: 800;
}
.cd-auto-hide-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition:
    transform 0.45s ease,
    opacity 0.35s;
  transform: translateY(-100%);
  opacity: 0;
}
.cd-auto-hide-header.is-visible {
  transform: translateY(0);
  opacity: 1;
}
@media (max-width: 1050px) {
  .catalog-filters {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 920px) {
  .menu-button {
    display: inline-flex;
    color: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
  }
  .navlinks {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 82px;
    padding: 18px;
    background: #11131a;
    border: 1px solid var(--line);
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
  .menu-toggle:checked ~ .navlinks {
    display: flex;
  }
  .stats__grid,
  .services,
  .values-grid,
  .contact__grid,
  .whatsapp-buttons,
  .split__grid,
  .product-detail__grid {
    grid-template-columns: 1fr;
  }
  .stats__grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    position: static;
  }
  .footer__grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }
  h1 {
    font-size: 43px;
  }
  .brand__logo {
    width: 120px;
    height: 48px;
  }
  .hero-video__content {
    padding: 76px 0;
  }
  .section {
    padding: 72px 0;
  }
  .catalog-filters {
    grid-template-columns: 1fr;
  }
  .filter-actions {
    flex-direction: column;
  }
  .catalog-card__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .product-gallery__main img {
    height: 380px;
  }
  .product-gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
  .whatsapp-widget {
    right: 16px;
    bottom: 16px;
  }
  .wa-panel {
    width: calc(100vw - 32px);
  }
  .footer__grid > div:last-child {
    flex-direction: column;
  }
  .carousel-track {
    animation-duration: 22s;
  }
  .brand-logo {
    width: 160px;
    height: 88px;
  }
}

/* Navegación e idioma */
.language-switch {
  display: flex;
  gap: 3px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.language-switch a {
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 11px;
}
.language-switch a.is-active {
  background: var(--brand);
  color: #fff;
}

/* Slider administrable */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #050506;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.9s ease,
    visibility 0.9s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero-slide > video,
.hero-slide picture,
.hero-slide picture img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.hero-slide .hero-video__content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
}
.hero-slide .hero-video__content p {
  color: #e2e4e9;
  font-size: clamp(17px, 2vw, 21px);
}
.slider-dots {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.slider-dots button.is-active {
  width: 34px;
  border-radius: 8px;
  background: var(--accent);
}

/* Tarjetas de contenido */
.services--listing {
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}
.service-card > img,
.service-card > .visual-placeholder {
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.service-card > div:last-child {
  padding: 26px;
}
.service-card p {
  color: var(--muted);
}
.visual-placeholder {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #232733, #0e1016);
  color: var(--accent);
  font-size: 38px;
  font-weight: 950;
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  padding-bottom: 22px;
}
.industry-card img,
.industry-card .visual-placeholder {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.industry-card h2,
.industry-card h3,
.industry-card p {
  margin: 18px 22px 0;
}
.industry-card p {
  color: var(--muted);
}
.content-placeholder {
  width: 100%;
  padding: 50px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
  color: var(--muted);
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}

/* Páginas internas */
.detail-hero {
  min-height: 520px;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 110px 0 70px;
}
.detail-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 6, 0.95), rgba(5, 5, 6, 0.35));
}
.detail-hero .container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
}
.detail-hero h1 {
  max-width: 850px;
}
.detail-hero p {
  max-width: 720px;
  color: #d7d9df;
  font-size: 19px;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 50px;
  align-items: start;
}
.prose {
  max-width: 850px;
  font-size: 18px;
  color: #d9dce3;
}
.catalog-section .prose,
.legal-page {
  color: #353a44;
}
.prose h2 {
  margin-top: 38px;
}
.contact-cta {
  position: sticky;
  top: 110px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}
.distributor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.distributor-card {
  background: #fff;
  color: var(--soft-ink);
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid #e2e4e8;
}
.distributor-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  margin-bottom: 22px;
}
.status-label {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: #eceef2;
  color: #656b75;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.status-label.is-authorized {
  background: #e7f8ee;
  color: #08783d;
}
.brand-detail-hero {
  position: relative;
  padding: 150px 0 90px;
  background: #f2f3f6;
  color: var(--soft-ink);
  overflow: hidden;
}
.brand-detail-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}
.brand-intro {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
}
.brand-intro__logo {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.brand-intro__logo img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
}
.catalog-downloads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.catalog-downloads a {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.legal-note {
  margin-top: 25px;
  padding: 18px;
  border-left: 4px solid var(--brand);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

/* Cobertura y formulario protegido */
.coverage-section {
  background: #eef0f4;
  color: var(--soft-ink);
}
.coverage-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: center;
}
.mexico-map {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
}
.mexico-map object {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 976/655;
  overflow: visible;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #5d6370;
  font-size: 13px;
}
.map-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.map-legend i {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--brand);
}
.map-legend i.selected {
  border: 3px solid #111;
  background: var(--accent);
}
.map-legend i.unavailable {
  background: #b9bec8;
}
.map-select {
  display: grid;
  gap: 8px;
  font-weight: 850;
}
.map-select select {
  width: 100%;
  padding: 14px;
  border: 1px solid #cfd3dc;
  border-radius: 14px;
  background: #fff;
}
.coverage-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
}
.advisor-list,
.branch-list {
  display: grid;
  gap: 14px;
}
.advisor-card {
  grid-template-columns: 70px 1fr auto;
  gap: 15px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}
.advisor-card:not([hidden]) {
  display: grid;
}
.advisor-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(207, 18, 53, 0.15);
}
.advisor-card img,
.advisor-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}
.advisor-avatar {
  display: grid;
  place-items: center;
  background: var(--brand);
  font-size: 28px;
  font-weight: 900;
}
.advisor-card span,
.advisor-card small {
  display: block;
  color: var(--muted);
}
.advisor-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.branch-list article:not([hidden]) {
  display: grid;
  margin-top: 12px;
  padding: 15px;
  border-left: 3px solid var(--brand);
  background: var(--surface);
}
.selected-advisor,
.selected-product {
  padding: 14px;
  border-radius: 13px;
  background: #fff1f4;
  color: #8b1029;
  font-weight: 800;
}
.privacy-check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: flex-start;
}
.privacy-check input {
  width: auto;
  margin-top: 6px;
}
.privacy-check a {
  color: var(--brand);
  text-decoration: underline;
}
.stock-badge {
  display: inline-flex;
  width: max-content;
  margin: 10px 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}
.stock-badge--in_stock {
  background: #e5f8ed;
  color: #08783d;
}
.stock-badge--on_request {
  background: #fff4d7;
  color: #8b5c00;
}
.stock-badge--out_of_stock {
  background: #f1f2f4;
  color: #656b75;
}

/* Burbuja de información */
.contact-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
}
.contact-widget > input {
  display: none;
}
.info-bubble {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  cursor: pointer;
}
.info-bubble svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}
.info-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: 260px;
  padding: 16px;
  display: none;
  background: #fff;
  color: var(--soft-ink);
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.contact-widget > input:checked ~ .info-panel {
  display: grid;
  gap: 8px;
}
.info-panel a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px;
  border-radius: 12px;
  background: #f3f4f6;
}
.info-panel svg {
  width: 22px;
  height: 22px;
  fill: var(--brand);
}

@media (max-width: 920px) {
  .services--listing,
  .industry-grid,
  .distributor-grid,
  .catalog-downloads {
    grid-template-columns: 1fr 1fr;
  }
  .coverage-grid,
  .article-layout,
  .brand-intro {
    grid-template-columns: 1fr;
  }
  .brand-intro__logo {
    max-width: 280px;
  }
}
@media (max-width: 620px) {
  .mexico-map {
    padding: 14px;
  }
  .mexico-map object {
    width: 100%;
    aspect-ratio: 976/655;
  }
  .map-legend {
    gap: 10px 16px;
    margin-top: 8px;
  }
  .services--listing,
  .industry-grid,
  .distributor-grid,
  .catalog-downloads {
    grid-template-columns: 1fr;
  }
  .hero-slider,
  .hero-slide .hero-video__content {
    min-height: 82vh;
  }
  .advisor-card {
    grid-template-columns: 56px 1fr;
  }
  .advisor-card .btn {
    grid-column: 1/-1;
  }
  .advisor-card img,
  .advisor-avatar {
    width: 56px;
    height: 56px;
  }
  .contact-widget {
    right: 16px;
    bottom: 16px;
  }
  .info-panel {
    width: calc(100vw - 32px);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Componentes corregidos: contacto y marcas */
.language-select select {
  min-width: 66px;
  padding: 9px 28px 9px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 9px;
  background: #171920;
  color: #fff;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.translation-notice {
  position: fixed;
  top: 78px;
  right: 18px;
  z-index: 80;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(20, 22, 29, 0.9);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}
#google-translate-element,
.goog-te-banner-frame,
.skiptranslate iframe {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
}
body {
  top: 0 !important;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.contact-widget .info-bubble {
  border: 3px solid #fff;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.contact-widget .info-bubble:hover {
  transform: translateY(-3px);
}
.contact-widget.is-open .info-bubble {
  background: #171920;
}
.contact-widget .info-panel {
  display: grid;
  gap: 8px;
  border: 1px solid #e4e6eb;
  transform-origin: bottom right;
  animation: contactPanelIn 0.18s ease both;
}
.contact-widget .info-panel[hidden] {
  display: none;
}
.info-panel__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 2px 8px;
}
.info-panel__head div {
  display: grid;
  gap: 3px;
}
.info-panel__head small,
.info-panel a small {
  display: block;
  color: #747984;
  font-size: 12px;
  font-weight: 650;
}
.info-panel__head button {
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #eef0f3;
  color: #31353d;
  cursor: pointer;
  font-size: 22px;
}
.contact-widget .info-panel a {
  border: 1px solid transparent;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}
.contact-widget .info-panel a:hover {
  border-color: #d7d9df;
  transform: translateX(-2px);
}
.contact-channel {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: #fff;
  color: var(--brand);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}
.contact-channel--whatsapp {
  background: #25d366;
  color: #fff;
}
.contact-widget .info-panel svg {
  fill: currentColor;
}
@keyframes contactPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.brand-showcase {
  background: #f4f5f7;
  border-block: 1px solid #e2e4e8;
}
.distributor-grid {
  align-items: stretch;
}
.distributor-card {
  min-height: 300px;
  display: grid;
  grid-template-rows: 150px 1fr;
  box-shadow: 0 14px 34px rgba(19, 22, 30, 0.12);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.distributor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(19, 22, 30, 0.18);
}
.distributor-card img,
.distributor-card > .visual-placeholder {
  width: 100%;
  height: 130px;
  margin: 0 0 20px;
  object-fit: contain;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.brand-card {
  min-width: 0;
  min-height: 224px;
  display: grid;
  grid-template-rows: 148px 1fr;
  overflow: hidden;
  border: 1px solid #e1e3e8;
  border-radius: 20px;
  background: #fff;
  color: var(--soft-ink);
  box-shadow: 0 12px 30px rgba(19, 22, 30, 0.1);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(19, 22, 30, 0.16);
}
.brand-card__logo {
  display: grid;
  place-items: center;
  padding: 24px;
  border-bottom: 1px solid #eceef1;
  background: #fff;
}
.brand-card__logo img {
  width: 100%;
  height: 94px;
  object-fit: contain;
}
.brand-card__logo > strong {
  font-size: 34px;
  color: var(--brand);
}
.brand-card__body {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 17px 20px 19px;
}
.brand-card__body > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.brand-card__availability {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #686e79;
  font-weight: 750;
}
.brand-card__availability::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #a2a7b0;
}
.brand-card__availability.has-products::before {
  background: #159455;
  box-shadow: 0 0 0 4px #e4f5ec;
}
.section-action {
  margin-top: 28px;
  text-align: center;
}
@media (max-width: 920px) {
  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}
