/* ─── Variables ─────────────────────────────────── */
    :root {
      --accent:       #ff680d;
      --accent-dim:   #e05500;
      --dark:         #0d1117;
      --dark-2:       #161b22;
      --text:         #1e293b;
      --text-muted:   #64748b;
      --bg:           #ffffff;
      --bg-alt:       #f8fafc;
      --border:       #e2e8f0;
      --radius:       14px;
      --radius-lg:    24px;
      --shadow:       0 4px 24px rgba(0,0,0,0.08);
      --shadow-lg:    0 16px 48px rgba(0,0,0,0.12);
      --transition:   0.35s cubic-bezier(.4,0,.2,1);
      --font-body:    'Inter', system-ui, sans-serif;
      --font-head:    'Poppins', system-ui, sans-serif;
      --nav-h:        72px;
    }

    /* ─── Reset ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.7; -webkit-font-smoothing: antialiased; }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    b, strong { font-weight: 600; }

    /* ─── Utilities ──────────────────────────────────── */
    .container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .accent { color: var(--accent); }
    .section { padding: 96px 0; }
    .section--alt { background: var(--bg-alt); }

    /* ─── Reveal animations ──────────────────────────── */
    .reveal { opacity: 0; transform: translateY(36px); transition: opacity var(--transition), transform var(--transition); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity var(--transition), transform var(--transition); }
    .reveal-left.visible { opacity: 1; transform: none; }

    /* ─── Navbar ─────────────────────────────────────── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      height: var(--nav-h);
      display: flex; align-items: center;
      background: transparent;
      transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
    }
    .nav.scrolled {
      background: rgba(13,17,23,0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      box-shadow: 0 1px 0 rgba(255,255,255,0.06);
    }
    .nav__inner {
      display: flex; align-items: center; justify-content: space-between; width: 100%;
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
    }
    .nav__logo img { height: 58px; width: auto; object-fit: contain; transition: height var(--transition); }
    .nav__links {
      display: flex; gap: 8px; list-style: none;
    }
    .nav__links a {
      font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85);
      padding: 8px 14px; border-radius: 8px;
      transition: color var(--transition), background var(--transition);
      white-space: nowrap;
    }
    .nav__links a:hover { color: #fff; background: rgba(255,104,13,0.18); }
    .nav__links a.active { color: var(--accent); }

    /* hamburger */
    .nav__toggle {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: none; border: none; padding: 6px;
    }
    .nav__toggle span {
      display: block; width: 24px; height: 2px;
      background: #fff; border-radius: 2px;
      transition: transform var(--transition), opacity var(--transition);
    }
    .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav__toggle.open span:nth-child(2) { opacity: 0; }
    .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* mobile menu */
    .nav__mobile {
      display: none; position: fixed;
      top: var(--nav-h); left: 0; right: 0;
      background: rgba(13,17,23,0.96); backdrop-filter: blur(20px);
      padding: 20px 24px 28px;
      list-style: none; flex-direction: column; gap: 4px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nav__mobile.open { display: flex; }
    .nav__mobile a {
      display: block; color: rgba(255,255,255,0.85); font-weight: 500;
      padding: 12px 16px; border-radius: 10px;
      transition: background var(--transition), color var(--transition);
    }
    .nav__mobile a:hover { background: rgba(255,104,13,0.15); color: #fff; }

    /* ─── Hero ───────────────────────────────────────── */
    .hero {
      position: relative; min-height: 100svh;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero__bg {
      position: absolute; inset: 0;
      background: url('../img/6 bis.jpg') center/cover no-repeat;
      transform: scale(1.04);
      transition: transform 6s ease-out;
    }
    .hero__bg.loaded { transform: scale(1); }
    .hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(13,17,23,0.78) 0%, rgba(13,17,23,0.45) 100%);
    }
    .hero__content {
      position: relative; z-index: 1; text-align: center;
      padding: 120px 24px 60px; max-width: 780px;
    }
    .hero__tag {
      display: inline-block;
      background: rgba(255,104,13,0.18); border: 1px solid rgba(255,104,13,0.35);
      color: var(--accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; padding: 6px 16px; border-radius: 999px;
      margin-bottom: 24px;
      animation: fadeUp 0.8s ease both;
    }
    .hero__title {
      font-family: var(--font-head); font-size: clamp(2.4rem, 6vw, 4.2rem);
      font-weight: 800; color: #fff; line-height: 1.12; margin-bottom: 20px;
      animation: fadeUp 0.8s 0.15s ease both;
    }
    .hero__title span { color: var(--accent); }
    .hero__sub {
      font-size: clamp(1rem, 2.2vw, 1.2rem); color: rgba(255,255,255,0.72);
      margin-bottom: 40px;
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .hero__actions {
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 0.8s 0.45s ease both;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 14px 28px; border-radius: 10px; font-weight: 600;
      font-size: 0.95rem; cursor: pointer; border: none;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .btn:hover { transform: translateY(-2px); }
    .btn--primary {
      background: var(--accent); color: #fff;
      box-shadow: 0 4px 20px rgba(255,104,13,0.4);
    }
    .btn--primary:hover { background: var(--accent-dim); box-shadow: 0 8px 28px rgba(255,104,13,0.5); }
    .btn--outline {
      background: rgba(255,255,255,0.08); color: #fff;
      border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
    }
    .btn--outline:hover { background: rgba(255,255,255,0.16); }
    .hero__scroll {
      position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em;
      animation: bounce 2s infinite;
    }
    .hero__scroll svg { animation: scrollArrow 1.6s infinite; }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: none; }
    }
    @keyframes bounce {
      0%,100% { transform: translateX(-50%) translateY(0); }
      50%      { transform: translateX(-50%) translateY(6px); }
    }
    @keyframes scrollArrow {
      0%,100% { opacity: 0.5; transform: translateY(0); }
      50%      { opacity: 1; transform: translateY(4px); }
    }

    /* ─── Section header ─────────────────────────────── */
    .sec-label {
      display: inline-block; color: var(--accent); font-size: 0.78rem;
      font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
      margin-bottom: 10px;
    }
    .sec-title {
      font-family: var(--font-head); font-size: clamp(1.7rem, 3.5vw, 2.5rem);
      font-weight: 700; line-height: 1.2; color: var(--text); margin-bottom: 20px;
    }
    .sec-line {
      width: 48px; height: 4px; border-radius: 2px; background: var(--accent);
      margin-bottom: 32px;
    }
    .sec-line--center { margin-left: auto; margin-right: auto; }
    .text-center { text-align: center; }

    /* ─── Quiénes somos ──────────────────────────────── */
    .about__lead { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.8; }
    .about__body p { margin-bottom: 18px; line-height: 1.8; text-align: justify; }

    /* ─── Cards (Misión / Valores / Visión) ─────────── */
    .cards { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .card {
      background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg);
      padding: 36px 32px; box-shadow: var(--shadow);
      transition: transform var(--transition), box-shadow var(--transition);
    }
    .card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .card__icon {
      width: 52px; height: 52px; border-radius: 14px;
      background: rgba(255,104,13,0.1); display: grid; place-items: center;
      margin-bottom: 20px;
    }
    .card__icon svg { color: var(--accent); }
    .card__title {
      font-family: var(--font-head); font-size: 1.15rem; font-weight: 700;
      margin-bottom: 12px;
    }
    .card__body { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }

    /* ─── Values image ───────────────────────────────── */
    .img-full {
      border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-lg);
    }
    .img-full img { width: 100%; }

    /* ─── Valores ────────────────────────────────────── */
    .valores {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background-color: #1a0c04;
      background-image: url('../img/cimaqsa-valores.jpg');
      background-size: cover;
      background-position: center;
      padding: 48px 40px;
      box-shadow: var(--shadow-lg);
      position: relative;
    }
    .valores__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      position: relative;
      z-index: 1;
    }
    .valor {
      border: 1px solid rgba(255, 150, 60, 0.6);
      color: rgba(255, 225, 170, 0.95);
      font-family: var(--font-body);
      font-size: 0.88rem;
      font-weight: 500;
      text-align: center;
      padding: 11px 14px;
      border-radius: 6px;
      letter-spacing: 0.02em;
      background: rgba(0, 0, 0, 0.18);
      transition: border-color var(--transition), background var(--transition), color var(--transition);
      cursor: default;
    }
    .valor:hover {
      border-color: rgba(255, 104, 13, 0.9);
      background: rgba(255, 104, 13, 0.15);
      color: #fff;
    }

    @media (max-width: 768px) {
      .valores { padding: 32px 24px; }
      .valores__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
      .valor { font-size: 0.82rem; padding: 10px 10px; }
    }
    @media (max-width: 400px) {
      .valores { padding: 24px 16px; }
      .valores__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
      .valor { font-size: 0.77rem; padding: 9px 8px; }
    }

    /* ─── Trayectoria Stats ──────────────────────────── */
    .trayectoria-stats {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background-image: url('../img/cimaqsa-trayectoria.jpg');
      background-color: #110d08;
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-lg);
    }
    .tray-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
    }
    .tray-item {
      padding: 32px 28px;
      border-right: 1px solid rgba(255, 150, 60, 0.18);
      border-bottom: 1px solid rgba(255, 150, 60, 0.18);
    }
    .tray-item:nth-child(3n)        { border-right: none; }
    .tray-item:nth-last-child(-n+3) { border-bottom: none; }
    .tray-prefix {
      display: block;
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 6px;
    }
    .tray-num-wrap {
      display: flex;
      align-items: baseline;
      gap: 7px;
      flex-wrap: wrap;
      margin-bottom: 10px;
    }
    .tray-num-wrap .counter {
      font-family: var(--font-head);
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }
    .tray-unit {
      font-size: 0.85rem;
      font-weight: 600;
      color: rgba(255, 150, 60, 0.9);
    }
    .tray-desc {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.52);
      line-height: 1.65;
    }
    @media (max-width: 768px) {
      .tray-grid { grid-template-columns: 1fr; }
      .tray-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 150, 60, 0.18);
        padding: 22px 24px;
      }
      .tray-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(255, 150, 60, 0.18); }
      .tray-item:last-child { border-bottom: none; }
      .tray-num-wrap .counter { font-size: 1.8rem; }
    }

    /* ─── Trayectoria ────────────────────────────────── */
    .stats {
      display: grid; gap: 2px; grid-template-columns: repeat(3,1fr);
      background: var(--border); border-radius: var(--radius); overflow: hidden;
      margin-bottom: 48px;
    }
    .stat {
      background: var(--bg); padding: 28px 20px; text-align: center;
    }
    .stat__num {
      font-family: var(--font-head); font-size: 2.2rem; font-weight: 800;
      color: var(--accent); line-height: 1;
    }
    .stat__label { font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

    /* ─── Services grid (Telecomunicaciones) ─────────── */
    .services { display: grid; gap: 24px; grid-template-columns: repeat(3, 1fr); }
    .services__group { display: flex; flex-direction: column; gap: 16px; }
    .services__group--full { grid-column: 1 / -1; }
    .services__group--full .services__group-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .services__group-title {
      display: block;
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--text);
    }
    .service {
      border-radius: var(--radius); padding: 28px 24px;
      border: 1px solid var(--border); background: var(--bg);
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    }
    .service:hover {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px rgba(255,104,13,0.08), var(--shadow);
      transform: translateY(-3px);
    }
    .service__icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: rgba(255,104,13,0.1); display: grid; place-items: center;
      margin-bottom: 16px; color: var(--accent);
    }
    .service__title { font-weight: 600; font-size: 1rem; margin-bottom: 10px; }
    .service__body { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

    /* ─── Gallery ────────────────────────────────────── */
    .gallery { display: grid; gap: 16px; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
    .gallery__item {
      border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
      position: relative; box-shadow: var(--shadow);
    }
    .gallery__item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.5s ease;
    }
    .gallery__item:hover img { transform: scale(1.06); }

    /* ─── Portfolio clientes ─────────────────────────── */
    .portfolio-sector {
      margin-bottom: 20px;
      background: var(--bg);
      border-radius: var(--radius);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .portfolio-sector__header {
      display: flex; align-items: center; gap: 12px;
      padding: 18px 28px;
      background: linear-gradient(90deg, rgba(255,104,13,0.08) 0%, transparent 100%);
      border-bottom: 1px solid var(--border);
    }
    .portfolio-sector__icon {
      width: 36px; height: 36px; border-radius: 10px;
      background: rgba(255,104,13,0.12); display: grid; place-items: center;
      flex-shrink: 0; color: var(--accent);
    }
    .portfolio-sector__title {
      font-family: var(--font-head); font-size: 0.95rem; font-weight: 700;
      color: var(--text); margin: 0;
    }
    .portfolio-projects {
      display: grid; gap: 0;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .portfolio-project {
      padding: 20px 28px;
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .portfolio-project:last-child { border-right: none; }
    .portfolio-project__client {
      font-weight: 600; font-size: 0.9rem; margin-bottom: 7px;
      color: var(--text); line-height: 1.4;
    }
    .portfolio-project__client::before {
      content: ''; display: inline-block;
      width: 3px; height: 13px; background: var(--accent);
      border-radius: 2px; margin-right: 9px; vertical-align: middle;
    }
    .portfolio-project__desc {
      font-size: 0.83rem; color: var(--text-muted); line-height: 1.65;
      padding-left: 12px;
    }

    /* ─── Carousel ───────────────────────────────────── */
    .carousel {
      position: relative; border-radius: var(--radius-lg); overflow: hidden;
      box-shadow: var(--shadow-lg); background: var(--dark-2);
      aspect-ratio: 4/3; max-height: 720px;
    }
    .carousel__track {
      display: flex; height: 100%;
      transition: transform 0.55s cubic-bezier(.4,0,.2,1);
    }
    .carousel__slide { min-width: 100%; height: 100%; }
    .carousel__slide img { width: 100%; height: 100%; object-fit: cover; }
    .carousel__btn {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 46px; height: 46px; border-radius: 50%;
      background: rgba(13,17,23,0.55); backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,0.22); color: #fff;
      cursor: pointer; display: grid; place-items: center;
      transition: background var(--transition), transform var(--transition);
      z-index: 10;
    }
    .carousel__btn:hover { background: var(--accent); transform: translateY(-50%) scale(1.08); }
    .carousel__btn--prev { left: 16px; }
    .carousel__btn--next { right: 16px; }
    .carousel__dots {
      position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
      display: flex; gap: 8px; z-index: 10;
    }
    .carousel__dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: rgba(255,255,255,0.4); border: none; cursor: pointer;
      transition: background var(--transition), transform var(--transition);
      padding: 0;
    }
    .carousel__dot.active { background: var(--accent); transform: scale(1.4); }
    .carousel__counter {
      position: absolute; top: 16px; right: 20px;
      font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.7);
      background: rgba(0,0,0,0.4); backdrop-filter: blur(6px);
      padding: 4px 12px; border-radius: 999px; z-index: 10;
    }

    /* ─── Accordion ─────────────────────────────────── */
    .accordion { display: flex; flex-direction: column; gap: 8px; }
    .accordion__item {
      background: var(--bg); border: 1px solid var(--border);
      border-radius: var(--radius); overflow: hidden;
      transition: box-shadow var(--transition), border-color var(--transition);
    }
    .accordion__item.is-open {
      box-shadow: var(--shadow); border-color: rgba(255,104,13,0.3);
    }
    .accordion__trigger {
      width: 100%; display: flex; align-items: center;
      justify-content: space-between; gap: 16px;
      padding: 18px 24px; background: none; border: none;
      cursor: pointer; text-align: left;
      font-family: var(--font-body); font-size: 0.95rem;
      font-weight: 600; color: var(--text);
      transition: background var(--transition), color var(--transition);
    }
    .accordion__trigger:hover { background: rgba(255,104,13,0.04); }
    .accordion__trigger.open { color: var(--accent); background: rgba(255,104,13,0.05); }
    .accordion__trigger-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
    .accordion__num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 26px; height: 26px; border-radius: 50%;
      background: rgba(255,104,13,0.1); color: var(--accent);
      font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
      transition: background var(--transition), color var(--transition);
    }
    .accordion__trigger.open .accordion__num { background: var(--accent); color: #fff; }
    .accordion__trigger-title { flex: 1; min-width: 0; }
    .accordion__badge {
      font-size: 0.72rem; font-weight: 500; color: var(--text-muted);
      background: var(--bg-alt); border: 1px solid var(--border);
      padding: 2px 10px; border-radius: 999px; white-space: nowrap;
      transition: border-color var(--transition);
    }
    .accordion__trigger.open .accordion__badge { border-color: rgba(255,104,13,0.3); }
    .accordion__icon {
      flex-shrink: 0; color: var(--text-muted);
      transition: transform var(--transition), color var(--transition);
    }
    .accordion__trigger.open .accordion__icon { transform: rotate(180deg); color: var(--accent); }
    .accordion__body { display: none; }
    .accordion__body.open { display: block; }
    .accordion__content { padding: 0 24px 24px; }

    .proj-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
    .proj-table thead th {
      text-align: left; padding: 9px 14px;
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--accent);
      background: rgba(255,104,13,0.04);
      border-bottom: 2px solid rgba(255,104,13,0.18);
    }
    .proj-table thead th:first-child { width: 36%; min-width: 180px; }
    .proj-table tbody td {
      padding: 13px 14px; vertical-align: top;
      border-bottom: 1px solid var(--border); line-height: 1.65;
    }
    .proj-table tbody td:first-child { font-weight: 600; color: var(--text); }
    .proj-table tbody td:last-child  { color: var(--text-muted); }
    .proj-table tbody tr:last-child td { border-bottom: none; }
    .proj-table tbody tr:hover td { background: rgba(255,104,13,0.025); }

    @media (max-width: 640px) {
      .proj-table thead { display: none; }
      .proj-table, .proj-table tbody,
      .proj-table tr, .proj-table td { display: block; width: 100%; }
      .proj-table tbody tr { padding: 14px 0; border-bottom: 1px solid var(--border); }
      .proj-table tbody tr:last-child { border-bottom: none; }
      .proj-table tbody td { padding: 2px 0; border: none; }
      .proj-table tbody td:first-child { font-weight: 700; color: var(--accent); margin-bottom: 4px; }
      .proj-table tbody td:last-child  { font-size: 0.84rem; }
    }

    /* ─── Compromisos card ───────────────────────────── */
    .compromisos-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      min-height: 380px;
    }
    .compromisos-img {
      position: relative;
      overflow: hidden;
    }
    .compromisos-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .compromisos-card:hover .compromisos-img img { transform: scale(1.04); }
    .compromisos-panel {
      background: var(--dark);
      padding: 48px 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 8px;
    }
    .compromisos-panel__label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      color: var(--accent); margin-bottom: 6px;
    }
    .compromisos-panel__title {
      font-family: var(--font-head); font-size: clamp(1.1rem, 2vw, 1.45rem);
      font-weight: 700; color: #fff; line-height: 1.3;
      margin-bottom: 28px;
    }
    .compromisos-lista {
      list-style: none;
      display: flex; flex-direction: column; gap: 16px;
    }
    .compromisos-lista li {
      display: flex; align-items: flex-start; gap: 14px;
      color: rgba(255,255,255,0.82);
      font-size: 0.95rem; font-weight: 500; line-height: 1.5;
    }
    .compromisos-dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
      margin-top: 5px;
      box-shadow: 0 0 10px rgba(255,104,13,0.55);
    }

    @media (max-width: 768px) {
      .compromisos-card { grid-template-columns: 1fr; min-height: auto; }
      .compromisos-img { height: 240px; }
      .compromisos-panel { padding: 36px 28px; }
    }

    /* ─── Nuestra Gente & Servicio card ─────────────── */
    .gente-card {
      display: flex;
      flex-direction: column;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border);
    }
    .gente-panel {
      background: var(--bg);
      padding: 44px 40px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .gente-block:last-child { grid-column: 1 / -1; }
    .gente-block__title {
      font-family: var(--font-head);
      font-size: 1.08rem; font-weight: 700; color: var(--text);
      margin-bottom: 10px;
      padding-left: 14px;
      border-left: 3px solid var(--accent);
      line-height: 1.3;
    }
    .gente-block p {
      font-size: 0.9rem; color: var(--text-muted);
      line-height: 1.8; text-align: justify;
    }
    .gente-especialidades {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 16px;
    }
    .gente-especialidades li {
      font-size: 0.87rem; color: var(--text-muted);
      display: flex; align-items: flex-start; gap: 9px; line-height: 1.5;
    }
    .gente-especialidades li::before {
      content: '';
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0; margin-top: 5px;
    }
    .gente-img {
      position: relative; overflow: hidden;
      order: -1;
      aspect-ratio: 16/6;
    }
    .gente-img img {
      width: 100%; height: 100%;
      object-fit: cover; object-position: center 30%;
      display: block;
      transition: transform 0.6s ease;
    }
    .gente-card:hover .gente-img img { transform: scale(1.04); }

    @media (max-width: 900px) {
      .gente-card { flex-direction: column; }
      .gente-img { order: 0; aspect-ratio: unset; height: 340px; }
      .gente-img img { object-position: center 25%; }
      .gente-panel { grid-template-columns: 1fr; }
      .gente-block:last-child { grid-column: 1; }
      .gente-especialidades { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .portfolio-projects { grid-template-columns: 1fr; }
      .portfolio-project { border-right: none; }

      .compromisos-panel { padding: 28px 20px; }
      .gente-panel { padding: 28px 20px; gap: 24px; }
    }

    /* ─── Conclusion ─────────────────────────────────── */
    .conclusion__quote {
      font-family: var(--font-head); font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 700; color: var(--accent); text-align: center;
      border-left: none; margin: 40px 0;
      padding: 32px; background: rgba(255,104,13,0.05);
      border-radius: var(--radius); border: 1px solid rgba(255,104,13,0.15);
    }

    /* ─── Contact ────────────────────────────────────── */
    #Contactos { background: var(--dark); }
    .contact__img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; box-shadow: var(--shadow-lg); }
    .contact__grid {
      display: grid; gap: 32px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
    .contact__item { text-align: center; }
    .contact__label {
      font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 10px;
    }
    .contact__value { color: rgba(255,255,255,0.8); font-size: 0.95rem; line-height: 1.6; }
    .contact__value a { color: var(--accent); }
    .contact__value a:hover { text-decoration: underline; }
    .contact__divider {
      width: 1px; background: rgba(255,255,255,0.08);
      display: none;
    }

    /* ─── Footer ─────────────────────────────────────── */
    .footer {
      background: #070a0f; padding: 24px;
      text-align: center; color: rgba(255,255,255,0.3);
      font-size: 0.82rem;
    }

    /* ─── Responsive ─────────────────────────────────── */
    @media (max-width: 768px) {
      .nav__links { display: none; }
      .nav__toggle { display: flex; }
      .nav { height: auto; }
      .nav__logo img { height: 90px; }
      .nav__inner { padding-top: 30px; }
      .nav__mobile { top: 120px; }
      .nav.scrolled { height: var(--nav-h); }
      .nav.scrolled .nav__inner { padding-top: 0; }
      .nav.scrolled .nav__logo img { height: 50px; }
      .nav.scrolled .nav__mobile { top: var(--nav-h); }
      .services { grid-template-columns: 1fr; }
      .services__group--full .services__group-cards { grid-template-columns: 1fr; }
      .section { padding: 64px 0; }
      .stats { grid-template-columns: repeat(3,1fr); }
      .stat__num { font-size: 1.6rem; }
      .contact__divider { display: none; }
    }

    @media (max-width: 480px) {
      .stats { grid-template-columns: 1fr; }
      .hero__actions { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 280px; justify-content: center; }
    }
