@font-face {
  font-family: "Montserrat";
  src: url("../fonts/Montserrat-VariableFont_wght.woff2")
      format("woff2-variations"),
      url("../fonts/Montserrat-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900; /* Rango de pesos soportados */
  font-display: swap; /* Mejora la carga percibida */
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("/fonts/Montserrat-Italic-VariableFont_wght.woff2")
      format("woff2-variations"),
      url("/fonts/Montserrat-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
  font-style: italic;
}

:root {
  --DarkBlue: #172c4b;
  --LightBlue: #0656c3;
  --LightGray: #d3ddea;
  --ExtraLightGray: #e8eef7;
  --DarkGray: #707070;
  --White: #fff;
  --Green: #9ed11d;
  --LinkFooter: #9ED11D;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  color: inherit;
}

header, footer, .content-static {
  font-family: "Montserrat", sans-serif !important;
  color: var(--DarkBlue);
}
header img,
footer img,
.content-static img {
  max-width: 100%;
  height: auto;
}
header p,
footer p,
.content-static p {
  font-weight: normal;
}
.content-static p .alignleft {
  float: left;
  margin: 0 24px 24px 0;
}
.content-static .alignright {
  float: right;
  margin: 0 0 24px 24px;
}
.content-static .centered,
.content-static .aligncenter {
  display: block;
  margin: 0 auto 30px;
}
.content-static .bg-secondary {
  background: #f8fbfe !important;
}
.content-static .custom-control {
  padding-left: 1.75rem;
}
.content-static .custom-control-label::before {
  background: #fff;
  position: absolute;
  top: 0.125rem;
  left: -1.75rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  background-color: #fff;
  box-shadow: none;
}
.content-static .custom-control-label::after {
  position: absolute;
  top: 0.125rem;
  left: -1.75rem;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.content-static .bg-top-wave {
  line-height: 0.5;
}
section {
  font-family: sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: var(--White);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99;
}
header .left {
  display: flex;
  gap: 4.35rem;
  align-items: center;
}
header ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}
header ul li {
  position: relative;
}
header ul a,
header .right a {
  font-size: 0.85rem;
  color: var(--DarkBlue);
  text-decoration: none;
  padding: 1.5rem;
  display: block;
  transition: color ease-in 0.5s;
  font-weight: 500;
}
header ul a:hover,
header .right a:hover,
header ul a.active,
header .right a.active {
  color: var(--LightBlue);
  text-decoration: none;
}
header ul li > ul {
  display: none;
  flex-direction: column;
  position: absolute;
  left: 0;
  top: 37px;
  gap: 0;
  background-color: var(--White);
  min-width: 13.5rem;
  padding: 1.5rem 0;
  border-radius: 0.3rem;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
}
header ul li:hover > ul {
  display: flex;
}
header ul a {
  padding: 0.5rem 1.5rem;
}
header .right {
  display: flex;
  align-items: center;
  gap: 1.45rem;
}
header .vr {
  background-color: var(--LightGray);
  height: 2.8rem;
  width: 0.06rem;
}
header .right a {
  padding: 0;
}
header .right a.btn-light-blue {
  background-color: var(--LightBlue);
  color: var(--White);
  padding: 0.5rem 0.75rem;
  border-radius: 0.25rem;
  display: inline-block;
  transition: background-color ease 0.5s;
}
header .right a.btn-light-blue:hover {
  background-color: var(--DarkBlue);
}
nav .panel-btn,
header .panel-btn,
header .user-btn {
  display: none;
}
nav .panel-btn,
header .panel-btn {
  transition: all ease 0.8s;
}
nav .panel-btn.is-active,
header .panel-btn.is-active {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 99;
}
header .user-btn img {
  width: 2.19rem;
  height: 2.19rem;
}
header#header-nav.shadow {
  box-shadow: -2px 1px 7px rgba(0, 0, 0, 0.2) !important;
}
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
}
.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  height: 0.25rem;
  background-color: var(--DarkBlue);
}
.hamburger-inner {
  width: 1.25rem;
}
.is-active .hamburger-inner {
  width: 1.875rem !important;
}
.hamburger-inner:before {
  top: -0.5625rem;
  width: 1.875rem;
}
.hamburger-inner:after {
  bottom: -0.5625rem;
  width: 1.875rem;
}
.hamburger img {
  max-width: 100%;
  height: auto;
}
header button:focus {
  outline: none !important;
}
header button.panel-btn.hamburger.hamburger--vortex {
  width: 33px;
}
nav.panel {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--White);
  display: flex;
  transform: translateX(100%);
  opacity: 0;
  transition: opacity ease 0.3s, transform ease 0.3s;
  z-index: 999;
  padding: 79px 36px;
}
nav.panel.is-active,
header .panel.is-active {
  opacity: 1;
  transform: translateX(0%);
}
nav.panel > div {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
nav.panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
nav.panel ul ul {
  padding-left: 1.5rem;
}
nav.panel ul a {
  font-size: 0.85rem;
  color: var(--DarkBlue);
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  transition: color ease-in 0.5s;
  font-weight: 500;
}
nav.panel ul a:hover,
nav.panel ul a.active {
  color: var(--LightBlue);
}

/* Footer */
footer {
  background-color: var(--DarkBlue);
  color: var(--White);
  font-size: 0.87rem;
}
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer li {
  padding: 0.5rem;
}
footer a {
  color: var(--White);
  text-decoration: none !important;
  transition: color ease 0.5s;
}
footer a:hover {
  color: var(--LinkFooter);
}
footer h4 {
  color: #ffffff;
  font-weight: 900;
  font-size: 0.87rem;
  padding: 0.5rem 0;
  text-align: left;
}
footer .attention a {
  font-size: 1.06rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: bold;
}
footer .attention a:hover,
footer .attention a span {
  color: var(--Green);
}
footer .vd {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
footer .social a {
  margin-left: .5rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-lg {
  padding-top: 2rem;
}

@media (min-width: 1200px) {
  footer .container {
    max-width: 1140px;
  }
}

@media (max-width: 991px) {
  header nav,
  header .right {
    display: none;
  }
  header .left img {
    width: 7rem;
  }
  nav .panel-btn,
  header .panel-btn,
  header .user-btn {
    display: flex;
  }
  footer .social a {
    margin-left: 0;
    margin-bottom: 0;
    margin-right: 1rem;
  }
  header nav,
  header .right {
    display: none;
  }
}

@media (max-width: 767px) {
  h4.footer-title {
    text-align: left;
  }
}

@media (max-width: 576px) {
  footer li {
    padding: 0.5rem 0;
  }
}
