@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@600;700;800&display=swap');

:root {
      --blue:#183f8c;
      --blue-deep:#10397f;
      --blue-dark:#0d2f66;
      --cyan:#13a0df;
      --orange:#f3a000;
      --orange-deep:#ec4f16;
      --text:#24415f;
      --muted:#6f7b88;
      --soft:#f1f1f1;
      --shadow:0 18px 35px rgba(0,0,0,.10);
      --shadow-soft:0 8px 18px rgba(0,0,0,.08);
      --container:min(1540px, calc(100vw - 74px));
    }

    * { box-sizing:border-box; }
    html { scroll-behavior:smooth; }
    body {
      margin:0;
      font-family: Arial, Helvetica, sans-serif;
      color:var(--text);
      background:#efefef;
      overflow-x:hidden;
    }

    a { color:inherit; text-decoration:none; }
    button { font:inherit; }
    img { max-width:100%; display:block; }

    /* =========================================================
       HERO + HEADER
    ========================================================= */
    .hero {
      position:relative;
      min-height:100vh;
      height:100vh;
      overflow:hidden;
      background:#1c1c1c;
    }

    .hero::before {
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(to bottom, rgba(239,239,239,.90) 0%, rgba(239,239,239,.55) 10%, rgba(239,239,239,0) 22%, rgba(239,239,239,0) 100%),
        linear-gradient(to bottom, rgba(255,255,255,.05), rgba(255,255,255,0));
      z-index:2;
      pointer-events:none;
    }

    .hero::after {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 16%, rgba(0,0,0,0) 42%);
      z-index:2;
      pointer-events:none;
    }

    .hero-slides {
      position:absolute;
      inset:0;
      z-index:1;
    }

    .hero-slide {
      position:absolute;
      inset:0;
      opacity:0;
      transition:opacity 1s ease, transform 6s ease;
      background-size:cover;
      background-repeat:no-repeat;
      background-position:center center;
      transform:scale(1.03);
    }

    .hero-slide.active {
      opacity:1;
      transform:scale(1);
    }

    .site-header {
      position:absolute;
      inset:0 0 auto 0;
      z-index:10;
      padding-top:18px;
    }

    .header-inner {
      width:var(--container);
      margin:0 auto;
      position:relative;
      min-height:118px;
    }

    .brand {
      position:absolute;
      left:0;
      top:0;
      display:flex;
      align-items:flex-start;
      gap:14px;
      z-index:12;
    }

    .brand-mark {
      width:102px;
      height:102px;
      flex:0 0 102px;
      filter:drop-shadow(0 4px 6px rgba(0,0,0,.08));
    }

    .brand-copy {
      padding-top:4px;
      max-width:246px;
      line-height:1;
      color:var(--blue);
      font-weight:800;
      text-transform:uppercase;
      text-shadow:0 1px 0 rgba(255,255,255,.18);
    }

    .brand-copy .small {
      display:block;
      font-size:11px;
      letter-spacing:.7px;
      font-weight:700;
      margin-bottom:4px;
    }

    .brand-copy .name {
      display:block;
      font-size:24px;
      letter-spacing:.8px;
      margin-bottom:5px;
    }

    .brand-copy .sub {
      display:block;
      font-size:10.5px;
      line-height:1.28;
      letter-spacing:.55px;
      font-weight:700;
    }

    .top-strip {
      position:absolute;
      right:52px;
      top:0;
      height:30px;
      width:428px;
      min-width:428px;
      background:var(--orange);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:0 8px;
      box-shadow:var(--shadow-soft);
      z-index:11;
    }

    .top-strip a {
      color:#fff;
      font-size:10px;
      font-weight:700;
      letter-spacing:.12px;
      text-transform:uppercase;
      padding:0 10px;
      transition:background-color .25s ease, color .25s ease;
      height:100%;
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
      white-space:nowrap;
      flex:1 1 auto;
      text-align:center;
    }

    .top-strip a:hover {
      background:rgba(0,0,0,.10);
    }

    .menu-toggle {
      display:none;
      position:absolute;
      right:0;
      top:54px;
      z-index:13;
      width:52px;
      height:52px;
      border:0;
      border-radius:14px;
      background:rgba(24,63,140,.94);
      box-shadow:var(--shadow-soft);
      cursor:pointer;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content:"";
      position:absolute;
      left:14px;
      right:14px;
      height:2px;
      background:#fff;
      border-radius:2px;
      transition:.25s ease;
    }

    .menu-toggle span { top:25px; }
    .menu-toggle::before { top:17px; }
    .menu-toggle::after { top:33px; }

    .menu-toggle.active span { opacity:0; }
    .menu-toggle.active::before { transform:translateY(8px) rotate(45deg); }
    .menu-toggle.active::after { transform:translateY(-8px) rotate(-45deg); }

    .main-nav {
      position:absolute;
      top:56px;
      right:20px;
      left:auto;
      transform:none;
      z-index:11;
      width:780px;
    }

    .main-nav ul {
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:38px;
      position:relative;
    }

    .main-nav > ul::after {
      content:"";
      position:absolute;
      left:18px;
      bottom:-14px;
      transform:none;
      width:calc(100% - 18px);
      height:2px;
      background:rgba(255,255,255,.68);
    }

    .main-nav li {
      position:relative;
    }

    .main-nav > ul > li > a {
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:34px;
      color:var(--blue);
      text-transform:uppercase;
      font-size:12.8px;
      letter-spacing:.1px;
      font-weight:800;
      position:relative;
      white-space:nowrap;
      transition:color .22s ease, transform .22s ease;
    }

    .main-nav > ul > li > a::after {
      content:"";
      position:absolute;
      left:50%;
      bottom:-3px;
      width:0;
      height:2px;
      background:var(--orange);
      transform:translateX(-50%);
      transition:width .25s ease;
    }

    .main-nav > ul > li:hover > a {
      color:var(--blue-dark);
      transform:translateY(-1px);
    }

    .main-nav > ul > li:hover > a::after {
      width:100%;
    }

    .dropdown > a::before {
      content:"";
      width:7px;
      height:7px;
      border-right:2px solid currentColor;
      border-bottom:2px solid currentColor;
      transform:rotate(45deg);
      margin-left:0;
      margin-right:12px;
      margin-top:-4px;
      transition:transform .22s ease;
      flex:0 0 7px;
    }

    .dropdown:hover > a::before {
      transform:rotate(225deg);
      margin-top:4px;
    }

    .submenu {
      position:absolute;
      top:42px;
      left:50%;
      transform:translateX(-50%) translateY(14px);
      min-width:355px;
      background:rgba(255,255,255,.96);
      padding:12px 0;
      border-radius:0;
      box-shadow:0 16px 40px rgba(0,0,0,.14);
      opacity:0;
      visibility:hidden;
      transition:opacity .24s ease, transform .24s ease, visibility .24s ease;
      border-top:3px solid var(--orange);
    }

    .dropdown:hover .submenu {
      opacity:1;
      visibility:visible;
      transform:translateX(-50%) translateY(0);
    }

    .submenu a {
      display:block;
      padding:10px 18px;
      color:var(--blue);
      font-size:13px;
      font-weight:700;
      text-transform:uppercase;
      letter-spacing:.15px;
      transition:background-color .22s ease, padding-left .22s ease, color .22s ease;
    }

    .submenu a:hover {
      background:#f7f7f7;
      padding-left:24px;
      color:var(--orange-deep);
    }

    .hero-caption {
      position:absolute;
      left:50%;
      bottom:92px;
      transform:translateX(-50%);
      text-align:center;
      z-index:5;
      width:min(1000px, calc(100vw - 100px));
      pointer-events:none;
    }

    .hero-title {
      margin:0;
      color:#fff;
      text-transform:uppercase;
      font-size: clamp(42px, 5.1vw, 82px);
      font-weight:900;
      line-height:.95;
      letter-spacing:-1px;
      text-shadow:0 4px 18px rgba(0,0,0,.18);
    }

    .hero-down {
      margin:22px auto 0;
      width:36px;
      height:56px;
      display:flex;
      align-items:flex-start;
      justify-content:center;
      position:relative;
      pointer-events:auto;
      cursor:pointer;
      opacity:.96;
      transition:transform .2s ease, opacity .2s ease;
    }

    .hero-down:hover {
      transform:translateY(4px);
      opacity:1;
    }

    .hero-down::before {
      content:"";
      width:2px;
      height:38px;
      background:#fff;
      opacity:.95;
      display:block;
    }

    .hero-down::after {
      content:"";
      position:absolute;
      bottom:4px;
      width:14px;
      height:14px;
      border-right:2px solid #fff;
      border-bottom:2px solid #fff;
      transform:rotate(45deg);
    }

    .hero-arrow {
      position:absolute;
      top:50%;
      transform:translateY(-50%);
      z-index:5;
      width:78px;
      height:78px;
      border:0;
      background:transparent;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:.9;
      transition:transform .2s ease, opacity .2s ease;
    }

    .hero-arrow:hover {
      opacity:1;
      transform:translateY(-50%) scale(1.05);
    }

    .hero-arrow.left { left:42px; }
    .hero-arrow.right { right:42px; }

    .hero-arrow span {
      display:block;
      width:31px;
      height:31px;
      border-top:3px solid rgba(255,255,255,.75);
      border-right:3px solid rgba(255,255,255,.75);
    }

    .hero-arrow.left span { transform:rotate(-135deg); }
    .hero-arrow.right span { transform:rotate(45deg); }

    /* =========================================================
       SHARED SECTIONS
    ========================================================= */
    .section-title {
      margin:0;
      text-align:center;
      text-transform:uppercase;
      font-weight:900;
      line-height:1;
      letter-spacing:-1px;
      font-size:clamp(34px,4vw,64px);
    }

    .section-title .light { color:#fff; }
    .section-title .blue { color:var(--blue); }
    .section-title .orange { color:var(--orange); }

    /* =========================================================
       LÍNEAS DE NEGOCIO
    ========================================================= */
    .business {
      position:relative;
      min-height:820px;
      min-height:max(820px, 100svh);
      overflow:hidden;
      display:flex;
      align-items:flex-start;
      justify-content:center;
      padding:44px 20px 92px;
      background:#10262f;
    }

    .business::before {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,0));
      z-index:1;
      pointer-events:none;
    }

    .business::after {
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to bottom, rgba(14,31,40,.28), rgba(11,31,42,.42));
      z-index:1;
      pointer-events:none;
    }

    .business-bg {
      position:absolute;
      inset:0;
      z-index:0;
      overflow:hidden;
    }

    .business-bg-slide {
      position:absolute;
      inset:-4%;
      background-size:cover;
      background-position:center;
      filter:blur(8px) saturate(1.02);
      transform:scale(1.12);
      opacity:0;
      transition:opacity .45s ease, transform .45s ease;
    }

    .business-bg-slide.is-active {
      opacity:1;
      transform:scale(1.08);
    }

    .business-inner {
      position:relative;
      z-index:2;
      width:min(1180px, calc(100vw - 160px));
      min-height:calc(100svh - 136px);
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
    }

    .business-title {
      text-align:center;
      margin:0 0 88px;
      font-size:clamp(24px, 2.35vw, 40px);
      text-transform:uppercase;
      font-weight:800;
      color:#fff;
      line-height:1;
      letter-spacing:-.02em;
    }

    .business-title .orange {
      color:var(--orange);
    }

    .diamond-row {
      display:flex;
      align-items:center;
      justify-content:center;
      gap:0;
      flex-wrap:nowrap;
      transform:none;
    }

    .diamond {
      width:clamp(178px, 12.4vw, 212px);
      aspect-ratio:1/1;
      transform:rotate(45deg);
      display:flex;
      align-items:center;
      justify-content:center;
      box-shadow:0 16px 28px rgba(0,0,0,.13);
      transition:transform .28s ease, box-shadow .28s ease, opacity .28s ease;
      margin:0 -10px;
      position:relative;
      overflow:hidden;
      isolation:isolate;
    }

    .diamond:hover {
      transform:rotate(45deg) translateY(-6px);
      box-shadow:0 22px 36px rgba(0,0,0,.20);
    }

    .diamond-row.has-active .business-diamond:not(.is-active) {
      transform:rotate(45deg) scale(.98);
      opacity:.96;
    }

    .business-diamond .diamond-fill,
    .business-diamond .diamond-preview,
    .business-diamond .diamond-shade {
      position:absolute;
      inset:0;
    }

    .business-diamond .diamond-fill {
      z-index:0;
      transition:opacity .32s ease;
    }

    .business-diamond .diamond-preview,
    .business-diamond .diamond-shade {
      inset:-21%;
      width:142%;
      height:142%;
      transform:rotate(-45deg) scale(1.03);
    }

    .business-diamond .diamond-preview {
      background-size:cover;
      background-position:center;
      opacity:0;
      z-index:1;
      transition:opacity .34s ease, transform .34s ease, filter .34s ease;
      filter:saturate(1.02);
    }

    .business-diamond .diamond-shade {
      background:linear-gradient(to bottom, rgba(8,26,45,.06), rgba(8,26,45,.34));
      opacity:0;
      z-index:2;
      transition:opacity .34s ease;
    }

    .business-diamond .diamond-inner {
      position:relative;
      z-index:3;
      transform:rotate(-45deg);
      text-align:center;
      width:78%;
      color:#fff;
      text-transform:uppercase;
      font-weight:900;
      line-height:1.04;
      font-size:clamp(10px, .76vw, 16px);
      letter-spacing:-.012em;
      text-shadow:0 1px 0 rgba(0,0,0,.08);
      transition:transform .3s ease, text-shadow .3s ease;
    }

    .business-diamond .diamond-action {
      position:absolute;
      left:50%;
      top:67%;
      width:74px;
      height:74px;
      border-radius:50%;
      background:rgba(26,65,135,.88);
      z-index:4;
      transform:translate(-50%, 12px) rotate(-45deg) scale(.84);
      display:flex;
      align-items:center;
      justify-content:center;
      opacity:0;
      transition:opacity .32s ease, transform .32s ease;
      box-shadow:0 14px 24px rgba(0,0,0,.16);
    }

    .business-diamond .diamond-action span {
      color:#fff;
      font-size:38px;
      font-weight:900;
      line-height:1;
      transform:translateX(1px);
    }

    .business-diamond.is-active {
      transform:rotate(45deg) translateY(-4px) scale(1.01);
      box-shadow:0 22px 38px rgba(0,0,0,.22);
      z-index:6;
    }

    .business-diamond.is-active .diamond-fill { opacity:0; }
    .business-diamond.is-active .diamond-preview,
    .business-diamond.is-active .diamond-shade { opacity:1; }
    .business-diamond.is-active .diamond-preview { transform:rotate(-45deg) scale(1.08); }
    .business-diamond.is-active .diamond-inner {
      transform:rotate(-45deg) translateY(-8px);
      text-shadow:0 5px 18px rgba(0,0,0,.34);
    }
    .business-diamond.is-active .diamond-action {
      opacity:1;
      transform:translate(-50%, 0) rotate(-45deg) scale(1);
    }

    .diamond.small .diamond-inner { width:76%; font-size:clamp(10px, .78vw, 16px); }
    .diamond.large { width:clamp(212px, 13.8vw, 246px); z-index:2; }
    .business-diamond[data-business="edificaciones"] .diamond-inner { width:78%; font-size:clamp(11px, .82vw, 16px); }
    .business-diamond[data-business="vial"] .diamond-inner { width:76%; font-size:clamp(11px, .82vw, 16px); }
    .business-diamond[data-business="saneamiento"] .diamond-inner { width:76%; font-size:clamp(11px, .82vw, 16px); }
    .business-diamond[data-business="mineria"] .diamond-inner { width:62%; font-size:clamp(13px, .94vw, 18px); }
    .diamond.cyan .diamond-fill { background:var(--cyan); }
    .diamond.navy .diamond-fill { background:#1b4596; }
    .diamond.orange-red .diamond-fill { background:var(--orange-deep); }
    .diamond.orange .diamond-fill { background:var(--orange); }


    @media (min-width: 1200px) {
      .business {
        padding:24px 20px;
      }

      .business-inner {
        width:min(1320px, calc(100vw - 100px));
        min-height:calc(100svh - 110px);
      }

      .business-title {
        margin:0 0 64px;
        font-size:clamp(22px, 2vw, 34px);
        line-height:1;
        letter-spacing:-.02em;
      }

      .diamond-row {
        position:relative;
        display:block;
        width:min(1180px, 86vw);
        height:470px;
        transform:none;
      }

      .diamond {
        position:absolute;
        margin:0;
        width:266px;
      }

      .diamond.small,
      .diamond.large {
        width:266px;
      }

      .business-diamond[data-business="edificaciones"] {
        top:136px;
        left:78px;
      }

      .business-diamond[data-business="vial"] {
        top:38px;
        left:323px;
      }

      .business-diamond[data-business="saneamiento"] {
        top:136px;
        left:568px;
      }

      .business-diamond[data-business="mineria"] {
        top:38px;
        left:813px;
      }
    }

    /* =========================================================
       PROYECTOS
    ========================================================= */
    .projects {
      position:relative;
      background:#efefef;
      padding:0;
      overflow:hidden;
      min-height:100svh;
    }

    .projects-grid {
      min-height:100svh;
      display:grid;
      grid-template-columns:42% 58%;
      align-items:stretch;
    }

    .projects-copy {
      position:relative;
      background:#efefef;
      min-height:100svh;
      padding:118px 80px 90px min(12vw, 150px);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }

    .projects-copy::before,
    .projects-copy::after {
      content:"";
      position:absolute;
      top:-60px;
      bottom:-60px;
      width:320px;
      background:rgba(255,255,255,.35);
      transform:skewX(-36deg);
      pointer-events:none;
    }

    .projects-copy::before { left:-185px; }
    .projects-copy::after { left:140px; opacity:.7; }

    .projects-title {
      position:relative;
      z-index:1;
      font-size:clamp(38px,4.4vw,74px);
      line-height:.92;
      font-weight:900;
      text-transform:uppercase;
      margin:0 0 78px;
      color:#7e7e7e;
      letter-spacing:-1.4px;
    }

    .projects-title .orange {
      display:block;
      color:var(--orange);
    }

    .project-item {
      position:relative;
      z-index:1;
      max-width:470px;
    }

    .project-name {
      margin:0 0 18px;
      color:var(--blue);
      font-size:clamp(26px,2.2vw,48px);
      line-height:1.03;
      font-weight:900;
      letter-spacing:-.6px;
      display:flex;
      align-items:flex-start;
      gap:12px;
    }

    .project-name::before {
      content:"»";
      color:var(--orange);
      font-size:36px;
      line-height:1;
      margin-top:-1px;
      flex:0 0 auto;
    }

    .project-description {
      margin:0;
      font-size:20px;
      color:#8b8b8b;
      line-height:1.33;
      letter-spacing:.1px;
      max-width:410px;
    }

    .projects-media {
      position:relative;
      min-height:100svh;
      overflow:hidden;
      background:#d9d9d9;
    }

    .project-visual {
      position:absolute;
      inset:0;
      background-size:cover;
      background-position:center;
      transition:opacity .45s ease, transform .45s ease;
      opacity:1;
      transform:scale(1.01);
    }

    .project-visual.updating {
      opacity:.15;
      transform:scale(1.04);
    }

    .project-nav {
      position:absolute;
      left:42%;
      top:50%;
      transform:translate(-50%, -50%);
      z-index:6;
      width:168px;
      height:260px;
      pointer-events:none;
    }

    .project-diamond {
      position:absolute;
      width:86px;
      height:86px;
      transform:rotate(45deg);
      background:var(--orange);
      box-shadow:0 10px 20px rgba(0,0,0,.12);
      display:flex;
      align-items:center;
      justify-content:center;
      pointer-events:auto;
    }

    .project-diamond button {
      width:100%;
      height:100%;
      background:transparent;
      border:0;
      cursor:pointer;
      color:#fff;
      transform:rotate(-45deg);
      font-weight:900;
      font-size:36px;
      display:flex;
      align-items:center;
      justify-content:center;
      transition:transform .2s ease, opacity .2s ease;
    }

    .project-diamond button:hover {
      transform:rotate(-45deg) scale(1.08);
      opacity:1;
    }

    .project-diamond.top { right:0; top:18px; }
    .project-diamond.count {
      left:0;
      top:96px;
      color:#fff;
      font-weight:900;
      font-size:18px;
      transform:rotate(45deg);
    }
    .project-diamond.count span {
      transform:rotate(-45deg);
      display:block;
      font-size:18px;
      letter-spacing:.5px;
    }
    .project-diamond.bottom { right:0; top:174px; }

    /* =========================================================
       NOVEDADES + CERTIFICACIONES
    ========================================================= */
    .news {
      background:#efefef;
      padding:90px 24px 0;
    }

    .news-wrap {
      width:min(1240px, calc(100vw - 80px));
      margin:0 auto;
    }

    .news-title {
      text-align:center;
      text-transform:uppercase;
      color:var(--orange);
      font-size:clamp(38px,4.1vw,74px);
      line-height:1;
      font-weight:900;
      margin:0 0 58px;
      letter-spacing:-1px;
    }

    .news-grid {
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:28px;
      align-items:start;
    }

    .news-card {
      position:relative;
      background:#fff;
      box-shadow:var(--shadow-soft);
      transition:transform .25s ease, box-shadow .25s ease;
      min-height:548px;
      display:flex;
      flex-direction:column;
    }

    .news-card:hover {
      transform:translateY(-8px);
      box-shadow:var(--shadow);
    }

    .news-thumb {
      aspect-ratio:1.2/0.72;
      background-size:cover;
      background-position:center;
      border-bottom:1px solid #efefef;
    }

    .date-badge {
      position:absolute;
      right:18px;
      top:0;
      width:60px;
      height:60px;
      background:var(--orange);
      color:#fff;
      text-transform:uppercase;
      font-weight:800;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      font-size:12px;
      line-height:1.02;
      box-shadow:0 8px 18px rgba(0,0,0,.12);
      letter-spacing:.2px;
    }

    .news-content {
      padding:26px 30px 34px;
      display:flex;
      flex-direction:column;
      height:100%;
    }

    .news-card h3 {
      margin:0 0 16px;
      color:var(--blue);
      font-size:clamp(24px, 1.62vw, 34px);
      line-height:1.04;
      font-weight:900;
      letter-spacing:-.4px;
    }

    .news-card p {
      margin:0 0 34px;
      color:#8a8a8a;
      font-size:17px;
      line-height:1.34;
      position:relative;
      padding-left:28px;
      flex:1;
    }

    .news-card p::before {
      content:"»";
      position:absolute;
      left:0;
      top:0;
      color:var(--orange);
      font-size:30px;
      line-height:1;
    }

    .outline-btn {
      align-self:flex-start;
      border:2px solid var(--blue);
      background:#fff;
      color:var(--blue);
      font-weight:800;
      text-transform:uppercase;
      font-size:13px;
      letter-spacing:.4px;
      padding:13px 28px;
      min-width:132px;
      text-align:center;
      transition:background-color .22s ease, color .22s ease, border-color .22s ease;
    }

    .outline-btn.alt {
      border-color:var(--orange);
      color:var(--orange);
    }

    .outline-btn:hover {
      background:var(--blue);
      color:#fff;
      border-color:var(--blue);
    }

    .outline-btn.alt:hover {
      background:var(--orange);
      color:#fff;
      border-color:var(--orange);
    }

    .certifications {
      display:flex;
      align-items:center;
      justify-content:center;
      gap:22px;
      padding:34px 0 44px;
    }

    .certifications img {
      display:block;
      height:146px;
      width:auto;
      object-fit:contain;
      filter:none;
    }



    /* =========================================================
       CONTACTO / PROPUESTA TÉCNICA
    ========================================================= */
    .contact-section {
      background:#f6f6f6;
      padding:92px 24px 96px;
      scroll-margin-top:86px;
    }

    .contact-wrap {
      width:min(1260px, calc(100vw - 80px));
      margin:0 auto;
      display:grid;
      grid-template-columns:minmax(320px, 0.9fr) minmax(520px, 1.1fr);
      gap:72px;
      align-items:start;
    }

    .contact-copy {
      padding-top:8px;
      max-width:470px;
    }

    .contact-kicker {
      display:block;
      color:#183f8c;
      font-size:18px;
      font-weight:800;
      letter-spacing:1.7px;
      text-transform:uppercase;
      margin:0 0 18px;
    }

    .contact-title {
      margin:0 0 26px;
      color:#171c29;
      font-size:clamp(44px, 4vw, 66px);
      line-height:.98;
      font-weight:900;
      letter-spacing:-1.8px;
    }

    .contact-text {
      margin:0 0 44px;
      color:#454f5e;
      font-size:18px;
      line-height:1.55;
      max-width:430px;
    }

    .contact-info-list {
      display:flex;
      flex-direction:column;
      gap:18px;
    }

    .contact-info-item {
      display:flex;
      gap:16px;
      align-items:flex-start;
    }

    .contact-info-icon {
      width:48px;
      height:48px;
      border-radius:6px;
      background:#e8eef9;
      display:flex;
      align-items:center;
      justify-content:center;
      flex:0 0 48px;
    }

    .contact-info-icon svg {
      width:22px;
      height:22px;
      fill:#183f8c;
    }

    .contact-info-label {
      color:#161b26;
      font-weight:900;
      font-size:15px;
      text-transform:uppercase;
      margin:1px 0 6px;
      letter-spacing:.4px;
    }

    .contact-info-value {
      color:#47515d;
      font-size:16px;
      line-height:1.45;
    }

    .contact-card {
      background:#fff;
      border:1px solid #e3e3e3;
      border-radius:10px;
      box-shadow:0 10px 28px rgba(17,24,39,.05);
      padding:38px 38px 36px;
    }

    .proposal-form {
      display:block;
    }

    .form-grid.two-cols {
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:28px 18px;
      margin-bottom:26px;
    }

    .field {
      display:flex;
      flex-direction:column;
      gap:10px;
    }

    .field > span {
      color:#141922;
      font-weight:800;
      font-size:15px;
      line-height:1.2;
    }

    .field strong {
      color:#183f8c;
      font-weight:900;
    }

    .field input,
    .field select,
    .field textarea {
      width:100%;
      border:1px solid #dddddd;
      border-radius:4px;
      background:#fff;
      color:#4a5360;
      font-size:16px;
      font-family:inherit;
      padding:14px 16px;
      outline:none;
      transition:border-color .2s ease, box-shadow .2s ease;
      appearance:none;
    }

    .field input,
    .field select {
      height:54px;
    }

    .field textarea {
      resize:vertical;
      min-height:132px;
      padding-top:16px;
    }

    .field select {
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath fill='%23666' d='M1.65.52 7 5.87 12.35.52 14 2.17 7 9 0 2.17z'/%3E%3C/svg%3E");
      background-repeat:no-repeat;
      background-position:right 16px center;
      padding-right:42px;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color:#183f8c;
      box-shadow:0 0 0 3px rgba(24,63,140,.10);
    }

    .field-full {
      margin-bottom:28px;
    }

    .contact-submit {
      height:58px;
      min-width:286px;
      border:0;
      border-radius:4px;
      background:#183f8c;
      color:#fff;
      font-size:15px;
      font-weight:900;
      letter-spacing:.4px;
      text-transform:uppercase;
      padding:0 28px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      cursor:pointer;
      box-shadow:0 14px 24px rgba(24,63,140,.18);
      transition:transform .2s ease, box-shadow .2s ease, background-color .2s ease;
    }

    .contact-submit:hover {
      transform:translateY(-2px);
      box-shadow:0 18px 28px rgba(24,63,140,.28);
      background:#143574;
    }

    .contact-submit svg {
      width:17px;
      height:17px;
      fill:currentColor;
    }

    /* =========================================================
       FOOTER
    ========================================================= */
    .footer {
      background:var(--blue);
      color:#fff;
      padding:20px 24px 18px;
    }

    .footer-inner {
      width:min(1240px, calc(100vw - 80px));
      margin:0 auto;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:28px;
      min-height:74px;
    }

    .footer-left {
      text-transform:uppercase;
      font-size:14px;
      font-weight:800;
      line-height:1.45;
      letter-spacing:.3px;
    }

    .footer-right {
      text-transform:uppercase;
      text-align:right;
      font-size:13px;
      font-weight:700;
      line-height:1.45;
      letter-spacing:.35px;
    }

    .footer-right strong {
      font-weight:900;
    }

    .socials {
      display:flex;
      align-items:center;
      justify-content:center;
      gap:12px;
    }

    .socials a {
      width:42px;
      height:42px;
      border-radius:50%;
      border:2px solid rgba(255,255,255,.95);
      display:flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      font-weight:900;
      font-size:16px;
      transition:background-color .22s ease, color .22s ease, transform .22s ease;
    }

    .socials a:hover {
      background:#fff;
      color:var(--blue);
      transform:translateY(-2px);
    }

    .back-top {
      position:fixed;
      right:22px;
      bottom:24px;
      width:62px;
      height:62px;
      border-radius:50%;
      border:0;
      background:rgba(243,160,0,.92);
      box-shadow:0 14px 30px rgba(0,0,0,.18);
      color:#fff;
      cursor:pointer;
      z-index:50;
      transition:transform .22s ease, box-shadow .22s ease;
    }

    .back-top:hover {
      transform:translateY(-4px);
      box-shadow:0 18px 34px rgba(0,0,0,.22);
    }

    .back-top::before {
      content:"";
      position:absolute;
      left:50%;
      top:50%;
      width:12px;
      height:12px;
      border-left:2.5px solid currentColor;
      border-top:2.5px solid currentColor;
      transform:translate(-50%, -30%) rotate(45deg);
    }

    .back-top::after {
      content:"";
      position:absolute;
      left:50%;
      top:50%;
      width:2px;
      height:18px;
      background:currentColor;
      transform:translate(-50%, -4px);
    }

    /* =========================================================
       RESPONSIVE
    ========================================================= */
    @media (max-width: 1280px) {
      .top-strip {
        width:340px;
        min-width:340px;
      }
      .main-nav {
        width:650px;
        top:56px;
        right:18px;
      }
      .main-nav ul { gap:28px; }
      .projects-copy {
        padding-left:88px;
        padding-right:48px;
      }
      .project-nav {
        left:42%;
        transform:translate(-46%, -50%) scale(.92);
      }
    }

    @media (max-width: 1100px) {
      .top-strip {
        min-width:auto;
        width:320px;
      }
      .top-strip a {
        padding:0 10px;
        font-size:9.8px;
      }
      .main-nav {
        width:560px;
        top:56px;
        right:12px;
      }
      .main-nav ul {
        gap:20px;
      }
      .main-nav > ul > li > a {
        font-size:11.5px;
      }
      .diamond-row {
        transform:none;
        flex-wrap:wrap;
        gap:38px 14px;
      }
      .diamond {
        margin:0;
      }
      .business-diamond .diamond-action {
        width:62px;
        height:62px;
      }
      .projects-grid {
        grid-template-columns:1fr;
      }

      .contact-wrap {
        grid-template-columns:1fr;
        gap:40px;
      }

      .contact-copy {
        max-width:none;
      }

      .projects-copy, .projects-media {
        min-height:auto;
      }
      .projects-copy {
        padding:86px 54px 280px;
      }
      .projects-media {
        min-height:520px;
      }
      .project-nav {
        left:50%;
        top:auto;
        bottom:440px;
        transform:translate(-50%, 0) scale(.88);
      }
      .news-grid {
        grid-template-columns:1fr;
        gap:26px;
      }
      .news-card {
        min-height:auto;
      }
    }

    @media (max-width: 780px) {
      .hero {
        min-height:740px;
        height:740px;
      }
      .site-header {
        padding-top:12px;
      }
      .header-inner {
        width:min(calc(100vw - 28px), 1000px);
        min-height:86px;
      }
      .brand {
        gap:10px;
      }
      .brand-mark {
        width:74px;
        height:74px;
        flex-basis:74px;
      }
      .brand-copy {
        max-width:182px;
      }
      .brand-copy .small {
        font-size:9px;
      }
      .brand-copy .name {
        font-size:17px;
      }
      .brand-copy .sub {
        font-size:8.6px;
      }
      .top-strip {
        display:none;
      }
      .menu-toggle {
        display:block;
      }
      .main-nav {
        position:absolute;
        top:64px;
        left:auto;
        right:0;
        transform:none;
        width:min(360px, calc(100vw - 28px));
        background:rgba(255,255,255,.98);
        padding:18px 18px 14px;
        box-shadow:0 18px 40px rgba(0,0,0,.16);
        opacity:0;
        visibility:hidden;
        pointer-events:none;
        transition:opacity .24s ease, visibility .24s ease, transform .24s ease;
        transform-origin:top right;
      }
      .main-nav.open {
        opacity:1;
        visibility:visible;
        pointer-events:auto;
      }
      .main-nav > ul {
        align-items:flex-start;
        flex-direction:column;
        gap:8px;
      }
      .main-nav > ul::after {
        display:none;
      }
      .main-nav > ul > li {
        width:100%;
      }
      .main-nav > ul > li > a {
        width:100%;
        justify-content:flex-start;
        height:auto;
        padding:9px 0;
        font-size:13px;
      }
      .dropdown > a::before {
        margin-left:auto;
      }
      .submenu {
        position:static;
        transform:none;
        opacity:1;
        visibility:visible;
        box-shadow:none;
        border-top:1px solid #ececec;
        margin-top:6px;
        padding:8px 0 0;
        background:transparent;
      }
      .submenu a {
        font-size:11px;
        padding:9px 0 9px 12px;
      }
      .hero-arrow {
        width:54px;
        height:54px;
      }
      .hero-arrow.left { left:12px; }
      .hero-arrow.right { right:12px; }
      .hero-arrow span {
        width:22px;
        height:22px;
      }
      .hero-caption {
        bottom:76px;
        width:calc(100vw - 34px);
      }
      .business {
        min-height:auto;
        padding:78px 16px 70px;
      }
      .business-inner {
        width:calc(100vw - 22px);
      }
      .diamond-row {
        gap:18px 8px;
      }
      .diamond,
      .diamond.large {
        width:min(42vw, 220px);
      }
      .projects-copy {
        padding:74px 24px 260px;
      }
      .projects-title {
        margin-bottom:44px;
      }
      .project-description {
        font-size:16px;
      }
      .projects-media {
        min-height:400px;
      }
      .project-nav {
        bottom:344px;
        transform:translate(-50%, 0) scale(.7);
      }
      .news {
        padding:72px 14px 0;
      }
      .news-wrap,
      .footer-inner {
        width:calc(100vw - 28px);
      }
      .news-content {
        padding:22px 20px 24px;
      }
      .news-card h3 {
        font-size:26px;
      }
      .certifications {
        gap:14px;
        flex-wrap:wrap;
        padding-top:28px;
        padding-bottom:34px;
      }
      .certifications img {
        height:108px;
      }
      .contact-section {
        padding:72px 14px 74px;
      }
      .contact-wrap {
        width:calc(100vw - 28px);
      }
      .contact-card {
        padding:24px 16px 22px;
      }
      .form-grid.two-cols {
        grid-template-columns:1fr;
        gap:18px;
      }
      .contact-title {
        font-size:46px;
      }
      .contact-text {
        font-size:17px;
        max-width:none;
      }
      .contact-submit {
        width:100%;
        min-width:0;
      }
      .footer-inner {
        grid-template-columns:1fr;
        text-align:center;
      }
      .footer-right,
      .footer-left {
        text-align:center;
      }
      .socials {
        order:-1;
      }
      .back-top {
        width:56px;
        height:56px;
        right:14px;
        bottom:16px;
      }
    }

    @media (max-width: 520px) {
      .hero {
        height:690px;
        min-height:690px;
      }
      .brand-copy {
        max-width:150px;
      }
      .brand-copy .name {
        font-size:15px;
      }
      .brand-copy .sub {
        font-size:8px;
      }
      .diamond,
      .diamond.large {
        width:min(46vw, 194px);
      }
      .project-nav {
        bottom:316px;
        transform:translate(-50%, 0) scale(.62);
      }
      .contact-title {
        font-size:38px;
        letter-spacing:-1.2px;
      }
      .contact-kicker {
        font-size:15px;
      }

    }


/* =========================================================
   PÁGINAS DE LÍNEAS DE NEGOCIO
========================================================= */
.line-page {
  background:#efefef;
  min-height:100vh;
}

.line-hero {
  position:relative;
  height:230px;
  overflow:hidden;
  display:flex;
  align-items:flex-start;
  justify-content:center;
}

.line-hero-bg {
  position:absolute;
  inset:-4%;
  background-size:cover;
  background-position:center;
  filter:blur(8px) saturate(1.02);
  transform:scale(1.12);
}

.line-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(18,29,39,.66), rgba(44,115,148,.42));
}

.line-hero-title {
  position:relative;
  z-index:2;
  margin:86px auto 0;
  width:min(1120px, calc(100vw - 64px));
  text-align:center;
  color:#fff;
  text-transform:uppercase;
  font-size:clamp(32px, 3.8vw, 68px);
  line-height:.95;
  letter-spacing:-1px;
  font-weight:900;
  text-wrap:balance;
}

.line-hero-down {
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  width:24px;
  height:50px;
  z-index:2;
}

.line-hero-down::before {
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:2px;
  height:34px;
  background:#fff;
  transform:translateX(-50%);
}

.line-hero-down::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:2px;
  width:12px;
  height:12px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:translateX(-50%) rotate(45deg);
}

.line-detail {
  position:relative;
  background:#efefef;
  overflow:hidden;
}

.line-detail-grid {
  min-height:700px;
  display:grid;
  grid-template-columns:minmax(380px, 40%) minmax(0, 60%);
  align-items:stretch;
}

.line-detail-copy {
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:0;
  background:#efefef;
  padding:110px 56px 76px min(7vw, 120px);
  overflow:hidden;
}

.line-detail-copy::before,
.line-detail-copy::after {
  content:"";
  position:absolute;
  top:-60px;
  bottom:-60px;
  width:320px;
  background:rgba(255,255,255,.35);
  transform:skewX(-36deg);
  pointer-events:none;
}

.line-detail-copy::before { left:-185px; }
.line-detail-copy::after { left:140px; opacity:.7; }

.line-icon {
  position:relative;
  z-index:1;
  width:68px;
  height:68px;
  color:var(--orange);
  margin-bottom:18px;
}

.line-icon svg {
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.line-detail-title {
  position:relative;
  z-index:1;
  margin:0 0 22px;
  color:var(--orange);
  text-transform:uppercase;
  line-height:.94;
  font-size:clamp(28px, 3.25vw, 56px);
  font-weight:900;
  letter-spacing:-.8px;
  max-width:520px;
  word-break:normal;
  overflow-wrap:normal;
  hyphens:none;
  text-wrap:balance;
}

.line-detail-copy p {
  position:relative;
  z-index:1;
  margin:0;
  max-width:430px;
  color:#7f8289;
  font-size:16px;
  line-height:1.42;
}

.line-projects-link {
  position:relative;
  z-index:1;
  display:inline-flex;
  align-items:center;
  margin-top:26px;
  color:var(--orange);
  font-size:17px;
  font-weight:800;
  letter-spacing:.1px;
}

.line-projects-link::before {
  content:"◆";
  font-size:14px;
  margin-right:10px;
  transform:scale(.72);
}

.line-detail-media {
  position:relative;
  overflow:hidden;
  min-height:700px;
  background:#d9d9d9;
}

.line-detail-visual {
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transition:opacity .35s ease, transform .35s ease;
  transform:scale(1.01);
}

.line-detail-visual.updating {
  opacity:.15;
  transform:scale(1.04);
}

.line-detail-project-copy {
  position:relative;
  z-index:1;
  margin-top:14px;
  max-width:430px;
  padding-right:12px;
  mix-blend-mode:normal;
}

.line-detail-project-copy h3 {
  margin:0 0 14px;
  color:var(--blue);
  font-size:clamp(24px, 2vw, 40px);
  line-height:1.02;
  font-weight:900;
  letter-spacing:-.5px;
  display:flex;
  align-items:flex-start;
  gap:10px;
  max-width:420px;
  text-wrap:balance;
}

.line-detail-project-copy h3::before {
  content:"»";
  color:var(--orange);
  font-size:36px;
  line-height:1;
  margin-top:-1px;
  flex:0 0 auto;
}

.line-detail-project-copy p {
  margin:0;
  max-width:420px;
  color:#8b8b8b;
  font-size:16px;
  line-height:1.42;
}

.line-detail-nav {
  position:absolute;
  left:40%;
  top:62%;
  transform:translate(-50%, -50%);
  z-index:6;
  width:158px;
  height:232px;
  pointer-events:none;
}

.line-nav-diamond {
  position:absolute;
  width:72px;
  height:72px;
  transform:rotate(45deg);
  background:rgba(243,160,0,.94);
  box-shadow:0 10px 20px rgba(0,0,0,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  pointer-events:auto;
}

.line-nav-diamond.count {
  left:0;
  top:84px;
  color:#fff;
  font-weight:900;
  font-size:17px;
}

.line-nav-diamond.count span {
  transform:rotate(-45deg);
  display:block;
}

.line-nav-diamond.top { right:0; top:16px; }
.line-nav-diamond.bottom { right:0; top:152px; }

.line-nav-diamond button {
  width:100%;
  height:100%;
  border:0;
  background:transparent;
  cursor:pointer;
  color:#fff;
  transform:rotate(-45deg);
  font-size:32px;
  font-weight:900;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .22s ease, opacity .22s ease;
}

.line-nav-diamond button:hover {
  transform:rotate(-45deg) scale(1.08);
}

@media (max-width: 1100px) {
  .line-detail-grid {
    grid-template-columns:1fr;
  }
  .line-detail-copy,
  .line-detail-media {
    min-height:auto;
  }
  .line-detail-copy {
    padding:78px 42px 44px;
  }
  .line-detail-media {
    min-height:520px;
  }
  .line-detail-nav {
    left:50%;
    top:auto;
    bottom:432px;
    transform:translate(-50%, 0) scale(.86);
  }
}

@media (max-width: 780px) {
  .line-hero {
    height:210px;
  }
  .line-hero-title {
    margin-top:82px;
    width:calc(100vw - 28px);
  }
  .line-detail-copy {
    padding:64px 24px 36px;
  }
  .line-detail-title {
    max-width:320px;
    font-size:clamp(26px, 8vw, 42px);
  }
  .line-detail-copy p,
  .line-detail-project-copy p {
    font-size:15px;
  }
  .line-detail-project-copy h3 {
    font-size:clamp(22px, 6vw, 34px);
  }
  .line-detail-media {
    min-height:400px;
  }
  .line-detail-nav {
    bottom:340px;
    transform:translate(-50%, 0) scale(.68);
  }
}

@media (max-width: 520px) {
  .line-detail-nav {
    bottom:312px;
    transform:translate(-50%, 0) scale(.62);
  }
  .line-detail-project-copy {
    max-width:100%;
    padding-right:0;
  }
}


/* =========================================================
   WIDGET WHATSAPP FLOTANTE
========================================================= */
.wa-widget {
  position: fixed;
  left: 20px;
  bottom: 18px;
  z-index: 140;
  font-family: Arial, Helvetica, sans-serif;
}

.wa-widget *,
.wa-widget *::before,
.wa-widget *::after {
  box-sizing: border-box;
}

.wa-widget-mini {
  display: flex;
  align-items: center;
  gap: 10px;
  transform-origin: left bottom;
  transition: opacity .28s ease, transform .28s ease;
}

.wa-help-pill {
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  color: #5b646d;
  font-size: 15px;
  font-weight: 700;
  border: 0;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-12px) scale(.96);
  transition: opacity .24s ease, transform .24s ease, visibility 0s linear .24s, box-shadow .22s ease;
  white-space: nowrap;
}

.wa-help-pill:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,.20);
}

.wa-fab {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 0;
  background: linear-gradient(135deg, #2ee86d 0%, #25d366 58%, #1fb654 100%);
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
}

.wa-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(0,0,0,.24);
}

.wa-fab::before,
.wa-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.wa-fab::before {
  background: rgba(37,211,102,.22);
  transform: scale(1.15);
  animation: waPulse 2.35s ease-out infinite;
}

.wa-fab::after {
  inset: 7px;
  background: linear-gradient(180deg, rgba(255,255,255,.2), rgba(255,255,255,0));
}

.wa-fab svg,
.wa-panel-badge svg {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: block;
  flex: 0 0 28px;
  fill: #fff;
  transform: translateY(-0.5px);
}

.wa-panel-badge svg {
  width: 20px;
  height: 20px;
  flex-basis: 20px;
  transform: none;
}

 .wa-widget-mini:hover .wa-help-pill,
.wa-widget-mini:focus-within .wa-help-pill {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.wa-widget.is-ready .wa-fab {
  animation: waFloat 3s ease-in-out infinite;
}

.wa-widget.is-open .wa-widget-mini {
  opacity: 0;
  transform: translateY(16px) scale(.92);
  pointer-events: none;
}

.wa-panel {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(365px, calc(100vw - 30px));
  border-radius: 20px 20px 18px 18px;
  overflow: hidden;
  background: #edf2ef;
  box-shadow: 0 30px 60px rgba(0,0,0,.26);
  opacity: 0;
  transform: translateY(18px) scale(.94);
  transform-origin: left bottom;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.wa-widget.is-open .wa-panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.wa-panel-header {
  min-height: 58px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #25d366, #1eb85b);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-panel-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.20);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

.wa-panel-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .2px;
}

.wa-panel-close {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0,0,0,.14);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background-color .2s ease;
}

.wa-panel-close:hover {
  transform: rotate(90deg);
  background: rgba(0,0,0,.20);
}

.wa-panel-body {
  padding: 18px 14px 14px;
}

.wa-message {
  background: #fff;
  color: #5b6570;
  font-size: 15px;
  line-height: 1.5;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  margin-bottom: 16px;
  max-width: 300px;
}

.wa-entry {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.wa-input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 12px 12px 12px 14px;
  font-size: 15px;
  color: #3f4952;
  outline: none;
}

.wa-input::placeholder {
  color: #88929b;
}

.wa-send {
  width: 56px;
  height: 46px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #25d366, #20ba59);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 10px 18px rgba(37,211,102,.30);
}

.wa-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 22px rgba(37,211,102,.34);
}

.wa-send svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.wa-widget.is-open .wa-message,
.wa-widget.is-open .wa-entry {
  animation: waReveal .34s ease;
}

@keyframes waPulse {
  0% { opacity: 0; transform: scale(.92); }
  45% { opacity: .95; }
  100% { opacity: 0; transform: scale(1.42); }
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

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

@media (max-width: 780px) {
  .wa-widget {
    left: 14px;
    bottom: 14px;
  }

  .wa-help-pill {
    font-size: 14px;
    height: 40px;
    padding: 0 15px;
  }

  .wa-fab {
    width: 60px;
    height: 60px;
  }

  .wa-panel {
    width: min(340px, calc(100vw - 24px));
  }
}

@media (max-width: 520px) {
  .wa-widget {
    left: 10px;
    bottom: 10px;
  }

  .wa-widget-mini {
    gap: 8px;
  }

  .wa-help-pill {
    max-width: calc(100vw - 94px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .wa-panel {
    width: calc(100vw - 20px);
  }

  .wa-panel-title {
    font-size: 18px;
  }
}


.footer-right:empty {
  min-width: 160px;
}

@media (max-width: 768px) {
  .footer-right:empty {
    display: none;
  }
}



/* =========================================================
   PÁGINA NOSOTROS
========================================================= */
.about-hero .line-hero-bg {
  filter: blur(10px) saturate(1.02);
  transform: scale(1.16);
  background-position: center 34%;
}

.about-hero .line-hero-title {
  margin-top: 40px;
  font-size: clamp(34px, 4vw, 72px);
  letter-spacing: -.6px;
}

.about-hero .line-hero-down {
  bottom: 18px;
}

.about-detail {
  position: relative;
  background: #f3f3f3;
  overflow: hidden;
}

.about-grid {
  width: min(1360px, calc(100vw - 88px));
  margin: 0 auto;
  padding: 44px 0 78px;
  display: grid;
  grid-template-columns: minmax(320px, 42%) minmax(420px, 58%);
  align-items: start;
  gap: 22px;
}

.about-copy {
  padding: 30px 0 0 28px;
  max-width: 540px;
}

.about-icon {
  width: 76px;
  height: 76px;
  color: var(--orange);
  margin-bottom: 14px;
}

.about-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-title {
  margin: 0 0 28px;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: -.6px;
}

.about-title-top,
.about-title-bottom {
  display: block;
  font-weight: 900;
  font-size: clamp(38px, 4.3vw, 64px);
}

.about-title-top {
  color: #63666f;
}

.about-title-bottom {
  color: var(--orange);
  margin-top: 2px;
}

.about-text {
  max-width: 510px;
}

.about-text p {
  margin: 0 0 22px;
  color: #6f737c;
  font-size: 17px;
  line-height: 1.32;
  letter-spacing: .02px;
}

.about-certs {
  margin-top: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transform: translateX(52%);
}

.about-certs-title {
  color: var(--orange);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: .4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.about-certs-title::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--orange);
  transform: rotate(45deg);
  display: inline-block;
}

.about-certs-logos {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-certs-logos img {
  width: 58px;
  height: auto;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.08));
}

.about-collage-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
}

.about-collage {
  position: relative;
  width: min(640px, 100%);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.about-diamond {
  position: absolute;
  width: 42%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transform: rotate(45deg);
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  transition: transform .42s cubic-bezier(.2,.75,.25,1), box-shadow .42s ease, filter .34s ease, background-color .34s ease;
  backface-visibility: hidden;
}

.about-diamond--image {
  cursor: default;
  outline: none;
}

.about-diamond-media {
  position: absolute;
  inset: -22%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(-45deg) scale(1.08);
  transition: transform .48s cubic-bezier(.2,.75,.25,1), filter .34s ease;
}

.about-diamond--top {
  left: 50%;
  top: 2.5%;
  margin-left: -21%;
  z-index: 2;
}

.about-diamond--top .about-diamond-media {
  background-position: center 48%;
}

.about-diamond--left {
  left: 8%;
  top: 32.5%;
  z-index: 3;
}

.about-diamond--left .about-diamond-media {
  background-position: center;
}

.about-diamond--bottom {
  left: 50%;
  top: 61.5%;
  margin-left: -21%;
  z-index: 2;
}

.about-diamond--bottom .about-diamond-media {
  background-position: center;
}

.about-diamond--stat {
  right: 7.5%;
  top: 33%;
  z-index: 4;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-diamond-stat-inner {
  transform: rotate(-45deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: .95;
  text-align: center;
}

.about-diamond-stat-inner strong {
  font-size: clamp(52px, 6.2vw, 84px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 10px;
}

.about-diamond-stat-inner span {
  font-size: clamp(18px, 1.85vw, 32px);
  font-weight: 800;
  line-height: 1.02;
}

.about-collage:hover .about-diamond--stat,
.about-collage:has(.about-diamond--image:hover) .about-diamond--stat,
.about-collage:has(.about-diamond--image:focus-visible) .about-diamond--stat {
  background: var(--orange);
  transform: rotate(45deg) scale(1.02) translateX(6px);
  box-shadow: 0 22px 42px rgba(0,0,0,.22);
}

.about-diamond--image:hover,
.about-diamond--image:focus-visible {
  box-shadow: 0 24px 46px rgba(0,0,0,.24);
  z-index: 5;
}

.about-diamond--top:hover,
.about-diamond--top:focus-visible {
  transform: rotate(45deg) translateY(-12px) scale(1.06);
}

.about-diamond--left:hover,
.about-diamond--left:focus-visible {
  transform: rotate(45deg) translate(-14px, 6px) scale(1.06);
}

.about-diamond--bottom:hover,
.about-diamond--bottom:focus-visible {
  transform: rotate(45deg) translateY(12px) scale(1.06);
}

.about-diamond--image:hover .about-diamond-media,
.about-diamond--image:focus-visible .about-diamond-media {
  transform: rotate(-45deg) scale(1.17);
  filter: saturate(1.08) contrast(1.03);
}

@media (max-width: 1180px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(1100px, calc(100vw - 56px));
  }

  .about-copy {
    padding: 22px 0 0;
    max-width: 680px;
  }

  .about-certs {
    transform: none;
    align-items: flex-start;
  }

  .about-collage-wrap {
    padding: 24px 0 10px;
  }

  .about-collage {
    width: min(620px, calc(100vw - 56px));
  }
}

@media (max-width: 780px) {
  .about-grid {
    width: min(100vw - 28px, 100%);
    padding: 28px 0 56px;
  }

  .about-copy {
    padding: 10px 0 0;
  }

  .about-title-top,
  .about-title-bottom {
    font-size: clamp(34px, 10vw, 52px);
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.45;
  }

  .about-certs {
    margin-top: 32px;
    width: 100%;
    align-items: center;
  }

  .about-certs-logos {
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-certs-logos img {
    width: 52px;
  }

  .about-collage {
    width: min(100vw - 32px, 520px);
    aspect-ratio: auto;
    height: 560px;
  }

  .about-diamond {
    width: 44%;
  }

  .about-diamond--top {
    top: 0;
    margin-left: -22%;
  }

  .about-diamond--left {
    left: 2%;
    top: 32%;
  }

  .about-diamond--bottom {
    top: 63%;
    margin-left: -22%;
  }

  .about-diamond--stat {
    right: 3%;
    top: 32%;
  }
}

@media (max-width: 560px) {
  .about-hero .line-hero-title {
    margin-top: 48px;
    font-size: 46px;
  }

  .about-collage {
    height: 470px;
  }

  .about-diamond {
    width: 46%;
  }

  .about-diamond-stat-inner strong {
    font-size: 54px;
  }

  .about-diamond-stat-inner span {
    font-size: 18px;
  }
}


/* =========================================================
   PÁGINA NOSOTROS V2
========================================================= */
.about-page-v2 {
  background:#f3f3f3;
}

.about-page-v2 svg {
  fill:none;
  stroke:currentColor;
  stroke-width:2.5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* Mantener el logo original del header sin contornos ni trazos */
.site-header .brand-mark,
.site-header .brand-mark *,
.brand .brand-mark,
.brand .brand-mark * {
  stroke:none !important;
  stroke-width:0 !important;
}


.aboutv2-hero {
  position:relative;
  min-height:640px;
  overflow:hidden;
  background:#111;
}

.aboutv2-hero-bg {
  position:absolute;
  inset:-3%;
  background-image:url('../img/nosotros/hero-bg.png');
  background-size:cover;
  background-position:center center;
  filter:blur(9px) saturate(.96);
  transform:scale(1.08);
}

.aboutv2-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(243,243,243,.92) 0%, rgba(243,243,243,.52) 10%, rgba(243,243,243,0) 22%, rgba(243,243,243,0) 100%),
    linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.42) 18%, rgba(0,0,0,.12) 42%, rgba(0,0,0,0) 65%);
  z-index:1;
}

.aboutv2-header {
  position:absolute;
  inset:0 0 auto 0;
  z-index:3;
  padding-top:4px;
}

.aboutv2-header-inner {
  width:min(1320px, calc(100vw - 150px));
  min-height:118px;
  margin:0 auto;
  position:relative;
}

.aboutv2-topstrip {
  position:absolute;
  right:0;
  top:0;
  width:430px;
  height:32px;
  background:var(--orange);
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.aboutv2-topstrip a {
  flex:1 1 auto;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:10px;
  font-weight:800;
  letter-spacing:.08px;
  text-transform:uppercase;
  white-space:nowrap;
}

.aboutv2-nav {
  position:absolute;
  top:58px;
  right:6px;
}

.aboutv2-nav ul {
  margin:0;
  padding:0 0 16px;
  list-style:none;
  display:flex;
  align-items:center;
  gap:46px;
  position:relative;
}

.aboutv2-nav ul::after {
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:rgba(255,255,255,.65);
}

.aboutv2-nav a {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:44px;
  padding:0 2px;
  color:var(--blue);
  font-size:12.8px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08px;
}

.aboutv2-nav a.is-active {
  padding:0 22px;
  background:var(--blue);
  color:#fff;
}

.aboutv2-hero-copy {
  position:relative;
  z-index:3;
  min-height:640px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  padding-bottom:70px;
}

.aboutv2-hero-copy h1 {
  margin:0;
  color:#fff;
  font-size:clamp(58px, 5vw, 88px);
  line-height:.95;
  letter-spacing:-1.4px;
  font-weight:900;
  text-transform:uppercase;
}

.aboutv2-hero-down {
  position:relative;
  width:28px;
  height:64px;
  margin-top:10px;
}

.aboutv2-hero-down::before {
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:2px;
  height:42px;
  background:#fff;
  transform:translateX(-50%);
}

.aboutv2-hero-down::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:6px;
  width:13px;
  height:13px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:translateX(-50%) rotate(45deg);
}

.aboutv2-intro {
  background:#f3f3f3;
}

.aboutv2-intro-inner {
  width:min(1450px, calc(100vw - 120px));
  margin:0 auto;
  padding:82px 0 94px;
  display:grid;
  grid-template-columns:minmax(360px, 470px) minmax(520px, 1fr);
  gap:48px;
  align-items:start;
}

.aboutv2-intro-copy {
  padding-left:24px;
}

.aboutv2-mini-icon {
  width:84px;
  height:84px;
  color:var(--orange);
  margin-bottom:18px;
}

.aboutv2-mini-icon svg {
  width:100%;
  height:100%;
}

.aboutv2-company-title {
  margin:0 0 26px;
  text-transform:uppercase;
  line-height:.92;
  letter-spacing:-.8px;
}

.aboutv2-company-title span,
.aboutv2-company-title strong {
  display:block;
  font-size:clamp(44px, 4.05vw, 68px);
  font-weight:900;
}

.aboutv2-company-title span {
  color:#6b6e75;
}

.aboutv2-company-title strong {
  color:var(--orange);
  font-weight:900;
}

.aboutv2-copy-block {
  max-width:470px;
}

.aboutv2-copy-block p {
  margin:0 0 22px;
  color:#767b84;
  font-size:17px;
  line-height:1.28;
  letter-spacing:.02px;
}

.aboutv2-certs {
  margin-top:44px;
  width:max-content;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
  transform:translateX(270px);
}

.aboutv2-certs-title {
  color:var(--orange);
  font-size:20px;
  font-weight:900;
  letter-spacing:.32px;
  text-transform:uppercase;
  display:flex;
  align-items:center;
  gap:12px;
}

.aboutv2-certs-title::before {
  content:"";
  width:11px;
  height:11px;
  background:var(--orange);
  transform:rotate(45deg);
}

.aboutv2-certs-logos {
  display:flex;
  align-items:center;
  gap:12px;
}

.aboutv2-certs-logos img {
  width:50px;
  height:auto;
}

.aboutv2-collage-wrap {
  display:flex;
  justify-content:center;
}

.aboutv2-intro .about-collage-wrap {
  width:100%;
  padding-top:6px;
  justify-content:flex-start;
}

.aboutv2-intro .about-collage {
  width:min(700px, 100%);
}


.aboutv2-collage {
  position:relative;
  width:min(660px, 100%);
  height:660px;
}

.aboutv2-diamond {
  position:absolute;
  width:248px;
  height:248px;
  transform:rotate(45deg);
  overflow:hidden;
  box-shadow:0 14px 28px rgba(0,0,0,.18);
}

.aboutv2-diamond-media {
  position:absolute;
  inset:-25%;
  background-size:cover;
  background-position:center;
  transform:rotate(-45deg) scale(1.1);
}

.aboutv2-diamond-top {
  top:16px;
  left:50%;
  margin-left:-124px;
  z-index:2;
}

.aboutv2-diamond-left {
  left:70px;
  top:230px;
  z-index:3;
}

.aboutv2-diamond-bottom {
  top:444px;
  left:50%;
  margin-left:-124px;
  z-index:2;
}

.aboutv2-diamond-stat {
  top:230px;
  right:70px;
  background:var(--blue);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:4;
}

.aboutv2-diamond-stat-inner {
  transform:rotate(-45deg);
  text-align:center;
  line-height:.96;
}

.aboutv2-diamond-stat-inner strong {
  display:block;
  font-size:78px;
  font-weight:900;
  letter-spacing:-2px;
  margin-bottom:10px;
}

.aboutv2-diamond-stat-inner span {
  display:block;
  font-size:23px;
  font-weight:900;
}

.aboutv2-purpose {
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:700px;
}

.aboutv2-purpose-left {
  position:relative;
  background:#0a3e8d;
  color:#fff;
  padding:94px 90px 110px 150px;
  overflow:hidden;
}

.aboutv2-purpose-left::before,
.aboutv2-purpose-left::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(255,255,255,.05) 0 26%, transparent 26% 100%);
  pointer-events:none;
}

.aboutv2-purpose-left::after {
  background:
    linear-gradient(225deg, rgba(255,255,255,.07) 0 18%, transparent 18% 100%),
    linear-gradient(135deg, rgba(255,255,255,.04) 0 30%, transparent 30% 100%);
  opacity:.9;
}

.aboutv2-purpose-block {
  position:relative;
  z-index:1;
  max-width:470px;
}

.aboutv2-purpose-block + .aboutv2-purpose-block {
  margin-top:78px;
}

.aboutv2-purpose-head {
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:10px;
  margin-bottom:18px;
}

.aboutv2-purpose-icon {
  width:58px;
  height:58px;
  color:var(--orange);
}

.aboutv2-purpose-head h3 {
  margin:0;
  color:#fff;
  font-size:clamp(36px, 3.2vw, 58px);
  line-height:.94;
  font-weight:900;
  letter-spacing:-.7px;
  text-transform:uppercase;
}

.aboutv2-purpose-block p {
  margin:0;
  color:#fff;
  font-size:17px;
  line-height:1.3;
  max-width:420px;
}

.aboutv2-purpose-right {
  position:relative;
  background:#f3f3f3;
  padding:78px 70px 70px 92px;
  overflow:hidden;
}

.aboutv2-presence-title {
  display:flex;
  align-items:flex-start;
  gap:16px;
  color:var(--orange);
}

.aboutv2-presence-icon {
  width:54px;
  height:54px;
  flex:0 0 54px;
}

.aboutv2-presence-title h3 {
  margin:0;
  text-transform:uppercase;
  line-height:.92;
  letter-spacing:-.7px;
}

.aboutv2-presence-title h3 span,
.aboutv2-presence-title h3 strong {
  display:block;
  font-size:clamp(36px, 3.2vw, 56px);
  font-weight:900;
}

.aboutv2-presence-title h3 span {
  color:#666a71;
}

.aboutv2-presence-title h3 strong {
  color:var(--orange);
}

.aboutv2-map-stage {
  position:relative;
  min-height:560px;
}

.aboutv2-map-stage::after {
  content:"";
  position:absolute;
  left:320px;
  top:244px;
  width:250px;
  border-top:2px dashed rgba(243,160,0,.75);
  transform:rotate(-38deg);
  transform-origin:left center;
}

.aboutv2-map {
  position:absolute;
  left:0;
  top:34px;
  width:min(520px, 68%);
  max-width:520px;
}

.aboutv2-office-card {
  position:absolute;
  right:12px;
  top:84px;
  width:230px;
  text-align:center;
}

.aboutv2-office-diamond {
  width:148px;
  height:148px;
  margin:0 auto 20px;
  transform:rotate(45deg);
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}

.aboutv2-office-diamond-media {
  position:absolute;
  inset:-26%;
  background-size:cover;
  background-position:center;
  transform:rotate(-45deg) scale(1.08);
}

.aboutv2-office-copy strong,
.aboutv2-office-copy span,
.aboutv2-office-copy small {
  display:block;
}

.aboutv2-office-copy strong {
  color:var(--orange);
  font-size:clamp(36px, 3vw, 52px);
  line-height:.95;
  font-weight:900;
}

.aboutv2-office-copy span {
  margin-top:4px;
  color:var(--orange);
  font-size:18px;
  font-weight:900;
}

.aboutv2-office-copy small {
  margin-top:4px;
  color:var(--orange);
  font-size:15px;
  font-weight:700;
}

.aboutv2-values {
  position:relative;
  overflow:hidden;
  color:#fff;
}

.aboutv2-values-bg,
.aboutv2-values-overlay {
  position:absolute;
  inset:0;
}

.aboutv2-values-bg {
  background-image:url('../img/nosotros/values-bg.png');
  background-size:cover;
  background-position:center;
  filter:blur(10px) saturate(.95);
  transform:scale(1.08);
}

.aboutv2-values-overlay {
  background:linear-gradient(to bottom, rgba(6,32,74,.88), rgba(8,48,102,.78));
}

.aboutv2-values-inner {
  position:relative;
  z-index:1;
  width:min(1500px, calc(100vw - 120px));
  margin:0 auto;
  padding:62px 0 68px;
}

.aboutv2-values-title {
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-bottom:52px;
  color:var(--orange);
}

.aboutv2-values-title span {
  width:62px;
  height:62px;
}

.aboutv2-values-title h3 {
  margin:0;
  font-size:clamp(44px, 3.8vw, 66px);
  line-height:.95;
  font-weight:900;
  letter-spacing:-.8px;
  text-transform:uppercase;
}

.aboutv2-values-grid {
  display:grid;
  grid-template-columns:repeat(4, minmax(210px, 1fr));
  gap:48px 64px;
  align-items:start;
}

.aboutv2-value-item {
  text-align:center;
}

.aboutv2-value-icon {
  width:74px;
  height:74px;
  margin:0 auto 18px;
  color:#fff;
}

.aboutv2-value-item h4 {
  margin:0 0 18px;
  font-size:clamp(26px, 2vw, 38px);
  line-height:1;
  font-weight:900;
}

.aboutv2-value-item p {
  margin:0 auto;
  max-width:320px;
  color:#fff;
  font-size:16px;
  line-height:1.34;
}

.aboutv2-value-item--respect {
  grid-column:1 / span 1;
  margin-top:18px;
}

.aboutv2-policies {
  background:#f3f3f3;
}

.aboutv2-policies-inner {
  width:min(1450px, calc(100vw - 120px));
  margin:0 auto;
  padding:68px 0 60px;
}

.aboutv2-policies-heading {
  display:flex;
  align-items:flex-start;
  gap:18px;
  color:var(--orange);
  margin-bottom:46px;
}

.aboutv2-policies-icon {
  width:58px;
  height:58px;
  flex:0 0 58px;
}

.aboutv2-policies-heading h3 {
  margin:0;
  text-transform:uppercase;
  line-height:.92;
  letter-spacing:-.7px;
}

.aboutv2-policies-heading h3 span,
.aboutv2-policies-heading h3 strong {
  display:block;
  font-size:clamp(40px, 3.45vw, 58px);
  font-weight:900;
}

.aboutv2-policies-heading h3 span {
  color:#6a6d74;
}

.aboutv2-policies-heading h3 strong {
  color:var(--orange);
}

.aboutv2-policies-grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(260px, 1fr));
  gap:120px;
}

.aboutv2-policy-block h4 {
  margin:0 0 16px;
  color:var(--blue);
  font-size:clamp(22px, 2vw, 34px);
  line-height:1;
  font-weight:900;
  text-transform:uppercase;
}

.aboutv2-policy-block p {
  margin:0;
  max-width:530px;
  color:#777d86;
  font-size:17px;
  line-height:1.33;
}

.aboutv2-policy-block a {
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-top:18px;
  color:var(--orange);
  font-size:16px;
  font-weight:900;
  text-transform:uppercase;
}

.aboutv2-policy-block a::before {
  content:"";
  width:10px;
  height:10px;
  background:var(--orange);
  transform:rotate(45deg);
}

.aboutv2-footer {
  background:var(--blue);
  padding:14px 20px 16px;
}

.aboutv2-socials {
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.aboutv2-socials a {
  width:42px;
  height:42px;
  border-radius:50%;
  border:3px solid rgba(255,255,255,.9);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:900;
}

.about-page-v2 .wa-widget {
  display:none !important;
}

@media (max-width: 1380px) {
  .aboutv2-intro-inner,
  .aboutv2-values-inner,
  .aboutv2-policies-inner {
    width:min(100vw - 70px, 1320px);
  }

  .aboutv2-certs {
    transform:translateX(150px);
  }

  .aboutv2-purpose-left {
    padding-left:100px;
  }
}

@media (max-width: 1180px) {
  .aboutv2-header-inner {
    width:min(100vw - 44px, 1120px);
  }

  .aboutv2-topstrip {
    width:390px;
  }

  .aboutv2-nav ul {
    gap:26px;
  }

  .aboutv2-intro-inner,
  .aboutv2-purpose,
  .aboutv2-values-grid,
  .aboutv2-policies-grid {
    grid-template-columns:1fr;
  }

  .aboutv2-intro-inner {
    gap:20px;
  }

  .aboutv2-certs {
    transform:none;
    align-items:flex-start;
  }

  .aboutv2-collage-wrap {
    padding-top:12px;
  }

  .aboutv2-purpose-left,
  .aboutv2-purpose-right {
    padding:70px 44px;
  }

  .aboutv2-map-stage {
    min-height:620px;
  }

  .aboutv2-map {
    width:min(540px, 72vw);
  }

  .aboutv2-office-card {
    right:0;
  }

  .aboutv2-values-grid {
    gap:42px;
  }

  .aboutv2-value-item--respect {
    grid-column:auto;
    margin-top:0;
  }
}

@media (max-width: 900px) {
  .aboutv2-hero {
    min-height:520px;
  }

  .aboutv2-hero-copy {
    min-height:520px;
    padding-bottom:54px;
  }

  .aboutv2-header {
    padding-top:10px;
  }

  .aboutv2-header-inner {
    width:calc(100vw - 28px);
  }

  .aboutv2-topstrip {
    position:static;
    width:100%;
    margin-bottom:16px;
  }

  .aboutv2-nav {
    position:static;
  }

  .aboutv2-nav ul {
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
    padding-bottom:12px;
  }

  .aboutv2-nav ul::after {
    left:0;
    right:0;
  }

  .aboutv2-nav a {
    font-size:11px;
    height:38px;
  }

  .aboutv2-intro-inner,
  .aboutv2-values-inner,
  .aboutv2-policies-inner {
    width:calc(100vw - 28px);
  }

  .aboutv2-intro-copy {
    padding-left:0;
  }

  .aboutv2-collage {
    width:min(100%, 520px);
    height:520px;
  }

  .aboutv2-diamond {
    width:190px;
    height:190px;
  }

  .aboutv2-diamond-top,
  .aboutv2-diamond-bottom {
    margin-left:-95px;
  }

  .aboutv2-diamond-left {
    left:32px;
    top:182px;
  }

  .aboutv2-diamond-stat {
    right:32px;
    top:182px;
  }

  .aboutv2-diamond-bottom {
    top:346px;
  }

  .aboutv2-diamond-stat-inner strong {
    font-size:58px;
  }

  .aboutv2-diamond-stat-inner span {
    font-size:18px;
  }

  .aboutv2-map-stage::after {
    display:none;
  }

  .aboutv2-map {
    position:relative;
    top:auto;
    left:auto;
    width:100%;
    max-width:480px;
    display:block;
    margin:24px auto 24px;
  }

  .aboutv2-office-card {
    position:relative;
    top:auto;
    right:auto;
    width:100%;
    max-width:240px;
    margin:0 auto;
  }

  .aboutv2-policy-block p {
    max-width:none;
  }
}

@media (max-width: 560px) {
  .aboutv2-topstrip a {
    font-size:8.5px;
    padding:0 4px;
  }

  .aboutv2-hero-copy h1 {
    font-size:46px;
  }

  .aboutv2-company-title span,
  .aboutv2-company-title strong,
  .aboutv2-purpose-head h3,
  .aboutv2-presence-title h3 span,
  .aboutv2-presence-title h3 strong,
  .aboutv2-values-title h3,
  .aboutv2-policies-heading h3 span,
  .aboutv2-policies-heading h3 strong {
    font-size:34px;
  }

  .aboutv2-copy-block p,
  .aboutv2-purpose-block p,
  .aboutv2-value-item p,
  .aboutv2-policy-block p {
    font-size:15px;
  }

  .aboutv2-collage {
    height:420px;
  }

  .aboutv2-diamond {
    width:150px;
    height:150px;
  }

  .aboutv2-diamond-top,
  .aboutv2-diamond-bottom {
    margin-left:-75px;
  }

  .aboutv2-diamond-left {
    left:12px;
    top:146px;
  }

  .aboutv2-diamond-stat {
    right:12px;
    top:146px;
  }

  .aboutv2-diamond-bottom {
    top:276px;
  }

  .aboutv2-diamond-stat-inner strong {
    font-size:42px;
    margin-bottom:6px;
  }

  .aboutv2-diamond-stat-inner span {
    font-size:13px;
  }

  .aboutv2-purpose-left,
  .aboutv2-purpose-right,
  .aboutv2-policies-inner {
    padding-left:20px;
    padding-right:20px;
  }
}

/* Header de nosotros: usar exactamente la misma base visual del landing. */
.about-page-v2 .main-nav > ul > li > a.is-current {
  height: 40px;
  padding: 0 20px;
  background: var(--blue);
  color: #fff;
}

.about-page-v2 .main-nav > ul > li > a.is-current::after {
  display: none;
}

.about-page-v2 .main-nav > ul > li:hover > a.is-current {
  color: #fff;
  transform: none;
}

.about-page-v2 .main-nav > ul > li:hover > a.is-current::after {
  width: 0;
}


/* =========================================================
   PÁGINAS PROYECTOS REFERENCIA
========================================================= */
.projects-ref-page {
  background:#efefef;
  color:#24415f;
}

.projects-ref-page .site-header {
  position:absolute;
}

.projects-ref-page .main-nav > ul > li > a.is-current,
.projects-ref-page .main-nav > ul > li > a[aria-current="page"] {
  background:var(--blue);
  color:#fff;
  padding:0 17px;
  box-shadow:0 6px 18px rgba(16,57,127,.16);
}

.projects-ref-page .main-nav > ul > li > a.is-current::after,
.projects-ref-page .main-nav > ul > li > a[aria-current="page"]::after {
  width:0;
}

.projects-ref-hero {
  position:relative;
  height:545px;
  overflow:hidden;
  background:#181818;
}

.projects-ref-hero::before {
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to bottom, rgba(239,239,239,.92) 0%, rgba(239,239,239,.58) 11%, rgba(239,239,239,0) 24%, rgba(239,239,239,0) 100%),
    linear-gradient(to bottom, rgba(255,255,255,.08), rgba(255,255,255,0));
  z-index:2;
  pointer-events:none;
}

.projects-ref-hero::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.70) 0%, rgba(0,0,0,.28) 18%, rgba(0,0,0,0) 42%);
  z-index:2;
  pointer-events:none;
}

.projects-ref-hero__bg {
  position:absolute;
  inset:0;
  background:url('../img/projects-page/hero-bridge.jpg') center center / cover no-repeat;
  transform:scale(1.01);
  z-index:1;
}

.projects-ref-hero__caption {
  position:absolute;
  left:50%;
  bottom:44px;
  transform:translateX(-50%);
  z-index:4;
  width:min(1320px, calc(100vw - 120px));
  text-align:center;
}

.projects-ref-hero__title {
  margin:0;
  color:#fff;
  text-transform:uppercase;
  font-size:67px;
  line-height:1.04;
  letter-spacing:.2px;
  font-weight:800;
  text-shadow:0 3px 12px rgba(0,0,0,.24);
}

.projects-ref-hero__down {
  width:56px;
  height:56px;
  margin:8px auto 0;
  position:relative;
  display:block;
  animation:projectArrow 1.8s ease-in-out infinite;
}

.projects-ref-hero__down::before,
.projects-ref-hero__down::after {
  content:"";
  position:absolute;
  left:50%;
  top:14px;
  width:16px;
  height:16px;
  border-right:3px solid #fff;
  border-bottom:3px solid #fff;
}

.projects-ref-hero__down::before {
  transform:translateX(-50%) rotate(45deg);
}

.projects-ref-hero__down::after {
  transform:translateX(-50%) rotate(45deg) translate(9px, 9px);
  opacity:.26;
}

@keyframes projectArrow {
  0%,100% { transform:translateY(0); }
  50% { transform:translateY(7px); }
}

.projects-ref-content {
  display:grid;
  grid-template-columns:146px minmax(0, 1fr);
  align-items:start;
}

.projects-ref-sidebar {
  background:#163f8d;
  position:sticky;
  top:0;
  min-height:100vh;
  box-shadow:inset -1px 0 0 rgba(255,255,255,.12);
}

.projects-ref-sidebar__list {
  display:flex;
  flex-direction:column;
}

.projects-ref-sidebar__item {
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  min-height:132px;
  padding:16px 10px;
  color:rgba(255,255,255,.80);
  text-align:center;
  font-weight:700;
  font-size:15px;
  line-height:1.08;
  position:relative;
  transition:background-color .22s ease, color .22s ease, transform .22s ease;
}

.projects-ref-sidebar__item::after {
  content:"";
  position:absolute;
  left:12px;
  right:12px;
  bottom:0;
  height:1px;
  background:rgba(255,255,255,.38);
}

.projects-ref-sidebar__item:last-child::after { display:none; }

.projects-ref-sidebar__item:hover {
  background:#1a489b;
  color:#fff;
}

.projects-ref-sidebar__item.is-active {
  background:var(--orange);
  color:#fff;
}

.projects-ref-sidebar__icon {
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
}

.projects-ref-sidebar__icon svg {
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.projects-ref-sidebar__item.is-active .projects-ref-sidebar__icon svg {
  filter:drop-shadow(0 1px 0 rgba(0,0,0,.06));
}

.projects-ref-main {
  padding:46px 42px 110px 42px;
  min-height:980px;
}

.projects-ref-section-head {
  display:flex;
  align-items:center;
  gap:18px;
  margin:8px 0 38px 112px;
}

.projects-ref-section-head .section-icon {
  width:66px;
  height:66px;
  color:var(--orange);
  flex:0 0 66px;
}

.projects-ref-section-head .section-icon svg {
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.projects-ref-section-title {
  margin:0;
  color:var(--orange);
  font-size:35px;
  line-height:1.02;
  text-transform:uppercase;
  font-weight:800;
  letter-spacing:.2px;
}

.projects-ref-grid {
  width:min(1310px, calc(100vw - 256px));
  margin-left:112px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:28px 22px;
  align-items:start;
}

.projects-ref-card {
  position:relative;
  background:#f6f6f6;
  border:1px solid #d9d9d9;
  box-shadow:0 1px 0 rgba(0,0,0,.03);
  min-height:390px;
  display:flex;
  flex-direction:column;
}

.projects-ref-card__media-wrap {
  position:relative;
  width:100%;
  height:162px;
  overflow:hidden;
  flex:0 0 162px;
  background:#ddd;
}

.projects-ref-card__media {
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  background:#ddd;
}

.projects-ref-card__date {
  position:absolute;
  top:0;
  right:0;
  display:flex;
  align-items:stretch;
  height:68px;
  z-index:2;
  pointer-events:none;
}

.projects-ref-card__date-main {
  width:52px;
  background:#f3a000;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 14px rgba(0,0,0,.08);
}

.projects-ref-card__date-day,
.projects-ref-card__date-year {
  display:block;
  font-size:16px;
  line-height:.96;
  font-weight:800;
  letter-spacing:.2px;
}

.projects-ref-card__date-month {
  display:block;
  margin:1px 0;
  font-size:11px;
  line-height:1;
  font-weight:800;
  letter-spacing:.2px;
  text-transform:none;
}

.projects-ref-card__date-tail {
  width:10px;
  background:#dddddd;
}

.projects-ref-card__body {
  padding:18px 20px 26px;
  display:flex;
  flex-direction:column;
  flex:1 1 auto;
}

.projects-ref-card__title {
  margin:0 0 10px;
  color:#163f8d;
  font-size:22px;
  line-height:1.08;
  font-weight:800;
}

.projects-ref-card__desc {
  margin:0;
  color:#737373;
  font-size:15px;
  line-height:1.03;
  letter-spacing:.02px;
  display:flex;
  gap:8px;
}

.projects-ref-card__desc::before {
  content:"»";
  color:#ef9e22;
  font-size:28px;
  line-height:1;
  flex:0 0 auto;
  margin-top:-3px;
}

.projects-ref-card__cta {
  margin:auto auto 0;
  min-width:93px;
  height:39px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:2px solid #335ea6;
  color:#163f8d;
  font-size:14px;
  font-weight:800;
  transition:background-color .22s ease, color .22s ease, transform .22s ease;
}

.projects-ref-card__cta:hover {
  background:#163f8d;
  color:#fff;
  transform:translateY(-1px);
}

.projects-ref-page .footer {
  background:#163f8d;
  padding:14px 0 12px;
}

.projects-ref-page .footer-inner {
  width:min(1540px, calc(100vw - 42px));
}

.projects-ref-page .footer-left {
  font-size:10px;
  letter-spacing:.9px;
  text-transform:uppercase;
}

.projects-ref-page .socials a {
  width:38px;
  height:38px;
  border:3px solid rgba(255,255,255,.94);
  font-size:18px;
}

.projects-ref-page .footer-right {
  font-size:11px;
  letter-spacing:.8px;
  text-transform:uppercase;
  color:#fff;
  text-align:right;
  min-width:120px;
}

@media (max-width: 1360px) {
  .projects-ref-hero__title { font-size:56px; }
  .projects-ref-section-head { margin-left:42px; }
  .projects-ref-grid {
    width:auto;
    margin-left:42px;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .projects-ref-content {
    grid-template-columns:1fr;
  }
  .projects-ref-sidebar {
    position:relative;
    min-height:auto;
  }
  .projects-ref-sidebar__list {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
  .projects-ref-sidebar__item::after { display:none; }
  .projects-ref-main {
    min-height:auto;
    padding:30px 18px 70px;
  }
  .projects-ref-section-head,
  .projects-ref-grid {
    margin-left:0;
    width:auto;
  }
  .projects-ref-grid {
    grid-template-columns:1fr;
  }
  .projects-ref-hero {
    height:460px;
  }
  .projects-ref-hero__title {
    font-size:40px;
  }
}

@media (max-width: 640px) {
  .projects-ref-hero {
    height:390px;
  }
  .projects-ref-hero__caption {
    width:calc(100vw - 34px);
    bottom:22px;
  }
  .projects-ref-hero__title {
    font-size:31px;
  }
  .projects-ref-section-head {
    gap:12px;
    margin-bottom:20px;
  }
  .projects-ref-section-head .section-icon {
    width:48px;
    height:48px;
    flex-basis:48px;
  }
  .projects-ref-section-title {
    font-size:26px;
  }
  .projects-ref-card__title {
    font-size:20px;
  }
  .projects-ref-sidebar__list {
    grid-template-columns:1fr;
  }
}


/* =========================================================
   PREMIUM REFINEMENT PATCH
========================================================= */
:root {
  --text:#1f3142;
  --muted:#607285;
  --soft:#f5f2ec;
  --paper:#fbfaf7;
  --surface:#eef2f5;
  --surface-dark:#081c35;
  --line:#d8e0e8;
  --shadow:0 24px 54px rgba(8,28,53,.14);
  --shadow-soft:0 12px 28px rgba(8,28,53,.08);
}

body {
  font-family:"Inter", Arial, Helvetica, sans-serif;
  color:var(--text);
  background:linear-gradient(180deg, #f8f6f2 0%, #eef2f5 100%);
}

.brand-copy,
.top-strip a,
.main-nav > ul > li > a,
.submenu a,
.menu-toggle,
.aboutv2-nav a,
.aboutv2-topstrip a {
  font-family:Arial, Helvetica, sans-serif;
}

.hero-title,
.section-title,
.business-title,
.projects-title,
.project-name,
.news-title,
.news-card h3,
.contact-title,
.aboutv2-hero-copy h1,
.aboutv2-company-title span,
.aboutv2-company-title strong,
.aboutv2-purpose-head h3,
.aboutv2-presence-title h3 span,
.aboutv2-presence-title h3 strong,
.aboutv2-values-title h3,
.aboutv2-policies-heading h3 span,
.aboutv2-policies-heading h3 strong,
.aboutv2-policy-block h4,
.projects-ref-hero__title,
.projects-ref-section-title,
.projects-ref-card__title,
.projects-ref-sidebar__item-label,
.line-page-title,
.line-hero-title,
.line-detail-project-copy h3 {
  font-family:"Sora", "Inter", Arial, Helvetica, sans-serif;
  letter-spacing:-0.03em;
}

.project-description,
.news-card p,
.contact-text,
.contact-info-value,
.aboutv2-copy-block p,
.aboutv2-purpose-block p,
.aboutv2-value-item p,
.aboutv2-policy-block p,
.projects-ref-card__desc,
.line-copy p,
.line-detail-project-copy p,
.field input,
.field select,
.field textarea {
  color:#5e7082;
  line-height:1.55;
}

.hero--video .hero-video-wrap {
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:#08192b;
}

.hero--video .hero-video {
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:.58;
  filter:saturate(.9) contrast(1.02) brightness(.8);
  transform:scale(1.02);
}

.hero--video .hero-slides {
  z-index:1;
}

.hero--video .hero-slide.active {
  opacity:.72;
}

.hero-caption {
  width:min(1080px, calc(100vw - 100px));
}

.hero-title {
  max-width:920px;
  margin:0 auto;
  text-shadow:0 14px 30px rgba(0,0,0,.3);
}

.projects,
.projects-copy,
.news,
.contact-section,
.aboutv2-intro,
.aboutv2-purpose-right,
.aboutv2-policies,
.projects-ref-page,
.projects-ref-content,
.line-page {
  background:linear-gradient(180deg, #fbfaf7 0%, #eef2f5 100%);
}

.projects-copy::before,
.projects-copy::after {
  background:rgba(255,255,255,.42);
}

.projects-title {
  color:#6b737d;
}

.project-description,
.news-card p,
.aboutv2-copy-block p,
.aboutv2-policy-block p {
  max-width:54ch;
}

.news-card,
.contact-card,
.projects-ref-card,
.projects-ref-sidebar {
  background:rgba(255,255,255,.92);
  border:1px solid rgba(216,224,232,.9);
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(4px);
}

.news-card:hover,
.projects-ref-card:hover {
  box-shadow:var(--shadow);
}

.news-thumb,
.projects-ref-card__media {
  filter:saturate(1.02) contrast(1.01);
}

.field input,
.field select,
.field textarea {
  border:1px solid #d6dde6;
  background:#fcfcfb;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color:#234d96;
  box-shadow:0 0 0 4px rgba(24,63,140,.09);
}

.contact-submit {
  border-radius:999px;
  box-shadow:0 16px 30px rgba(24,63,140,.18);
}

.aboutv2-purpose-right,
.aboutv2-intro,
.aboutv2-policies {
  position:relative;
}

.aboutv2-purpose-right::before,
.aboutv2-intro::before,
.aboutv2-policies::before {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.38), rgba(255,255,255,0));
  pointer-events:none;
}

@media (max-width: 780px) {
  .hero--video .hero-video-wrap {
    display:none;
  }
  .hero--video .hero-slide.active {
    opacity:1;
  }
}

/* Ajuste solicitado: textos descriptivos en blanco en Nosotros */
.aboutv2-purpose-block p,
.aboutv2-value-item p {
  color:#fff;
}
