.panel-opciones {
  padding: 80px 0;
}
.panel-opciones__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) {
  .panel-opciones__container {
    max-width: 992px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 1360px) {
  .panel-opciones__container {
    max-width: 1440px;
  }
}
.panel-opciones__title {
  font-family: Helvetica, var(--jav-font-family), sans-serif;
  font-size: var(--jav-font-h2);
  font-weight: 700;
  color: #010440;
  text-align: center;
  margin: 0 0 12px;
}
.panel-opciones__subtitle {
  font-family: Helvetica, var(--jav-font-family), sans-serif;
  font-size: var(--jav-font-body-sm);
  font-weight: 400;
  color: #010440;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}
.panel-opciones__subtitle p {
  margin: 0;
}
.panel-opciones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.panel-opciones__card {
  display: flex;
  flex-direction: column;
  border-radius: 15px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(1, 4, 64, 0.12);
}
.panel-opciones__card--highlight {
  border: none;
}
.panel-opciones__card--highlight.tab-azul {
  background: #E5ECF8;
}
.panel-opciones__card--highlight.tab-aguamarina {
  background: #CDEFEA;
}
.panel-opciones__card--highlight.tab-morado {
  background: #E7DFF2;
}
.panel-opciones__card-title {
  font-family: Helvetica, var(--jav-font-family), sans-serif;
  font-size: var(--jav-font-body-lg);
  font-weight: 700;
  color: #010440;
  text-align: center;
  margin: 0 0 16px;
}
.panel-opciones__card-content {
  font-family: Helvetica, var(--jav-font-family), sans-serif;
  font-size: var(--jav-font-body-sm);
  font-weight: 400;
  line-height: 1.5;
  color: #010440;
  text-align: center;
  flex-grow: 1;
}
.panel-opciones__card-content p {
  margin: 0 0 10px;
}
.panel-opciones__card-content strong, .panel-opciones__card-content b {
  font-weight: 700;
}
.panel-opciones__card-content ul {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
  text-align: left;
}
.panel-opciones__card-content ul li {
  margin-bottom: 6px;
}
.panel-opciones__card-content a {
  color: #010440;
  text-decoration: underline;
}
.panel-opciones__cta {
  display: inline-flex;
  align-self: center;
  align-items: center;
  margin-top: 16px;
  padding: 14px 32px;
  border-radius: 100px;
  border: 1.5px solid #010440;
  background: #ffffff;
  color: #010440;
  font-family: Helvetica, var(--jav-font-family), sans-serif;
  font-size: var(--jav-font-body-sm);
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.panel-opciones__cta:hover {
  background: #010440;
  color: #ffffff;
  text-decoration: none;
}
.panel-opciones__cta--solid {
  gap: 10px;
  border: none;
  background: var(--jav-azul-1);
  color: #ffffff;
}
.panel-opciones__cta--solid::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 11px;
  background-color: #ffffff;
  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;
}
.panel-opciones__cta--solid:hover {
  background: #010440;
  color: #ffffff;
}
.panel-opciones__cta--solid:hover::after {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .panel-opciones__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 767px) {
  .panel-opciones {
    padding: 56px 0;
  }
  .panel-opciones__title {
    font-size: var(--jav-font-h5);
  }
}
