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

    :root {
      --navy:   #0D1B2A;
      --navy2:  #112237;
      --blue:   #00AEEF;
      --blue2:  #0093cc;
      --gray:   #6B7280;
      --light:  #f0f4f8;
      --white:  #ffffff;
    }

    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--navy);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw; height: 72px;
      background: rgba(13,27,42,0.97);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,174,239,0.15);
      transition: box-shadow 0.3s;
    }
    .nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
    .nav-logo-mark {
      width: 42px; height: 42px; background: var(--blue); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 900; color: var(--white); letter-spacing: -1px;
    }
    .nav-brand { display: flex; flex-direction: column; line-height: 1; }
    .nav-brand strong { color: var(--white); font-size: 13px; font-weight: 800; letter-spacing: 1px; }
    .nav-brand span   { color: var(--blue);  font-size: 9px;  font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      color: rgba(255,255,255,0.7); text-decoration: none;
      font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
      transition: color 0.2s; position: relative;
    }
    .nav-links a.active,
    .nav-links a:hover { color: var(--white); }
    .nav-links a.active::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--blue); border-radius: 1px;
    }
    .nav-cta {
      background: var(--blue); color: var(--white) !important;
      padding: 9px 20px; border-radius: 3px;
      font-size: 11px !important; font-weight: 700 !important; letter-spacing: 1.5px !important;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: var(--blue2) !important; }
    .nav-cta::after { display: none !important; }

    /* ── PAGE HERO ── */
    .page-hero {
      min-height: 70vh;
      background: linear-gradient(rgba(13, 27, 42, 0.89), rgba(13, 27, 42, 0.89)), url('../img/fumigar.png') center/cover no-repeat;
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 140px 8vw 80px;
      position: relative; overflow: hidden;
    }

    .ph-lines {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .ph-lines::before {
      content: '';
      position: absolute; top: -100px; right: 15%;
      width: 1px; height: 130%;
      background: linear-gradient(to bottom, transparent, rgba(0,174,239,0.2), transparent);
      transform: rotate(12deg);
    }
    .ph-lines::after {
      content: '';
      position: absolute; top: -100px; right: 30%;
      width: 1px; height: 130%;
      background: linear-gradient(to bottom, transparent, rgba(0,174,239,0.08), transparent);
      transform: rotate(12deg);
    }

    .ph-glow {
      position: absolute; top: -80px; right: -80px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(0,174,239,0.1) 0%, transparent 65%);
      pointer-events: none;
    }

    .ph-circle-deco {
      position: absolute; bottom: -120px; left: 6vw;
      width: 340px; height: 340px; border-radius: 50%;
      border: 1px solid rgba(0,174,239,0.08);
      pointer-events: none;
    }
    .ph-circle-deco::before {
      content: ''; position: absolute; inset: 30px;
      border-radius: 50%; border: 1px solid rgba(0,174,239,0.06);
    }

    .ph-breadcrumb {
      display: flex; align-items: center; gap: 8px;
      margin-bottom: 32px; position: relative; z-index: 2;
    }
    .ph-breadcrumb a { color: rgba(255,255,255,0.4); font-size: 11px; font-weight: 600; text-decoration: none; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
    .ph-breadcrumb a:hover { color: var(--blue); }
    .ph-breadcrumb span { color: rgba(255,255,255,0.2); font-size: 10px; }
    .ph-breadcrumb strong { color: rgba(255,255,255,0.6); font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

    .ph-content { position: relative; z-index: 2; max-width: 760px; }
    .ph-tag {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--blue); font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px;
    }
    .ph-tag::before { content: ''; width: 24px; height: 2px; background: var(--blue); }

    .ph-title {
      font-size: clamp(40px, 5.5vw, 80px);
      font-weight: 900; line-height: 1.0;
      color: var(--white); margin-bottom: 28px;
      animation: fadeUp 0.7s ease both;
    }
    .ph-title .accent { color: var(--blue); }
    .ph-title .stroke {
      -webkit-text-stroke: 2px rgba(255,255,255,0.3);
      color: transparent;
    }

    .ph-desc {
      color: rgba(255,255,255,0.55);
      font-size: 16px; font-weight: 400; line-height: 1.85;
      max-width: 580px;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ── SHARED ── */
    .section-tag {
      display: inline-flex; align-items: center; gap: 10px;
      color: var(--blue); font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase; margin-bottom: 16px;
    }
    .section-tag::before { content: ''; width: 16px; height: 2px; background: var(--blue); flex-shrink: 0; }
    .section-title {
      font-size: clamp(28px, 3.2vw, 46px);
      font-weight: 900; line-height: 1.08; color: var(--navy); margin-bottom: 24px;
    }
    .section-sub { color: var(--gray); font-size: 15px; line-height: 1.85; }

    /* ── QUIÉNES SOMOS ── */
    #quienes {
      padding: 100px 8vw;
      display: grid; grid-template-columns: 1fr 1.2fr;
      gap: 80px; align-items: start;
    }

    .qs-sticky { position: sticky; top: 100px; }

    .qs-highlight {
      margin-top: 28px;
      border-left: 3px solid var(--blue);
      padding: 20px 24px;
      background: rgba(0,174,239,0.04);
      border-radius: 0 6px 6px 0;
    }
    .qs-highlight p { font-size: 14px; font-weight: 600; color: var(--navy); line-height: 1.7; }

    .qs-badge-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
    .qs-badge {
      background: var(--navy); color: var(--white);
      padding: 8px 16px; border-radius: 3px;
      font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    }
    .qs-badge.outline {
      background: transparent; color: var(--navy);
      border: 1px solid rgba(13,27,42,0.2);
    }

    .qs-paragraphs { display: flex; flex-direction: column; gap: 24px; }
    .qs-paragraphs p { font-size: 15px; color: var(--gray); line-height: 1.85; }
    .qs-paragraphs p strong { color: var(--navy); font-weight: 700; }

    /* ── CORAZÓN IDEOLÓGICO ── */
    #corazon {
      background: var(--navy);
      padding: 100px 8vw;
      position: relative; overflow: hidden;
    }
    #corazon::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; bottom: 0;
      background-image:
        linear-gradient(rgba(0,174,239,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,174,239,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    .corazon-header {
      text-align: center; max-width: 600px;
      margin: 0 auto 64px; position: relative; z-index: 2;
    }
    .corazon-header .section-tag { justify-content: center; }
    .corazon-header .section-title { color: var(--white); }
    .corazon-header .section-sub   { color: rgba(255,255,255,0.45); }

    .mvp-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 2px; position: relative; z-index: 2;
    }

    .mvp-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(0,174,239,0.12);
      padding: 48px 36px;
      transition: background 0.35s, border-color 0.35s, transform 0.35s;
      cursor: default; position: relative; overflow: hidden;
    }
    .mvp-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: var(--blue); transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .mvp-card:hover {
      background: rgba(0,174,239,0.06);
      border-color: rgba(0,174,239,0.3);
      transform: translateY(-6px);
    }
    .mvp-card:hover::before { transform: scaleX(1); }

    .mvp-label {
      font-size: 9px; font-weight: 700; letter-spacing: 3px;
      text-transform: uppercase; color: var(--blue); margin-bottom: 24px;
    }
    .mvp-icon { font-size: 40px; margin-bottom: 24px; display: block; }
    .mvp-title { font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
    .mvp-text  { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.8; }

    .proposito-band {
      margin-top: 48px; position: relative; z-index: 2;
      background: rgba(0,174,239,0.12);
      border: 1px solid rgba(0,174,239,0.25);
      border-radius: 8px; padding: 36px 48px;
      display: flex; align-items: center; gap: 48px;
    }
    .proposito-band .pb-icon { font-size: 48px; flex-shrink: 0; }
    .proposito-band .pb-text h4 { color: var(--blue); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
    .proposito-band .pb-text p  { color: rgba(255,255,255,0.7); font-size: 16px; font-weight: 600; line-height: 1.65; font-style: italic; }

    /* ── VALORES ── */
    #valores { padding: 100px 8vw; background: var(--light); }

    .valores-header {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: end; margin-bottom: 64px;
    }

    .valores-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    }

    .valor-card {
      background: var(--white); border-radius: 10px;
      padding: 36px 28px;
      border: 1px solid rgba(13,27,42,0.07);
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      position: relative; overflow: hidden;
    }
    .valor-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
      background: var(--blue); transform: scaleX(0); transform-origin: left;
      transition: transform 0.4s ease;
    }
    .valor-card:hover {
      box-shadow: 0 16px 48px rgba(0,0,0,0.1);
      transform: translateY(-4px); border-color: rgba(0,174,239,0.2);
    }
    .valor-card:hover::after { transform: scaleX(1); }

    .vc-number {
      position: absolute; top: 16px; right: 20px;
      font-size: 52px; font-weight: 900;
      color: rgba(13,27,42,0.04); line-height: 1; font-style: italic;
    }
    .vc-icon { font-size: 32px; margin-bottom: 20px; display: block; }
    .vc-title { font-size: 16px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
    .vc-text  { font-size: 13px; color: var(--gray); line-height: 1.75; }

    /* ── MAQUILA ── */
    #maquila {
      padding: 100px 8vw; background: var(--white);
      display: grid; grid-template-columns: 1.1fr 1fr;
      gap: 80px; align-items: center;
    }

    .maquila-visual {
      background: var(--navy); border-radius: 16px;
      padding: 56px 48px; position: relative; overflow: hidden;
    }
    .maquila-visual::before {
      content: ''; position: absolute; top: -60px; right: -60px;
      width: 320px; height: 320px; border-radius: 50%;
      border: 60px solid rgba(0,174,239,0.06);
    }
    .mv-tag { color: var(--blue); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; }
    .mv-title { font-size: 28px; font-weight: 900; color: var(--white); line-height: 1.25; margin-bottom: 40px; position: relative; z-index: 1; }
    .mv-title em { font-style: normal; color: var(--blue); }

    .mv-flow { display: flex; flex-direction: column; position: relative; z-index: 1; }
    .mv-step {
      display: flex; gap: 20px; align-items: flex-start;
      padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    .mv-step:last-child { border-bottom: none; }
    .mv-step-num {
      width: 34px; height: 34px; border-radius: 50%;
      background: rgba(0,174,239,0.2); border: 1px solid rgba(0,174,239,0.3);
      color: var(--blue); font-size: 12px; font-weight: 800;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .mv-step-content h5 { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
    .mv-step-content p  { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.6; }

    .maquila-content { display: flex; flex-direction: column; }
    .maquila-content .section-sub { margin-bottom: 36px; margin-top: 16px; }

    .ventajas-list { display: flex; flex-direction: column; gap: 12px; }
    .ventaja-item {
      display: flex; align-items: flex-start; gap: 16px;
      padding: 18px 20px;
      border: 1px solid rgba(13,27,42,0.08); border-radius: 8px;
      transition: border-color 0.25s, background 0.25s;
    }
    .ventaja-item:hover { border-color: rgba(0,174,239,0.25); background: rgba(0,174,239,0.03); }
    .vi-icon {
      width: 38px; height: 38px; border-radius: 6px;
      background: rgba(0,174,239,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; flex-shrink: 0;
    }
    .vi-text strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
    .vi-text span   { font-size: 12px; color: var(--gray); line-height: 1.6; }

    .btn-dark {
      display: inline-flex; align-items: center; gap: 8px;
      margin-top: 32px; background: var(--navy); color: var(--white);
      padding: 14px 28px; border-radius: 3px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      text-decoration: none; transition: background 0.2s, transform 0.2s;
    }
    .btn-dark:hover { background: var(--blue); transform: translateY(-2px); }

    /* ── PRINCIPIOS OPERATIVOS ── */
    #operacion {
      padding: 100px 8vw; background: var(--navy); position: relative; overflow: hidden;
    }

    .oper-header {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: end; margin-bottom: 64px; position: relative; z-index: 2;
    }
    .oper-header .section-title { color: var(--white); }
    .oper-header .section-sub   { color: rgba(255,255,255,0.45); margin-top: 16px; }

    .principios-grid {
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 2px; position: relative; z-index: 2;
    }
    .principio-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(0,174,239,0.1);
      padding: 40px 36px;
      display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start;
      transition: background 0.3s, border-color 0.3s;
    }
    .principio-card:hover { background: rgba(0,174,239,0.05); border-color: rgba(0,174,239,0.22); }
    .pc-icon-box {
      width: 56px; height: 56px; border-radius: 8px;
      background: rgba(0,174,239,0.12);
      display: flex; align-items: center; justify-content: center; font-size: 24px;
    }
    .pc-content h4 { font-size: 15px; font-weight: 800; color: var(--white); margin-bottom: 8px; }
    .pc-content p  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }

    /* ── CTA FINAL ── */
    #cta-final {
      padding: 100px 8vw;
      background: var(--blue);
      display: flex; flex-direction: column;
      align-items: center; text-align: center;
      position: relative; overflow: hidden;
    }
    #cta-final::before {
      content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px; border-radius: 50%;
      border: 80px solid rgba(255,255,255,0.07);
    }
    #cta-final h2 {
      font-size: clamp(26px, 4vw, 50px); font-weight: 900; color: var(--white);
      line-height: 1.1; margin-bottom: 20px; position: relative; z-index: 1;
    }
    #cta-final p {
      color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.75;
      max-width: 520px; margin-bottom: 40px; position: relative; z-index: 1;
    }
    .cta-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; position: relative; z-index: 1; }
    .btn-white {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); color: var(--blue);
      padding: 14px 32px; border-radius: 3px;
      font-size: 12px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
      text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    }
    .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 8px;
      border: 2px solid rgba(255,255,255,0.5); color: var(--white);
      padding: 14px 32px; border-radius: 3px;
      font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
      text-decoration: none; transition: border-color 0.2s, background 0.2s;
    }
    .btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      padding: 60px 8vw 32px;
      border-top: 1px solid rgba(0,174,239,0.12);
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px; margin-bottom: 48px;
    }
    .footer-brand { display: flex; flex-direction: column; gap: 16px; }
    .footer-brand .tagline { color: rgba(255,255,255,0.35); font-size: 12px; line-height: 1.7; max-width: 240px; }
    .footer-col h5 { color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { color: rgba(255,255,255,0.38); font-size: 13px; text-decoration: none; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--blue); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06); padding-top: 24px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { color: rgba(255,255,255,0.28); font-size: 11px; }
    .cert-badge { border: 1px solid rgba(0,174,239,0.18); border-radius: 4px; padding: 4px 10px; color: rgba(255,255,255,0.35); font-size: 10px; font-weight: 600; letter-spacing: 1px; }

    /* ── REVEAL DISABLED ── */
    .reveal, .reveal-left, .reveal-right {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 920px) {
      #quienes, #maquila { grid-template-columns: 1fr; }
      .valores-grid { grid-template-columns: repeat(2,1fr); }
      .mvp-grid { grid-template-columns: 1fr; }
      .principios-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .valores-header, .oper-header { grid-template-columns: 1fr; }
      nav .nav-links { display: none; }
      .proposito-band { flex-direction: column; gap: 20px; padding: 28px; }
    }
    @media (max-width: 560px) {
      .valores-grid { grid-template-columns: 1fr; }
      .footer-grid  { grid-template-columns: 1fr; }
    }
