.btn-blue {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  background: #216a93;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-blue:hover {
  background-color: #1a73e9;
}

.btn-verde {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #40f99b;
  transition: all 0.3s ease;
}
.btn-verde:hover {
  background-color: #b9fddb;
}

.btn-blanco {
  font-size: 15px;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  padding: 8px 15px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
  color: #216a93;
  text-decoration: none;
  background-color: #fff;
  transition: all 0.3s ease;
}
.btn-blanco:hover {
  background-color: #e6eaed;
}

.destacado {
  padding: 80px 0;
  min-height: auto;
  height: auto;
  background: #0A0E18;
  margin-top: 80px;
}
@media (max-width: 1024px) {
  .destacado {
    margin-top: 50px;
  }
}
.destacado .contenedor {
  display: flex;
  flex-direction: column;
  max-width: 1087px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .destacado .contenedor {
    max-width: 100%;
  }
}
.destacado .destacado__empty {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.destacado .destacado__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .destacado .destacado__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.destacado .destacado__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  padding: 0;
  border: 0;
  border-radius: 24px;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
}
.destacado .destacado__media:disabled {
  cursor: default;
}
.destacado .destacado__poster {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.destacado .destacado__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}
.destacado .destacado__play img {
  width: 56px;
  height: 56px;
  display: block;
  transition: transform 0.25s ease;
}
.destacado .destacado__media:not(:disabled):hover .destacado__poster {
  transform: scale(1.04);
}
.destacado .destacado__media:not(:disabled):hover .destacado__play img {
  transform: scale(1.08);
}
.destacado .destacado__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
  padding: 15px;
}
.destacado .destacado__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 27px;
  background: #1A73E9;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  white-space: nowrap;
}
.destacado .destacado__title {
  margin: 0;
  color: #40f99b;
  font-size: 20px;
  font-weight: bold;
  line-height: 25px;
}
@media (max-width: 1024px) {
  .destacado .destacado__title {
    font-size: 26px;
  }
}
.destacado .destacado__label {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
}
.destacado .destacado__desc {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}
.destacado .destacado-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.destacado .destacado-modal[hidden] {
  display: none !important;
}
.destacado .destacado-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 36, 0.72);
}
.destacado .destacado-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.destacado .destacado-modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #15253f;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}
.destacado .destacado-modal__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.destacado .destacado-modal__player video,
.destacado .destacado-modal__player iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

html.destacado-modal-open {
  overflow: hidden;
}/*# sourceMappingURL=index.css.map */