html,
body {
  margin: 0;
  padding: 0;
}

:root {
  --header-h: 88px;
  --bg: #070708;
  --bg-soft: #101014;
  --panel: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.12);
  --ink-0: rgba(255, 255, 255, 0.96);
  --ink-1: rgba(255, 255, 255, 0.78);
  --ink-2: rgba(255, 255, 255, 0.58);
  --gold: #d4af37;
  --gold-light: #f0d27a;
  --red: #b11a29;
  --green: #25d366;
  --green-hover: #1ebe5d;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.48);
  --shadow-lg: 0 20px 52px rgba(0, 0, 0, 0.32);
  --font-title: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  padding-top: var(--header-h);

  background:
    radial-gradient(
      900px 460px at 8% 4%,
      rgba(177, 26, 41, 0.14),
      transparent 62%
    ),
    radial-gradient(
      780px 420px at 94% 12%,
      rgba(212, 175, 55, 0.10),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      #070708 0%,
      #0b0b0d 38%,
      #101014 72%,
      #080809 100%
    );

  color: var(--ink-0);
  font-family: var(--font-body);
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.dist-no-scroll {
  overflow: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 4px;
  border-radius: 6px;
}

.dist-skip-link:focus-visible {
  outline-color: #111;
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.dist-skip-link {
  position: absolute;
  top: -60px;
  left: 24px;
  z-index: 5000;

  padding: 12px 18px;

  border-radius: 10px;

  background: var(--gold);
  color: #111;

  font-weight: 700;

  transition: top .25s ease;
}

.dist-skip-link:focus {
  top: 18px;
}

/* HEADER */
.dist-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1200;
  background: rgba(8, 8, 8, 0.76);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.dist-nav {
  width: min(1200px, 92%);
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

.dist-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.dist-logo {
  display: block;
}

.dist-logo img {
  width: auto;
  height: 48px;
}

.dist-brand__division {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dist-brand__division strong {
  color: rgba(255, 255, 255, 0.94);
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dist-brand__division span {
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dist-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.dist-links a {
  position: relative;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 700;
}

.dist-links a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--red);
  transition: left 0.2s ease, right 0.2s ease;
}

.dist-links a:hover::after,
.dist-links a:focus-visible::after {
  right: 0;
  left: 0;
}

.dist-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}

.dist-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: 14px 22px 22px;
  background: rgba(8, 8, 8, 0.97);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.dist-mobile-menu a {
  display: block;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 700;
  transition: color .2s ease;
}

.dist-mobile-menu a:hover,
.dist-mobile-menu a:focus-visible {
  color: var(--gold-light);
}

.dist-mobile-menu.is-open {
  display: block;
}

.dist-mobile-cta {
  display: inline-flex !important;
  margin-top: 10px;
}

/* BOTONES */
.dist-cta,
.dist-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.dist-cta {
  background: var(--green);
  color: #fff;
}

.dist-cta:hover {
  transform: translateY(-2px);
  background: var(--green-hover);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.dist-cta__icon {
  font-size: 18px;
}

.dist-button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.dist-button--ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 215, 120, 0.72);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.24);
}

.dist-button--dark {
  background: #1f1f1f;
  color: #ffffff;
  border: 1px solid rgba(212,175,55,.32);
  box-shadow:
      0 10px 22px rgba(0,0,0,.22);
  transition:
      background .28s ease,
      border-color .28s ease,
      box-shadow .28s ease,
      transform .28s ease;

}

.dist-button--dark:hover {
  background: #292929;
  border-color: rgba(212,175,55,.78);
  box-shadow:
    0 18px 34px rgba(0,0,0,.35),
    0 0 18px rgba(212,175,55,.16);
  transform: translateY(-3px);
}

.dist-button--dark:active {
  transform: translateY(-1px);
}

/* HERO */
.dist-hero {
  position: relative;
  padding: 70px 0 58px;
}

.dist-hero::before,
.dist-hero::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0) 0%,
    rgba(255, 215, 120, 0.95) 20%,
    rgba(212, 175, 55, 1) 50%,
    rgba(255, 215, 120, 0.95) 80%,
    rgba(212, 175, 55, 0) 100%
  );
  box-shadow:
    0 0 8px rgba(212, 175, 55, 0.6),
    0 0 18px rgba(212, 175, 55, 0.4);
  pointer-events: none;
}

.dist-hero::before {
  top: 22px;
}

.dist-hero::after {
  bottom: 22px;
}

.dist-hero__container {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 38px;
  align-items: center;
}

.dist-eyebrow,
.dist-section__eyebrow,
.dist-catalog__eyebrow,
.dist-final-cta__eyebrow {
  margin: 0 0 10px;
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dist-hero__title {
  margin: 0 0 18px;
  font-family: var(--font-title);
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.dist-hero__subtitle {
  max-width: 64ch;
  margin: 0 0 20px;
  color: var(--ink-1);
  font-size: 18px;
  line-height: 1.7;
}

.dist-hero__bullets {
  margin: 0 0 24px;
  padding-left: 20px;
}

.dist-hero__bullets li {
  margin-bottom: 9px;
  font-size: 16px;
  line-height: 1.55;
}

.dist-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dist-hero__microcopy {
  margin: 8px 0 0;
  color: var(--ink-2);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
}

.dist-hero__image-wrap {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  background: #0d0d0f;
  box-shadow: var(--shadow-xl);
}

.dist-hero__img {
  width: 100%;
  height: 630px;
  object-fit: cover;
  object-position: center 48%;
}

.dist-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    transparent 72%,
    rgba(4, 4, 5, 0.18) 100%
  );
  pointer-events: none;
}

.dist-hero__business-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 215, 120, 0.34);
  border-radius: 12px;
  background: rgba(8, 8, 9, 0.82);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
}

.dist-hero__business-badge span,
.dist-hero__business-badge strong {
  display: block;
}

.dist-hero__business-badge span {
  margin-bottom: 4px;
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dist-hero__business-badge strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 15px;
  line-height: 1.25;
}

.dist-hero__business-data {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 16px;
  background: rgba(8, 8, 9, 0.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.38);
}

.dist-hero__business-data div {
  padding: 15px 12px;
  text-align: center;
}

.dist-hero__business-data div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.dist-hero__business-data span,
.dist-hero__business-data strong {
  display: block;
}

.dist-hero__business-data span {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dist-hero__business-data strong {
  color: #fff;
  font-family: var(--font-title);
  font-size: 15px;
  line-height: 1.25;
}

/* ESTRUCTURA */
.dist-container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

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

.dist-section--light {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(244, 244, 244, 0.98));
  color: #111;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.dist-section__header {
  max-width: 780px;
  margin-bottom: 28px;
}

.dist-section__header--center {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.dist-section__title {
  margin: 0 0 14px;
  font-family: var(--font-title);
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.dist-section__text {
  margin: 0 0 14px;
  color: var(--ink-1);
  font-size: 17px;
  line-height: 1.75;
}

.dist-section__eyebrow--dark {
  color: rgba(0, 0, 0, 0.5);
}

.dist-section__title--dark {
  color: #111;
}

.dist-section__text--dark {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(0, 0, 0, 0.7);

  text-align: justify;
  text-justify: inter-word;
}

.dist-grid {
  display: grid;
  gap: 34px;
}

.dist-grid--2 {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

/* BENEFICIOS */
.dist-cards {
  display: grid;
  gap: 16px;
}

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

.dist-card {
  min-height: 100%;
  padding: 22px 18px;
  border:1px solid rgba(0,0,0,.08);
  border-radius: 20px;
  background:#ffffff;
  box-shadow:0 18px 42px rgba(0,0,0,.08);
}

.dist-card__icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 18px;

  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;

  background: #fafafa;
  color: var(--red);

  font-size: 18px;
}

.dist-card__title {
  margin: 0 0 9px;
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.3;
  color:#111;
}

.dist-card__text {
  margin: 0;
  color:rgba(0,0,0,.68);
  font-size: 15px;
  line-height: 1.65;
}

/* AUDIENCIAS */
.dist-audience-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 14px;
}

.dist-audience {
  min-height: 150px;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #fff;
  text-align: center;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.09);
}

.dist-audience i {
  font-size: 24px;
  color: var(--red);
}

.dist-audience h3 {
  margin: 0;
  color: #111;
  font-family: var(--font-title);
  font-size: 15px;
  line-height: 1.35;
}

.dist-catalog {
  margin-top: 26px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 22px;
  border: 4px solid rgba(212,175,55,.78);
  background:
    linear-gradient(135deg, #141414, #090909);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.dist-catalog__title {
  margin: 0;
  font-family: var(--font-title);
  font-size: 22px;
}

/* PASOS */
.dist-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.dist-step {
  position: relative;
  padding: 26px 16px;
  border-radius: 22px;
  background: #fff;
  color: #111;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.dist-step__number {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;

  background: linear-gradient(
      135deg,
      #d4af37 0%,
      #f0d27a 100%
  );

  color: #111;

  border: 1px solid rgba(212,175,55,.45);

  box-shadow:
      0 10px 22px rgba(212,175,55,.22),
      inset 0 1px 1px rgba(255,255,255,.45);

  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 800;
}

.dist-step h3 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: 20px;
}

.dist-step p {
  max-width: 290px;
  margin: 0 auto;

  color: rgba(0,0,0,.68);

  font-size: 15px;
  line-height: 1.65;

  text-align: center;

  text-wrap: balance;
}

.dist-commercial-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.dist-commercial-card {
  padding: 20px 18px;

  border: 1px solid rgba(212,175,55,.22);
  border-radius: 18px;

  background: #ffffff;

  box-shadow:
    0 16px 36px rgba(0,0,0,.08);
}

.dist-commercial-card span,
.dist-commercial-card strong {
  display: block;
}

.dist-commercial-card span {
  margin-bottom: 9px;
  color: rgba(0,0,0,.55);
  font-size: 13px;
  line-height: 1.4;
}

.dist-commercial-card strong {
  color: #111;
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.35;
}

.dist-disclaimer {
  margin: 18px 0 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
}

/* PRODUCTOS */
.dist-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.dist-product-card {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;

  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.02)
    );

  color: #fff;

  box-shadow:
    0 18px 45px rgba(0,0,0,.34),
    inset 0 1px 0 rgba(255,255,255,.05);

  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.dist-product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.38);

  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.46),
    0 0 22px rgba(212, 175, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.dist-product-card__media {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.dist-product-card__media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.dist-product-card__media:hover img {
  transform: scale(1.03);
}

.dist-product-card__body {
  padding: 18px 16px 20px;
}

.dist-product-card__title {
  margin: 0 0 8px;
  font-family: var(--font-title);
  font-size: 18px;
  line-height: 1.3;
}

.dist-product-card__text {
  margin: 0 0 12px;
  color: var(--ink-1);
  font-size: 14px;
  line-height: 1.6;
}

.dist-product-card__meta {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

/* RESPALDO */
.dist-copy {
  max-width: 65ch;
}

.dist-copy p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.dist-media-card {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  align-self: center;

  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  background: #111;

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.18);
}

.dist-media-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center 58%;
}

/* PRESENCIA COMERCIAL DENTRO DE RESPALDO */
.dist-distribution-content {
  margin-top: 54px;
}

.dist-distribution-text {
  max-width: 980px;
  margin: 0 auto 30px;
  text-align: center;
}

.dist-distribution-map {
  width: 100%;
  margin: 0;
  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.16);
}

.dist-distribution-map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* FAQ */
.dist-faq {
  display: grid;
  gap: 12px;
}

.dist-faq__item {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.dist-faq__item summary {
  position: relative;
  padding: 19px 54px 19px 20px;
  color: #111;
  font-family: var(--font-title);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
  cursor: pointer;
}

.dist-faq__item summary::-webkit-details-marker {
  display: none;
}

.dist-faq__item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: var(--red);
  font-size: 24px;
  line-height: 1;
}

.dist-faq__item[open] summary::after {
  content: "−";
}

.dist-faq__item p {
  margin: 0;
  padding: 0 20px 20px;
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

/* CTA FINAL */
.dist-final-cta {
  padding: 76px 0;
  background: #fff;
}

.dist-final-cta__container {
  width: min(1000px, 92%);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(255, 215, 120, 0.3);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(650px 260px at 50% 0%, rgba(212, 175, 55, 0.12), transparent 68%),
    linear-gradient(180deg, rgba(24, 24, 26, 0.98), rgba(8, 8, 9, 0.98));
  text-align: center;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.46),
    0 0 30px rgba(212, 175, 55, 0.08);
}

.dist-final-cta__title {
  max-width: 760px;
  margin: 0 auto 16px;
  font-family: var(--font-title);
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  color: #fff;
}

.dist-final-cta__text {
  max-width: 650px;
  margin: 0 auto 26px;
  color: var(--ink-1);
  font-size: 17px;
  line-height: 1.7;
}

.dist-final-cta__button {
  min-width: min(100%, 330px);
}

/* FOOTER */
.dist-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(
      700px 260px at 10% 0%,
      rgba(177, 26, 41, 0.15),
      transparent 60%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.76),
      rgba(0, 0, 0, 0.96)
    );
}

.dist-footer__container {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 58px 0 52px;

  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.dist-footer__brand img {
  width: auto;
  height: 58px;
}

.dist-footer__brand p {
  max-width: 44ch;
  margin: 20px 0 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;
  line-height: 1.75;
}

.dist-footer__links h3,
.dist-footer__contact h3 {
  position: relative;

  margin: 0 0 24px;
  padding-bottom: 13px;

  color: rgba(255, 255, 255, 0.96);

  font-family: var(--font-title);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;

  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dist-footer__links h3::after,
.dist-footer__contact h3::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 28px;
  height: 2px;

  background: var(--red);
}

.dist-footer__links a {
  display: block;
  width: fit-content;
  margin-bottom: 12px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.5;

  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.dist-footer__links a:hover {
  color: #fff;
  transform: translateX(3px);
}

.dist-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 22px;
}

.dist-footer__socials a {
  width: 44px;
  height: 44px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.9);

  font-size: 17px;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.dist-footer__socials a:hover {
  transform: translateY(-3px);

  border-color: rgba(177, 26, 41, 0.8);
  background: rgba(177, 26, 41, 0.12);
  color: #fff;
}

.dist-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 15px;
}

.dist-footer__contact-item > i {
  width: 20px;
  flex: 0 0 20px;

  color: var(--red);

  font-size: 18px;
  text-align: center;
}

.dist-footer__contact-item a,
.dist-footer__contact-item span {
  display: block;
  margin: 0;

  color: rgba(255, 255, 255, 0.72);

  font-size: 14px;
  line-height: 1.5;
}

.dist-footer__contact-item a {
  transition: color 0.2s ease;
}

.dist-footer__contact-item a:hover {
  color: #fff;
}

.dist-footer__whatsapp {
  width: fit-content;
  margin-top: 12px;
}

.dist-footer__bottom {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 20px 0 24px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dist-footer__bottom p,
.dist-footer__bottom a {
  margin: 0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 13px;
  line-height: 1.5;
}

.dist-footer__bottom a {
  transition: color 0.2s ease;
}

.dist-footer__bottom a:hover {
  color: rgba(255, 255, 255, 0.9);
}

/* BOTÓN FLOTANTE WHATSAPP */

.dist-whatsapp-float {

  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #25d366;
  color: #fff;

  font-size: 28px;

  box-shadow:
    0 14px 35px rgba(0, 0, 0, .28);

  z-index: 1500;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    opacity .35s ease,
    visibility .35s ease;

  animation: whatsappPulse 30s infinite;
}

.dist-whatsapp-float.is-visible {

  opacity: 1;
  visibility: visible;
  pointer-events: auto;

}

.dist-whatsapp-float.is-hidden {

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

}


@keyframes whatsappPulse {

  0%,
  94%,
  100%{
      transform:scale(1);
  }

  95%{
      transform:scale(1.08);
  }

  96%{
      transform:scale(1);
  }

  97%{
      transform:scale(1.08);
  }

  98%{
      transform:scale(1);
  }

}

.dist-whatsapp-float:hover{

  transform:translateY(-4px) scale(1.05);

  background:#20c65a;

  box-shadow:
      0 22px 45px rgba(0,0,0,.36);
}

@media (max-width:640px){

  .dist-whatsapp-float{

      width:52px;
      height:52px;

      right:16px;
      bottom:16px;

      font-size:24px;

  }

}

/* LIGHTBOX */
.dist-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.dist-lightbox.is-open {
  display: block;
}

.dist-lightbox__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.dist-lightbox__dialog {
  position: relative;
  width: min(960px, 92vw);
  max-height: 84vh;
  margin: 8vh auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #0a0a0a;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.62);
}

.dist-lightbox__dialog img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
}

.dist-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.dist-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;

  width: 52px;
  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transform: translateY(-50%);

  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;

  background: rgba(0, 0, 0, 0.62);
  color: #ffffff;

  font-size: 20px;

  cursor: pointer;

  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.dist-lightbox__arrow--previous {
  left: 18px;
}

.dist-lightbox__arrow--next {
  right: 18px;
}

.dist-lightbox__arrow:hover {
  transform: translateY(-50%) scale(1.06);
  border-color: rgba(240, 210, 122, 0.8);
  background: rgba(0, 0, 0, 0.82);
}

.dist-lightbox__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .dist-cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dist-audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

@media (max-width: 980px) {
  :root {
    --header-h: 84px;
  }

  .dist-links,
  .dist-nav > .dist-cta {
    display: none;
  }

  .dist-menu-toggle {
    display: inline-flex;
  }

  .dist-hero {
    padding: 52px 0 34px;
  }

  .dist-hero__container,
  .dist-grid--2 {
    grid-template-columns: 1fr;
  }

  .dist-hero__img {
    min-height: 360px;
  }

  .dist-section {
    padding: 58px 0;
  }

  .dist-steps {
    grid-template-columns: 1fr;
  }

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

  .dist-media-card img {
    min-height: 340px;
  }

  .dist-footer__container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .dist-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dist-catalog {
    align-items: flex-start;
    flex-direction: column;
  }

  .dist-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .dist-nav {
    width: min(100% - 28px, 1200px);
  }

  .dist-logo img {
    height: 42px;
  }
  
  .dist-brand {
    gap: 10px;
  }
  
  .dist-brand__division {
    padding-left: 10px;
  }
  
  .dist-brand__division strong {
    max-width: 105px;
    white-space: normal;
    font-size: 9px;
  }
  
  .dist-brand__division span {
    display: none;
  }

  .dist-hero {
    padding-top: 44px;
  }

  .dist-hero__title {
    font-size: 40px;
  }

  .dist-hero__subtitle,
  .dist-section__text,
  .dist-final-cta__text {
    font-size: 16px;
  }

  .dist-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dist-hero__actions .dist-cta,
  .dist-hero__actions .dist-button {
    width: 100%;
  }

  .dist-hero__img {
    min-height: 360px;
  }
  
  .dist-hero__business-badge {
    top: 14px;
    left: 14px;
    padding: 10px 12px;
  }
  
  .dist-hero__business-data {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
  }
  
  .dist-hero__business-data div {
    padding: 10px 12px;
    text-align: left;
  }
  
  .dist-hero__business-data div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    border-left: 0;
  }
  
  .dist-hero__business-data span,
  .dist-hero__business-data strong {
    display: inline;
  }
  
  .dist-hero__business-data span {
    margin-right: 7px;
  }

  .dist-section {
    padding: 48px 0;
  }

  .dist-section__title {
    font-size: 32px;
  }

  .dist-cards--4,
  .dist-product-grid,
  .dist-commercial-grid {
    grid-template-columns: 1fr;
  }

  .dist-audience {
    min-height: 130px;
  }

  .dist-media-card img {
    min-height: 260px;
  }

  .dist-final-cta {
    padding: 52px 0;
  }

  .dist-final-cta__container {
    padding: 34px 20px;
  }

  .dist-lightbox__dialog {
    margin-top: 12vh;
  }

  .dist-lightbox__arrow {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .dist-lightbox__arrow--previous {
    left: 10px;
  }

  .dist-lightbox__arrow--next {
    right: 10px;
  }
}

/* =========================================================
   CONTENIDO SEO DESPLEGABLE
========================================================= */

.dist-seo {
  background: #f7f7f7;
  padding: 96px 24px;
}

.dist-seo__container {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.dist-seo__header {
  max-width: 880px;
}

.dist-seo__eyebrow {
  margin: 0 0 14px;
  color: #777;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dist-seo__title {
  max-width: 850px;
  margin: 0;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.dist-seo__intro {
  max-width: 900px;
  margin: 24px 0 0;
  color: #555;
  font-size: 1.08rem;
  line-height: 1.75;
}

.dist-seo__details {
  margin-top: 34px;
}

.dist-seo__summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid #b49355;
  border-radius: 999px;
  color: #111;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.dist-seo__summary::-webkit-details-marker {
  display: none;
}

.dist-seo__summary::marker {
  display: none;
  content: "";
}

.dist-seo__summary:hover {
  background: #111;
  color: #fff;
  transform: translateY(-2px);
}

.dist-seo__arrow {
  font-size: 0.82rem;
  transition: transform 0.3s ease;
}

.dist-seo__details[open] .dist-seo__arrow {
  transform: rotate(180deg);
}

.dist-seo__details[open] .dist-seo__summary {
  margin-bottom: 42px;
}

.dist-seo__content {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 520px);
  justify-content: space-between;
  gap: 90px;
  padding-top: 8px;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}

.dist-seo__column {
  padding-top: 36px;
}

.dist-seo__column h3 {
  margin: 0 0 14px;
  color: #111;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
}

.dist-seo__column h3:not(:first-child) {
  margin-top: 34px;
}

.dist-seo__column p {
  margin: 0 0 18px;
  color: #555;
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.dist-seo__column a,
.dist-seo__intro a {
  color: var(--red);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(177, 26, 41, 0.45);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition:
    color .25s ease,
    text-decoration-color .25s ease;
}

.dist-seo__column a:hover,
.dist-seo__intro a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

@media (max-width: 768px) {
  .dist-seo {
    padding: 72px 20px;
  }

  .dist-seo__title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .dist-seo__intro {
    font-size: 1rem;
    line-height: 1.7;
  }

  .dist-seo__content {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .dist-seo__column {
    padding-top: 30px;
  }

  .dist-seo__column + .dist-seo__column {
    padding-top: 0;
  }

  .dist-seo__summary {
    width: 100%;
    justify-content: center;
  }
}

/* Accesibilidad: reducir animaciones */
@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

}

/* PageSpeed: aplazar renderizado de secciones fuera de pantalla */
#beneficios,
#oportunidad,
#como-comenzar,
#productos,
#respaldo,
#preguntas,
#distribucion-mayorista,
.dist-final-cta,
.dist-footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 800px;
}