:root {
      --bg: #eceef2;
      --card: #ffffff;
      --ink: #171a1f;
      --muted: #535a65;
      --red: #bf121c;
      --red-dark: #941017;
      --green: #2f7f40;
      --coal: #1e232b;
      --line: #d9dde4;
      --radius: 14px;
      --shadow: 0 12px 30px rgba(17, 20, 27, 0.12);
      --wrap: min(1180px, calc(100% - 36px));
    }

    * { box-sizing: border-box; }

    html, body {
      margin: 0;
      padding: 0;
      background: var(--bg);
      color: var(--ink);
      font-family: "Montserrat", sans-serif;
      scroll-behavior: smooth;
    }

    a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.story-follow {
  margin-top: 12px;
}

.focus-card {
  padding: 20px;
}

.focus-card h3 {
  font-size: 26px;
}

    .wrap { width: var(--wrap); margin: 0 auto; }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(251, 252, 254, 0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--line);
    }

    .topbar-row {
      min-height: 84px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .logo { height: 74px; width: auto; }

    .menu {
      display: flex;
      align-items: center;
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: #21252c;
    }

    .menu a {
      border-bottom: 2px solid transparent;
      padding: 6px 2px;
      transition: border-color 0.2s ease, color 0.2s ease;
    }

    .menu a:hover,
    .menu a:focus-visible,
    .menu .active {
      color: #111318;
      border-color: var(--red);
    }

    .cta-top {
      padding: 12px 15px;
      border-radius: 8px;
      background: var(--red);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: 0 8px 20px rgba(191, 18, 28, 0.3);
      transition: background 0.2s ease;
    }

    .cta-top:hover { background: var(--red-dark); }

    .hero {
      height: 540px;
      min-height: 540px;
      background-image:
        linear-gradient(90deg, rgba(19, 21, 25, 0.93) 0%, rgba(22, 25, 31, 0.77) 45%, rgba(22, 25, 31, 0.5) 70%, rgba(17, 20, 25, 0.68) 100%),
        url("/assets/img/camionpluma.jpg");
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
    }

    .hero-box {
      width: var(--wrap);
      margin: 0 auto;
      color: #fff;
      padding: 42px 0 108px;
    }

    .eyebrow {
      display: inline-flex;
      margin: 0;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 700;
      color: #eff3fa;
      background: rgba(20, 23, 29, 0.45);
    }

    .hero h1 {
      margin: 16px 0 0;
      max-width: 860px;
      font-size: clamp(36px, 4.8vw, 62px);
      line-height: 0.94;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .hero p {
      margin: 20px 0 0;
      max-width: 760px;
      font-size: clamp(16px, 1.6vw, 22px);
      line-height: 1.4;
      color: #e8edf6;
    }

    .hero h1,
    .hero p {
      text-align: left;
    }

    .hero-actions {
      margin-top: 26px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 16px;
      border-radius: 9px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--red);
      color: #fff;
      box-shadow: 0 8px 20px rgba(191, 18, 28, 0.35);
    }

    .btn-primary:hover { background: var(--red-dark); }

    .btn-outline {
      border: 1px solid rgba(255, 255, 255, 0.4);
      background: rgba(17, 20, 26, 0.32);
      color: #fff;
    }

    .btn-outline:hover { border-color: rgba(255, 255, 255, 0.7); }

    .stats {
      width: var(--wrap);
      margin: -54px auto 0;
      background: linear-gradient(90deg, #191d24, #20252f);
      color: #fff;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
    }

    .stat {
      padding: 20px 14px;
      border-right: 1px solid rgba(255, 255, 255, 0.08);
      min-height: 90px;
    }

    .stat:last-child { border-right: 0; }

    .stat b {
      display: block;
      font-size: 30px;
      line-height: 0.95;
      font-weight: 800;
    }

    .stat span {
      display: block;
      margin-top: 7px;
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #d6dbe5;
    }

    .section {
      width: var(--wrap);
      margin: 18px auto 0;
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
    }

    .title {
      margin: 0 0 10px;
      font-family: "Rajdhani", sans-serif;
      text-transform: uppercase;
      font-size: clamp(34px, 3.2vw, 52px);
      line-height: 0.9;
      color: #161920;
    }

    .lead {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.5;
    }

    .grid-2cols {
      width: var(--wrap);
      margin: 16px auto 0;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .grid-3cols {
      width: var(--wrap);
      margin: 16px auto 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    }

    .card h3 {
      margin: 0 0 10px;
      font-family: "Rajdhani", sans-serif;
      text-transform: uppercase;
      color: #a9101b;
      font-size: clamp(30px, 2.6vw, 40px);
      line-height: 0.92;
    }

    .card p {
      margin: 0;
      color: #31363f;
      font-size: 15px;
      line-height: 1.63;
    }

    .historia-media {
      border-radius: 11px;
      overflow: hidden;
      border: 1px solid var(--line);
      aspect-ratio: 16 / 10;
      margin-top: 14px;
    }

    .historia-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hitos {
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .hitos li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 10px;
      align-items: start;
      color: #2f3540;
      font-size: 14px;
      line-height: 1.5;
    }

    .hitos b {
      min-width: 54px;
      color: #171a1f;
    }

    .valores-list {
      margin: 0;
      padding-left: 18px;
      display: grid;
      gap: 8px;
      color: #31363f;
      font-size: 15px;
      line-height: 1.55;
    }

    .valores-list b { color: #171a1f; }

    .metodologia {
      width: var(--wrap);
      margin: 18px auto 0;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .step {
      background:
        radial-gradient(130% 120% at 100% 0%, rgba(191, 18, 28, 0.08) 0%, rgba(191, 18, 28, 0) 56%),
        linear-gradient(180deg, #ffffff, #f5f8fc);
      border: 1px solid #d0d8e3;
      border-radius: 12px;
      padding: 16px;
      min-height: 196px;
      box-shadow: 0 10px 22px rgba(15, 20, 29, 0.08);
    }

    .step-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .step-icon {
      width: 42px;
      height: 42px;
      border-radius: 11px;
      background: #1d232d;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(17, 22, 30, 0.25);
    }

    .step-icon svg {
      width: 20px;
      height: 20px;
      display: block;
      fill: currentColor;
    }

    .step-num {
      display: inline-flex;
      min-width: 36px;
      height: 28px;
      padding: 0 9px;
      border-radius: 999px;
      background: #bf121c;
      color: #fff;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .step h4 {
      margin: 12px 0 0;
      font-size: 18px;
      line-height: 1.15;
      color: #171d27;
    }

    .step p {
      margin: 9px 0 0;
      color: #4a5260;
      font-size: 14px;
      line-height: 1.52;
    }

    .step-meta {
      margin-top: 11px;
      padding-top: 10px;
      border-top: 1px dashed #c8d2de;
      color: #313b48;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-transform: uppercase;
    }

    .step-meta strong {
      color: #111720;
      margin-right: 6px;
    }

    .step:nth-child(2) .step-icon { background: #243041; }
    .step:nth-child(3) .step-icon { background: #273829; }
    .step:nth-child(4) .step-icon { background: #3a2c1f; }

    .step:nth-child(1) .step-num { background: #bf121c; }
    .step:nth-child(2) .step-num { background: #31557f; }
    .step:nth-child(3) .step-num { background: #2f7f40; }
    .step:nth-child(4) .step-num { background: #8c5b23; }

    .presencia {
      width: var(--wrap);
      margin: 18px auto 0;
      background: linear-gradient(110deg, #1a1f27 0%, #202634 58%, #2a3140 100%);
      color: #fff;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 255, 255, 0.08);
      padding: 24px;
      display: grid;
      gap: 14px;
      box-shadow: var(--shadow);
    }

    .presencia h3 {
      margin: 0;
      font-family: "Rajdhani", sans-serif;
      text-transform: uppercase;
      font-size: clamp(30px, 3vw, 46px);
      line-height: 0.92;
    }

    .presencia p {
      margin: 0;
      max-width: 760px;
      color: #d6dcea;
      font-size: 15px;
      line-height: 1.6;
    }

    .zonas {
      margin: 2px 0 0;
      padding: 0;
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .zonas li {
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: #f3f6fb;
    }

    .band {
      margin-top: 24px;
      background: linear-gradient(90deg, #9f1019, #c91421 60%, #a30f19);
      color: #fff;
    }

    .band-row {
      width: var(--wrap);
      margin: 0 auto;
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.03em;
    }

    .contact-link {
      width: var(--wrap);
      margin: 18px auto 70px;
      background: linear-gradient(180deg, #ffffff, #f5f8fc);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: 0 10px 22px rgba(16, 20, 27, 0.08);
    }
.wa {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 11px 14px;
      border-radius: 8px;
      background: linear-gradient(90deg, #c91421, #ef5a23);
      border: 1px solid rgba(255, 255, 255, 0.25);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: background 0.2s ease;
    }

    .wa:hover { background: linear-gradient(90deg, #a90f1a, #d84a1c); }

    @media (max-width: 1200px) {
      .menu { display: none; }
    }

    @media (max-width: 1020px) {
      .grid-3cols,
      .metodologia { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .grid-2cols { grid-template-columns: 1fr; }
    }

    @media (max-width: 860px) {
      .stats {
        grid-template-columns: 1fr 1fr;
      }

      .stat {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }

      .stat:nth-child(2n) { border-right: 0; }

      .band-row {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 12px 0;
      }
    }

    @media (max-width: 680px) {
      :root { --wrap: min(1180px, calc(100% - 22px)); }
      .logo { height: 58px; }
      .hero-box { padding-bottom: 90px; }
      .grid-3cols,
      .metodologia { grid-template-columns: 1fr; }
      .btn,
      .wa { width: 100%; justify-content: center; }
}
