*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
 
    :root {
      --navy:   #1a1d6e;
      --navy-dark: #12155a;
      --gold:   #f0c040;
      --gold-dark: #d4a800;
      --white:  #ffffff;
      --light:  #f4f5fb;
      --text:   #2c2f6b;
      --muted:  #6b6fa8;
      --border: #d8daf0;
    }
 
    html { scroll-behavior: smooth; }
 
    body {
      font-family: 'Carlito', Calibri, 'Gill Sans', sans-serif;
      color: var(--text);
      background: var(--white);
    }
 
    /* ── NAVBAR ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--navy-dark);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 2.5rem;
      height: 70px;
      box-shadow: 0 2px 20px rgba(0,0,0,.35);
    }
 
    .nav-brand {
      display: flex; align-items: center; gap: 1rem;
      text-decoration: none; color: var(--white);
    }
 
    .nav-logo {
      width: 44px; height: 44px;
      background: var(--gold);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Carlito', Calibri, 'Gill Sans', sans-serif;
      font-size: 1.4rem; font-weight: 700;
      color: var(--navy-dark);
      flex-shrink: 0;
    }
 
    .nav-brand-text {
      line-height: 1.15;
    }
 
    .nav-brand-name {
      font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
      opacity: .7;
    }
 
    .nav-brand-title {
      font-family: 'Carlito', Calibri, 'Gill Sans', sans-serif;
      font-size: 1.05rem; font-weight: 700;
      letter-spacing: .04em;
    }
 
    .nav-brand-sub {
      font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
      opacity: .55;
    }
 
    .nav-links {
      display: flex; gap: 2rem;
      list-style: none;
    }
 
    .nav-links a {
      color: rgba(255,255,255,.82);
      text-decoration: none;
      font-size: .9rem; font-weight: 400;
      letter-spacing: .03em;
      transition: color .2s;
      white-space: nowrap;
    }
 
    .nav-links a:hover { color: var(--gold); }
 
    .nav-socials {
      display: flex; gap: .9rem; align-items: center;
    }
 
    .nav-socials a {
      color: rgba(255,255,255,.7);
      font-size: 1.15rem;
      transition: color .2s;
      text-decoration: none;
    }
 
    .nav-socials a:hover { color: var(--gold); }
 
    /* ── HERO ── */
    .hero {
      background: var(--navy);
      min-height: 360px;
      display: flex; align-items: center;
      padding: 3.5rem 5vw;
      position: relative;
      overflow: hidden;
      animation: fadeInDown .7s ease both;
    }
 
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-18px); }
      to   { opacity: 1; transform: translateY(0); }
    }
 
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 75% 50%, rgba(240,192,64,.07) 0%, transparent 65%);
      pointer-events: none;
    }
 
    .hero-content {
      flex: 1;
      max-width: 560px;
      color: var(--white);
      z-index: 1;
    }
 
    .hero-content h1 {
      font-family: 'Carlito', Calibri, 'Gill Sans', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.7rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
    }
 
    .hero-content p {
      font-size: 1rem; font-weight: 300;
      line-height: 1.6;
      opacity: .85;
      margin-bottom: 2rem;
    }
 
    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
    }
 
    .btn {
      display: inline-flex; align-items: center;
      padding: .65rem 1.7rem;
      border-radius: 30px;
      font-size: .9rem; font-weight: 600;
      cursor: pointer; border: none; text-decoration: none;
      transition: transform .15s, box-shadow .15s, filter .15s;
    }
 
    .btn:hover { transform: translateY(-2px); filter: brightness(1.08); }
 
    .btn-gold {
      background: var(--gold);
      color: var(--navy-dark);
      box-shadow: 0 4px 16px rgba(240,192,64,.35);
    }
 
    .btn-outline {
      background: rgba(255,255,255,.12);
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.45);
      backdrop-filter: blur(4px);
    }
 
    .hero-illustration {
      flex-shrink: 0;
      width: clamp(180px, 28vw, 300px);
      opacity: .92;
      z-index: 1;
    }
 
    .hero-illustration svg { width: 100%; height: auto; }
 
    /* ── SECTION SHARED ── */
    section { padding: 5rem 5vw; }
 
    .section-title {
      font-family: 'Carlito', Calibri, 'Gill Sans', sans-serif;
      font-size: 1.9rem;
      color: var(--navy);
      margin-bottom: 2rem;
      position: relative;
    }
 
    .section-title::after {
      content: '';
      display: block;
      width: 48px; height: 3px;
      background: var(--gold);
      margin-top: .55rem;
      border-radius: 2px;
    }
 
    /* ── CONTACTOS TABLE ── */
    .contactos {
      background: var(--light);
    }
 
    .breadcrumb {
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.5rem;
    }
 
    .breadcrumb span { color: var(--navy); font-weight: 600; }
 
    .table-wrap {
      overflow-x: auto;
      border-radius: 10px;
      box-shadow: 0 4px 24px rgba(26,29,110,.09);
    }
 
    table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white);
      font-size: .92rem;
    }
 
    thead tr {
      background: var(--navy);
      color: var(--white);
    }
 
    thead th {
      padding: .85rem 1.3rem;
      text-align: left;
      font-weight: 600;
      letter-spacing: .04em;
      font-size: .85rem;
    }
 
    tbody tr {
      border-bottom: 1px solid var(--border);
      transition: background .15s;
    }
 
    tbody tr:last-child { border-bottom: none; }
    tbody tr:hover { background: #f0f2fc; }
 
    td {
      padding: .75rem 1.3rem;
      vertical-align: middle;
    }
 
    td:first-child {
      font-weight: 600;
      color: var(--navy);
      width: 28%;
    }
 
    .names-cell { display: flex; flex-direction: column; gap: .25rem; }
 
    .emails-cell { display: flex; flex-direction: column; gap: .25rem; }
 
    .emails-cell a {
      color: var(--navy);
      text-decoration: none;
      font-weight: 400;
      transition: color .15s;
    }
 
    .emails-cell a:hover { color: var(--gold-dark); text-decoration: underline; }
 
    /* ── UBICACIÓN ── */
    .ubicacion {
      background: var(--white);
    }

    .ubicacion-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: start;
    }

    .ubicacion-info {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .ubicacion-office {
      padding: 1.8rem;
      background: var(--light);
      border-radius: 10px;
      border-left: 4px solid var(--gold);
      box-shadow: 0 2px 12px rgba(26,29,110,.06);
      transition: transform .15s, box-shadow .15s;
    }

    .ubicacion-office:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 24px rgba(26,29,110,.12);
    }

    .ubicacion-office h3 {
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 1.2rem;
      font-weight: 700;
    }

    .ubicacion-office p {
      font-size: .92rem;
      line-height: 1.6;
      color: var(--text);
      margin-bottom: 1.2rem;
    }

    .ubicacion-office p:last-child { margin-bottom: 0; }

    .office-address {
      color: var(--text);
    }

    .office-address strong, .office-contact strong, .office-hours strong {
      color: var(--navy);
      font-weight: 700;
      display: block;
      margin-bottom: .3rem;
    }

    .office-contact a {
      color: var(--navy);
      text-decoration: none;
      font-weight: 500;
      transition: color .15s;
    }

    .office-contact a:hover {
      color: var(--gold-dark);
      text-decoration: underline;
    }

    .ubicacion-maps {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .map-container {
      width: 100%;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(26,29,110,.15);
    }

    .map-container iframe {
      display: block;
      width: 100%;
      height: 450px;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,.55);
      text-align: center;
      padding: 1.8rem 2rem;
      font-size: .82rem;
    }
 
    footer strong { color: rgba(255,255,255,.8); }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 760px) {
      .nav-links { display: none; }
      .hero { flex-direction: column; gap: 2.5rem; text-align: center; }
      .hero-actions { justify-content: center; }
      .hero-illustration { width: 55vw; }
      section { padding: 3.5rem 6vw; }
      .ubicacion-container { grid-template-columns: 1fr; gap: 2rem; }
      .map-container iframe { height: 350px; }
    }