/* ================= RESET Y CONFIGURACIÓN GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", sans-serif;
  background-color: white;
  color: #202020;
}

h1,
h2,
h3,
h4 {
  font-weight: bold;
}

p {
  text-align: center;
  line-height: 1.5;
  font-size: 1.5rem;
}

img {
  float: right;
  max-width: 100%;
  height: auto;
  mask-image: linear-gradient(black 75%, transparent);
}

/* ================= NAVBAR ================= */
.navbar {
  background-color: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand span {
  color: #0d6efd;
}

.nav-link {
  color: whitesmoke;
  font-weight: 500;
  font-size: 1rem;
}

.nav-link:hover {
  color: #0d6efd;
}
