  :root {
      /* Colores corporativos (ajusta si quieres) */
      --orange: #ff5e00;
      --orange-dark: #e04f00;
      --navy: #011d34;
      --white: #ffffff;
      --header-bg: #f3f3f3;
      --muted: #a5a5a5;
      --table-head: #cfcfcf;

      /* Tipografías / tamaños (según tus specs) */
      --h1: 1.5rem;
      /* 24px */
      --h2: 0.875rem;
      /* 14px */
      --text: 0.75rem;
      /* 12px */
      --small: 0.6875rem;
      /* 11px */

      --max-width: 1200px;
  }

  /* Reset muy sencillo */
  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0
  }

  html,
  body {
      height: 100%
  }

  body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--navy);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.4;
  }

  /* Top info bar */
  .topbar {
      position: fixed;
      z-index: 1000;
      width: 100%;
      height: 100px;
      background: var(--navy);
      color: var(--white);
      font-size: 0.75rem;
      padding: 0.45rem 1rem;
  }

  .topbar .container {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding-right: 6rem;
  }

  .topbar .left,
  .topbar .right {
      display: flex;
      align-items: center;
      gap: 1rem
  }

  .topbar .icon {
      opacity: 0.9;
      font-size: 0.95rem
  }

  .socials {
      width: 20px;
      cursor: pointer;
      display: flex;
      gap: .6rem;
      align-items: center;

  }

  .socials .circle {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 750;
      color: var(--white);
  }

  /* Header / nav */
  header {
      position: fixed;
      z-index: 1000;
      width: 100%;
      top: 40px;
      background: var(--white);
      border-bottom: 1px solid rgba(1, 29, 52, 0.03);
      box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3);

  }

  .nav-container {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 1.05rem 1rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
  }

  .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
  }

  .logo img {
      height: 70px;
      width: auto;
      display: block
  }

  .nav {
      display: flex;
      gap: 1.5rem;
      align-items: center;
      justify-content: center;
      flex: 1;
  }

  .nav a {
      color: var(--navy);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      position: relative;
      padding: 0.25rem 0.15rem;
      transition: color 0.3s ease;
  }

  .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--navy);
      transition: width 0.3s ease;
  }

  .nav a:hover {
      color: var(--orange);
      /* o el color que quieras destacar */
  }

  .nav a:hover::after {
      width: 100%;
  }

  .nav a.active {
  color: var(--orange); /* mismo color del hover */
  font-weight: 600; /* un poco más fuerte para destacar */
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%; /* siempre visible */
  height: 2px;
  background: var(--orange);
}



  .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.55rem 1rem;
      border-radius: 40px;
      font-weight: 600;
      font-size: 0.9rem;
      cursor: pointer;
      border: 0;
  }

  .btn-primary {
      background: var(--orange);
      color: (--navy);
      box-shadow: 0 6px 18px rgba(255, 94, 0, 0.16);
      transition: transform .18s ease, background .12s;
  }

  .btn-primary:hover {
      transform: translateY(-2px);
      background: var(--orange-dark)
  }

  .btn-ghost {
      background: #011d34;
      border-radius: 6px;
      padding: 0.45rem 0.8rem;
      color: var(--navy);
      font-weight: 600;
  }





  .services {
      background: #f9f9f9;
      padding: 4rem 1rem;
      height: 700px;
      padding-top: 180px;
  }

  .services-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 3rem;
  }

  /* Texto */
  .services-text .subtitle {
      color: #ff5e00;
      font-size: 0.875rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
  }

  .services-text .title {
      font-size: 2rem;
      font-weight: 800;
      color: #011d34;
      margin-bottom: 1.5rem;
  }

  .services-text .question {
      font-size: 1rem;
      font-weight: 700;
      color: #ff5e00;
      margin-bottom: 0.6rem;
  }

  .services-text p {
      font-size: 0.95rem;
      color: #011d34;
      margin-bottom: 1rem;
      line-height: 1.5;
  }

  .services-text ul {
      margin: 1rem 0 1.5rem 1.2rem;
      color: #011d34;
      font-size: 0.95rem;
  }

  .services-text li {
      margin-bottom: 0.5rem;
  }

  .services-text .closing {
      font-weight: 500;
      color: #011d34;
      margin-top: 1rem;
  }

  /* Visual */
  .services-visual {
      text-align: center;
  }

  .services-visual .logo-main {
      max-width: 600px;
      margin: 0 auto 2rem;
      display: block;
  }




  /* Responsive */
  @media (max-width: 900px) {
      .services-container {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .services-text {
          text-align: left;
      }
  }



  .footer {
      background-color: #011d34;
      color: white;
      padding: 3rem 2rem 1rem;
      font-size: 0.9rem;
  }

  .footer-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
  }

  .footer-logo {
      max-width: 180px;
      margin-bottom: 1rem;
  }

  .footer p {
      margin-bottom: 1rem;
      line-height: 1.5;
  }

  .footer-col h3 {
      margin-bottom: 1rem;
      font-size: 1.1rem;
      font-weight: bold;
  }

  .footer-col ul {
      list-style: none;
      padding: 0;
  }

  .footer-col ul li {
      margin-bottom: 0.5rem;
  }

  .footer-col ul li a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease, padding-left 0.3s ease;
  }

  .footer-col ul li a:hover {
      color: #ff5e00;
      padding-left: 5px;
  }

  /* Contact info */
  .footer-col p i {
      margin-right: 8px;
      color: #ff5e00;
  }

  /* Social icons */
  .footer-socials a {
      display: inline-block;
      margin-right: 12px;
      font-size: 1.2rem;
      color: white;
      transition: transform 0.3s ease, color 0.3s ease;
  }

  .footer-socials a:hover {
      color: #ff5e00;
      transform: scale(1.2);
  }

  /* Bottom */
  .footer-bottom {
      margin-top: 2rem;
      border-top: 1px solid #ff5e00;
      padding-top: 1rem;
      text-align: center;
      font-size: 0.85rem;
  }

  .footer-bottom a {
      color: white;
      text-decoration: none;
      transition: color 0.3s ease;
  }

  .footer-bottom a:hover {
      color: #ff5e00;
  }