:root {
  --fondo-menu: #FFF;
  --border-menu: #c1c7d3;
  --item-menu-color: #000;
  --fondo: #FFF;
  --primario: #161f91;
  --primario-alt: #131970;
  --secundario: #a0ba31;
  --secundario-alt: #829b13;
  --textos: #000;
  --font-family: "Roboto", sans-serif;
  --font-size: 15px;
  --fondo-footer: #0F284A;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background: var(--fondo);
  font-size: var(--font-size);
  font-family: var(--font-family);
}

#main-header {
  border-bottom: 1px solid var(--border-menu);
}
#main-header a {
  color: var(--item-menu-color);
  font-weight: 400;
}

#banner-cosede {
  background-image: url("../assets/fondo-home.png");
  background-repeat: no-repeat;
  background-size: cover;
}

#footer .footer-decoration {
  height: 20px;
  background-image: url("../assets/mosaico.png");
  background-repeat: repeat;
  background-size: contain;
}
#footer .footer-content {
  background: var(--fondo-footer);
}

.page-content .page-title {
  background-image: url("../assets/fondo-titulos.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0.6rem;
  padding: 0.9rem 0.8rem;
}
.page-content .page-title * {
  font-size: 1.6rem;
}
.page-content img {
  border-radius: 0.6rem;
  display: inline-block;
}

.sidebar .sidebar-title, .sidebar a {
  padding: 0.3rem 0.65rem;
}
.sidebar .sidebar-title {
  border-radius: 0.4rem;
  background: var(--secundario);
  font-size: 0.9rem;
  color: #FFF;
  font-weight: 500;
  padding: 0.5rem 0.65rem;
}
.sidebar li {
  list-style: none;
}
.sidebar a {
  color: var(--primario);
  text-decoration: none;
}

.carousel-index img {
  width: 100% !important;
}

.titulo-1 {
  color: var(--primario);
  font-size: 1.35rem;
  font-weight: 500;
}

.titulo-2 {
  color: var(--primario);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.titulo-3 {
  color: var(--secundario);
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.titulo-4 {
  color: #000;
  font-size: 1.02rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.page-banner img, .page-banner figure {
  display: block;
  width: 100% !important;
  border-radius: 0.6rem !important;
}

.corp-primary {
  color: #FFF;
  background-color: var(--primario);
  border-color: var(--primario);
}
.corp-primary:focus, .corp-primary:hover, .corp-primary:active {
  background-color: var(--primario-alt);
  border-color: var(--primario-alt);
}

.corp-secondary {
  color: #FFF;
  background-color: var(--secundario);
  border-color: var(--secundario);
}
.corp-secondary:focus, .corp-secondary:hover, .corp-secondary:active {
  background-color: var(--secundario-alt);
  border-color: var(--secundario-alt);
}