/* Estilo global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fuente global */
body {
  font-family: 'Poppins', 'DM Sans', sans-serif;
  background-color: #fff;
  color: #333;
}

h1, h2, h3 {
  color: #1a1a1a;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Navbar */
.custom-navbar {
  background-color: #428fa3;
  font-family: 'Poppins', sans-serif;
}

.custom-navbar .navbar-brand,
.custom-navbar .nav-link {
  color: white;
  font-weight: 100;
  text-transform: uppercase;
}

.custom-navbar .nav-link:hover {
  color: #a48ac4;
}

.nav-underline{
  color: #428fa3;
}

/* Sección de contenido */
.custom-section {
  background-color: #a48ac4;
  /*color: white;*/
  padding: 60px 20px;
}

/* Footer */
.custom-footer {
  background-color: #428fa3;
  /*color: white;*/
  padding: 20px 0;
}

.custom-footer .social-icons a {
  color: white;
  font-size: 24px;
  margin: 0 10px;
}

.custom-footer .social-icons a:hover {
  color: #a48ac4;
}

