html {
    scroll-behavior: smooth;
  }
  
    /* Reset */
    *, *::before, *::after {
      box-sizing: border-box;
    }
    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #f0f4f8;
      color: #222;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      width:100%;
      display: block;
    }
  
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #123263;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;          /* ← aquí le das más espacio (antes 70px) */
  padding: 0 2rem;       /* solo espacio a los lados */
  box-shadow: 0 2px 6px rgb(10 116 218 / 0.3);
  z-index: 1000;
}
    nav .logo {
      font-weight: 700;
      font-size: 1.5rem;
      color: white;
      letter-spacing: 2px;
      user-select: none;
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 2rem;
    }
    nav ul li a {
      color: white;
      font-weight: 600;
      font-size: 1rem;
      position: relative;
      transition: color 0.3s;
    }
    nav ul li a::after {
      content: "";
      position: absolute;
      width: 0;
      height: 2px;
      background: white;
      left: 0; bottom: -4px;
      transition: width 0.3s;
    }
    nav ul li a:hover::after,
    nav ul li a:focus::after {
      width: 100%;
    }
    nav ul li a:hover,
    nav ul li a:focus {
      color: #dcefff;
    }
  
  
    @media (max-width: 768px) {
      nav ul {
        position: fixed;
        top: 51px;
        right: 0;
        background: #123263;
        flex-direction: column;
        width: 200px;
        height: calc(100vh - 65px);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        padding-top: 2rem;
        padding-left:1rem;
        /*box-shadow: -2px 0 10px rgb(10 116 218 / 0.4);*/
      }
      nav ul.active {
        transform: translateX(0);
      }
      nav ul li {
        margin-bottom: 1.5rem;
        text-align: center;
      }
      .hamburger {
        display: flex;
      }
    }
  
    
.logo {
  height: 90%;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo img {
  height: 80%;
  display: block;
}

  
   html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}
  header {
  background: none;
  color: #123263;
  text-align: center;
  padding: 20px 10px;  
  margin-top: 140px; 
}

    header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
}

    main {
      max-width: 900px;
      margin: 30px auto;
      background: white;
      padding: 25px 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.05);
    }
    h2 {
      color: #123263;
      margin-top: 40px;
      margin-bottom: 15px;
    }
    ol {
      margin-left: 20px;
    }
    li {
      margin-bottom: 20px;
    }
    p {
      margin: 10px 0 15px;
    }
    .cta {
      text-align: center;
      margin-top: 40px;
      padding: 20px;
      background-color: #e6f0ff;
      border-radius: 8px;
      font-weight: bold;
      color: #2a9df4;
      border: 2px solid #2a9df4;
    }
    a.cta-link {
      text-decoration: none;
      color: #2a9df4;
      font-weight: 700;
      border-bottom: 2px solid transparent;
      transition: border-bottom-color 0.3s;
    }
    a.cta-link:hover {
      border-bottom-color: #2a9df4;
    }
    footer {
      text-align: center;
      font-size: 0.9rem;
      color: #666;
      margin: 50px 0 20px;
    }
  
    /* Footer */
    footer {
      text-align: center;
      padding: 1.5rem;
      background: #e1e9f0;
      color: #555;
      font-size: 0.9rem;
      user-select: none;
    }