.man_titulo_principal {
  font-family: 'Sora', sans-serif;
  font-size: 56px;
  color: white;
  font-weight: 700;
  text-align: center;
}

.man_titulo_uno {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  color: #2753e1;
  font-weight: 700;
  text-align: center;
}

.man_titulo_dos {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  color: #150e37;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
}

.man_titulo_tres {
  font-family: 'Overpass', sans-serif;
  font-size: 18px;
  color: #505671;
  font-weight: 300;
  text-align: center;
  margin-top: 50px;
}

.man_titulo_uno_blanco {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  color: white;
  font-weight: 700;
  text-align: center;
}

.man_titulo_dos_blanco {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  color: white;
  font-weight: 700;
  text-align: center;
  margin-top: 50px;
}

.man_titulo_tres_blanco {
  font-family: 'Overpass', sans-serif;
  font-size: 18px;
  color: white;
  font-weight: 300;
  text-align: center;
  margin-top: 50px;
}

/* Logo y menú */
.site-header {
  background-color: white;
  display: flex;
  flex-wrap: wrap; /* permite que los elementos salten de línea */
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.logo-container {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  max-height: 150px;
  height: auto;
}

.site-nav {
  flex: 1 1 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.menu-link {
  margin: 10px 15px;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}

/* Estilo adaptado a pantallas grandes */
@media (min-width: 768px) {
  .site-header {
    flex-wrap: nowrap;
    height: 100px;
  }

  .logo-container {
    flex: 1;
    justify-content: flex-start;
  }

  .site-nav {
    flex: 2;
    margin-top: 0;
    justify-content: center;
  }
}
