:root {
  --bg: #061321;
  --bg-2: #081a30;
  --bg-3: #0c233e;
  --bg-soft: #102b49;

  --panel: rgba(10, 27, 48, 0.82);
  --panel-2: rgba(11, 31, 55, 0.92);
  --panel-3: rgba(255, 255, 255, 0.05);

  --text: #eef6ff;
  --text-strong: #ffffff;
  --muted: rgba(238, 246, 255, 0.78);
  --muted-2: rgba(238, 246, 255, 0.58);

  --primary: #50bdfe;
  --primary-2: #1d66cc;
  --primary-soft: rgba(44, 130, 246, 0.12);

  --accent: #78d61e;
  --accent-2: #9af34b;
  --accent-soft: rgba(120, 214, 30, 0.12);

  --line: rgba(255, 255, 255, 0.09);
  --line-2: rgba(44, 130, 246, 0.22);

  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.18);
  --shadow-md: 0 20px 60px rgba(0, 0, 0, 0.24);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.34);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    linear-gradient(rgba(255,255,255,0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.016) 1px, transparent 1px),
    radial-gradient(
      circle at 12% 8%,
      rgba(80, 189, 254, 0.13) 0%,
      transparent 24%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(120, 214, 30, 0.05) 0%,
      transparent 16%
    ),
    linear-gradient(
      120deg,
      rgba(80, 189, 254, 0.035) 0%,
      rgba(80, 189, 254, 0.015) 35%,
      rgba(120, 214, 30, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      #0a1b2d 0%,
      #081a30 24%,
      #071629 58%,
      #050f1b 100%
    );
  background-size:
    34px 34px,
    34px 34px,
    auto,
    auto,
    auto,
    auto;
  background-attachment: fixed;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
.section-head h2 {
  font-family: "Sanchez", serif;
  letter-spacing: -0.01em !important;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 140px;
  max-height: 260px;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(6, 19, 33, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.18));
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-2), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav a:hover {
  color: var(--text-strong);
}

.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  min-height: 46px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 38px rgba(29, 102, 204, 0.3);
}

.btn--primary:hover {
  box-shadow: 0 20px 46px rgba(29, 102, 204, 0.4);
}

.btn--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent);
}

.btn--ghost {
  color: var(--text);
  background: transparent;
  border-color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cfe4ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero {
  position: relative;
  padding: 144px 0 96px;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 520px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.hero__copy {
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 28, 56, 0.42);
  backdrop-filter: blur(10px);
  color: rgba(236, 244, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__title {
  margin: 0 0 20px;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  max-width: 12ch;
  color: #f6f8fc;
  text-wrap: balance;
}

.hero__title span {
  display: block;
  text-wrap: balance;
}
.hero__title .highlight {
  font-weight: 400;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary) 30%,
    var(--accent) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  text-shadow: 0 0 18px rgba(80, 189, 254, 0.15);
}

.hero__lead {
  margin: 0 0 30px;
  max-width: 62ch;
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.75;
  color: rgba(223, 232, 244, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 26px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 21, 39, 0.55);
  backdrop-filter: blur(10px);
  color: rgba(235, 242, 252, 0.9);
  font-size: 0.94rem;
  font-weight: 600;
}

.hero__panel {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(120, 180, 255, 0.12);
  background: linear-gradient(
    180deg,
    rgba(8, 27, 57, 0.88) 0%,
    rgba(5, 19, 40, 0.82) 100%
  );
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(
      circle at top right,
      rgba(71, 159, 255, 0.14),
      transparent 36%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(77, 205, 255, 0.08),
      transparent 34%
    );
  pointer-events: none;
}

.hero__panel > * {
  position: relative;
  z-index: 1;
}

.hero__panel-top {
  margin-bottom: 22px;
}

.hero__panel-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(138, 194, 255, 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__panel h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f6f8fc;
}

.hero__panel-top p {
  margin: 0;
  color: rgba(216, 228, 243, 0.82);
  line-height: 1.7;
}

.hero__metrics {
  display: grid;
  gap: 12px;
}

.hero__metric {
  padding: 16px 16px 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.035);
}

.hero__metric strong {
  display: block;
  margin-bottom: 6px;
  color: #f4f7fc;
  font-size: 1rem;
  line-height: 1.35;
}

.hero__metric span {
  display: block;
  color: rgba(219, 229, 242, 0.8);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    padding: 132px 0 88px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy {
    max-width: none;
  }

  .hero__title {
    max-width: 11ch;
  }

  .hero__panel {
    max-width: 760px;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 118px 0 72px;
  }

  .hero__eyebrow {
    font-size: 0.72rem;
    padding: 9px 13px;
    letter-spacing: 0.1em;
  }

  .hero__title {
    max-width: none;
    font-size: clamp(2.7rem, 14vw, 4.4rem);
    line-height: 0.96;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__panel {
    padding: 22px;
    border-radius: 22px;
  }

  .hero__metric {
    padding: 14px 14px 14px 16px;
  }
}

.stats {
  padding: 14px 0 32px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.38;
  transform: scale(1.04);
  transition:
    opacity 0.35s ease,
    transform 0.5s ease;
  z-index: 0;
}

.stat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 19, 33, 0.16) 0%,
    rgba(6, 19, 33, 0.46) 38%,
    rgba(6, 19, 33, 0.88) 100%
  );
  z-index: 1;
  transition: background 0.35s ease;
}

.stat-card > * {
  position: relative;
  z-index: 2;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
  color: var(--text-strong);
  transition: color 0.28s ease;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color 0.28s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 130, 246, 0.28);
  box-shadow: var(--shadow-lg);
}

.stat-card:hover::before {
  opacity: 1;
  transform: scale(1.1);
}

.stat-card:hover::after {
  background: linear-gradient(
    180deg,
    rgba(6, 19, 33, 0.12) 0%,
    rgba(6, 19, 33, 0.34) 34%,
    rgba(6, 19, 33, 0.84) 100%
  );
}

.stat-card:hover strong,
.stat-card:hover span {
  color: #ffffff;
}

.stat-card--congelado::before {
  background-image: url("img/congelado.png");
}

.stat-card--refrigerado::before {
  background-image: url("img/3.png");
}

.stat-card--seco::before {
  background-image: url("img/seco.png");
}

.stat-card--distribucion::before {
  background-image: url("img/distribucion.png");
}

@media (max-width: 1080px) {
  .stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .stats__grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    min-height: 220px;
  }

  .stat-card::before {
    opacity: 0.9;
    transform: none;
  }

  .stat-card::after {
    background: linear-gradient(
      180deg,
      rgba(6, 19, 33, 0.14) 0%,
      rgba(6, 19, 33, 0.34) 34%,
      rgba(6, 19, 33, 0.84) 100%
    );
  }
}
.section {
  padding: 86px 0;
}

.section--alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.015),
    rgba(255, 255, 255, 0.03)
  );
}

#servicios {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#servicios::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(
      180deg,
      rgba(6, 19, 33, 0.9) 0%,
      rgba(6, 19, 33, 0.82) 40%,
      rgba(6, 19, 33, 0.9) 100%
    ),
    url("img/2.png") center/cover no-repeat;
}

#servicios::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(80, 189, 254, 0.12),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(120, 214, 30, 0.08),
      transparent 28%
    );
}

#servicios .card {
  background: linear-gradient(
    180deg,
    rgba(9, 24, 43, 0.82),
    rgba(9, 24, 43, 0.72)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

#servicios .card:hover {
  background: linear-gradient(
    180deg,
    rgba(10, 28, 50, 0.9),
    rgba(10, 28, 50, 0.78)
  );
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 32px;
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  color: var(--text-strong);
}

.section-head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.78;
}

.services-grid,
.value-grid,
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 130, 246, 0.25);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.07),
    rgba(255, 255, 255, 0.04)
  );
  box-shadow: var(--shadow-lg);
}

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(44, 130, 246, 0.16),
    rgba(120, 214, 30, 0.1)
  );
  color: var(--text-strong);
  font-weight: 800;
  font-size: 1rem;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: 1.14rem;
}

.card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.68;
}

.card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
  gap: 24px;
  align-items: stretch;
}

.media-card {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(180deg, rgba(6, 19, 33, 0.08), rgba(6, 19, 33, 0.46)),
    url("img/1.png") center/cover no-repeat;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: auto 20px 20px 20px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.18),
    rgba(255, 255, 255, 0.05)
  );
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.feature strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 1rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.coverage {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
}

.coverage-card,
.trust-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.coverage-card h3,
.trust-card h3 {
  margin: 0 0 12px;
  color: var(--text-strong);
  font-size: 1.42rem;
}

.coverage-card p,
.trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(44, 130, 246, 0.1);
  border: 1px solid rgba(44, 130, 246, 0.16);
  color: #dcebff;
  font-size: 0.9rem;
  font-weight: 700;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.trust-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.52;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-2), var(--accent));
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process__step {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.055),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.process__step .num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 12px 24px rgba(29, 102, 204, 0.26);
}

.process__step h3 {
  margin: 0 0 8px;
  color: var(--text-strong);
  font-size: 1.03rem;
}

.process__step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.66;
}

.metric-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(44, 130, 246, 0.08),
    rgba(255, 255, 255, 0.035)
  );
  border: 1px solid rgba(44, 130, 246, 0.14);
  box-shadow: var(--shadow-sm);
}

.metric-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-strong);
  font-size: 1.1rem;
}

.metric-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.94rem;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(8, 26, 48, 0.98),
    rgba(13, 74, 152, 0.95)
  );

  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 190px;
  height: 190px;
  background: radial-gradient(
    circle,
    rgba(120, 214, 30, 0.18),
    transparent 72%
  );
  pointer-events: none;
}

.cta-band h2 {
  margin: 0 0 10px;
  color: var(--text-strong);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 0;
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.78;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 22px;
  margin-top: 22px;
}

.contact-card,
.form-card {
  padding: 30px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.contact-item strong {
  display: block;
  margin-bottom: 6px;
  color: #cfe4ff;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item p,
.contact-item a {
  margin: 0;
  color: var(--text);
  line-height: 1.64;
}

.contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

label {
  color: var(--text-strong);
  font-size: 0.91rem;
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 14px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(44, 130, 246, 0.35);
  box-shadow: 0 0 0 4px rgba(44, 130, 246, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.form-note,
.form-status {
  color: var(--muted);
  font-size: 0.92rem;
}

.footer {
  padding: 30px 0 48px;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero__grid,
  .split,
  .coverage,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .stats__grid,
  .services-grid,
  .value-grid,
  .metrics-grid,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(8, 26, 48, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-lg);
  }

  .nav.is-open {
    display: flex;
  }

  .topbar__cta {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 64px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.3rem, 11vw, 3.8rem);
  }

  .stats__grid,
  .services-grid,
  .value-grid,
  .metrics-grid,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero__actions,
  .hero__proof,
  .cta-band__actions,
  .form-actions,
  .footer__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero__panel,
  .card,
  .coverage-card,
  .trust-card,
  .contact-card,
  .form-card,
  .cta-band {
    padding: 24px;
  }

  .media-card {
    min-height: 320px;
  }
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1ebe5d);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.35),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  animation: whatsapp-pulse 2.2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.45),
    0 0 0 10px rgba(37, 211, 102, 0.08);
}

@keyframes whatsapp-pulse {
  0% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.35),
      0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow:
      0 12px 30px rgba(0, 0, 0, 0.35),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 16px;
  }
}
.snow-fx-card,
.snow-fx {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: none;
}

.snow-fx-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    180px circle at var(--mx, 50%) var(--my, 50%),
    rgba(90, 190, 255, 0.16),
    rgba(90, 190, 255, 0.07) 32%,
    transparent 62%
  );
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
  pointer-events: none;
}

.snow-fx-card.is-hovered::before {
  opacity: 1;
}

.snow-fx-card .snow-fx {
  position: absolute;
  left: 0;
  top: 0;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 18px;
  line-height: 1;
  color: rgba(232, 247, 255, 0.92);
  background: rgba(160, 220, 255, 0.08);
  border: 1px solid rgba(180, 230, 255, 0.14);
  box-shadow:
    0 0 0 0 rgba(90, 190, 255, 0),
    0 0 22px rgba(90, 190, 255, 0.08),
    inset 0 0 16px rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(6px);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease;
}

.snow-fx-card.is-hovered .snow-fx {
  opacity: 0.75;
  transform: translate(-50%, -50%) scale(1);
  box-shadow:
    0 0 0 8px rgba(90, 190, 255, 0.06),
    0 0 28px rgba(90, 190, 255, 0.12),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
}

.snow-fx-card > *:not(.snow-fx) {
  position: relative;
  z-index: 4;
}

.contact-map-card {
  margin-top: 22px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
}

.contact-map-card__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  padding: 28px 28px 0;
}

.contact-map-card__head h3 {
  margin: 0 0 8px;
  color: var(--text-strong);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.08;
}

.contact-map-card__head p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.72;
}

.contact-map-card__frame {
  padding: 24px;
}

.contact-map-card__frame iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  border-radius: 22px;
  background: #0b1624;
  filter: grayscale(0.08) contrast(1.02) saturate(0.95);
}

@media (max-width: 860px) {
  .contact-map-card__head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .contact-map-card__head {
    padding: 24px 24px 0;
  }

  .contact-map-card__frame {
    padding: 18px;
  }

  .contact-map-card__frame iframe {
    height: 320px;
    border-radius: 18px;
  }
}
.process__step {
  position: relative;
  overflow: hidden;
}

.process__step::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.35;
  transform: scale(1.05);
  transition: all 0.4s ease;
  z-index: 0;
}

.process__step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 19, 33, 0.2),
    rgba(6, 19, 33, 0.6) 40%,
    rgba(6, 19, 33, 0.95)
  );
  z-index: 1;
}

.process__step > * {
  position: relative;
  z-index: 2;
}
.process__step--recepcion::before {
  background-image: url("img/proceso-recepcion.png");
}

.process__step--almacenaje::before {
  background-image: url("img/proceso-almacenaje.png");
}

.process__step--preparacion::before {
  background-image: url("img/proceso-preparacion.png");
}

.process__step--distribucion::before {
  background-image: url("img/proceso-distribucion.png");
}
.process__step:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 130, 246, 0.3);
  box-shadow: var(--shadow-lg);
}

.process__step:hover::before {
  opacity: 0.6;
  transform: scale(1.1);
}

.coverage-card {
  position: relative;
  overflow: hidden;
}
.coverage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/cobertura.png") center/cover no-repeat;
  opacity: 0.25;
  transform: scale(1.05);
  transition: all 0.4s ease;

  z-index: 0;
}

.coverage-card h3 {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.coverage-card::before {
  filter: blur(1px);
}
.tag {
  backdrop-filter: blur(6px);
  background: rgba(10, 30, 55, 0.5);
}
.coverage-card::before {
  transform: scale(1.08);
}

.coverage-card:hover::before {
  transform: scale(1.12);
}

.card__badge {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-2);
}

.card p {
  max-width: 26ch;
}

.card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(
    135deg,
    rgba(44, 130, 246, 0.16),
    rgba(120, 214, 30, 0.1)
  );
  font-size: 1.2rem;
}

.card--image {
  position: relative;
  overflow: hidden;
}

.card--image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  z-index: 0;
}

.card--image:nth-child(1)::before {
  background-image: url("img/camiones.png");
}

.card--image:nth-child(3)::before {
  background-image: url("img/frio.png");
}

.card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 19, 33, 0.2),
    rgba(6, 19, 33, 0.9)
  );
  z-index: 1;
}

.card--image > * {
  position: relative;
  z-index: 2;
}

.card--image:hover::before {
  transform: scale(1.12);
  opacity: 0.6;
}

.card--highlight {
  border-color: rgba(44, 130, 246, 0.35);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(44, 130, 246, 0.15);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 130, 246, 0.25);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(44, 130, 246, 0.2);
}
.custom-select {
  position: relative;
}

.custom-select__trigger {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);

  font: inherit;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.custom-select__trigger:hover {
  border-color: rgba(44, 130, 246, 0.28);
}

.custom-select.is-open .custom-select__trigger,
.custom-select__trigger:focus-visible {
  border-color: rgba(44, 130, 246, 0.42);
  box-shadow: 0 0 0 4px rgba(44, 130, 246, 0.08);
  background: rgba(255, 255, 255, 0.06);
}

.custom-select__value {
  color: var(--text);
  text-align: left;
}

.custom-select__arrow {
  color: var(--muted);
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select__arrow {
  transform: rotate(180deg);
}

.custom-select__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  z-index: 50;

  display: none;
  overflow: hidden;

  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 26, 48, 0.98);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);

  padding: 8px;
}

.custom-select.is-open .custom-select__dropdown {
  display: grid;
  gap: 4px;
}

.custom-select__option {
  width: 100%;
  min-height: 44px;
  padding: 0 14px;

  display: flex;
  align-items: center;
  text-align: left;

  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text);

  font: inherit;
  cursor: pointer;
  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.custom-select__option:hover {
  background: rgba(44, 130, 246, 0.14);
  color: #fff;
}

.custom-select__option.is-selected {
  background: rgba(44, 130, 246, 0.2);
  color: #fff;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("img/contacto.png") center/cover no-repeat;
  opacity: 0.22;
  transform: scale(1.04);
  transition:
    transform 0.4s ease,
    opacity 0.4s ease;
  z-index: 0;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 19, 33, 0.32),
    rgba(6, 19, 33, 0.493) 38%,
    rgba(6, 19, 33, 0.842) 100%
  );
  z-index: 1;
}

.contact-card > * {
  position: relative;
  z-index: 2;
}

.contact-card:hover::before {
  opacity: 0.3;
  transform: scale(1.08);
}

.footer {
  background: linear-gradient(180deg, #071019 0%, #02050a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer__logo {
  width: 300px;
  margin-bottom: 26px;
  display: block;
}

.footer__brand p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  max-width: 420px;
}

.footer__col h4 {
  margin: 0 0 16px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-strong);
}

.footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer__col a {
  color: var(--muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.footer__col a:hover {
  color: var(--text-strong);
}

.footer__contact li {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.footer__cta {
  margin-top: 24px;
  border-color: var(--accent);
}

.footer__cta:hover {
  box-shadow: 0 0 20px rgba(55, 226, 213, 0.15);
}

.footer__bottom {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 16px;
}

.footer__bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted-2);
}

.footer__legal {
  display: flex;
  gap: 18px;
  margin-right: 0;
}

.footer__legal a {
  font-size: 0.85rem;
  color: var(--muted-2);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal a:hover {
  color: var(--text-strong);
}

@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer {
    padding-top: 48px;
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer__brand,
  .footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__logo {
    width: min(260px, 78vw);
    margin: 0 auto 22px;
  }

  .footer__brand p {
    max-width: 34ch;
    margin: 0 auto;
  }

  .footer__col h4 {
    margin-bottom: 14px;
    text-align: center;
  }

  .footer__col ul {
    justify-items: center;
    text-align: center;
  }

  .footer__contact {
    justify-items: center;
  }

  .footer__contact li {
    text-align: center;
    margin-bottom: 10px;
  }

  .footer__cta {
    margin: 22px auto 0;
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 14px;
  }

  .footer__bottom p {
    text-align: center;
  }

  .footer__legal {
    margin-right: 0;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 640px) {
  .footer__brand,
  .footer__col {
    width: 100%;
  }
}
.footer__by {
  opacity: 0.6;
  margin-left: 6px;
  font-size: 0.9em;
}

.footer__by a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.footer__by a:hover {
  opacity: 1;
  border-color: currentColor;
}
/* MODAL ANIVERSARIO */
.anniversary-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.anniversary-modal.is-active {
  display: block;
}

.anniversary-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 10, 20, 0.75);
  backdrop-filter: blur(6px);
}

.anniversary-modal__content {
  position: relative;
  max-width: 520px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(180deg, #0c233e, #081a30);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 36px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: modalFade 0.4s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(-40%) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.anniversary-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.anniversary-modal__inner {
  text-align: center;
}

.anniversary-modal__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #37e2d5;
  margin-bottom: 12px;
}

.anniversary-modal h2 {
  font-size: 1.8rem;
  margin-bottom: 14px;
  color: #fff;
}

.anniversary-modal p {
  color: #c7d4e3;
  line-height: 1.6;
  margin-bottom: 22px;
}