@font-face {
  font-family: "Helvetica";
  src: url("../../fonts/helvetica/Helvetica.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../../fonts/helvetica/Helvetica-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../../fonts/helvetica/Helvetica-Oblique.woff") format("woff");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica";
  src: url("../../fonts/helvetica/Helvetica-BoldOblique.woff") format("woff");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
.tab-panel {
  --jv-breadcrumb-color: #010440;
  --tab-panel-text-color: var(--jav-azul-4);
  --tab-panel-active-color: #3D6FBC;
  --tab-panel-active-line-width: calc(100% + 16px);
  background: var(--tab-panel-bg, #E5ECF8);
  padding: clamp(56px, 5vw, 84px) 0 clamp(64px, 6vw, 96px);
}
.tab-panel__container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .tab-panel__container {
    max-width: 992px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1360px) {
  .tab-panel__container {
    max-width: 1440px;
  }
}
.tab-panel__header {
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
}
.tab-panel__title {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-h2);
  font-weight: 700;
  color: var(--tab-panel-text-color);
  line-height: 1.08;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 12px;
}
.tab-panel__subtitle {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-sm);
  font-weight: 400;
  color: var(--tab-panel-text-color);
  line-height: 1.45;
  letter-spacing: 0;
  text-align: center;
  max-width: 86ch;
  margin: 0 auto;
  text-wrap: balance;
}
.tab-panel__intro {
  padding-top: 0;
  padding-bottom: clamp(24px, 2.5vw, 32px);
}
.tab-panel__intro .tab-panel__header {
  max-width: 960px;
}
.tab-panel__body {
  display: grid;
  grid-template-columns: minmax(270px, 286px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .tab-panel__body {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }
}
.tab-panel__accordion {
  display: none;
}
.tab-panel__nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--tab-panel-nav-bg, #ffffff);
  padding: 32px 28px 32px 32px;
  height: 100%;
}
@media (max-width: 767px) {
  .tab-panel__nav {
    flex-direction: column;
    padding: 20px 16px;
    gap: 12px;
  }
}
.tab-panel__tab {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  background: transparent;
  display: block;
  width: 100%;
  max-width: none;
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-sm);
  font-weight: 700;
  color: var(--tab-panel-tab-color, var(--tab-panel-text-color));
  line-height: 1.25;
  letter-spacing: 0;
  text-align: left;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.15s ease;
}
.tab-panel__tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  width: var(--tab-panel-active-line-width);
  bottom: -14px;
  height: 2px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: left center;
  transition: opacity 0.18s ease, transform 0.22s ease;
}
.tab-panel__tab:hover:not(.tab-panel__tab--active) {
  color: var(--tab-panel-tab-color, var(--tab-panel-active-color));
}
.tab-panel__tab--active {
  color: var(--tab-panel-tab-color, var(--tab-panel-active-color));
}
.tab-panel__tab--active::after {
  opacity: 1;
  transform: scaleX(1);
}
.tab-panel__tab:focus-visible {
  outline: 2px solid var(--jav-btn-bg);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .tab-panel__tab {
    font-size: var(--jav-font-body-sm);
    padding: 8px 10px;
    border-radius: 8px;
  }
  .tab-panel__tab--active {
    background: #eef2fb;
  }
  .tab-panel__tab--active::after {
    width: calc(100% + 16px);
    bottom: -10px;
  }
}
.tab-panel__panels {
  background: var(--tab-panel-panels-bg, #F9F9F9);
  padding: 36px 44px;
  height: 100%;
}
@media (max-width: 767px) {
  .tab-panel__panels {
    padding: 24px 20px;
  }
}
.tab-panel__panel {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-sm);
  font-weight: 400;
  color: var(--tab-panel-text-color);
  line-height: 1.55;
  letter-spacing: 0;
}
.tab-panel__panel:not(.tab-panel__panel--active) {
  display: none;
}
.tab-panel__panel h1, .tab-panel__panel h2, .tab-panel__panel h3, .tab-panel__panel h4, .tab-panel__panel h5, .tab-panel__panel h6 {
  font-family: var(--jav-font-family);
  font-weight: 700;
  color: var(--tab-panel-text-color);
  line-height: 1.25;
  letter-spacing: 0;
  margin: 0 0 16px;
}
.tab-panel__panel h1 {
  font-size: var(--jav-font-h2);
}
.tab-panel__panel h2 {
  font-size: var(--jav-font-h3);
}
.tab-panel__panel h3 {
  font-size: var(--jav-font-h4);
}
.tab-panel__panel h4, .tab-panel__panel h5, .tab-panel__panel h6 {
  font-size: var(--jav-font-h5);
}
.tab-panel__panel p {
  margin: 0 0 16px;
  line-height: inherit;
}
.tab-panel__panel p:last-child {
  margin-bottom: 0;
}
.tab-panel__panel p, .tab-panel__panel a, .tab-panel__panel span, .tab-panel__panel li {
  font-size: inherit;
  color: inherit;
}
.tab-panel__panel ul, .tab-panel__panel ol {
  margin: 0 0 16px;
  padding-left: 20px;
  line-height: inherit;
}
.tab-panel__panel ul li, .tab-panel__panel ol li {
  margin-bottom: 8px;
  list-style: inherit;
  color: inherit;
}
.tab-panel__panel ul {
  list-style-type: disc;
}
.tab-panel__panel ol {
  list-style-type: decimal;
}
.tab-panel__panel ul ul, .tab-panel__panel ol ul {
  list-style-type: circle;
}
.tab-panel__panel a {
  color: var(--tab-panel-active-color);
  text-decoration: underline;
}
.tab-panel__panel a:hover {
  color: var(--tab-panel-text-color);
}
.tab-panel__panel strong, .tab-panel__panel b {
  font-weight: 700;
}
.tab-panel__panel-media {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.tab-panel__panel-image {
  width: 536px;
  max-width: 100%;
  height: 336px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
  display: block;
}
.tab-panel__panel-text {
  flex: 1 1 320px;
  min-width: 280px;
}
.tab-panel__panel-text .tab-panel__cta {
  margin-top: 24px;
  color: var(--jav-azul-4);
  text-decoration: none;
}
.tab-panel__panel-text .tab-panel__cta:hover {
  color: var(--jav-btn-outline-hover-text);
}
.tab-panel__footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: clamp(24px, 3vw, 40px);
}
.tab-panel__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: var(--jav-btn-height-md);
  padding: 0 var(--jav-btn-pad-x-md);
  border-radius: var(--jav-btn-radius);
  border: 1px solid #103062;
  background: transparent;
  color: #103062;
  font-family: var(--jav-btn-font);
  font-size: var(--jav-btn-fs-md);
  font-weight: var(--jav-btn-fw);
  line-height: var(--jav-btn-lh);
  letter-spacing: 0;
  text-decoration: none;
  transition: var(--jav-btn-transition);
}
.tab-panel__cta::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 11px;
  background-color: #103062;
  background-image: none;
  mask-image: url("../../img/general-icons/blue_arrow.svg");
  -webkit-mask-image: url("../../img/general-icons/blue_arrow.svg");
  mask-size: contain;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  transition: background-color 0.2s ease;
}
.tab-panel__cta:hover {
  background: var(--jav-btn-outline-hover-bg);
  border-color: var(--jav-btn-outline-hover-border);
  color: var(--jav-btn-outline-hover-text);
  text-decoration: none;
}
.tab-panel__cta:hover::after {
  background-color: currentColor;
}
.tab-panel__cta:focus-visible {
  outline: 2px solid var(--jav-btn-bg);
  outline-offset: 2px;
}
.tab-panel__legal {
  font-family: var(--jav-font-family);
  font-size: var(--jav-font-body-xs);
  font-weight: 400;
  color: var(--tab-panel-text-color);
  line-height: 1.35;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}
.tab-panel--cta-only {
  --tab-panel-bg: #F9F9F9;
  padding: clamp(32px, 4vw, 56px) 0;
}
.tab-panel--cta-only .tab-panel__footer {
  margin-top: 0;
}
.tab-panel--cta-only .tab-panel__cta {
  min-width: min(100%, 355px);
  justify-content: center;
  height: var(--jav-btn-height-lg);
  padding: 0 var(--jav-btn-pad-x-lg);
  font-size: var(--jav-btn-fs-lg);
}
.tab-panel--horizontal .tab-panel__body {
  display: block;
  background: transparent;
  border-radius: 0;
}
.tab-panel--horizontal .tab-panel__nav {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  padding: 0 0 20px;
  height: auto;
  background: transparent;
  border-bottom: 2px solid var(--jav-azul-4);
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tab-panel--horizontal .tab-panel__nav {
    gap: 20px;
  }
}
.tab-panel--horizontal .tab-panel__tab {
  width: auto;
  text-align: center;
}
.tab-panel--horizontal .tab-panel__tab--active::after {
  left: 0;
  right: 0;
  width: auto;
  bottom: -22px;
}
.tab-panel--horizontal .tab-panel__panels {
  background: transparent;
  padding: 0;
}
@media (max-width: 575px) {
  .tab-panel {
    padding: 40px 0 51px;
  }
  .tab-panel__container {
    width: min(100%, 400px);
    padding-left: 40px;
    padding-right: 40px;
  }
  .tab-panel__intro {
    padding-bottom: 29px;
  }
  .tab-panel__title {
    max-width: 330px;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--jav-font-h2);
    line-height: 1;
  }
  .tab-panel__subtitle {
    max-width: 315px;
    font-size: var(--jav-font-body-sm);
    line-height: 1;
  }
  .tab-panel__body {
    display: none;
  }
  .tab-panel__accordion {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .tab-panel__accordion-item {
    border-radius: 10px;
    overflow: hidden;
  }
  .tab-panel__accordion-item--active {
    background: #ffffff;
  }
  .tab-panel__accordion-trigger {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 61px;
    padding: 19px 19px 21px 17px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    background: #e5ecf8;
    border-radius: 10px;
    color: var(--tab-panel-tab-color, var(--jav-azul-4));
    font-family: var(--jav-font-family);
    font-size: var(--jav-font-body-sm);
    font-weight: 700;
    line-height: 1;
    text-align: left;
    cursor: pointer;
  }
  .tab-panel__accordion-trigger::after {
    content: "";
    width: 15px;
    height: 15px;
    border-right: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
    transform: translateY(-3px) rotate(45deg);
    transition: transform 0.18s ease;
    flex-shrink: 0;
  }
  .tab-panel__accordion-trigger--active {
    color: var(--tab-panel-tab-color, var(--tab-panel-active-color));
    border-radius: 10px 10px 0 0;
  }
  .tab-panel__accordion-trigger--active::after {
    transform: translateY(4px) rotate(225deg);
  }
  .tab-panel__accordion-panel {
    padding: 41px 17px 18px;
    background: #ffffff;
    border-radius: 0 0 10px 10px;
    color: var(--tab-panel-text-color);
    font-family: var(--jav-font-family);
    font-size: var(--jav-font-body-sm);
    font-weight: 400;
    line-height: 1;
    text-align: left;
  }
  .tab-panel__accordion-panel h1,
  .tab-panel__accordion-panel h2,
  .tab-panel__accordion-panel h3,
  .tab-panel__accordion-panel h4,
  .tab-panel__accordion-panel h5,
  .tab-panel__accordion-panel h6 {
    font-size: var(--jav-font-h5);
    line-height: 1;
    text-align: center;
  }
  .tab-panel__accordion-panel:not(.tab-panel__accordion-panel--active) {
    display: none;
  }
  .tab-panel__accordion-panel p {
    margin: 0 0 17px;
    color: inherit;
    font-size: inherit;
  }
  .tab-panel__accordion-panel ul,
  .tab-panel__accordion-panel ol {
    margin: 0 0 17px;
    padding-left: 18px;
  }
  .tab-panel__accordion-panel ul li,
  .tab-panel__accordion-panel ol li {
    color: inherit;
    font-size: inherit;
  }
  .tab-panel__panel-media {
    gap: 29px;
    justify-content: center;
  }
  .tab-panel__panel-image {
    width: 320px;
    height: 200px;
    border-radius: 15px;
  }
  .tab-panel__panel-text {
    flex-basis: 100%;
    min-width: 0;
    text-align: center;
  }
  .tab-panel__cta {
    order: 2;
    height: var(--jav-btn-height-md);
    padding: 0 var(--jav-btn-pad-x-md);
    font-size: var(--jav-btn-fs-md);
    line-height: 1;
    white-space: nowrap;
  }
  .tab-panel__legal {
    order: 1;
    max-width: 293px;
    font-size: var(--jav-font-body-xs);
    line-height: 1;
  }
  .tab-panel--horizontal .tab-panel__accordion {
    display: none;
  }
  .tab-panel--horizontal .tab-panel__body {
    display: block;
    background: transparent;
  }
  .tab-panel--horizontal .tab-panel__nav {
    flex-direction: column;
    gap: 30px;
    align-items: center;
    margin-bottom: 29px;
    border-bottom: 0;
  }
  .tab-panel--horizontal .tab-panel__tab {
    min-height: auto;
    padding: 0;
    background: transparent;
    font-size: var(--jav-font-body-sm);
    text-align: center;
    white-space: normal;
    max-width: 100%;
  }
  .tab-panel--horizontal .tab-panel__tab--active {
    color: var(--tab-panel-tab-color, var(--tab-panel-active-color));
  }
  .tab-panel--horizontal .tab-panel__tab--active::after {
    display: block;
    left: 28px;
    right: 28px;
    bottom: -10px;
    height: 1px;
    background: currentColor;
  }
  .tab-panel--horizontal .tab-panel__panels {
    padding: 0;
  }
}

.tab-panel--planeacion-historica {
  padding: 48px 0 91px;
}
.tab-panel--planeacion-historica .tab-panel__container {
  max-width: 1226px;
}
.tab-panel--planeacion-historica .tab-panel__body {
  grid-template-columns: minmax(240px, 345px) minmax(0, 1fr);
  min-height: 665px;
  border-radius: 10px;
}
.tab-panel--planeacion-historica .tab-panel__nav {
  gap: 40px;
  padding: 41px 24px 55px 44px;
}
.tab-panel--planeacion-historica .tab-panel__panels {
  padding: 36px 44px;
}
.tab-panel--planeacion-historica .tab-panel__panel {
  line-height: 1.16;
}
.tab-panel--planeacion-historica .tab-panel__panel li {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tab-panel--planeacion-historica {
    padding: 40px 0 56px;
  }
  .tab-panel--planeacion-historica .tab-panel__container {
    padding-inline: 24px;
  }
}
