/* =========================================================
       TOKENS
    ========================================================= */
    :root {
      --red:       #D01A1A;
      --red-dark:  #A01010;
      --red-light: #FF2828;
      --navy:      #0D1B3E;
      --navy-mid:  #162348;
      --navy-light:#1E2F5C;
      --white:     #FFFFFF;
      --off-white: #F5F5F7;
      --grey-100:  #E8E8EC;
      --grey-300:  #B0B0BB;
      --grey-500:  #6B6B7A;
      --gold:      #F5C518;
      --font-display: 'Plus Jakarta Sans', sans-serif;
      --font-body:    'Plus Jakarta Sans', sans-serif;
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* =========================================================
       UTILITIES
    ========================================================= */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .tag {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4.5vw, 52px);
      font-weight: 800;
      line-height: 1.08;
      color: var(--navy);
      letter-spacing: -0.5px;
    }
    .section-title span { color: var(--red); }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.2s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 13px 28px;
      border: 2px solid rgba(255,255,255,0.5);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s, background 0.2s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    /* =========================================================
       NAV
    ========================================================= */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--grey-100);
      transition: background 0.3s, box-shadow 0.3s;
    }
    nav.scrolled {
      box-shadow: 0 2px 24px rgba(13,27,62,0.08);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 92px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-logo img {
      height: 68px;
      width: auto;
      object-fit: contain;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--grey-500);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--navy); }
    .nav-cta {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: var(--red);
      color: white;
      padding: 10px 20px;
      text-decoration: none;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
      transition: background 0.2s;
    }
    .nav-cta:hover { background: var(--red-dark); }

    /* =========================================================
       HERO
    ========================================================= */
    #hero {
      min-height: 100vh;
      background: var(--navy);
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }
    .hero-bg-grid { display: none; }
    .hero-bg-glow {
      position: absolute;
      width: 700px;
      height: 700px;
      background: radial-gradient(ellipse, rgba(208,26,26,0.18) 0%, transparent 70%);
      top: -100px;
      right: -100px;
      pointer-events: none;
    }
    .hero-bg-glow-2 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(ellipse, rgba(30,47,92,0.9) 0%, transparent 70%);
      bottom: 0;
      left: 0;
      pointer-events: none;
    }
    .hero-stripe {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 5px;
      background: linear-gradient(90deg, var(--red) 0%, var(--red-light) 50%, var(--red) 100%);
    }
    .hero-content {
      flex: 1;
      display: flex;
      align-items: center;
      padding-top: 92px;
      position: relative;
      z-index: 2;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 32px;
    }
    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .hero-eyebrow-line {
      width: 40px;
      height: 2px;
      background: var(--red);
    }
    .hero-eyebrow-text {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
    }
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(48px, 6.5vw, 84px);
      font-weight: 800;
      line-height: 1.02;
      color: var(--white);
      letter-spacing: -1px;
      margin-bottom: 24px;
    }
    .hero-title .highlight { color: var(--red); display: block; }
    .hero-lema {
      font-size: 16px;
      color: rgba(255,255,255,0.65);
      line-height: 1.65;
      max-width: 440px;
      margin-bottom: 36px;
      font-style: italic;
      border-left: 3px solid var(--red);
      padding-left: 16px;
    }
    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
      margin-top: 64px;
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 40px;
    }
    .hero-stat {
      padding-right: 24px;
    }
    .hero-stat + .hero-stat {
      border-left: 1px solid rgba(255,255,255,0.08);
      padding-left: 24px;
    }
    .hero-stat-number {
      font-family: var(--font-display);
      font-size: 48px;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .hero-stat-number span { color: var(--red); }
    .hero-stat-label {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-top: 6px;
      font-family: var(--font-display);
      font-weight: 600;
    }
    /* Right side visual */
    .hero-visual {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .hero-card-main {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 32px;
      position: relative;
      overflow: hidden;
    }
    .hero-card-main::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--red), transparent);
    }
    .hero-card-rif {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.35);
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .hero-card-brand {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 900;
      color: var(--white);
      text-transform: uppercase;
      line-height: 1;
      margin-bottom: 8px;
    }
    .hero-card-brand span { color: var(--red); }
    .hero-card-sub {
      font-size: 13px;
      color: rgba(255,255,255,0.5);
      line-height: 1.5;
    }
    .hero-card-icon {
      position: absolute;
      bottom: 24px;
      right: 24px;
      opacity: 0.1;
    }
    .hero-card-icon svg { width: 72px; height: 72px; fill: white; }
    .hero-cards-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .hero-mini-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .hero-mini-card-num {
      font-family: var(--font-display);
      font-size: 32px;
      font-weight: 900;
      color: var(--red);
      line-height: 1;
    }
    .hero-mini-card-label {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      font-family: var(--font-display);
      font-weight: 500;
      letter-spacing: 0.5px;
    }

    /* =========================================================
       MARCAS BANNER
    ========================================================= */
    #marcas-banner {
      background: var(--off-white);
      border-bottom: 1px solid var(--grey-100);
      padding: 28px 0;
    }
    .marcas-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
      flex-wrap: wrap;
    }
    .marca-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 0 40px;
      position: relative;
    }
    .marca-item + .marca-item::before {
      content: '';
      position: absolute;
      left: 0; top: 50%; transform: translateY(-50%);
      width: 1px;
      height: 32px;
      background: var(--grey-100);
    }
    .marca-logo-circle {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--grey-100);
      transition: transform 0.2s;
    }
    .marca-logo-circle img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .marca-logo-circle:hover { transform: scale(1.08); }
    .marca-name {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--grey-500);
    }
    .marca-divider-text {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--grey-300);
      margin: 0 20px;
    }

    /* =========================================================
       ABOUT / RESUMEN
    ========================================================= */
    #about {
      padding: 120px 0;
      background: var(--white);
      position: relative;
      overflow: hidden;
    }
    .about-accent {
      position: absolute;
      right: -80px;
      top: 50%;
      transform: translateY(-50%);
      font-family: var(--font-display);
      font-size: 280px;
      font-weight: 900;
      color: rgba(208,26,26,0.04);
      text-transform: uppercase;
      line-height: 1;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    .about-left { }
    .about-body {
      font-size: 16px;
      line-height: 1.75;
      color: var(--grey-500);
      margin: 24px 0 36px;
    }
    .about-highlights {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .about-highlight {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .about-highlight-icon {
      width: 36px;
      height: 36px;
      min-width: 36px;
      background: rgba(208,26,26,0.08);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-highlight-icon svg { width: 18px; height: 18px; stroke: var(--red); fill: none; stroke-width: 2; }
    .about-highlight-text {
      font-size: 14px;
      color: var(--grey-500);
      line-height: 1.6;
    }
    .about-highlight-text strong { color: var(--navy); font-weight: 600; display: block; margin-bottom: 2px; }
    /* right side — big number cards */
    .about-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .about-num-card {
      background: var(--navy);
      padding: 28px 24px;
      position: relative;
      overflow: hidden;
    }
    .about-num-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--red);
    }
    .about-num-card:first-child {
      grid-column: span 2;
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .about-num {
      font-family: var(--font-display);
      font-size: 72px;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
    }
    .about-num span { color: var(--red); }
    .about-num-label {
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 600;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
      letter-spacing: 1px;
      line-height: 1.3;
    }
    .about-num-card-sm .about-num { font-size: 48px; margin-bottom: 8px; }

    /* =========================================================
       HISTORIA
    ========================================================= */
    #historia {
      padding: 120px 0;
      background: var(--off-white);
      position: relative;
    }
    .historia-header { text-align: center; margin-bottom: 72px; }
    .historia-header .section-title { max-width: 600px; margin: 0 auto; }
    .historia-header p { color: var(--grey-500); margin-top: 16px; font-size: 16px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.65; }
    /* HORIZONTAL TIMELINE */
    .timeline {
      position: relative;
      width: 100%;
      overflow-x: auto;
      padding-bottom: 24px;
      /* hide scrollbar but keep scroll */
      scrollbar-width: none;
    }
    .timeline::-webkit-scrollbar { display: none; }
    .timeline-track {
      display: flex;
      align-items: flex-start;
      gap: 0;
      min-width: max-content;
      padding: 60px 0 24px;
      position: relative;
    }
    /* horizontal connecting line */
    .timeline-track::before {
      content: '';
      position: absolute;
      top: 30px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--red) 0%, rgba(208,26,26,0.15) 100%);
    }
    .tl-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 280px;
      min-width: 280px;
      position: relative;
    }
    /* dot on the line */
    .tl-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--red);
      border: 3px solid var(--off-white);
      box-shadow: 0 0 0 3px var(--red);
      position: relative;
      z-index: 2;
      flex-shrink: 0;
      margin-bottom: 28px;
    }
    .tl-connector {
      width: 2px;
      height: 28px;
      background: rgba(208,26,26,0.3);
      margin-bottom: 0;
    }
    .tl-card {
      background: var(--white);
      border: 1px solid var(--grey-100);
      padding: 24px 20px;
      position: relative;
      width: 240px;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .tl-card:hover {
      border-color: rgba(208,26,26,0.3);
      box-shadow: 0 8px 28px rgba(208,26,26,0.08);
      transform: translateY(-4px);
    }
    .tl-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: var(--red);
    }
    .tl-year {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      color: var(--red);
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .tl-card-title {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -0.3px;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    .tl-card-body {
      font-size: 13px;
      color: var(--grey-500);
      line-height: 1.6;
    }
    /* scroll hint arrow */
    .timeline-hint {
      display: flex;
      align-items: center;
      gap: 8px;
      justify-content: flex-end;
      margin-bottom: 20px;
    }
    .timeline-hint-text {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--grey-300);
    }
    .timeline-hint-arrow { color: var(--red); font-size: 18px; animation: nudge 1.6s ease-in-out infinite; }
    @keyframes nudge { 0%,100%{transform:translateX(0)} 50%{transform:translateX(6px)} }

    /* =========================================================
       MISIÓN / VISIÓN
    ========================================================= */
    #mision-vision {
      padding: 120px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .mv-bg { display: none; }
    .mv-glow {
      position: absolute;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(208,26,26,0.15) 0%, transparent 70%);
    }
    .mv-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }
    .mv-header .section-title { color: var(--white); }
    .mv-header p { color: rgba(255,255,255,0.5); margin-top: 16px; font-size: 16px; }
    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      position: relative;
      z-index: 2;
    }
    .mv-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      transition: background 0.3s, border-color 0.3s;
    }
    .mv-card:hover {
      background: rgba(255,255,255,0.07);
      border-color: rgba(208,26,26,0.4);
    }
    .mv-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 3px;
      background: linear-gradient(90deg, var(--red), transparent);
    }
    .mv-card-type {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 16px;
    }
    .mv-card-title {
      font-family: var(--font-display);
      font-size: 40px;
      font-weight: 900;
      color: var(--white);
      text-transform: uppercase;
      margin-bottom: 24px;
      line-height: 1;
    }
    .mv-card-body {
      font-size: 15px;
      color: rgba(255,255,255,0.6);
      line-height: 1.75;
    }
    .mv-card-icon {
      position: absolute;
      bottom: 32px;
      right: 32px;
      opacity: 0.06;
    }
    .mv-card-icon svg { width: 100px; height: 100px; fill: white; }
    .mv-values {
      margin-top: 72px;
      position: relative;
      z-index: 2;
    }
    .mv-values-title {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      text-align: center;
      margin-bottom: 28px;
    }
    .mv-values-list {
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .mv-value {
      font-family: var(--font-display);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      padding: 10px 24px;
      border: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      cursor: default;
    }
    .mv-value:hover {
      color: var(--white);
      border-color: var(--red);
      background: rgba(208,26,26,0.08);
    }

    /* =========================================================
       PRODUCTOS / CATÁLOGO
    ========================================================= */
    #productos {
      padding: 120px 0;
      background: var(--white);
      position: relative;
    }
    .prod-header {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      margin-bottom: 60px;
      gap: 32px;
    }
    .prod-header p { color: var(--grey-500); font-size: 15px; line-height: 1.65; max-width: 480px; margin-top: 16px; }
    .prod-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .prod-card {
      background: var(--off-white);
      border: 1px solid var(--grey-100);
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      overflow: hidden;
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }
    .prod-card:hover {
      border-color: rgba(208,26,26,0.3);
      box-shadow: 0 8px 32px rgba(208,26,26,0.08);
      transform: translateY(-4px);
    }
    .prod-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--red);
      transition: width 0.3s;
    }
    .prod-card:hover::after { width: 100%; }
    .prod-icon {
      width: 44px;
      height: 44px;
      background: rgba(208,26,26,0.08);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .prod-icon svg { width: 22px; height: 22px; stroke: var(--red); fill: none; stroke-width: 1.5; }
    .prod-name {
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 800;
      color: var(--navy);
      text-transform: uppercase;
      line-height: 1.1;
    }
    .prod-desc { font-size: 13px; color: var(--grey-500); line-height: 1.5; }

    /* =========================================================
       MARCAS SECTION
    ========================================================= */
    #marcas {
      padding: 120px 0;
      background: var(--off-white);
      position: relative;
    }
    .marcas-header { text-align: center; margin-bottom: 72px; }
    .marcas-header p { color: var(--grey-500); font-size: 15px; max-width: 480px; margin: 12px auto 0; line-height: 1.65; }
    .marcas-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .marca-card {
      background: var(--white);
      border: 1px solid var(--grey-100);
      padding: 48px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    }
    .marca-card:hover {
      border-color: rgba(208,26,26,0.25);
      box-shadow: 0 16px 48px rgba(0,0,0,0.08);
      transform: translateY(-6px);
    }
    .marca-card-badge {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--grey-100);
      margin: 0 auto 24px;
      transition: transform 0.3s;
    }
    .marca-card-badge img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .marca-card:hover .marca-card-badge { transform: scale(1.1) rotate(-3deg); }
    .marca-card-name {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 900;
      color: var(--navy);
      text-transform: uppercase;
      margin-bottom: 12px;
    }
    .marca-card-desc {
      font-size: 13px;
      color: var(--grey-500);
      line-height: 1.6;
    }
    .marca-card-tag {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      background: rgba(208,26,26,0.07);
      color: var(--red);
      padding: 4px 12px;
      margin-top: 20px;
      border: 1px solid rgba(208,26,26,0.15);
    }

    /* =========================================================
       CONTACTO
    ========================================================= */
    #contacto {
      padding: 120px 0;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .contacto-bg { display: none; }
    .contacto-glow {
      position: absolute;
      bottom: -200px; right: -100px;
      width: 600px; height: 600px;
      background: radial-gradient(ellipse, rgba(208,26,26,0.12) 0%, transparent 70%);
    }
    .contacto-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      position: relative;
      z-index: 2;
    }
    .contacto-left .section-title { color: var(--white); margin-bottom: 20px; }
    .contacto-left p { color: rgba(255,255,255,0.55); font-size: 15px; line-height: 1.7; margin-bottom: 40px; }
    .contact-items { display: flex; flex-direction: column; gap: 24px; }
    .contact-item { display: flex; align-items: flex-start; gap: 16px; }
    .contact-item-icon {
      width: 44px;
      height: 44px;
      min-width: 44px;
      background: rgba(208,26,26,0.12);
      border: 1px solid rgba(208,26,26,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .contact-item-icon svg { width: 20px; height: 20px; stroke: var(--red); fill: none; stroke-width: 1.5; }
    .contact-item-label {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 4px;
    }
    .contact-item-value {
      font-size: 14px;
      color: rgba(255,255,255,0.85);
      line-height: 1.6;
    }
    .contact-item-value a { color: rgba(255,255,255,0.85); text-decoration: none; }
    .contact-item-value a:hover { color: var(--red); }
    /* Map placeholder */
    .contacto-map {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      overflow: hidden;
      height: 380px;
      position: relative;
    }
    .contacto-map iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(1) invert(0.85);
      opacity: 0.8;
    }
    .map-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 16px 20px;
      background: linear-gradient(to top, rgba(13,27,62,0.95), transparent);
    }
    .map-location {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .map-location svg { width: 16px; height: 16px; stroke: var(--red); fill: none; stroke-width: 2; }
    .map-location-text {
      font-family: var(--font-display);
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      letter-spacing: 0.5px;
    }

    /* =========================================================
       CTA BANNER
    ========================================================= */
    #cta {
      background: var(--red);
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }
    .cta-noise {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 12px);
    }
    .cta-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }
    .cta-text-group { }
    .cta-eyebrow {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 8px;
    }
    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 900;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.05;
    }
    .cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      color: var(--red);
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 14px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 14px 28px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 13px 28px;
      border: 2px solid rgba(255,255,255,0.5);
      cursor: pointer;
      text-decoration: none;
      transition: border-color 0.2s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .btn-outline-white:hover { border-color: var(--white); }

    /* =========================================================
       FOOTER
    ========================================================= */
    footer {
      background: #080E20;
      padding: 60px 0 32px;
      border-top: 1px solid rgba(255,255,255,0.04);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand { }
    .footer-brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .footer-brand-mark {
      width: 40px;
      height: 40px;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }
    .footer-brand-mark svg { width: 22px; height: 22px; fill: white; }
    .footer-brand-name {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--white);
      line-height: 1.1;
    }
    .footer-brand-name span { color: var(--red); }
    .footer-brand-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.4);
      line-height: 1.65;
      max-width: 280px;
      margin-bottom: 20px;
    }
    .footer-rif {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 2px;
      color: rgba(255,255,255,0.2);
      text-transform: uppercase;
    }
    .footer-col-title {
      font-family: var(--font-display);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
      font-family: var(--font-body);
    }
    .footer-links a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy {
      font-size: 12px;
      color: rgba(255,255,255,0.25);
      font-family: var(--font-display);
      font-weight: 500;
      letter-spacing: 0.5px;
    }
    .footer-marca-badges { display: flex; gap: 10px; align-items: center; }
    .footer-mb {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--white);
      opacity: 0.6;
      transition: opacity 0.2s;
    }
    .footer-mb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .footer-mb:hover { opacity: 1; }

    /* =========================================================
       ANIMATIONS
    ========================================================= */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }
    .hero-eyebrow { animation: fadeIn 0.6s var(--ease-out) both; }
    .hero-title   { animation: fadeUp 0.7s 0.1s var(--ease-out) both; }
    .hero-lema    { animation: fadeUp 0.7s 0.2s var(--ease-out) both; }
    .hero-actions { animation: fadeUp 0.7s 0.3s var(--ease-out) both; }
    .hero-stats   { animation: fadeUp 0.7s 0.4s var(--ease-out) both; }
    .hero-visual  { animation: fadeUp 0.8s 0.3s var(--ease-out) both; }

    /* =========================================================
       SCROLLBAR
    ========================================================= */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--navy); }
    ::-webkit-scrollbar-thumb { background: var(--red); }

    /* =========================================================
       RESPONSIVE
    ========================================================= */

    /* Mobile menu toggle (hidden on desktop) */
    .nav-toggle {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 8px;
      width: 40px;
      height: 40px;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
    }
    .nav-toggle span {
      display: block;
      height: 2px;
      width: 24px;
      background: var(--navy);
      transition: transform 0.25s, opacity 0.25s;
    }
    .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ---------- Tablet (≤960px) ---------- */
    @media (max-width: 960px) {
      .container { padding: 0 24px; }
      .nav-inner { padding: 0 24px; }

      .hero-grid {
        grid-template-columns: 1fr;
        gap: 56px;
        padding: 64px 24px;
      }

      .about-grid {
        grid-template-columns: 1fr;
        gap: 56px;
      }
      .about-accent { font-size: 180px; right: -40px; }

      .mv-grid { grid-template-columns: 1fr; }

      .prod-grid { grid-template-columns: repeat(2, 1fr); }

      .marcas-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

      .contacto-grid { grid-template-columns: 1fr; gap: 48px; }

      .cta-inner { flex-direction: column; align-items: flex-start; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

      .prod-header { grid-template-columns: 1fr; align-items: start; }
    }

    /* ---------- Mobile (≤640px) ---------- */
    @media (max-width: 640px) {
      .container { padding: 0 20px; }
      .nav-inner { padding: 0 20px; height: 76px; }

      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px 20px 24px;
        border-bottom: 1px solid var(--grey-100);
        box-shadow: 0 8px 24px rgba(13,27,62,0.08);
        transform: translateY(-110%);
        transition: transform 0.3s var(--ease-out);
        z-index: 99;
      }
      .nav-links.is-open { transform: translateY(0); }
      .nav-links li { border-bottom: 1px solid var(--grey-100); }
      .nav-links li:last-child { border-bottom: none; }
      .nav-links a {
        display: block;
        padding: 16px 4px;
        font-size: 14px;
      }
      .nav-cta { display: none; }
      .nav-logo img { height: 52px; }

      .hero-content { padding-top: 76px; }
      .hero-grid { padding: 48px 20px 64px; gap: 40px; }
      .hero-title { font-size: clamp(38px, 11vw, 56px); }
      .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-top: 28px;
        margin-top: 40px;
      }
      .hero-stat { padding-right: 0; }
      .hero-stat + .hero-stat {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.08);
        padding-left: 0;
        padding-top: 20px;
      }
      .hero-stat-number { font-size: 40px; }
      .hero-cards-row { grid-template-columns: 1fr; }
      .hero-card-main { padding: 24px; }
      .hero-card-brand { font-size: 24px; }

      #about, #historia, #mision-vision, #productos, #marcas, #contacto { padding: 72px 0; }

      .about-accent { display: none; }
      .about-right { grid-template-columns: 1fr; }
      .about-num-card:first-child {
        grid-column: span 1;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .about-num { font-size: 56px; }

      .historia-header { margin-bottom: 40px; }
      .tl-item, .tl-card { width: 240px; min-width: 240px; }

      .mv-card { padding: 36px 24px; }
      .mv-card-title { font-size: 32px; }
      .mv-values-list { gap: 8px; }
      .mv-value { padding: 8px 16px; font-size: 12px; }

      .prod-grid { grid-template-columns: 1fr; }
      .prod-header { gap: 24px; margin-bottom: 40px; }

      .marcas-inner { flex-direction: column; gap: 20px; padding: 0 20px; }
      .marca-divider-text { margin: 0; }
      .marca-item { padding: 0; }
      .marca-item + .marca-item::before { display: none; }

      .contact-item-value { font-size: 13px; }
      .contacto-map { height: 280px; }

      #cta { padding: 56px 0; }
      .cta-actions { width: 100%; }
      .btn-white, .btn-outline-white { flex: 1; justify-content: center; }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 32px;
      }
      .footer-bottom { flex-direction: column; align-items: flex-start; }

      .hero-actions { width: 100%; }
      .hero-actions .btn-primary,
      .hero-actions .btn-outline { flex: 1; justify-content: center; }
    }
