@font-face {
  font-family: Montserrat-Bold;
  src: url(../fonts/Montserrat-Bold.ttf) format("opentype");
}

@font-face {
  font-family: Montserrat-Medium;
  src: url(../fonts/Montserrat-Medium.ttf) format("opentype");
}

@font-face {
  font-family: Montserrat-Black;
  src: url(../fonts/Montserrat-Black.ttf) format("opentype");
}
:root {
  --muted: #959db3;
  --red: #ce3a2b;
  --light: #f8f9fb;
  --blue1: #2a9eda;
  --blue2: #0081c0;
  --blue3: #254185;
  --blue4: #007fbc;
  --bs-primary-rgb: 37, 65, 133 !important;
  --white: #ffffff;
  --turquoise: #2abfda;
  --lemon: #20baa3;
  --brown: #a0362a;
  --textb: #007fbc;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Gotham-Light, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--muted);
  height: 100vh;
  font-family: Montserrat-Medium;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong {
  font-family: Montserrat-Bold, sans-serif;
}

.font-black {
  font-family: Montserrat-Black, sans-serif;
}

.font-light {
  font-family: Gotham-Light, sans-serif;
}

.nav-mobile {
  display: none;
}

.shadow-p,
.dropdown-menu[data-bs-popper] {
  box-shadow: 0px 3px 6px #00000029;
}

.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 16px; /* Ajusta el tamaño que necesites */
  height: 16px;
  background-image: url("../images/arrow-up.svg"); /* Cambia la ruta */
  background-size: contain; /* Hace que la imagen se ajuste al tamaño */
  background-repeat: no-repeat;
  margin-right: 5px; /* Espacio entre la imagen y el texto */
  border: 0;
  transform: rotate(180deg);
  transition: transform 0.3s ease;
  position: absolute;
  top: 3px;
  padding: 5px;
}

/* Cuando el padre <li> tiene .show */
.nav-item.dropdown > .dropdown-toggle.show::after {
  transform: rotate(0deg);
  padding: 5px;
}

.navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(6971%)
    hue-rotate(51deg) brightness(126%) contrast(90%);
}

main {
  margin-top: 55px;
}

.bg-light {
  background-color: var(--light);
}

.bg-blue-light {
  background-color: var(--blue1);
}

.bg-blue-light-2 {
  background-color: var(--blue2);
}

.bg-blue-light-3 {
  background-color: var(--blue3);
}

.bg-turquoise {
  background-color: var(--turquoise);
}

.bg-lemon {
  background-color: var(--lemon);
}

.bg-gray {
  background-color: #f8f9fb;
}

.text-blue {
  color: var(--blue1);
}

.text-blue-2 {
  color: var(--blue2);
}

.text-blue-3 {
  color: var(--blue3);
}

.text-color {
  color: var(--textb);
}

.filter-1 {
  filter: brightness(0) saturate(100%) invert(51%) sepia(95%) saturate(818%)
    hue-rotate(170deg) brightness(90%) contrast(88%);
}

.filter-2 {
  filter: brightness(0) saturate(100%) invert(34%) sepia(100%) saturate(834%)
    hue-rotate(167deg) brightness(93%) contrast(103%);
}

.filter-3 {
  filter: brightness(0) saturate(100%) invert(20%) sepia(19%) saturate(5439%)
    hue-rotate(205deg) brightness(96%) contrast(88%);
}

.mt-card-top {
  margin-top: -10px;
}

.mt-card-top-2 {
  margin-top: -8px;
}

.mt-bottom-negative {
  bottom: -12px !important;
  cursor: pointer;
  right: 50%;
}

.icon-rounded-pill {
  margin-right: -12px;
  border: 1px solid white;
  aspect-ratio: 1 / 1;
}

.bg-fondo img {
  width: 100%;
  object-fit: cover;
}

/*INIT CARD HOVER*/
.card-with-hover {
  position: relative;
  overflow: hidden;
  text-align: left;
  height: 300px;
  margin: 0;
  border-radius: 10px;
  cursor: pointer;
}

.card-with-hover:hover h6 img {
  display: none;
}

.card-with-hover > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  transition: transform 0.35s;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.card-with-hover:hover > img {
  transform: scale(1.15) translate3d(0, -20px, 0);
}

.card-with-hover > .card-caption {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  background-color: var(--blue3);
  transition: all 0.3s;
  transform: translate3d(0, 100%, 0);
  will-change: transform;
}

.card-with-hover > .card-caption > .card-caption-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  transition: all 0.3s;
  transform: translate3d(0);
  will-change: transform;
}

.card-with-hover > .card-caption h6 {
  display: block;
  color: #fff;
  margin: 0;
  padding: 1.5rem;
  transition: all 0.3s;
  background-color: var(--blue3);
  transform: translate3d(0, -100%, 0);
  will-change: transform;
  border-radius: 10px;
}

.card-with-hover > .card-caption p {
  padding: 0 1rem;
  margin: 0;
  color: #fff;
  opacity: 0;
  transition: opacity 0.35s 0.1s;
  transform: translate3d(0);
  will-change: transform;
}

.card-with-hover:hover > .card-caption {
  transform: translateY(0);
}

.card-with-hover:hover > .card-caption > .card-caption-content {
  top: 25%;
  transform: translate(0, -50%);
}

.card-with-hover:hover > .card-caption h6 {
  background-color: rgba(255, 255, 255, 0);
  transform: translateY(0%);
}

.card-with-hover:hover > .card-caption p {
  opacity: 1;
}

::marker {
  color: var(--blue1);
}

p {
  color: var(--muted);
}

/*FIN CARD HOVER*/

.text-break {
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

/*RESPONSIVE TABS*/

.responsive-tabs .nav-tabs {
  display: none;
}

.tab-vertical .tab-content .tab-pane,
.tab-vertical .tab-content .collapse {
  height: 100%;
}

@media (min-width: 1254px) {
  .responsive-tabs .nav-tabs {
    display: flex;
    justify-content: space-between;
  }
  .responsive-tabs .card .card-header {
    display: none;
  }
  .responsive-tabs .card .collapse {
    display: block;
  }
}
@media (max-width: 1253px) {
  .responsive-tabs .tab-pane {
    display: block !important;
    opacity: 1;
  }
  .collapse h2,
  .tab-vertical .container-nav {
    display: none;
  }
  .card.tab-pane.fade:has(.stretched-link) {
    border-top: 3px solid var(--blue1);
    margin-bottom: 20px;
  }
  .tab-vertical .tab-content {
    width: 100%;
  }
  .tab-vertical .tab-content .tab-pane,
  .tab-vertical .tab-content .collapse {
    height: auto;
  }
  .indicador-fondo {
    background-image: none !important;
  }
  .indicador-card {
    padding: 10px !important;
    box-shadow: 0px 3px 6px #00000029;
    margin-bottom: 20px;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
  }
  .indicador-card.ind-1 {
    background-image: url("../images/indicador-1.png");
  }
  .indicador-card.ind-2 {
    background-image: url("../images/indicador-2.png");
  }
  .indicador-card.ind-3 {
    background-image: url("../images/indicador-3.png");
  }
  .indicador-card.ind-4 {
    background-image: url("../images/indicador-4.png");
  }
}

.tab-vertical.lines-tab .container-nav ul .nav-link.active {
  background-color: transparent !important;
  color: var(--blue1);
}

.tab-vertical.lines-tab .container-nav ul .nav-link.active img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(49%) saturate(808%)
    hue-rotate(156deg) brightness(103%) contrast(82%);
}

.tab-vertical.lines-tab .container-nav ul .nav-link {
  background-color: transparent !important;
  box-shadow: none;
}

.tab-vertical.lines-tab .container-nav ul .nav-link img {
  filter: brightness(0) saturate(100%) invert(65%) sepia(9%) saturate(595%)
    hue-rotate(186deg) brightness(95%) contrast(88%);
}

.tab-vertical .container-nav ul li {
  width: 100%;
}
.tab-vertical .container-nav ul .nav-link {
  width: 100%;
  background-color: var(--white);
  color: var(--muted);
  border: none;
  box-shadow: 0px 3px 6px #00000029;
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
  padding: 15px 20px;
}

.tab-vertical .container-nav ul .nav-link.active {
  width: 100%;
  background-color: var(--blue3);
  color: var(--white);
  border: none;
}

.nav-tabs .nav-link {
  padding: 20px 30px;
  font-weight: bolder;
  color: var(--blue3);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  box-shadow: 0px 3px 6px #00000029;
  border-radius: 7px;
  color: var(--blue1);
  border-top: 3px solid var(--blue1);
}

.card.tab-pane.fade:has(.collapsed.stretched-link) {
  border-color: var(--blue3);
}

.tab-pane .card-header h5 .stretched-link {
  color: var(--blue1);
  text-decoration: none;
}

.tab-pane .card-header h5 .collapsed.stretched-link {
  color: var(--blue3);
  text-decoration: none;
}

.border-blue {
  border-left: 20px solid var(--blue3);
}

.border-blue-2 {
  border-left: 20px solid var(--blue1);
}

.border-right-1 {
  border-right: 20px solid var(--blue3);
}

.border-right-2 {
  border-right: 20px solid var(--blue1);
}

.border-left-1 {
  border-left: 20px solid var(--blue4);
}



.border-color-primary {
  border-color: var(--blue3);
}

.border-color-secondary {
  border-color: var(--blue1);
}

.border-color-tertiary {
  border-color: var(--blue4);
}

.absolute-download {
  position: absolute;
  bottom: -20px;
  right: -15px;
}

.mr-image {
  margin-right: -23px;
}

#ciclo-tab.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: transparent;
  color: var(--blue1);
  border-bottom: 3px solid var(--blue1);
  border-radius: 0px;
}

#ciclo-tab.nav-pills .nav-link.active img {
  background-color: var(--blue1);
}

#origen-tab.nav-pills .nav-link,
.nav-pills .show > .nav-link {
  color: var(--blue1);
  background-color: var(--white);
  box-shadow: 0px 3px 6px #00000029;
  padding: 15px 20px;
  text-align: left;
}

#origen-tab.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--blue3);
  color: var(--white);
}

#ciclo-tab.nav-pills .nav-link img {
  background-color: var(--blue3);
  border-radius: 100%;
}

.w-fit {
  width: fit-content;
}

/*progress*/

.progress {
  background: var(--light);
  justify-content: flex-start;
  border-radius: 10px;
  align-items: center;
  position: relative;
  display: flex;
  height: 40px;
  width: 100%;
  box-shadow: 0px 3px 6px #00000029;
  color: #707070;
  overflow: hidden;
}

.progress-value {
  border-radius: 10px 0px 0px 10px;
  height: 100%;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  white-space: nowrap;
  padding-left: 20px;
  color: white;
}

.load-with {
  animation: load 3s ease forwards;
  --target-width: 0%;
}

@keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: var(--target-width);
  }
}

.progress h4,
.progress-value h4 {
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.progress h4.text-2 {
  padding-left: 12%;
}

.progress.progress-colors h4.text-2 {
  color: var(--muted) !important;
}

.money-mobile {
  display: none;
}


.dropdown-item.active {
  color: var(--white);
}

/*stunning*/

.stunning.wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stunning .containers {
  height: 300px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
}

.stunning .card-item {
  width: 80px;
  border-radius: 0.75rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  border-radius: 1rem;
  margin: 0 10px;
  display: flex;
  align-items: flex-end;
  transition: 0.6s cubic-bezier(0.28, -0.03, 0, 0.99);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
}

.stunning .card-item > .row-line {
  color: white;
  display: flex;
  flex-wrap: nowrap;
  align-items: end;
  padding: 20px 0px;
}

.stunning .card-item > .row-line > .icon {
  color: white;
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-transform: uppercase;
  height: 50px;
}

.stunning .card-item > .row-line > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition-delay: 0.3s;
  transition: all 0.3s ease;
  padding: 20px;
  text-align: center;
}

.stunning .description p {
  color: var(--white);
  padding-top: 5px;
}

.stunning .description h4 {
  text-transform: uppercase;
}

.stunning input {
  display: none;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.stunning input:checked + label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stunning input:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.stunning input:checked + label.card-item[for="c1"] {
  background-image: url("../images/img-modelo-1.png");
  background-color: var(--blue3);
}
.stunning input:checked + label.card-item[for="c2"] {
  background-image: url("../images/img-modelo-2.png");
  background-color: var(--blue1);
}
.stunning input:checked + label.card-item[for="c3"] {
  background-image: url("../images/img-modelo-3.png");
  background-color: var(--blue4);
}
.stunning input:checked + label.card-item[for="c4"] {
  background-image: url("../images/img-modelo-4.png");
  background-color: var(--blue2);
}

.stunning input:checked + label.card-item[for="c5"] {
  background-image: url("../images/img-indicador-1.png");
  background-color: var(--blue3);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.stunning input:checked + label.card-item[for="c6"] {
  background-image: url("../images/img-indicador-2.png");
  background-color: var(--blue1);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.stunning input:checked + label.card-item[for="c7"] {
  background-image: url("../images/img-indicador-3.png");
  background-color: var(--blue4);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.stunning input:checked + label.card-item[for="c8"] {
  background-image: url("../images/img-indicador-4.png");
  background-color: var(--blue3);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
.stunning input:checked + label.card-item[for="c9"] {
  background-image: url("../images/img-indicador-5.png");
  background-color: var(--blue1);
  background-position: right bottom;
  background-size: contain;
  background-repeat: no-repeat;
}

.stunning input + label.card-item[for="c1"],
.stunning input + label.card-item[for="c5"] {
  border: 3px solid var(--blue3);
}
.stunning input + label.card-item[for="c2"],
.stunning input + label.card-item[for="c6"] {
  background-image: url("");
  border: 3px solid var(--blue1);
}
.stunning input + label.card-item[for="c3"],
.stunning input + label.card-item[for="c7"] {
  background-image: url("");
  border: 3px solid var(--blue4);
}
.stunning input + label.card-item[for="c4"],
.stunning input + label.card-item[for="c8"] {
  background-image: url("");
  border: 3px solid var(--blue3);
}

.stunning input + label.card-item[for="c9"] {
  background-image: url("");
  border: 3px solid var(--blue1);
}

.stunning input + label.card-item[for="c1"] .row-line .icon,
.stunning input + label.card-item[for="c5"] .row-line .icon {
  color: var(--blue3);
  font-size: 20px;
  rotate: 270deg;
  font-weight: bolder;
}
.stunning input + label.card-item[for="c2"] .row-line .icon,
.stunning input + label.card-item[for="c6"] .row-line .icon {
  color: var(--blue1);
  font-size: 20px;
  rotate: 270deg;
  font-weight: bolder;
}
.stunning input + label.card-item[for="c3"] .row-line .icon,
.stunning input + label.card-item[for="c7"] .row-line .icon {
  color: var(--blue4);
  font-size: 20px;
  rotate: 270deg;
  font-weight: bolder;
}
.stunning input + label.card-item[for="c4"] .row-line .icon,
.stunning input + label.card-item[for="c8"] .row-line .icon {
  color: var(--blue3);
  font-size: 20px;
  rotate: 270deg;
  font-weight: bolder;
}

.stunning input + label.card-item[for="c9"] .row-line .icon {
  color: var(--blue1);
  font-size: 20px;
  rotate: 270deg;
  font-weight: bolder;
}

.stunning input:checked + label.card-item[for="c1"] .row-line .icon,
.stunning input:checked + label.card-item[for="c2"] .row-line .icon,
.stunning input:checked + label.card-item[for="c3"] .row-line .icon,
.stunning input:checked + label.card-item[for="c4"] .row-line .icon,
.stunning input:checked + label.card-item[for="c5"] .row-line .icon,
.stunning input:checked + label.card-item[for="c6"] .row-line .icon,
.stunning input:checked + label.card-item[for="c7"] .row-line .icon,
.stunning input:checked + label.card-item[for="c8"] .row-line .icon,
.stunning input:checked + label.card-item[for="c9"] .row-line .icon {
  display: none;
}

.hover-size {
  width: 100%;
  transition: width 0.3s ease;
  cursor: pointer;
}

.hover-size:hover {
  width: 80%;
}

/*TIMELINE*/

.timeline {
  position: relative;
  width: 90%;
  margin: 0 auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
  background-color: transparent;

  /* Línea punteada vertical */
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 2px 10px;
  background-repeat: repeat-y;
}

.container-time {
  padding: 15px 55px;
  position: relative;
  background: inherit;
  width: 50%;
}

.container-time.left {
  left: 0;
}

.container-time.right {
  left: 50%;
}

.container-time::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: -8px;
  background: #ffffff;
  border-radius: 16px;
  z-index: 1;
}

.container-time.right::after {
  left: -8px;
}

.container-time::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  top: calc(50% - 1px);
  right: 8px;
  z-index: 1;
}

.container-time.right::before {
  left: 8px;
}

.container-time .content-time {
  background: var(--white);
  position: relative;
}

.container-time .content-time h2 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: normal;
  color: var(--blue3);
}

@media (max-width: 767.98px) {
  .timeline::after {
    left: 2px;
  }

  .container-time {
    width: 100%;
    padding-left: 50px;
    padding-right: 10px;
  }

  .container-time.right {
    left: 0%;
  }

  .container-time.left::after,
  .container-time.right::after {
    left: -7px;
  }

  .container-time.left::before,
  .container-time.right::before {
    left: 0px;
  }

  .container-time.left .content-time,
  .container-time.right .content-time {
    border-radius: 500px 0 0 500px;
  }
  .timeline {
    width: 100%;
  }
}

.div-time-1::before,
.div-time-1::after,
.div-time-4::before,
.div-time-4::after {
  background: var(--blue3);
}

.div-time-2::before,
.div-time-2::after {
  background: var(--blue4);
}

.div-time-3::before,
.div-time-3::after {
  background: var(--blue1);
}

.border-h1 {
  border-color: var(--blue3);
}
.border-h2 {
  border-color: var(--blue4);
}
.border-h3 {
  border-color: var(--blue1);
}
.border-h4 {
  border-color: var(--red);
}

/*CARDS SLIDE*/

.step {
  width: 40px;
  height: 40px;
  background-color: var(--blue4);
  color: white;
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 20px;
  font-family: Montserrat-Black, sans-serif;
}

@media (max-width: 1800px) {
  ul.cards li.card {
    height: 220px;
    width: 220px;
  }
  ul.cards.transition li.card.card-1 {
    left: 0px;
  }
  ul.cards.transition li.card.card-2 {
    left: 260px;
  }
  ul.cards.transition li.card.card-3 {
    left: 520px;
  }
  ul.cards.transition li.card.card-4 {
    left: 780px;
  }
  ul.cards.transition li.card.card-5 {
    left: 1040px;
  }
}

@media (max-width: 1460px) {
  ul.cards li.card {
    height: 250px;
    width: 150px;
  }
  ul.cards.transition li.card.card-1 {
    left: 0px;
  }
  ul.cards.transition li.card.card-2 {
    left: 180px;
  }
  ul.cards.transition li.card.card-3 {
    left: 360px;
  }
  ul.cards.transition li.card.card-4 {
    left: 540px;
  }
  ul.cards.transition li.card.card-5 {
    left: 720px;
  }
}

@media (max-width: 961px) {
  ul.cards li.card {
    height: auto;
    width: 95%;
  }

  ul.cards {
    position: relative;
    height: 300px;
    transition: height 0.4s ease;
    margin: 20px 10px;
  }

  ul.cards.transition {
    height: 900px;
  }

  ul.cards li.card {
    position: absolute;
    transition: all 0.4s ease;
  }
  ul.cards li.card div.content {
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  ul.cards.transition li.card.card-1 {
    top: 0px;
  }
  ul.cards.transition li.card.card-2 {
    top: 170px;
    left: 0px;
  }
  ul.cards.transition li.card.card-3 {
    top: 340px;
    left: 0px;
  }
  ul.cards.transition li.card.card-4 {
    top: 510px;
    left: 0px;
  }
  ul.cards.transition li.card.card-5 {
    top: 680px;
    left: 0px;
  }
}

@media (max-width: 652px) {
  ul.cards.transition li.card.card-1 {
    top: 0px;
  }
  ul.cards.transition li.card.card-2 {
    top: 190px;
    left: 0px;
  }
  ul.cards.transition li.card.card-3 {
    top: 365px;
    left: 0px;
  }
  ul.cards.transition li.card.card-4 {
    top: 540px;
    left: 0px;
  }
  ul.cards.transition li.card.card-5 {
    top: 710px;
    left: 0px;
  }
}

@media (max-width: 375px) {
  ul.cards li.card {
    height: 180px;
    width: 90%;
  }
  ul.cards.transition li.card.card-1 {
    left: 0px;
  }
  ul.cards.transition li.card.card-2 {
    top: 200px;
    left: 0px;
  }
  ul.cards.transition li.card.card-3 {
    top: 400px;
    left: 0px;
  }
  ul.cards.transition li.card.card-4 {
    top: 600px;
    left: 0px;
  }
  ul.cards.transition li.card.card-5 {
    top: 800px;
    left: 0px;
  }
  ul.cards.transition {
    height: 1050px;
  }
}

.cursor-pointer {
  cursor: pointer;
}

.img-back-sistem {
  background-image: url("../images/vista-circle.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 20%;
}

.table-borderless {
  border-collapse: separate;
  border-spacing: 10px;
  position: relative;
}

.table-shadow {
  box-shadow: 0px 3px 6px #00000029 !important;
}

tr.destacado td {
  padding: 0;
  position: relative;
}

tr.destacado td::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  background: rgba(255, 255, 0, 0.6); /* Amarillo translúcido */
  z-index: 5;
  pointer-events: none;
  border-radius: 10px;
}

tr.destacado td > * {
  position: relative;
  z-index: 2;
  padding: 8px; /* Ajusta si necesitas */
}

.indicador-fondo {
  background-image: url("../images/indicador-1.png");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}

/*****/

/*style scroll-top*/

button.back-to-top {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(20px);
  cursor: pointer;
  position: fixed;
  bottom: 20px;
  right: 15px;
  z-index: 99;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--blue1);
  color: white;
  border: none;
}

button.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/*MEDIA QUERY*/

@media (max-width: 1600px) {
  .h-card-mob {
    height: 230px;
  }
}

@media (max-width: 1260px) {
  .h-card-mob {
    height: 250px;
  }
}

@media (max-width: 1245px) {
  .h-card-mob {
    height: 310px;
  }
}

@media (min-width: 1199px) {
  .bg-fondo {
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

@media (max-width: 1199px) {
  .bg-fondo {
    height: 270px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  .content-time img {
    height: 150px !important;
    width: 100%;
  }
  .h-card-mob {
    height: 440px;
  }
  .h-auto-mob {
    height: auto!important;
  }

}

@media (max-width: 991px) {
  .h-100s {
    height: auto !important;
  }
  .h-card-mob {
    height: auto;
  }
  .mt-bottom-negative {
    bottom: -290px !important;
    cursor: pointer;
    right: 45%;
    width: 40px;
  }
}

@media (max-width: 990px) {
  .nav-mobile {
    display: block;
  }
  .nav-desktop {
    display: none;
  }
  .witdh-mob {
    width: 100%;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .progress h4,
  .progress-value h4 {
    font-size: 18px;
  }
  .progress h4,
  .progress-value h4 {
    font-size: 15px !important;
  }
  .timeline {
    width: 100%;
  }
  .dropdown-menu[data-bs-popper] {
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .wf-mob {
    text-align: left !important;
    width: 75% !important;
  }
  .justify-content-xs-start {
    justify-content: center;
  }
  .mb-sm-b-5 {
    margin-bottom: 3rem !important;
  }
  .money-mobile {
    display: block;
  }
  .money-desktop {
    display: none;
  }
  .progress.progress-colors {
    flex-direction: column;
    height: auto;
  }
  .progress.progress-colors .progress-value {
    width: 100% !important;
    padding: 5px;
    border-radius: 10px 10px 0px 0px;
    justify-content: center !important;
  }
  .progress.progress-colors h4 {
    padding: 10px;
  }
  .icon-rounded-pill {
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .flex-progress {
    flex-direction: column;
  }
  .mb-mob {
    margin-bottom: 4rem !important;
  }
  .stunning input:checked + label.card-item[for="c5"],
  .stunning input:checked + label.card-item[for="c6"],
  .stunning input:checked + label.card-item[for="c7"],
  .stunning input:checked + label.card-item[for="c8"],
  .stunning input:checked + label.card-item[for="c9"] {
    background-size: 80px;
  }
  .stunning .card-item > .row-line > .description {
    width: 100% !important;
    text-align: center !important;
    height: 100%;
  }

  .stunning .containers {
    flex-direction: column;
  }
  .stunning .card-item {
    width: 100%;
  }

  .stunning .card-item {
    margin: 0px;
  }

  .stunning input + label.card-item .row-line .icon {
    rotate: 0deg !important;
    height: 35px;
  }
  .stunning .card-item > .row-line {
    padding: 0px 20px;
    height: 100%;
  }
  .stunning .containers {
    height: 463px;
  }
  .stunning input:checked + label.card-item {
    height: 500px;
  }
  .stunning input + label.card-item {
    margin-bottom: 10px;
  }
  .indicador-card {
    background-image: none !important;
    padding-top: 30px !important;
  }
  button.back-to-top.show {
    bottom: 60px !important;
  }
}

@media (max-width: 464px) {
  .social.gap-5 {
    gap: 1rem !important;
  }
  .progress h4,
  .progress-value h4 {
    font-size: 15px !important;
  }
  tbody,
  td,
  tfoot,
  th,
  thead,
  tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .containers {
    flex-direction: column;
    gap: 10px;
  }
  .stunning input + label.card-item,
  .stunning .card-item > .row-line {
    width: 100%;
  }
  .stunning input + label.card-item .row-line .icon {
    rotate: 0deg !important;
    padding: 0px 20px;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 20px;
  }

  .stunning input:checked + label.card-item {
    height: inherit;
    padding: 20px 10px;
  }
  .stunning .card-item {
    margin: 0px;
  }
  .stunning .card-item > .row-line {
    padding: 0px;
  }
  .stunning input + label.card-item .row-line .icon {
    margin-bottom: 8px;
  }

  .stunning input:checked + label.card-item {
    height: 500px;
  }
  .stunning input + label.card-item {
    height: 150px;
  }
}

@media (max-width: 380px) {
  .social-items {
    display: none;
  }
}

.number {
  background-color: var(--blue1);
  font-size: 10px;
  padding: 5px;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}