@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Lexend+Deca&display=swap");
@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  src: local("Pacifico Regular"), local("Pacifico-Regular"), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Sabu";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/fonts/sabu/Sabu-Regular.ttf");
  font-display: swap;
}
.blink {
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes fade-in {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
#fader {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999999;
  pointer-events: none;
  background: #000000;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
}

.fade-out {
  top: 0;
  height: 0;
  animation-name: fade-out;
}

.fade-in {
  bottom: 0 !important;
  height: 100%;
  animation-name: fade-in;
}

.accordion-item {
  width: 100%;
  margin: 12px 0px;
}
.accordion-item__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  border: 1px solid #e7e9ec;
  width: 100%;
  padding: 12px 16px;
  height: 48px;
  border-radius: 4px;
  transition: 0.4s all ease;
}
.accordion-item__button .accordion-title {
  font-family: "Lexend Deca";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #121314;
}
.accordion-item__button .accordion-image {
  transition: 0.3s all;
}
.accordion-item__button:hover .accordion-image {
  transform: rotate(180deg);
}
.accordion-item__content {
  width: 100%;
  font-family: "Lexend Deca";
  font-size: 14px;
  line-height: 16px;
  overflow-y: auto;
  height: 0;
  border-top: none;
  padding: 0 16px;
  border: 1px transparent;
  transition: 0.4s all ease-in;
}
.accordion-item__content::-webkit-scrollbar {
  display: none;
  background: none;
  width: 0.25vw;
}
.accordion-item__content .container-text {
  font-style: normal;
  font-weight: 300;
  color: #27292C;
  font-size: 14px;
  line-height: 20px;
}
.accordion-item__content .container-text .paragraph:not(:first-child),
.accordion-item__content .container-text .li:not(:first-child) {
  margin-top: 16px;
}
.accordion-item__content .container-text .mt-6 {
  margin-top: 6px !important;
}
.accordion-item__content .container-text .li {
  list-style: initial;
}
.accordion-item__content .container-text .list {
  margin-left: 15px;
  padding-left: 33px;
  margin-top: 16px;
  position: relative;
}
.accordion-item__content .container-text .list::before {
  content: "";
  background-color: #000000;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: 0.4rem;
  left: 0;
}
.accordion-item__content .container-text .paragraph.item {
  padding-left: 15px;
}
.accordion-item__content .container-text .paragraph.tab-1 {
  padding-left: 15px;
}
.accordion-item__content .container-text .paragraph.tab-1-2 {
  padding-left: 30px;
}
.accordion-item__content .container-text .paragraph.tab-1-2-3 {
  padding-left: 45px;
}
.accordion-item.active .accordion-item__button .accordion-image {
  transform: rotate(180deg);
}
.accordion-item.active .accordion-item__button {
  border-radius: 4px 4px 0 0;
}
.accordion-item.active .accordion-item__content {
  height: auto;
  padding: 16px;
  visibility: visible;
  border: 1px solid #e7e9ec;
}

.detail-banner {
  background-color: #121314;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 120px;
}
@media screen and (min-width: 768px) {
  .detail-banner {
    margin-bottom: 64px;
    min-height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .detail-banner {
    min-height: 127px;
  }
}
.detail-banner .container {
  display: flex;
  justify-content: center;
  margin: 1rem;
}
@media screen and (max-width: 768px) {
  .detail-banner__logo {
    width: 120px;
  }
}
.detail-banner__logo .logo-container {
  min-height: 30px;
}
@media screen and (min-width: 1024px) {
  .detail-banner__logo .logo-container {
    min-height: 64px;
  }
}
.detail-banner__title {
  font-family: "Lexend Deca";
  font-style: normal;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  max-width: 60%;
}
@media screen and (min-width: 768px) {
  .detail-banner__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1201px) {
  .detail-banner__title {
    font-size: 34px;
  }
}
.detail-banner__icons .circle,
.detail-banner__icons .circle-small,
.detail-banner__icons .square,
.detail-banner__icons .diamond,
.detail-banner__icons .line {
  position: absolute;
  transition: 1s all ease-in;
}
.detail-banner__icons .circle {
  width: 35px;
  top: -70%;
  right: 15%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .circle {
    width: auto;
    top: -40%;
    right: 13%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .circle {
    right: 10%;
  }
}
.detail-banner__icons .circle-small {
  width: 10px;
  right: 17%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .circle-small {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 14%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .circle-small {
    right: 10%;
  }
}
.detail-banner__icons .square {
  width: 10px;
  bottom: 5%;
  right: 17%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .square {
    width: auto;
    bottom: 10%;
    right: 16%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .square {
    right: 13%;
  }
}
.detail-banner__icons .diamond {
  width: 12px;
  right: 23%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .diamond {
    width: auto;
    top: 30%;
    right: 19%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .diamond {
    right: 16%;
  }
}
.detail-banner__icons .line {
  width: 40px;
  bottom: -36%;
  right: 20%;
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .line {
    width: auto;
    bottom: -12%;
    right: 17%;
    transform: rotate(12deg);
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .line {
    right: 15%;
  }
}
.detail-banner__heart {
  position: absolute;
  transform: rotate(-15deg);
  max-width: 104px;
  right: -4%;
  top: 6%;
}
@media screen and (min-width: 768px) {
  .detail-banner__heart {
    max-width: 240px;
    right: -5%;
    top: -11%;
  }
}
@media screen and (min-width: 1024px) {
  .detail-banner__heart {
    right: -1%;
  }
}

.term-cond {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: auto;
  margin-top: 22px;
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) {
  .term-cond {
    margin-top: 48px;
  }
}
.term-cond__menu {
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .term-cond__menu {
    width: 15%;
  }
}
@media screen and (min-width: 768px) {
  .term-cond__menu-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.term-cond__menu-select {
  margin: 30px auto 20px;
}
@media screen and (min-width: 768px) {
  .term-cond__menu-select {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .term-cond__menu-items {
    display: none;
  }
}
.term-cond__menu-items__item {
  position: relative;
  font-style: normal;
  font-weight: 600;
  font-size: 14.22px;
  padding-block: 10px;
  padding-left: 10px;
  text-align: left;
  color: #27292C;
  cursor: pointer;
  color: #121314;
}
.term-cond__menu-items__item:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: #E7E9EC;
  left: 0;
  top: 0;
}
.term-cond__menu-items__item.active:before {
  background: #FF7800;
}
.term-cond__term {
  width: 100%;
  position: relative;
}
.term-cond__term #activeItemDisplay {
  font-size: 18px;
  color: #121314;
  font-weight: 600;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  .term-cond__term {
    margin-top: 90px;
    width: 75%;
  }
}
.term-cond__term-container {
  overflow: hidden;
}
.term-cond__term-container-content {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.86, 0, 0.07, 1);
}
.term-cond__term-content {
  flex: 1 0 100%;
  width: 100%;
}
.term-cond__term-content .accordion-item__content {
  overflow: auto;
  max-height: 800px;
}
.term-cond__term-content .accordion-item__content::-webkit-scrollbar {
  display: block;
  background: none;
  width: 0.25vw;
}
.term-cond__term-content .accordion-item__content::-webkit-scrollbar-thumb {
  background-color: #3E4B61;
  width: 1px;
  height: 50px;
  border-radius: 5px;
}
.term-cond__term-content .accordion-item__content::-webkit-scrollbar-track {
  border-radius: 50%;
}

.bold {
  font-weight: bold;
}

.term-cond__menu-select {
  display: none;
}

.tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: transparent; /* Corrección de 'none' a 'transparent' */
}

.tab-link {
  padding: 10px 20px;
  cursor: pointer;
  border: none;
  border-bottom: #E6E7E9 2px solid;
  background-color: transparent;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .tab-link {
    font-size: 16px;
  }
}

.tab-link.active {
  background-color: transparent;
  border-bottom: #FF7800 2px solid;
}

.tab-content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 1rem;
}

.tab-content {
  display: none;
  padding: 0 20px;
  color: #121314;
}

.tab-content.active {
  display: block;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}

.menu {
  width: 30%;
}

.term-cond__menu-items {
  list-style: none;
  padding: 0;
}

@media (max-width: 768px) {
  .tab-content-wrapper {
    flex-direction: column;
  }
  .menu, .tab-content {
    width: 100%;
    border-right: none;
  }
  .tab-content.active {
    font-size: 18px;
  }
  .tab-content {
    padding: 0;
  }
}
@media (max-width: 768px) {
  .term-cond__menu-items {
    display: none;
  }
  .term-cond__menu-select {
    display: block;
  }
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
}

/*# sourceMappingURL=sass */