
    :root {
      --container: min(1280px, calc(100% - 40px));
      --text: #ffffff;
      --panel: #ffffff;
      --panel-line: rgba(0, 0, 0, 0.045);
      --shadow: 0 24px 60px rgba(0, 0, 0, 0.20);
      --panel-pure: #ffffff;
      --blue-overlay: rgba(7, 26, 44, 0.18);
      --blue-overlay-strong: rgba(7, 26, 44, 0.36);
      --samcor-gray: #4d4d4d;
      --cordobesa-red: #b72b35;
      --transformados-blue: #1c4478;
      --distribucion-teal: #148980;
    }

    * {
      box-sizing: border-box;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 118px;
    }

      /* NUEVO */
    @font-face {
    font-family: 'TT Norms Pro';
    src: url('../../font/ttnorms-regular-webfont.woff2') format('opentype');
    font-weight: 400;
    font-style: normal;
  }

    body {
      /* font-family: Arial, Helvetica, sans-serif; */
      font-family: 'TT Norms Pro', Arial, Helvetica, sans-serif;
      color: #111;
      background: #fff;
    }

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

    img {
      display: block;
      max-width: 100%;
    }
    .page-loader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.94);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .18s ease, visibility .18s ease;
    }

    .page-loader.visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .page-loader img {
      width: min(340px, 72vw);
      max-height: 72vh;
      object-fit: contain;
    }

    body.page-loading {
      overflow: hidden;
    }

    button {
      font: inherit;
      color: inherit;
    }

    .hero {
      position: relative;
      min-height: 860px;
      background:
        linear-gradient(180deg, var(--blue-overlay-strong) 0%, var(--blue-overlay) 24%, rgba(7, 26, 44, 0.10) 54%, rgba(7, 26, 44, 0.16) 100%),
        url("../../images/hero-bg.jpg") center top / cover no-repeat;
      overflow: hidden;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 70%, rgba(20, 39, 57, 0.10) 100%);
      pointer-events: none;
    }

    .header {
      position: absolute;
      inset: 0 0 auto 0;
      z-index: 20;
      color: var(--text);
      padding-top: 8px;
      transition: background .22s ease, box-shadow .22s ease, padding .22s ease;
    }

    body.menu-scrolled .header {
      position: fixed;
      background: rgba(38, 47, 51, .96);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
      backdrop-filter: blur(12px);
      padding: 6px 0 10px;
    }

    body.menu-scrolled .group-brand {
      margin-top: 0;
      margin-bottom: 10px;
    }

    body.menu-scrolled .group-brand img {
      height: clamp(28px, 2.2vw, 38px);
    }

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .header-bar {
      display: block;
    }

    .group-brand {
      display: flex;
      justify-content: center;
      align-items: center;
      /* margin-bottom: 22px;  */
      line-height: 0;
      pointer-events: auto;
      /*  NUEVO */
      margin-bottom: 40px;
      margin-top: 25px;
    }

    .group-brand img {
      /* height: clamp(30px, 2.3vw, 40px); */
      width: auto;
      object-fit: contain;
      image-rendering: auto;
      backface-visibility: hidden;
      transform: translateZ(0);
      /*  NUEVO */
      height: clamp(30px, 3.4vw, 60px);
    }

    .mobile-menu-toggle {
      display: none;
    }

    .mobile-menu-lines {
      position: relative;
      display: block;
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: background .18s ease;
    }

    .mobile-menu-lines::before,
    .mobile-menu-lines::after {
      content: "";
      position: absolute;
      left: 0;
      width: 20px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform .18s ease, top .18s ease;
    }

    .mobile-menu-lines::before {
      top: -6px;
    }

    .mobile-menu-lines::after {
      top: 6px;
    }

    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-lines {
      background: transparent;
    }

    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-lines::before {
      top: 0;
      transform: rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-lines::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .menu-shell {
      position: relative;
      z-index: 3;
    }

    .nav-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      min-height: 36px;
    }

    .nav-cluster {
      grid-column: 2;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      min-width: 0;
    }

    .company-switcher {
      display: flex;
      align-items: center;
      gap: 22px;
      min-width: 0;
      flex: 0 1 auto;
      line-height: 0;
    }

    .company-tab {
      appearance: none;
      -webkit-appearance: none;
      border: 0;
      background: transparent;
      padding: 0;
      margin: 0;
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      cursor: pointer;
      opacity: 0.96;
      transition: opacity .18s ease;
      flex: 0 0 auto;
      line-height: 0;
      position: relative;
      overflow: visible;
      border-radius: 5px;
    }

    .company-tab::before {
      content: "";
      position: absolute;
      inset: -4px -8px;
      background: rgba(255, 255, 255, 0.14);
      border-radius: 5px;
      opacity: 0;
      transition: opacity .18s ease;
      z-index: 0;
      pointer-events: none;
    }

    .company-tab:hover,
    .company-tab:focus-visible,
    .company-tab.active {
      opacity: 1;
      outline: none;
    }

    .company-tab[data-company="cordobesa"] {
      width: 141px;
      height: 32px;
    }

    .company-tab[data-company="transformados"] {
      width: 183px;
      height: 32px;
    }

    .company-tab[data-company="distribucion"] {
      width: 153px;
      height: 32px;
    }

    .company-tab .logo-base,
    .company-tab .logo-accent {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      max-width: none;
      object-fit: contain;
      object-position: left center;
      image-rendering: auto;
      backface-visibility: hidden;
      transform: translateZ(0);
      display: block;
      transform-origin: center center;
      transition: opacity .18s ease, visibility .18s ease;
    }

    .company-tab .logo-base,
    .company-tab .logo-accent {
      z-index: 1;
    }

    .company-tab .logo-base {
      opacity: 1;
      visibility: visible;
    }

    .company-tab .logo-accent {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }

    .company-tab .logo-mobile {
      display: none;
    }

    .company-tab:hover .logo-base,
    .company-tab:focus-visible .logo-base,
    .company-tab.is-colored .logo-base {
      opacity: 0;
      visibility: hidden;
    }

    .company-tab:hover .logo-accent,
    .company-tab:focus-visible .logo-accent,
    .company-tab.is-colored .logo-accent {
      opacity: 1;
      visibility: visible;
    }

    .menu-shell.open .company-tab.active::before {
      opacity: 1;
    }

    .main-links {
      display: flex;
      align-items: center;
      gap: 20px;
      min-width: 0;
      flex: 0 0 auto;
    }

    .main-links a {
      color: #fff;
      font-size: 14px;
      line-height: 1;
      white-space: nowrap;
      position: relative;
      text-shadow: 0 2px 10px rgba(0, 0, 0, .18);
    }

    .main-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 0;
      height: 1px;
      background: rgba(255, 255, 255, .95);
      transition: width .2s ease;
    }

    .main-links a:hover::after,
    .main-links a:focus-visible::after {
      width: 100%;
    }

    .header-tools {
      display: none;
    }

    .mobile-back {
      display: none;
    }

    .mega-panel {
      position: absolute;
      left: 0;
      top: calc(100% + 8px);
      width: 100%;
      background: var(--panel-pure);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 270px 1fr;
      min-height: 360px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateY(8px);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
      isolation: isolate;
      overflow: hidden;
    }

    .mega-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #ffffff;
      z-index: 0;
      pointer-events: none;
    }

    .menu-shell.open .mega-panel {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .mega-sidebar {
      background: transparent;
      border-right: 1px solid var(--panel-line);
      padding: 0;
      position: relative;
      z-index: 1;
    }

    .category-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .category-item {
      border-bottom: 1px solid var(--panel-line);
    }

    .category-btn {
      width: 100%;
      border: 0;
      background: transparent;
      text-align: left;
      padding: 18px 24px;
      font-size: 17px;
      color: #262626;
      cursor: pointer;
      transition: background .18s ease, color .18s ease;
    }

    .category-btn:hover,
    .category-btn:focus-visible,
    .category-btn.active {
      background: #f1f1f1;
      color: #111;
      outline: none;
    }

    .mega-content {
      padding: 22px 28px 26px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      background: transparent;
      position: relative;
      z-index: 1;
    }

    .content-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      gap: 18px;
      border-bottom: 1px solid var(--panel-line);
      padding-bottom: 14px;
    }

    .eyebrow {
      margin: 0 0 4px;
      font-size: 12px;
      letter-spacing: 0.18em;
      color: #757575;
      font-weight: 700;
      text-transform: uppercase;
    }

    .content-title {
      margin: 0;
      font-size: clamp(27px, 2.2vw, 34px);
      line-height: 1.08;
      color: #111;
    }

    .content-copy {
      margin: 10px 0 0;
      font-size: 15px;
      line-height: 1.45;
      color: #5a5a5a;
      max-width: 780px;
    }

    .content-logo {
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
      overflow: visible;
      min-width: 240px;
      padding-left: 12px;
    }

    .content-logo img {
      width: auto;
      height: 26px;
      max-width: 300px;
      max-height: 26px;
      object-fit: contain;
      object-position: right center;
      opacity: .98;
      flex: 0 0 auto;
      display: block;
      transform-origin: right center;
    }

    .content-logo img[data-company="distribucion"] {
      transform: scale(1.2);
    }

    .content-head,
    .product-grid,
    .product-card,
    .product-media {
      background: transparent;
      backdrop-filter: none !important;
      mix-blend-mode: normal;
      opacity: 1;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px 18px;
      align-items: start;
    }

    .product-card {
      display: grid;
      gap: 12px;
      align-content: start;
    }

    .product-card > a,
    .product-card > div {
      display: block;
    }

    .product-media {
      height: 150px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: transparent;
    }

    .product-media img {
      max-height: 138px;
      width: auto;
      object-fit: contain;
      filter: none;
    }

    .product-name {
      margin: 0;
      text-align: center;
      font-size: 16px;
      font-weight: 700;
      color: #242424;
    }

    .hero-spacer {
      height: 140px;
    }

    .demo-copy {
      position: relative;
      z-index: 1;
      width: var(--container);
      margin: 0 auto;
      padding: 300px 0 70px;
      color: #fff;
    }

    .demo-copy h2 {
      margin: 0 0 16px;
      font-size: clamp(32px, 4vw, 58px);
      line-height: .95;
    }

    .demo-copy p {
      margin: 0;
      max-width: 820px;
      font-size: 18px;
      line-height: 1.55;
      color: rgba(255, 255, 255, .9);
    }

    .page-main {
      background: #fff;
      color: #1c252b;
    }

    .story-section,
    .contact-section {
      padding: 110px 0;
    }

    /* Seccion Envia tu proyecto */
    .project-section {
      position: relative;
      overflow: hidden;
      min-height: 660px;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .14) 0%, rgba(255, 255, 255, .48) 34%, rgba(255, 255, 255, .74) 66%, rgba(255, 255, 255, .94) 100%),
        linear-gradient(90deg, rgba(28, 68, 120, .34), rgba(28, 68, 120, .07) 62%, rgba(255, 255, 255, .88) 100%),
        url("../../images/chapa-estampada2.jpg") left center / cover no-repeat;
      color: #1c252b;
      isolation: isolate;
    }

    .project-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 660' preserveAspectRatio='none'%3E%3Cpath fill='rgba(255,255,255,.88)' d='M1086 0 C1052 92 1068 172 998 270 C912 392 860 522 708 660 L1440 660 L1440 0 Z'/%3E%3C/svg%3E") right center / 100% 100% no-repeat;
      pointer-events: none;
      z-index: -1;
    }

    .project-section::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 228px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 228' preserveAspectRatio='none'%3E%3Cpath fill='%23fff' d='M0 154 C170 132 334 104 512 112 C684 120 812 158 966 142 C1130 126 1284 76 1440 28 L1440 228 L0 228 Z'/%3E%3C/svg%3E") center bottom / 100% 100% no-repeat;
      pointer-events: none;
    }

    .project-inner {
      position: relative;
      z-index: 1;
      width: min(910px, calc(100% - 40px));
      margin: 0 auto;
      padding: 134px 0 258px;
    }

    .project-panel {
      max-width: 820px;
    }

    .project-kicker {
      display: block;
      margin-bottom: 14px;
      color: var(--transformados-blue);
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0;
    }

    .project-title {
      margin: 0;
      color: #252a2d;
      font-size: 58px;
      line-height: .96;
      letter-spacing: 0;
      font-weight: 900;
    }

    .project-copy {
      margin: 22px 0 0;
      max-width: 700px;
      color: #4f5a60;
      font-size: 18px;
      line-height: 1.55;
    }

    .project-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 42px;
      align-items: center;
    }

    .project-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 56px;
      padding: 0 34px;
      border-radius: 8px;
      background: var(--transformados-blue);
      color: #fff;
      font-weight: 900;
      letter-spacing: 0;
      transition: background-color .2s ease, transform .2s ease;
    }

    .project-button:hover,
    .project-button:focus-visible {
      background: #15355f;
      transform: translateY(-1px);
    }

    @media (max-width: 980px) {
      .project-section {
        min-height: 560px;
        background-position: 28% center;
      }

      .project-inner {
        width: min(760px, calc(100% - 40px));
        padding: 106px 0 196px;
      }

      .project-title {
        font-size: 50px;
      }
    }

    @media (max-width: 700px) {
      .project-section {
        min-height: 0;
        background-position: 28% center;
      }

      .project-section::after {
        height: 144px;
      }

      .project-inner {
        padding: 82px 0 152px;
      }

      .project-title {
        font-size: 42px;
      }

      .project-kicker {
        font-size: 17px;
      }

      .project-copy {
        font-size: 16px;
      }
    }

    .story-section {
      background: #f5f7f8;
    }

    .section-kicker {
      display: block;
      margin-bottom: 14px;
      color: #707b82;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      max-width: 720px;
      color: #15232b;
      font-size: clamp(32px, 4vw, 58px);
      line-height: 1;
      letter-spacing: 0;
    }

    .section-lead {
      margin: 20px 0 0;
      max-width: 780px;
      color: #5f6a70;
      font-size: 18px;
      line-height: 1.65;
    }

    .story-layout {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 58px;
      align-items: start;
    }

    .story-media {
      position: sticky;
      top: 132px;
      overflow: hidden;
      border-radius: 8px;
      background: #dfe5e8;
    }

    .story-media img {
      width: 100%;
      height: 540px;
      object-fit: cover;
    }

    .story-media-caption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 22px 24px;
      background: linear-gradient(180deg, rgba(21, 35, 43, 0), rgba(21, 35, 43, .86));
      color: #fff;
      font-size: 20px;
      font-weight: 800;
    }

    .story-timeline {
      display: grid;
      gap: 18px;
      margin-top: 38px;
    }

    .story-step {
      display: grid;
      grid-template-columns: 92px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
      padding: 28px 0;
      border-top: 1px solid #d9dee1;
    }

    .story-year {
      color: #0f7d6f;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .story-step h3 {
      margin: 0 0 10px;
      color: #15232b;
      font-size: 24px;
      line-height: 1.15;
    }

    .story-step p {
      margin: 0;
      color: #5f6a70;
      font-size: 16px;
      line-height: 1.6;
    }
    .contact-section {
      position: relative;
      overflow: hidden;
      background: #fff;
    }

    .contact-section::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      height: 220px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 220' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='contactFade' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%234d4d4d' stop-opacity='.38'/%3E%3Cstop offset='.58' stop-color='%234d4d4d' stop-opacity='.12'/%3E%3Cstop offset='1' stop-color='%234d4d4d' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23contactFade)' d='M0 122 C190 96 314 76 486 82 C648 88 774 122 940 116 C1128 110 1278 82 1440 94 L1440 220 L0 220 Z'/%3E%3C/svg%3E") center top / 100% 100% no-repeat;
      pointer-events: none;
    }

    .contact-section::after {
      content: none;
    }

    .contact-section > .container {
      position: relative;
      z-index: 1;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 64px;
      align-items: start;
    }

    .contact-form {
      display: grid;
      gap: 20px;
      margin-top: 34px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid #dce1e4;
      border-radius: 0;
      background: #fff;
      color: #1c252b;
      font: inherit;
      font-size: 15px;
      font-weight: 700;
      padding: 20px 24px;
    }

    .contact-form textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #178a78;
      outline: none;
    }

    .privacy-check {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #5f6a70;
      font-size: 14px;
    }

    .privacy-check input {
      width: 15px;
      height: 15px;
      padding: 0;
      flex: 0 0 auto;
      accent-color: #4d4d4d;
    }

    .privacy-check a {
      color: #0f7d6f;
      font-weight: 700;
    }

    .contact-submit {
      min-height: 56px;
      border: 0;
      border-radius: 0;
      background: #178a78;
      color: #fff;
      cursor: pointer;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .contact-submit:hover,
    .contact-submit:focus-visible {
      background: #126e61;
      outline: none;
    }

    .contact-aside {
      border-left: 1px solid #e2e6e8;
      padding-left: 44px;
    }

    .contact-block {
      padding: 0 0 30px;
      margin-bottom: 30px;
      border-bottom: 1px solid #e2e6e8;
    }

    .contact-block:last-child {
      margin-bottom: 0;
      border-bottom: 0;
    }

    .contact-label {
      display: block;
      margin-bottom: 18px;
      color: #15232b;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .contact-block a,
    .contact-block p {
      margin: 0;
      color: #1c252b;
      font-size: 16px;
      line-height: 1.55;
    }

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

    .social-links a {
      color: #1c252b;
      font-weight: 900;
      letter-spacing: 0;
    }


    .scroll-story {
      min-height: 420vh;
      padding: 0;
      background: #f5f7f8;
    }

    .story-pin {
      position: sticky;
      top: 104px;
      min-height: calc(100vh - 104px);
      display: flex;
      align-items: center;
      padding: 72px 0;
      overflow: hidden;
    }

    .story-board {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 66px;
      align-items: center;
    }

    .story-visual {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      min-height: 660px;
      background: #dfe5e8;
    }

    .story-visual img {
      width: 100%;
      height: 560px;
      object-fit: cover;
      transition: opacity .28s ease, transform .45s ease;
    }

    .story-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(21, 35, 43, 0) 45%, rgba(21, 35, 43, .82) 100%);
      pointer-events: none;
    }

    .story-image-note {
      position: absolute;
      left: 26px;
      right: 26px;
      bottom: 24px;
      z-index: 1;
      margin: 0;
      color: #fff;
      font-size: 22px;
      font-weight: 900;
      line-height: 1.15;
    }

    .story-content {
      position: relative;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .story-active-year {
      display: block;
      margin-bottom: 20px;
      color: #0f7d6f;
      font-size: clamp(42px, 7vw, 96px);
      font-weight: 900;
      line-height: .82;
      letter-spacing: 0;
    }

    .story-active-title {
      margin: 0;
      max-width: 820px;
      color: #15232b;
      font-size: clamp(32px, 4vw, 62px);
      line-height: .98;
      letter-spacing: 0;
    }

    .story-active-copy {
      margin: 24px 0 0;
      max-width: 720px;
      color: #5f6a70;
      font-size: 18px;
      line-height: 1.65;
    }

    .story-steps {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 42px;
    }

    .story-dot {
      border: 1px solid #cfd6da;
      border-radius: 8px;
      background: transparent;
      color: #5f6a70;
      cursor: pointer;
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .story-dot.active {
      border-color: #4d4d4d;
      background: #4d4d4d;
      color: #fff;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: #f2f4f5;
      color: #1c252b;
    }

    .social-links svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    .contact-submit {
      background: #4d4d4d;
    }

    .contact-submit:hover,
    .contact-submit:focus-visible {
      background: #363636;
    }

    .privacy-check a {
      color: #4d4d4d;
    }

    .site-footer {
      position: relative;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(7, 26, 44, .94), rgba(7, 26, 44, .88)),
        url("../../images/hero-bg.jpg") center / cover no-repeat;
      overflow: hidden;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(0, .9fr) minmax(300px, 420px);
      gap: 72px;
      padding: 84px 0 76px;
    }

    .footer-title {
      margin: 0 0 28px;
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .footer-links {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px 34px;
    }

    .footer-links a,
    .footer-info a,
    .footer-info p {
      color: rgba(255, 255, 255, .92);
      font-size: 16px;
      font-weight: 800;
      line-height: 1.45;
    }

    .footer-info {
      display: grid;
      gap: 22px;
    }

    .footer-info-row {
      display: grid;
      grid-template-columns: 42px minmax(0, 1fr);
      gap: 14px;
      align-items: center;
    }

    .footer-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .12);
      color: #fff;
      font-weight: 900;
    }

    .footer-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: min(220px, 100%);
      min-height: 58px;
      margin-top: 8px;
      border-radius: 0;
      background: #4d4d4d;
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
    }

    .footer-map {
      min-height: 260px;
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, .66), rgba(232, 238, 241, .56)),
        url("../../images/footer-chapas-corporativas.png") center / cover no-repeat;
      color: #15232b;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    }

    .footer-map strong {
      font-size: 22px;
      line-height: 1.05;
    }

    .footer-map span {
      color: #4d4d4d;
      font-size: 14px;
      font-weight: 800;
    }

    .footer-bottom {
      background: #0f2a3f;
      padding: 30px 0;
      text-align: center;
      color: rgba(255, 255, 255, .92);
      font-weight: 800;
      letter-spacing: 0;
    }

    .back-to-top {
      position: fixed;
      right: 28px;
      bottom: 28px;
      z-index: 40;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 56px;
      height: 56px;
      border: 0;
      border-radius: 50%;
      background: #4d4d4d;
      color: #fff;
      cursor: pointer;
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    }

    .back-to-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .back-to-top::before {
      content: "";
      display: block;
      width: 13px;
      height: 13px;
      border-top: 3px solid currentColor;
      border-left: 3px solid currentColor;
      transform: rotate(45deg) translate(2px, 2px);
    }

    @media (min-width: 1200px) {
      body.menu-scrolled .header {
        background: transparent;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
        backdrop-filter: none;
        padding: 0;
      }

      body.menu-scrolled .header::before,
      body.menu-scrolled .header::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        z-index: -1;
      }

      body.menu-scrolled .header::before {
        top: 0;
        height: 50px;
        background: #232f34;
      }

      body.menu-scrolled .header::after {
        top: 50px;
        height: 48px;
        background: #4d4d4d;
      }

      body.menu-scrolled .header-bar {
        min-height: 50px;
      }

      body.menu-scrolled .menu-shell {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      body.menu-scrolled .nav-row {
        min-height: 48px;
      }

      body.menu-scrolled .mega-panel {
        top: calc(100% + 0px);
      }
    }

    @media (max-width: 1320px) {
      .nav-cluster {
        gap: 14px;
      }

      .company-switcher {
        gap: 18px;
      }

      .main-links {
        gap: 18px;
      }

      .company-tab[data-company="cordobesa"] {
        width: 123px;
        height: 28px;
      }

      .company-tab[data-company="transformados"] {
        width: 160px;
        height: 28px;
      }

      .company-tab[data-company="distribucion"] {
        width: 134px;
        height: 28px;
      }
    }

    @media (max-width: 980px) {
      :root {
        --container: min(100%, calc(100% - 28px));
      }

      .hero {
        min-height: 980px;
      }

      .nav-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 12px;
      }

      .nav-cluster {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
      }

      .company-switcher,
      .main-links {
        justify-content: center;
        width: auto;
        margin-left: 0;
      }

      .mega-panel {
        position: static;
        width: 100%;
        margin-top: 12px;
        grid-template-columns: 1fr;
        min-height: 0;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }

      .menu-shell.open .mega-panel {
        display: grid;
      }

      .mega-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--panel-line);
      }

      .category-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .content-head,
      .product-grid {
        grid-template-columns: 1fr 1fr;
      }

      .content-logo {
        justify-content: flex-start;
      }

      .hero-spacer {
        height: 240px;
      }

      .demo-copy {
        padding-top: 40px;
      }
    }

    @media (max-width: 700px) {
      .group-brand img {
        height: 30px;
      }

      .company-switcher {
        gap: 14px;
        flex-wrap: wrap;
        justify-content: center;
      }

      .company-tab[data-company="cordobesa"] {
        width: 101px;
        height: 23px;
      }

      .company-tab[data-company="transformados"] {
        width: 132px;
        height: 23px;
      }

      .company-tab[data-company="distribucion"] {
        width: 110px;
        height: 23px;
      }

      .main-links {
        gap: 16px;
        flex-wrap: wrap;
      }

      .content-head,
      .product-grid,
      .category-list {
        grid-template-columns: 1fr;
      }

      .content-title {
        font-size: 28px;
      }

      .product-media {
        height: 138px;
      }

      .demo-copy p {
        font-size: 16px;
      }
    }

    @media (max-width: 1199px) {
      :root {
        --container: min(100%, calc(100% - 28px));
      }

      .header {
        padding-top: 0;
      }

      body.menu-scrolled .header {
        padding: 0;
      }

      body.menu-scrolled .group-brand {
        margin: 0;
      }

      body.menu-scrolled .group-brand img {
        height: 34px;
      }

      .header-bar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-height: 72px;
      }

      .group-brand {
        justify-content: flex-start;
        margin: 0;
        min-width: 0;
        pointer-events: auto;
      }

      .group-brand img {
        height: 42px;
        max-width: min(220px, 58vw);
      }

      .mobile-menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 44px;
        padding: 0 14px;
        border: 1px solid rgba(255, 255, 255, .72);
        border-radius: 8px;
        background: rgba(255, 255, 255, .14);
        color: #fff;
        cursor: pointer;
        font-size: 14px;
        font-weight: 700;
        line-height: 1;
        text-shadow: 0 1px 8px rgba(0, 0, 0, .2);
        backdrop-filter: blur(10px);
      }

      .mobile-menu-toggle:hover,
      .mobile-menu-toggle:focus-visible {
        background: rgba(255, 255, 255, .22);
        outline: none;
      }

      .menu-shell {
        display: none;
        max-height: calc(100vh - 92px);
        overflow: auto;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 20px 48px rgba(0, 0, 0, .24);
        color: #161616;
      }

      .menu-shell.mobile-open {
        display: block;
      }

      .nav-row,
      .nav-cluster {
        display: block;
        min-height: 0;
        width: 100%;
      }

      .company-switcher {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
        border-bottom: 1px solid var(--panel-line);
      }

      .company-tab,
      .company-tab[data-company="cordobesa"],
      .company-tab[data-company="transformados"],
      .company-tab[data-company="distribucion"] {
        width: 100%;
        height: 62px;
        padding: 16px 18px;
        justify-content: space-between;
        gap: 18px;
        border-radius: 0;
      }

      .company-tab::before {
        inset: 0;
        border-radius: 0;
        background: #f3f5f6;
      }

      .company-tab.active::before,
      .menu-shell.open .company-tab.active::before {
        opacity: 1;
      }

      .menu-shell[data-mobile-view="root"] .company-tab.active::before {
        opacity: 0;
      }

      .company-tab::after {
        content: "";
        position: relative;
        z-index: 1;
        display: block;
        width: 9px;
        height: 9px;
        margin-left: auto;
        border-top: 2px solid #4f5559;
        border-right: 2px solid #4f5559;
        transform: rotate(45deg);
      }

      .company-tab .logo-base,
      .company-tab .logo-accent {
        display: none;
      }

      .company-tab .logo-mobile {
        position: relative;
        z-index: 1;
        display: block;
        width: auto;
        height: 24px;
        max-width: 100%;
        object-fit: contain;
        object-position: center center;
      }

      .main-links {
        display: grid;
        gap: 0;
        justify-content: stretch;
        width: 100%;
        padding: 12px 0 16px;
        border-bottom: 0;
      }

      .main-links a {
        display: block;
        width: 100%;
        padding: 12px 18px;
        color: #171717;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
        text-align: left;
        text-shadow: none;
        border-bottom: 0;
      }

      .main-links a:last-child {
        border-bottom: 0;
      }

      .main-links a::after {
        display: none;
      }

      .menu-shell[data-mobile-view="categories"] .nav-row,
      .menu-shell[data-mobile-view="products"] .nav-row {
        display: none;
      }

      .mega-panel {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        min-height: 0;
        margin-top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
      }

      .menu-shell[data-mobile-view="root"] .mega-panel {
        display: none;
      }

      .menu-shell[data-mobile-view="categories"] .mega-content,
      .menu-shell[data-mobile-view="products"] .mega-sidebar {
        display: none;
      }

      .mega-sidebar {
        border-right: 0;
        border-bottom: 1px solid var(--panel-line);
      }

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

      .category-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        min-height: 58px;
        padding: 16px 18px;
        font-size: 15px;
        line-height: 1.25;
      }

      .category-btn::after {
        content: "";
        display: block;
        width: 9px;
        height: 9px;
        border-top: 2px solid #4f5559;
        border-right: 2px solid #4f5559;
        transform: rotate(45deg);
        flex: 0 0 auto;
      }

      .mega-content {
        padding: 20px 18px 24px;
        gap: 18px;
      }

      .content-head {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .content-logo {
        justify-content: flex-start;
        min-width: 0;
        padding-left: 0;
      }

      .content-logo img {
        height: 24px;
        max-height: 24px;
        max-width: min(300px, 100%);
        object-position: left center;
      }

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

      .menu-shell[data-mobile-view="products"] .content-copy,
      .menu-shell[data-mobile-view="products"] .content-logo {
        display: none;
      }

      .menu-shell[data-mobile-view="products"] .product-grid {
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid var(--panel-line);
      }

      .menu-shell[data-mobile-view="products"] .product-card > a,
      .menu-shell[data-mobile-view="products"] .product-card > div {
        display: grid;
        grid-template-columns: 70px minmax(0, 1fr);
        align-items: center;
        gap: 14px;
        min-height: 88px;
        padding: 12px 0;
        border-bottom: 1px solid var(--panel-line);
      }

      .menu-shell[data-mobile-view="products"] .product-name {
        text-align: left;
        font-size: 16px;
        line-height: 1.25;
      }

      .product-media {
        height: 128px;
      }

      .menu-shell[data-mobile-view="products"] .product-media {
        width: 70px;
        height: 64px;
      }

      .product-media img {
        max-height: 132px;
      }

      .menu-shell[data-mobile-view="products"] .product-media img {
        max-width: 70px;
        max-height: 58px;
      }

      .mobile-back {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        width: calc(100% - 36px);
        min-height: 46px;
        margin: 18px;
        border: 1px solid #d9dde0;
        border-radius: 8px;
        background: #fff;
        color: #171717;
        cursor: pointer;
        font-size: 15px;
        font-weight: 700;
      }

      .mobile-back:hover,
      .mobile-back:focus-visible {
        background: #f3f5f6;
        outline: none;
      }

      .mobile-back span {
        display: block;
        width: 9px;
        height: 9px;
        border-top: 2px solid currentColor;
        border-right: 2px solid currentColor;
        font-size: 0;
        line-height: 1;
        transform: rotate(-135deg);
      }

      .hero-spacer {
        height: 120px;
      }

      .demo-copy {
        padding-top: 260px;
      }
    }

    @media (max-width: 700px) {
      .header-bar {
        min-height: 64px;
      }

      .group-brand img {
        height: 34px;
        max-width: min(190px, 54vw);
      }

      .mobile-menu-toggle {
        min-height: 42px;
        padding: 0 12px;
      }

      .category-list,
      .product-grid {
        grid-template-columns: 1fr;
      }

      .company-tab,
      .company-tab[data-company="cordobesa"],
      .company-tab[data-company="transformados"],
      .company-tab[data-company="distribucion"] {
        justify-content: flex-start;
        height: 58px;
        padding: 15px 18px;
      }

      .company-tab .logo-mobile {
        height: 22px;
        object-position: left center;
      }

      .demo-copy {
        padding-top: 220px;
      }
    }

    @media (max-width: 980px) {
      html {
        scroll-padding-top: 86px;
      }

      .story-section,
      .contact-section {
        padding: 76px 0;
      }

      .story-layout,
      .contact-layout,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .story-layout,
      .contact-layout {
        gap: 38px;
      }

      .story-media {
        position: relative;
        top: auto;
      }

      .story-media img {
        height: 360px;
      }

      .contact-aside {
        border-left: 0;
        border-top: 1px solid #e2e6e8;
        padding-left: 0;
        padding-top: 34px;
      }
    }

    @media (max-width: 700px) {
      .story-step {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .story-media img {
        height: 300px;
      }

      .section-lead {
        font-size: 16px;
      }

      .contact-form input,
      .contact-form textarea {
        padding: 17px 18px;
      }
    }

    .header .container {
      position: relative;
      z-index: 1;
    }

    @media (max-width: 1199px) {
      .scroll-story {
        min-height: 360vh;
      }

      .story-pin {
        top: 72px;
        min-height: calc(100vh - 72px);
        padding: 46px 0;
      }

      .story-board {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .story-visual {
        min-height: 300px;
        max-width: 820px;
        width: 100%;
        margin: 0 auto;
      }

      .story-visual img {
        height: 300px;
      }

      .story-content {
        min-height: 0;
      }

      .story-active-year {
        margin-bottom: 12px;
      }

      .story-active-copy {
        margin-top: 18px;
        font-size: 16px;
      }

      .story-steps {
        margin-top: 26px;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 42px;
        padding: 64px 0;
      }

      .footer-links {
        grid-template-columns: 1fr;
      }

      .footer-map {
        min-height: 220px;
      }
    }

    @media (max-width: 980px) {
      .contact-layout,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .contact-layout {
        gap: 38px;
      }

      .contact-aside {
        border-left: 0;
        border-top: 1px solid #e2e6e8;
        padding-left: 0;
        padding-top: 34px;
      }
    }

    @media (max-width: 700px) {
      .story-pin {
        align-items: flex-start;
        padding-top: 32px;
      }

      .story-visual,
      .story-visual img {
        min-height: 240px;
        height: 240px;
      }

      .story-image-note {
        left: 18px;
        right: 18px;
        bottom: 18px;
        font-size: 18px;
      }

      .story-active-title {
        font-size: 31px;
      }

      .story-dot {
        padding: 9px 11px;
      }

      .contact-section {
        padding-top: 72px;
      }

      .contact-form input,
      .contact-form textarea {
        padding: 17px 18px;
      }

      .back-to-top {
        right: 18px;
        bottom: 18px;
        width: 48px;
        height: 48px;
      }
    }

    /* Ajustes finales de cabecera e historia */
    @media (min-width: 1200px) {
      body.menu-scrolled .header::before {
        height: 60px;
        background: #4d4d4d;
      }

      body.menu-scrolled .header::after {
        top: 60px;
        height: 48px;
        background: #666666;
      }

      body.menu-scrolled .header-bar {
        min-height: 60px;
      }

      body.menu-scrolled .group-brand {
        margin-top: 0;
        margin-bottom: 0;
      }

      body.menu-scrolled .menu-shell,
      body.menu-scrolled .nav-row {
        min-height: 48px;
      }
    }

    .scroll-story {
      min-height: 180vh;
      background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .12), rgba(255, 255, 255, 0) 24%),
        linear-gradient(120deg, rgba(7, 26, 44, .96), rgba(21, 35, 43, .94)),
        url("../../images/hero-bg.jpg") center / cover no-repeat;
      color: #fff;
    }

    .story-pin {
      top: 108px;
      min-height: calc(100vh - 108px);
      padding: 46px 0;
    }

    .story-board {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 64px;
      position: relative;
      align-items: center;
    }

    .story-board::before {
      content: "GRUPO SAMCOR";
      position: absolute;
      left: -4px;
      top: -62px;
      color: rgba(255, 255, 255, .055);
      font-size: clamp(58px, 9vw, 128px);
      font-weight: 900;
      line-height: .8;
      letter-spacing: 0;
      pointer-events: none;
      white-space: nowrap;
    }

    .story-visual {
      min-height: min(58vh, 560px);
      background: #101c23;
      box-shadow: 0 34px 80px rgba(0, 0, 0, .34);
      isolation: isolate;
    }

    .story-visual::before {
      content: none;
    }

    .story-visual::after {
      background:
        radial-gradient(circle at 92% 92%, rgba(7, 26, 44, .98) 0%, rgba(7, 26, 44, .74) 20%, rgba(7, 26, 44, .18) 48%, rgba(7, 26, 44, 0) 72%),
        linear-gradient(90deg, rgba(7, 26, 44, .72), rgba(7, 26, 44, .08) 42%, rgba(7, 26, 44, .84) 100%),
        linear-gradient(180deg, rgba(21, 35, 43, 0) 46%, rgba(21, 35, 43, .9) 100%);
      z-index: 1;
    }

    .story-visual img {
      height: min(58vh, 560px);
      filter: saturate(.92) contrast(1.08);
      transform: scale(1.04);
    }

    .story-image-note {
      z-index: 2;
      max-width: 360px;
      font-size: clamp(22px, 2.4vw, 34px);
      line-height: 1.05;
    }

    .story-content {
      min-height: min(58vh, 560px);
      padding: 46px 0 42px 42px;
      border-left: 1px solid rgba(255, 255, 255, .22);
    }

    .story-content::before {
      content: "";
      position: absolute;
      left: -4px;
      top: 50%;
      width: 7px;
      height: 134px;
      border-radius: 7px;
      background: #ffffff;
      transform: translateY(-50%);
    }

    .story-content .section-kicker {
      color: rgba(255, 255, 255, .72);
    }

    .story-active-year {
      color: #fff;
      font-size: clamp(54px, 8vw, 118px);
      text-transform: uppercase;
      text-shadow: 0 18px 45px rgba(0, 0, 0, .22);
    }

    .story-active-title {
      color: #fff;
      max-width: 780px;
      font-size: clamp(34px, 4.4vw, 68px);
    }

    .story-active-copy {
      color: rgba(255, 255, 255, .78);
      max-width: 700px;
    }

    .story-dot {
      border-color: rgba(255, 255, 255, .24);
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .72);
    }

    .story-dot.active {
      border-color: #fff;
      background: #fff;
      color: #1c252b;
    }

    @media (max-width: 1199px) {
      .scroll-story {
        min-height: 160vh;
      }

      .story-pin {
        top: 72px;
        min-height: calc(100vh - 72px);
        padding: 34px 0;
      }

      .story-board {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .story-board::before {
        top: -26px;
        font-size: 56px;
      }

      .story-visual,
      .story-visual img {
        height: 300px;
        min-height: 300px;
      }

      .story-content {
        min-height: 0;
        padding: 0 0 0 22px;
      }
    }

    @media (max-width: 700px) {
      .scroll-story {
        min-height: 150vh;
      }

      .story-pin {
        padding-top: 28px;
      }

      .story-board::before {
        font-size: 42px;
      }

      .story-visual,
      .story-visual img {
        height: 250px;
        min-height: 250px;
      }

      .story-image-note {
        font-size: 20px;
      }

      .story-content {
        padding-left: 18px;
      }

      .story-active-title {
        font-size: 34px;
      }
    }

    @media (min-width: 1200px) {
      body.menu-scrolled .group-brand {
        padding-top: 10px;
      }
    }

    .scroll-story {
      min-height: 145vh;
    }

    @media (max-width: 1199px) {
      .scroll-story {
        min-height: 138vh;
      }
    }

    @media (max-width: 700px) {
      .scroll-story {
        min-height: 132vh;
      }
    }

    .scroll-story {
      min-height: 130vh;
    }

    .story-visual {
      min-height: min(48vh, 470px);
    }

    .story-visual img {
      height: min(48vh, 470px);
    }

    .story-content {
      min-height: min(48vh, 470px);
    }

    @media (max-width: 1199px) {
      .scroll-story {
        min-height: 128vh;
      }
    }

    @media (max-width: 700px) {
      .scroll-story {
        min-height: 124vh;
      }
    }

    .scroll-story {
      min-height: 175vh;
    }

    @media (max-width: 1199px) {
      .scroll-story {
        min-height: 165vh;
      }
    }

    @media (max-width: 700px) {
      .scroll-story {
        min-height: 155vh;
      }
    }

    .story-board::before {
      content: "EMPRESA";
    }

    .story-active-title {
      margin-top: 16px;
      color: rgba(255, 255, 255, .86);
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.05;
      letter-spacing: .02em;
    }

    .story-active-copy {
      margin-top: 16px;
      max-width: 820px;
    }

    .scroll-story {
      min-height: 235vh;
    }

    @media (max-width: 1199px) {
      .scroll-story {
        min-height: 215vh;
      }
    }

    @media (max-width: 700px) {
      .scroll-story {
        min-height: 205vh;
      }

      .story-active-title {
        font-size: 25px;
      }
    }
    /* Acentos corporativos Grupo Samcor */
    .scroll-story {
      --story-color: var(--samcor-gray);
    }

    .story-board::after {
      content: none;
    }

    .story-content::before {
      background: var(--cordobesa-red);
      box-shadow: 0 0 0 7px rgba(255, 255, 255, .055), 0 18px 44px rgba(0, 0, 0, .24);
    }

    .story-active-year {
      font-size: clamp(30px, 4.5vw, 66px);
    }

    .story-visual {
      position: relative;
    }

    .story-visual::before {
      content: none;
    }

    .story-image-note::before {
      content: "";
      display: block;
      width: 86px;
      height: 3px;
      margin-bottom: 18px;
      border-radius: 8px;
      background: var(--cordobesa-red);
      opacity: .92;
    }

    .story-dot {
      position: relative;
      overflow: hidden;
      transition: border-color .22s ease, background-color .22s ease, color .22s ease, transform .22s ease;
    }

    .story-dot::before {
      content: none;
    }

    .story-dot:hover,
    .story-dot:focus-visible {
      border-color: rgba(255, 255, 255, .5);
      transform: translateY(-1px);
    }

    .story-dot.active {
      border-color: #fff;
      background: #fff;
      color: #1c252b;
    }

    .story-dot.active::before {
      content: none;
    }

    .social-links a:nth-child(1):hover,
    .social-links a:nth-child(1):focus-visible { background: var(--cordobesa-red); color: #fff; }
    .social-links a:nth-child(2):hover,
    .social-links a:nth-child(2):focus-visible { background: var(--transformados-blue); color: #fff; }
    .social-links a:nth-child(3):hover,
    .social-links a:nth-child(3):focus-visible { background: var(--distribucion-teal); color: #fff; }

    .privacy-check input:checked {
      accent-color: var(--samcor-gray);
    }

    .site-footer {
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: linear-gradient(90deg, var(--cordobesa-red), var(--transformados-blue), var(--distribucion-teal));
      opacity: .95;
    }

    .footer-map {
      position: relative;
      overflow: hidden;
    }

    .footer-map::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 5px;
      background: linear-gradient(90deg, rgba(183, 43, 53, .88), rgba(28, 68, 120, .88), rgba(20, 137, 128, .88));
      opacity: .78;
    }

    .footer-icon,
    .back-to-top {
      background: var(--samcor-gray);
    }

    .footer-cta,
    .contact-submit {
      background: var(--samcor-gray);
    }

    .footer-links a:hover,
    .footer-links a:focus-visible,
    .footer-info a:hover,
    .footer-info a:focus-visible {
      color: #ffffff;
      text-decoration-color: var(--distribucion-teal);
    }

    @media (max-width: 700px) {
      .story-board::after {
        left: 0;
        right: auto;
        bottom: -18px;
        width: min(260px, 72vw);
      }

      .story-active-year {
        font-size: clamp(26px, 9vw, 44px);
      }
    }
    /* Ajustes finales de empresa y contacto */
    .scroll-story {
      background:
        radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .045), rgba(255, 255, 255, 0) 30%),
        linear-gradient(120deg, rgba(7, 26, 44, .88), rgba(21, 35, 43, .84)),
        url("../../images/hero-bg.jpg") center / cover no-repeat;
      color: #fff;
    }

    .scroll-story .story-visual {
      border: 0;
      outline: 0;
      background: #071a2c;
      box-shadow: 0 34px 80px rgba(0, 0, 0, .34);
    }

    .scroll-story .story-visual::before {
      content: none;
    }

    .scroll-story .story-visual::after {
      inset: -2px;
      background:
        radial-gradient(ellipse at 103% 98%, rgba(7, 26, 44, 1) 0%, rgba(7, 26, 44, .94) 18%, rgba(7, 26, 44, .68) 36%, rgba(7, 26, 44, .18) 62%, rgba(7, 26, 44, 0) 76%),
        linear-gradient(180deg, rgba(7, 26, 44, 0) 50%, rgba(7, 26, 44, .9) 100%),
        linear-gradient(90deg, rgba(7, 26, 44, .48), rgba(7, 26, 44, .02) 38%, rgba(7, 26, 44, .82) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .scroll-story .story-visual img {
      display: block;
      width: 100%;
      max-width: none;
      margin: 0 0 -4px;
      transform: scale(1.055);
      transform-origin: center;
      filter: saturate(.92) contrast(1.08);
      -webkit-mask-image: radial-gradient(ellipse at 101% 99%, transparent 0%, rgba(0, 0, 0, .35) 26%, #000 64%);
      mask-image: radial-gradient(ellipse at 101% 99%, transparent 0%, rgba(0, 0, 0, .35) 26%, #000 64%);
    }

    .contact-section {
      padding-top: 150px;
    }

    @media (max-width: 700px) {
      .contact-section {
        padding-top: 118px;
      }
    }
  
    body.legal-page{background:#f5f7f8;color:#1c252b}.legal-hero{position:relative;z-index:30;min-height:190px;background:linear-gradient(180deg,rgba(7,26,44,.74),rgba(7,26,44,.58)),url("../../images/hero-bg.jpg") center 38%/cover no-repeat;overflow:visible}.legal-page .page-main{position:relative;z-index:1}.legal-hero:after{content:"";position:absolute;inset:auto 0 0;height:5px;background:linear-gradient(90deg,var(--cordobesa-red),var(--transformados-blue),var(--distribucion-teal));opacity:.9}.legal-section{padding:86px 0 96px;background:#f5f7f8}.legal-layout{display:grid;grid-template-columns:280px minmax(0,1fr);gap:56px;align-items:start}.legal-index{position:sticky;top:132px;padding:24px;border-left:5px solid var(--samcor-gray);background:#fff;box-shadow:0 18px 48px rgba(7,26,44,.08);border-radius:8px}.legal-index span{display:block;margin-bottom:16px;color:#68737a;font-size:12px;font-weight:900;letter-spacing:.14em;text-transform:uppercase}.legal-index a{display:block;padding:9px 0;color:#253039;font-size:15px;font-weight:800;border-bottom:1px solid #e7eaec}.legal-index a:last-child{border-bottom:0}.legal-article{background:#fff;border-radius:8px;padding:clamp(30px,5vw,64px);box-shadow:0 22px 60px rgba(7,26,44,.08)}.legal-kicker{display:block;margin-bottom:14px;color:var(--samcor-gray);font-size:13px;font-weight:900;letter-spacing:.18em;text-transform:uppercase}.legal-article h1{margin:0 0 28px;color:#15232b;font-size:clamp(36px,5vw,64px);line-height:.95;letter-spacing:0}.legal-article h2{margin:42px 0 14px;color:#15232b;font-size:clamp(22px,2.4vw,32px);line-height:1.1;letter-spacing:0}.legal-article h3{margin:28px 0 10px;color:#253039;font-size:18px;line-height:1.25}.legal-article p,.legal-article li{color:#4f5a60;font-size:17px;line-height:1.72}.legal-article p{margin:0 0 16px}.legal-article ul,.legal-article ol{margin:0 0 22px;padding-left:22px}.legal-article a{color:var(--transformados-blue);font-weight:900;text-decoration:underline;text-decoration-thickness:1px;text-underline-offset:3px}.legal-note{margin:0 0 30px;padding:18px 20px;border-left:5px solid var(--distribucion-teal);background:#f5f7f8;color:#344047;border-radius:8px}.cookie-table-wrap{overflow-x:auto;margin:26px 0;border:1px solid #e2e6e8;border-radius:8px}.cookie-table{width:100%;min-width:820px;border-collapse:collapse;font-size:14px}.cookie-table th,.cookie-table td{padding:14px 16px;border-bottom:1px solid #e2e6e8;text-align:left;vertical-align:top}.cookie-table th{background:#4d4d4d;color:#fff;font-size:12px;letter-spacing:.08em;text-transform:uppercase}.cookie-table tr:last-child td{border-bottom:0}.cookie-banner{position:fixed;left:24px;right:24px;bottom:24px;z-index:80;display:none;justify-content:center;pointer-events:none}.cookie-banner.visible{display:flex}.cookie-panel{width:min(960px,100%);max-height:calc(100vh - 48px);overflow:auto;padding:24px;border-radius:8px;background:#fff;color:#1c252b;box-shadow:0 28px 80px rgba(0,0,0,.24);border-top:5px solid var(--samcor-gray);pointer-events:auto}.cookie-panel h2{margin:0 0 10px;font-size:22px;line-height:1.15}.cookie-panel p{margin:0;color:#566168;font-size:15px;line-height:1.55}.cookie-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}.cookie-button{min-height:44px;padding:0 18px;border:1px solid #d8dde0;border-radius:8px;background:#fff;color:#1c252b;font-weight:900;cursor:pointer;display:inline-flex;align-items:center}.cookie-button.primary{border-color:var(--samcor-gray);background:var(--samcor-gray);color:#fff}.cookie-button.ghost{background:#f5f7f8}.cookie-settings{display:none;margin-top:22px;padding-top:18px;border-top:1px solid #e2e6e8}.cookie-settings.open{display:grid;gap:14px}.cookie-option{display:grid;grid-template-columns:1fr auto;gap:20px;align-items:center;padding:16px;border:1px solid #e2e6e8;border-radius:8px;background:#fbfcfc}.cookie-option strong{display:block;margin-bottom:4px;color:#253039}.cookie-option span{display:block;color:#6a747a;font-size:14px;line-height:1.45}.cookie-option input{width:22px;height:22px;accent-color:var(--samcor-gray)}@media(max-width:980px){.legal-layout{grid-template-columns:1fr;gap:26px}.legal-index{position:relative;top:auto}}@media(max-width:700px){.legal-hero{min-height:98px}.legal-section{padding:44px 0 64px}.legal-article{padding:26px 20px}.cookie-banner{left:12px;right:12px;bottom:12px}.cookie-panel{padding:20px}.cookie-option{grid-template-columns:1fr}}