/* ===== Reset y configuraciones base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  color: #0b1f3a;
  line-height: 1.6;
  background-color: white;
}

/* ===== Elementos comunes ===== */
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #5a7fdf;
}

button {
  font-family: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  display: block;
}

:root {
  --color-primario: #0b1f3a;
  --color-secundario: #5a7fdf;
  --color-claro: #f5faff;
  --fuente-principal: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #0b1f3a;
    line-height: 1.6;
    background-color: white;
  }
  
  a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  a:hover {
    color: #5a7fdf;
  }
  
  button {
    font-family: inherit;
    cursor: pointer;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  :root {
    --color-primario: #0b1f3a;
    --color-secundario: #5a7fdf;
    --color-claro: #f5faff;
    --fuente-principal: 'Poppins', sans-serif;
  }
  
  .boton-extra {
    background-color: #0b1f3a;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  .boton-extra:hover {
    background-color: #132c4e;
  }

  .boton-principal {
    background-color: #0b1f3a;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1.2rem;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
  }
  
  .boton-principal:hover {
    background-color: #132c4e;
  }
  
  .nav-button,
.nav-link {
  font-size: 1.1rem;
  font-weight: 500; /* opcional para hacerlo más marcado */
}
