@charset "UTF-8";
/*------------------------------------*\
  #Fonts
\*------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100;200;300;400;500;600;700;800;900&display=swap");
/*------------------------------------*\
  #Colors
\*------------------------------------*/
/*------------------------------------*\
  #Elements
\*------------------------------------*/
body,
html {
  margin: 0;
  padding: 0;
}

main {
  width: 100%;
  padding: 1rem;
}
main section {
  max-width: 1300px;
}

@media (min-width: 751px) and (max-width: 1024px) {
  main {
    width: 100%;
  }
  main section {
    max-width: 800px;
  }
}
@media (min-width: 601px) and (max-width: 750px) {
  main {
    width: 100%;
  }
  main section {
    max-width: 600px;
  }
}
@media (max-width: 600px) {
  main {
    width: 100%;
    padding: 0.5rem;
  }
  main section {
    max-width: 400px;
  }
}
/*------------------------------------*\
  #User Experience
\*------------------------------------*/
/* Ocultar barras de desplazamiento en ejes X - Y */
body,
html {
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE y Edge */
}

body::-webkit-scrollbar,
html::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari y Opera */
}

/*------------------------------------*\
  #Flip card
\*------------------------------------*/
.service_card {
  background-color: transparent;
  width: 250px;
  height: 350px;
  font-family: "Baloo 2", cursive;
  margin: 25px;
}
.service_card .service_card-inner {
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.service_card .service_card-inner .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}
.service_card .service_card-inner .text {
  font-size: 20px;
  font-family: "Work Sans", sans-serif;
  text-align: center;
  padding: 10px;
}
.service_card .service_card-inner img {
  width: 160px;
  height: 180px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.service_card .service_card-inner .service_card-front,
.service_card .service_card-inner .service_card-back {
  box-shadow: 0 8px 14px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border: 1px solid #FFFFFF;
  border-radius: 1rem;
}
.service_card .service_card-inner .service_card-front {
  background: #FFFFFF;
  color: #000000;
}
.service_card .service_card-inner .service_card-back {
  background: #FFFFFF;
  color: #000000;
  transform: rotateY(180deg);
}

.service_card:hover .service_card-inner {
  transform: rotateY(180deg);
}

/*------------------------------------*\
  #Notification Card
\*------------------------------------*/
.notification {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 140px;
  isolation: isolate;
  position: relative;
  background: #29292c;
  border-radius: 1rem;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  margin: 10px;
  --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
  --color: #32a6ff;
}
.notification:before {
  position: absolute;
  content: "";
  inset: 0.0625rem;
  border-radius: 0.9375rem;
  background: #18181b;
  z-index: 2;
}
.notification:after {
  position: absolute;
  content: "";
  width: 0.25rem;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 0.125rem;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}
.notification:hover:after {
  transform: translateX(0.15rem);
}
.notification:hover .notititle {
  transform: translateX(0.15rem);
}
.notification:hover .notibody {
  transform: translateX(0.25rem);
}
.notification:hover .notiglow {
  opacity: 0.1;
}
.notification:hover .notiborderglow {
  opacity: 0.1;
}
.notification .notititle {
  color: var(--color);
  padding: 0.65rem 0.25rem 0.4rem 1.25rem;
  font-weight: 500;
  font-size: 1.1rem;
  transition: transform 300ms ease;
  z-index: 5;
}
.notification .notibody {
  color: #99999d;
  padding: 0 1.25rem;
  transition: transform 300ms ease;
  z-index: 5;
}
.notification .notiglow,
.notification .notiborderglow {
  position: absolute;
  width: 20rem;
  height: 20rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, white, transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}
.notification .notiglow {
  z-index: 3;
}
.notification .notiborderglow {
  z-index: 1;
}

.note {
  color: var(--color);
  position: fixed;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.9rem;
  width: 75%;
}

/*------------------------------------*\
  #Hover show Card (2 faces)
\*------------------------------------*/
.service_item {
  max-width: 25ch;
  text-align: center;
  background: #F9F9F9;
  padding: 1.5em;
  padding-block: 1.8em;
  border-radius: 15px;
  border: 2px solid #C4C4C4;
  position: relative;
  overflow: hidden;
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1), transform 0.15s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  color: #161B5E;
}
.service_item > :not(span) {
  transition: 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}
.service_item > strong {
  display: block;
  font-size: 1.4rem;
  letter-spacing: -0.035em;
}
.service_item span {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #F9F9F9;
  border-radius: 5px;
  font-weight: 500;
  font-size: 14px;
  top: 100%;
  transition: all 0.3s cubic-bezier(0.6, 0.4, 0, 1);
}
.service_item:hover {
  background: #2E3192;
}
.service_item:hover span {
  top: 0;
  font-size: 1.2em;
}
.service_item:hover > div,
.service_item:hover > strong {
  opacity: 0;
}

/*------------------------------------*\
  #Hover Card (Ligth)
\*------------------------------------*/
.hover-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 0.125rem solid transparent;
  border-radius: 0.5rem;
  background-color: #1e1e1e;
  transition: border-color 0.3s ease;
  width: 19.75rem;
  height: 17.5rem;
  text-align: justify;
}
.hover-card h3 {
  color: #F9F9F9;
  font-size: 1rem;
  font-weight: 600;
}
.hover-card p {
  margin: 0 10px;
}
.hover-card span {
  color: #F9F9F9;
  font-weight: 600;
  text-transform: uppercase;
}
.hover-card:hover {
  border-color: #37BF32;
}
.hover-card img {
  width: 4.375rem;
  height: 4.375rem;
}

/*------------------------------------*\
  #Expand Card (Ligth)
\*------------------------------------*/
.expand_card {
  position: relative;
  width: 300px;
  height: 230px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #000;
}
.expand_card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}
.expand_card {
  /* Imagen de fondo */
}
.expand_card__image {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.expand_card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: filter 0.4s ease;
}
.expand_card:hover .expand_card__image img {
  filter: brightness(0.5);
}
.expand_card {
  /* Barra superior de tecnologías */
}
.expand_card__techs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 4;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-bottom: 100px;
}
.expand_card__techs img {
  width: 25px;
  height: 25px;
  filter: grayscale(100%) brightness(150%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
.expand_card__techs img:hover {
  filter: none;
  transform: scale(1.1);
}
.expand_card:hover .expand_card__techs {
  opacity: 1;
  transform: translateY(0);
}
.expand_card {
  /* Contenido */
}
.expand_card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 1rem;
  z-index: 3;
  transform: translateY(100%);
  transition: transform 0.4s ease, background-color 0.3s ease;
}
.expand_card__info .expand_card__title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.expand_card__info .expand_card__description {
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  margin-bottom: 0.6rem;
}
.expand_card__info .expand_card__links {
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.expand_card__info .expand_card__links a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.expand_card__info .expand_card__links a img {
  width: 20px;
  height: 20px;
  filter: grayscale(100%) brightness(200%);
  transition: filter 0.2s ease;
}
.expand_card__info .expand_card__links a:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}
.expand_card__info .expand_card__links a:hover img {
  filter: none;
}
.expand_card {
  /* Estado expandido */
}
.expand_card:hover .expand_card__info {
  transform: translateY(0);
  background-color: rgba(0, 0, 0, 0.5);
}
.expand_card:hover .expand_card__description {
  opacity: 1;
  max-height: 100px;
}
.expand_card:hover .expand_card__links {
  opacity: 1;
  transform: translateY(0);
}

/*------------------------------------*\
    #NavBar
\*------------------------------------*/
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  background-color: transparent;
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 0px 5px;
  margin-top: 0;
}
nav .nav_brand {
  margin-left: 1rem;
}
nav .nav_brand a {
  display: inline-block;
}
nav .nav_brand a img {
  width: 100px;
  height: 30px;
  max-width: 100%;
  display: block;
  margin-top: 10px;
}
nav .nav_links {
  margin-left: auto;
  display: flex;
  gap: 2.5rem;
  margin-right: 3.125rem;
  list-style: none;
  align-items: center;
}
nav .nav_links a {
  color: #9F9F9F;
  font-size: 18px;
}
nav .nav_links a:hover {
  color: #FFFFFC;
  font-weight: 600;
}
nav .nav_links a img {
  width: 30px;
  height: auto;
}
nav .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-left: auto;
  margin-right: 1.5rem;
  z-index: 1100;
}
nav .menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #9F9F9F;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
nav .menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
nav .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
nav .menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.scrolled nav {
  background-color: rgba(255, 255, 252, 0.2);
  transition: background-color 0.3s ease;
}

/*------------------------------------*\
    #Social Bar styles
\*------------------------------------*/
.socialBar {
  position: fixed;
  top: 50%;
  right: 0.625rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  border-radius: 1.25rem;
  z-index: 1200;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.5rem;
}
.socialBar .socialBar_red {
  padding: 0.625rem;
  transition: all 0.3s ease;
}
.socialBar .socialBar_red img {
  width: 1.25rem;
  height: 1.25rem;
  transition: filter 0.3s ease;
}
.socialBar .socialBar_red:hover img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(40%) saturate(500%) hue-rotate(110deg) brightness(90%) contrast(100%);
}

/*------------------------------------*\
    #Modal styles
\*------------------------------------*/
.pdfModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  padding: 50px;
  box-sizing: border-box;
  z-index: 9999;
  overflow-y: auto;
}
.pdfModal .pdfdiv {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}
.pdfModal .pdfdiv iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.pdfModal .pdfdiv .pdfclose {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 8px 14px;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.2s ease;
}
.pdfModal .pdfdiv .pdfclose:hover {
  background: #000;
  transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
  .pdfModal {
    padding: 20px;
  }
  .pdfModal .pdfdiv {
    border-radius: 8px;
  }
  .pdfModal .pdfclose {
    top: 8px !important;
    right: 8px !important;
  }
}
/*------------------------------------*\
    #Caption Text styles
\*------------------------------------*/
.caption_text {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0, 158, 102, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.caption_text h3 {
  position: absolute;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  padding: 0 1rem;
}
.caption_text h3.active {
  opacity: 1;
  transform: translateY(0);
}
.caption_text h3.exit {
  opacity: 0;
  transform: translateY(-50px);
}

/*------------------------------------*\
    # Title_shadow
\*------------------------------------*/
.title_shadow {
  color: #009E66;
  font-size: 1.5rem;
  font-weight: 700;
}
.title_shadow span {
  color: #F9F9F9;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.2);
  font-size: 4rem;
  position: absolute;
  z-index: -1;
  opacity: 0.1;
}

/*------------------------------------*\
    #3D Carrousel
\*------------------------------------*/
.carrousel_3d {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 120px;
}
.carrousel_3d .carrousel_3d_item {
  position: absolute;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: 80px;
  padding: 10px;
  border-radius: 10px;
  background-color: #0F0F0F;
  border-bottom: 4px solid rgba(255, 255, 255, 0.25);
  border-right: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 2px 2px 8px rgba(255, 255, 255, 0.25);
  transition: all 0.8s ease;
}
.carrousel_3d .carrousel_3d_item img {
  border-radius: 50px;
  width: 70px;
  height: 70px;
  margin-right: 20px;
}
.carrousel_3d .carrousel_3d_item a {
  font-family: "Lexend Giga";
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  font-size: 20px;
}
.carrousel_3d .carrousel_3d_item.center {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}
.carrousel_3d .carrousel_3d_item.left, .carrousel_3d .carrousel_3d_item.right {
  transform: scale(0.6);
  opacity: 0.2;
  z-index: 1;
}

/*------------------------------------*\
    #FAQ Section
\*------------------------------------*/
.FAQ {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 0;
}
.FAQ .FAQ_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
.FAQ .FAQ_title h2 {
  font-family: "Baloo 2", cursive;
  font-size: 2.5rem;
  margin-bottom: 0;
  font-weight: bold;
  text-align: center;
}
.FAQ .FAQ_title p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: #C4C4C4;
  margin: 0;
  text-align: center;
}
.FAQ .FAQ_item {
  margin-bottom: 1.25rem;
  padding: 0 1rem;
  text-align: justify;
}
.FAQ .FAQ_item h3 {
  font-family: "Baloo 2", cursive;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}
.FAQ .FAQ_item p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
  color: #C4C4C4;
  margin: 0;
}

/*------------------------------------*\
    #MAIN FAQ 
\*------------------------------------*/
.MAIN_FAQ {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  text-align: justify;
  max-width: 1300px;
  border-radius: 40px;
  padding: 40px;
  background: linear-gradient(to top right, rgba(0, 158, 102, 0.6) 0%, rgb(18, 18, 18) 30%);
}
.MAIN_FAQ h2 {
  font-size: 40px;
  font-weight: bold;
}
.MAIN_FAQ .FAQ_LIST {
  display: flex;
  flex-direction: column;
  margin: 0px 50px;
}
.MAIN_FAQ .FAQ_LIST h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 0;
}
.MAIN_FAQ .FAQ_LIST p {
  font-size: 14px;
  font-weight: 300;
  margin-top: 12px;
  margin-bottom: 20px;
}
.MAIN_FAQ .FAQ_LIST span {
  color: #37BF32;
  font-weight: bold;
}

/*------------------------------------*\
    #Footer MLA
\*------------------------------------*/
.MLA_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #009E66;
}
.MLA_footer h2 {
  color: #FFFFFF;
  font-family: "Lexend Giga";
  font-weight: bold;
  font-size: 40px;
  text-align: center;
}
.MLA_footer .footer_contact {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-self: center;
}
.MLA_footer .footer_contact .footer_contact_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.MLA_footer .footer_contact .footer_contact_item img {
  width: 80px;
  height: 80px;
}
.MLA_footer .footer_contact .footer_contact_item h3 {
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 0;
}
.MLA_footer .footer_contact .footer_contact_item a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  margin-top: 0;
}

/*------------------------------------*\
    #Copyright Section
\*------------------------------------*/
.copyright {
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: #C4C4C4;
  margin-top: 2rem;
  margin-bottom: 0;
  text-align: center;
}
.copyright a {
  color: #009E66;
  -webkit-text-emphasis: none;
          text-emphasis: none;
  text-decoration: none;
}

/*------------------------------------*\
    #Responsive Section
\*------------------------------------*/
@media (min-width: 601px) and (max-width: 750px) {
  /* nav {
      justify-content: space-between;
      padding: 0.75rem 1rem;

      .nav_links {
          position: fixed;
          top: 0;
          right: -100%;
          height: 100vh;
          width: 65%;
          background-color: transparent;
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 2rem;
          transition: right 0.3s ease;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);

          a {
              color: variables.$gray_005;
              font-size: 1.1rem;
              font-weight: 500;
          }

          &.active {
              right: 0;
          }
      }

      .menu-toggle {
          display: flex;
      }
  } */
  .title_shadow {
    font-size: 1rem;
  }
  .title_shadow span {
    font-size: 2rem;
    left: 150px;
  }
  .MAIN_FAQ {
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 90%;
  }
  .MAIN_FAQ h2 {
    text-align: center;
  }
  .MAIN_FAQ .FAQ_LIST {
    margin: 0;
  }
  .FAQ {
    width: 80%;
  }
  .FAQ .FAQ_title {
    margin-bottom: 1.5rem;
  }
  .FAQ .FAQ_title h2 {
    font-size: 40px;
  }
  .FAQ .FAQ_title p {
    font-size: 16px;
  }
  .FAQ .FAQ_item {
    margin-bottom: 1rem;
  }
  .FAQ .FAQ_item h3 {
    font-size: 20px;
  }
  .FAQ .FAQ_item p {
    font-size: 16px;
  }
  .MLA_footer h2 {
    font-size: 30px;
  }
  .MLA_footer .footer_contact {
    flex-direction: row;
  }
  .MLA_footer .footer_contact .footer_contact_item img {
    width: 60px;
    height: 60px;
  }
  .MLA_footer .footer_contact .footer_contact_item h3 {
    font-size: 24px;
  }
  .MLA_footer .footer_contact .footer_contact_item a {
    font-size: 20px;
  }
  .copyright {
    width: 80%;
    font-size: 16px;
    margin-top: 1rem;
    text-align: center;
  }
  .copyright a {
    font-size: 16px;
  }
}
@media (max-width: 600px) {
  nav {
    justify-content: space-between;
    padding: 0.5rem 1rem;
  }
  nav .nav_brand img {
    width: 40px;
    height: 40px;
  }
  nav .menu-toggle {
    display: flex;
  }
  nav .nav_links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    background-color: transparent;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.15);
  }
  nav .nav_links a {
    color: #9F9F9F;
    font-size: 1.2rem;
    font-weight: 500;
  }
  nav .nav_links.active {
    right: 0;
  }
  .caption_text h3 {
    font-size: 14px;
  }
  .carrousel_3d {
    height: 140px;
  }
  .carrousel_3d .carrousel_3d_item {
    width: 300px;
    height: 80px;
    padding: 10px;
  }
  .carrousel_3d .carrousel_3d_item img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .carrousel_3d .carrousel_3d_item a {
    font-size: 14px;
  }
  .MAIN_FAQ {
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 80%;
  }
  .MAIN_FAQ h2 {
    text-align: center;
  }
  .MAIN_FAQ .FAQ_LIST {
    margin: 0;
  }
  .socialBar {
    bottom: auto;
    top: 2rem;
    left: 0.5rem;
    right: auto;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0.3rem 0.5rem;
    border-radius: 1rem;
    background: rgba(0, 0, 0, 0.7);
  }
  .socialBar .socialBar_red {
    padding: 0.4rem;
  }
  .socialBar .socialBar_red img {
    width: 1rem;
    height: 1rem;
  }
  .FAQ {
    width: 80%;
  }
  .FAQ .FAQ_title {
    margin-bottom: 1.5rem;
  }
  .FAQ .FAQ_title h2 {
    font-size: 40px;
  }
  .FAQ .FAQ_title p {
    font-size: 16px;
  }
  .FAQ .FAQ_item {
    margin-bottom: 1rem;
  }
  .FAQ .FAQ_item h3 {
    font-size: 20px;
  }
  .FAQ .FAQ_item p {
    font-size: 16px;
  }
  .MLA_footer h2 {
    font-size: 30px;
  }
  .MLA_footer .footer_contact {
    flex-direction: column;
  }
  .MLA_footer .footer_contact .footer_contact_item {
    margin-top: 40px;
  }
  .MLA_footer .footer_contact .footer_contact_item img {
    width: 50px;
    height: 50px;
    margin-bottom: 0;
  }
  .MLA_footer .footer_contact .footer_contact_item h3 {
    margin-top: 0;
  }
  .copyright {
    width: 90%;
    font-size: 16px;
    margin-top: 1rem;
    text-align: center;
  }
  .copyright a {
    font-size: 16px;
  }
}
/*------------------------------------*\
    #Contact Btn
\*------------------------------------*/
.contact_btn {
  width: 250px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E6EDF2;
  border-radius: 10px;
  border-color: transparent;
  text-align: center;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: bold;
  margin-right: 30px;
}
.contact_btn img {
  width: 3.125rem;
  height: 3.125rem;
}
.contact_btn:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/*------------------------------------*\
    #Contact_small Btn
\*------------------------------------*/
.contact_small_btn {
  padding: 10px 20px;
  background-color: #009E66;
  color: #F9F9F9;
  font-family: "Poppins", sans-serif;
  border-radius: 20px;
  margin-top: 20px;
  margin-right: 20px;
  transition: transform 0.3s ease;
}
.contact_small_btn:hover {
  background-color: #37BF32;
  transform: scale(1.1);
  cursor: pointer;
}

/*------------------------------------*\
    #Button sparks
\*------------------------------------*/
.btn_sparks {
  padding: 1.25em 4em;
  border-radius: 1.25em;
  border: none;
  color: #fff;
  cursor: pointer;
  background-color: #7570B3;
  transition: all 0.2s ease;
  font-family: "Baloo 2", cursive;
  font-weight: bold;
  font-size: 2vw;
  position: relative;
  min-width: 120px;
  min-height: 48px;
}
.btn_sparks:active {
  transform: scale(0.96);
}
.btn_sparks:before, .btn_sparks:after {
  position: absolute;
  content: "";
  width: 150%;
  left: 50%;
  height: 100%;
  transform: translateX(-50%);
  z-index: -1000;
  background-repeat: no-repeat;
}
.btn_sparks:hover:before {
  top: -70%;
  background-image: radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, transparent 20%, #7570B3 20%, transparent 30%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, transparent 10%, #7570B3 15%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%);
  background-size: 10% 10%, 20% 20%, 15% 15%, 20% 20%, 18% 18%, 10% 10%, 15% 15%, 10% 10%, 18% 18%;
  background-position: 50% 120%;
  animation: greentopBubbles 0.6s ease;
}
.btn_sparks:hover::after {
  bottom: -70%;
  background-image: radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, transparent 10%, #7570B3 15%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%), radial-gradient(circle, #7570B3 20%, transparent 20%);
  background-size: 15% 15%, 20% 20%, 18% 18%, 20% 20%, 15% 15%, 20% 20%, 18% 18%;
  background-position: 50% 0%;
  animation: greenbottomBubbles 0.6s ease;
}
@media (max-width: 600px) {
  .btn_sparks {
    font-size: 1.2rem;
    padding: 0.8em 2em;
    border-radius: 0.8em;
  }
}
@media (max-width: 400px) {
  .btn_sparks {
    font-size: 1rem;
    padding: 0.6em 1.2em;
    border-radius: 0.6em;
  }
}

@keyframes greentopBubbles {
  0% {
    background-position: 5% 90%, 10% 90%, 10% 90%, 15% 90%, 25% 90%, 25% 90%, 40% 90%, 55% 90%, 70% 90%;
  }
  50% {
    background-position: 0% 80%, 0% 20%, 10% 40%, 20% 0%, 30% 30%, 22% 50%, 50% 50%, 65% 20%, 90% 30%;
  }
  100% {
    background-position: 0% 70%, 0% 10%, 10% 30%, 20% -10%, 30% 20%, 22% 40%, 50% 40%, 65% 10%, 90% 20%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
@keyframes greenbottomBubbles {
  0% {
    background-position: 10% -10%, 30% 10%, 55% -10%, 70% -10%, 85% -10%, 70% -10%, 70% 0%;
  }
  50% {
    background-position: 0% 80%, 20% 80%, 45% 60%, 60% 100%, 75% 70%, 95% 60%, 105% 0%;
  }
  100% {
    background-position: 0% 90%, 20% 90%, 45% 70%, 60% 110%, 75% 80%, 95% 70%, 110% 10%;
    background-size: 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%, 0% 0%;
  }
}
/*------------------------------------*\
    #Glitch sparks
\*------------------------------------*/
.link_container {
  display: grid;
  grid-template-columns: repeat(5, minmax(120px, 1fr));
  gap: 20px;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .link_container {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }
}
.link_container .link_wrapper {
  position: relative;
  height: 35px;
  width: 125px;
  margin: 3px;
}
.link_container .link_wrapper input {
  position: absolute;
  inset: 0;
  margin: 0;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
}
.link_container .link_wrapper input:checked + .btn_glitch {
  --primary: #009E66;
  --shadow-primary: #ffffff;
}
.link_container .link_wrapper input:hover + .btn_glitch {
  --primary: #1F7A8C;
  --font-size: 11px;
}
.link_container .link_wrapper .btn_glitch {
  --primary: #264653;
  --shadow-primary: #A8DADC;
  --color: #ffffff;
  --font-size: 9px;
  --shadow-primary-hue: 180;
  --shadow-secondary-hue: 60;
  --shadow-secondary: #000000;
  --clip: polygon(11% 0, 95% 0, 100% 25%, 90% 90%, 95% 90%, 85% 90%, 85% 100%, 7% 100%, 0 80%);
  --border: 5px;
  --shimmy-distance: 5px;
  --clip-one: polygon(0 2%, 100% 2%, 100% 95%, 95% 95%, 95% 90%, 85% 90%, 85% 95%, 8% 95%, 0 70%);
  --clip-two: polygon(0 78%, 100% 78%, 100% 100%, 95% 100%, 95% 90%, 85% 90%, 85% 100%, 8% 100%, 0 78%);
  --clip-three: polygon(0 44%, 100% 44%, 100% 54%, 95% 54%, 95% 54%, 85% 54%, 85% 54%, 8% 54%, 0 54%);
  --clip-four: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-five: polygon(0 0, 100% 0, 100% 0, 95% 0, 95% 0, 85% 0, 85% 0, 8% 0, 0 0);
  --clip-six: polygon(0 40%, 100% 40%, 100% 85%, 95% 85%, 95% 85%, 85% 85%, 85% 85%, 8% 85%, 0 70%);
  --clip-seven: polygon(0 63%, 100% 63%, 100% 80%, 95% 80%, 95% 80%, 85% 80%, 85% 80%, 8% 80%, 0 70%);
  color: var(--color);
  text-transform: uppercase;
  font-size: var(--font-size);
  letter-spacing: 3px;
  position: relative;
  font-weight: 900;
  width: 100%;
  height: 100%;
  line-height: 38px;
  text-align: center;
  transition: background 0.2s, 0.3s;
}
.link_container .link_wrapper .btn_glitch .number {
  background: var(--shadow-primary);
  color: #323232;
  font-size: 5.5px;
  font-weight: 700;
  letter-spacing: 1px;
  position: absolute;
  width: 15px;
  height: 6px;
  top: 0;
  left: 81%;
  line-height: 6.2px;
}
.link_container .link_wrapper .btn_glitch::before, .link_container .link_wrapper .btn_glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: var(--clip);
  z-index: -1;
}
.link_container .link_wrapper .btn_glitch::before {
  background: var(--shadow-primary);
  transform: translate(var(--border), 0);
}
.link_container .link_wrapper .btn_glitch::after {
  background: var(--primary);
}
.link_container .link_wrapper .btn_glitch_span {
  position: absolute;
  top: calc(var(--border) * -1);
  left: calc(var(--border) * -1);
  right: calc(var(--border) * -1);
  bottom: calc(var(--border) * -1);
  background: var(--shadow-primary);
  text-shadow: 2px 2px var(--shadow-primary), -2px -2px var(--shadow-secondary);
  clip-path: var(--clip);
  animation: glitch 2s infinite;
  display: none;
}
.link_container .link_wrapper .btn_glitch_span::before {
  content: "";
  position: absolute;
  top: calc(var(--border) * 1);
  right: calc(var(--border) * 1);
  bottom: calc(var(--border) * 1);
  left: calc(var(--border) * 1);
  clip-path: var(--clip);
  background: var(--primary);
  z-index: -1;
}
.link_container .link_wrapper input:hover + .btn_glitch,
.link_container .link_wrapper input:hover + .btn_glitch + .btn_glitch_span {
  display: block;
}
.link_container .link_wrapper input:checked + .btn_glitch,
.link_container .link_wrapper input:checked + .btn_glitch + .btn_glitch_span {
  display: block;
  animation: glitch 5s infinite;
}
@keyframes glitch {
  0% {
    clip-path: var(--clip-one);
  }
  2%, 8% {
    clip-path: var(--clip-two);
    transform: translateX(calc(var(--shimmy-distance) * -1));
  }
  6% {
    clip-path: var(--clip-two);
    transform: translateX(var(--shimmy-distance));
  }
  9% {
    clip-path: var(--clip-two);
    transform: translateX(0);
  }
  10% {
    clip-path: var(--clip-three);
    transform: translateX(var(--shimmy-distance));
  }
  13% {
    clip-path: var(--clip-three);
    transform: translateX(0);
  }
  14%, 21% {
    clip-path: var(--clip-four);
    transform: translateX(var(--shimmy-distance));
  }
  25% {
    clip-path: var(--clip-five);
    transform: translateX(var(--shimmy-distance));
  }
  30% {
    clip-path: var(--clip-five);
    transform: translateX(calc(var(--shimmy-distance) * -1));
  }
  35%, 45% {
    clip-path: var(--clip-six);
    transform: translateX(calc(var(--shimmy-distance) * -1));
  }
  40% {
    clip-path: var(--clip-six);
    transform: translateX(var(--shimmy-distance));
  }
  50% {
    clip-path: var(--clip-six);
    transform: translateX(0);
  }
  55% {
    clip-path: var(--clip-seven);
    transform: translateX(var(--shimmy-distance));
  }
  60% {
    clip-path: var(--clip-seven);
    transform: translateX(0);
  }
  31%, 61%, 100% {
    clip-path: var(--clip-four);
    transform: translateX(0);
  }
}

h1 {
  font-family: "Lexend Giga";
  font-size: 3rem;
  color: #FFFFFC;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  font-family: "Lexend Giga";
  font-weight: 400;
  font-size: 1.5rem;
  color: #FFFFFC;
  text-transform: uppercase;
}

h3 {
  font-family: "Lexend Giga";
  text-transform: uppercase;
}

p,
a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #9F9F9F;
}

body {
  background-color: #0D0A0B;
  margin: 0;
  padding: 0;
}

/*------------------------------------*\
  #Header styles (Barra de navegación)
\*------------------------------------*/
header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 85vh;
  gap: 20px;
  text-align: center;
  /* Glow background */
}
header::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 170, 255, 0.25), transparent 70%);
  filter: blur(120px);
  z-index: -1;
}
header {
  /* Tagline */
}
header p {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  color: #FFFFFF;
}
header {
  /* Logo */
}
header img {
  width: 420px;
  animation: float 6s ease-in-out infinite;
}
header {
  /* Headline */
}
header h2 {
  font-size: 34px;
  font-weight: bold;
  max-width: 700px;
  line-height: 1.3;
  color: #FFFFFF;
}
header {
  /* Botones */
}
header .head_btn {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
header .contact_btn {
  padding: 5px 20px;
  border-radius: 40px;
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(135deg, #00AEEF, #0077ff);
  color: #FFFFFF;
  box-shadow: 0 5px 10px rgba(0, 170, 255, 0.35);
  transition: all 0.25s ease;
}
header .contact_btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 170, 255, 0.45);
}
header #contact_btn_pagecraft,
header #plans_btn_pagecraft {
  background: #EBBF33;
  background: linear-gradient(135deg, #EBBF33, #F4B942);
  box-shadow: 0 5px 10px rgba(189, 183, 8, 0.822);
}
header #contact_btn_pagecraft :hover,
header #plans_btn_pagecraft :hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(228, 210, 10, 0.841);
}
header #plans_btn,
header #plans_btn_pagecraft {
  background: #455A64;
}
header #plans_btn_pagecraft {
  box-shadow: 0 5px 10px rgba(176, 176, 176, 0.822);
}
header #plans_btn_pagecraft :hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(228, 210, 10, 0.841);
}
header {
  /* Animación logo */
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}
header {
  /* Responsive */
}
@media (max-width: 768px) {
  header img {
    width: 280px;
  }
  header h2 {
    font-size: 28px;
    max-width: 90%;
  }
  header .head_btn {
    flex-direction: column;
    gap: 20px;
  }
}

#header_pagecraft::before {
  background: radial-gradient(circle, rgba(195, 205, 7, 0.297), transparent 70%);
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  width: 100%;
}
main section {
  margin: 40px 0;
}
main .why_section {
  text-align: center;
}
main .why_section h2 {
  font-size: 40px;
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 30px;
}
main .why_section {
  /* Chips */
}
main .why_section .why_chips {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
main .why_section .why_chips .chip {
  padding: 12px 26px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}
main .why_section .why_chips .chip img {
  width: 30px;
  margin-right: 10px;
}
main .why_section .why_chips .chip:hover {
  transform: translateY(-4px);
  border-color: #06BEE1;
  box-shadow: 0 0 12px rgba(0, 191, 255, 0.4), 0 0 24px rgba(0, 191, 255, 0.2);
}
main .why_section .why_chips .chip.active {
  background: rgba(0, 191, 255, 0.15);
  border-color: #06BEE1;
}
main .why_section .chip_hint {
  font-size: 14px;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  opacity: 0.7;
  color: #FFFFFF;
}
main .why_section {
  /* CONTENEDOR DE CARDS */
}
main .why_section .why_cards {
  display: none;
  /* ocultas al inicio */
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
}
main .why_section .why_cards.visible {
  display: grid;
  animation: fadeUp 0.4s ease;
}
main .why_section .why_cards {
  /* estado cuando hay focus */
}
main .why_section .why_cards.focused .why_card {
  opacity: 0.35;
  transform: scale(0.95);
}
main .why_section .why_cards.focused .why_card.active {
  opacity: 1;
  transform: scale(1.05);
  border-color: #06BEE1;
  box-shadow: 0 0 25px rgba(0, 191, 255, 0.35), 0 20px 40px rgba(0, 0, 0, 0.5);
}
main .why_section {
  /* Cards */
}
main .why_section .why_card {
  width: 280px;
  padding: 28px;
  border-radius: 28px;
  background: radial-gradient(circle at bottom right, rgba(0, 170, 255, 0.25), transparent 60%), linear-gradient(140deg, rgba(0, 0, 0, 0.9), rgba(0, 20, 40, 0.9));
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
  /* Header */
}
main .why_section .why_card .card_header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: -20px;
}
main .why_section .why_card .card_header .card_icon {
  width: 40px;
  height: 40px;
}
main .why_section .why_card .card_header h3 {
  font-family: "Lexend Giga";
  font-size: 24px;
  font-weight: bold;
  color: #FFFFFF;
}
main .why_section .why_card {
  /* Divider */
}
main .why_section .why_card .card_divider {
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: -10px;
}
main .why_section .why_card {
  /* Lista */
}
main .why_section .why_card .card_list {
  list-style: none;
  padding: 0;
}
main .why_section .why_card .card_list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #FFFFFF;
}
main .why_section .why_card .card_list .check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #A7C6ED;
  font-size: 16px;
  color: #000000;
}
main .why_section .why_card {
  /* Botón */
}
main .why_section .why_card .card_cta {
  margin-top: auto;
  width: 100%;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #FFFFFF;
  font-weight: bold;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: -10px;
}
main .why_section .why_card .card_cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
main .why_section {
  /* Animación aparición */
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
main .why_section {
  /* Responsive */
}
@media (max-width: 900px) {
  main .why_section .why_cards {
    grid-template-columns: repeat(2, 1fr);
  }
  main .why_section .why_card {
    width: 100%;
  }
}
@media (max-width: 600px) {
  main .why_section .why_cards {
    grid-template-columns: 1fr;
  }
  main .why_section h2 {
    font-size: 32px;
  }
}
main #chip_pagecraft:hover {
  transform: translateY(-4px);
  border-color: #EBBF33;
  box-shadow: 0 0 12px rgba(205, 219, 1, 0.4), 0 0 24px rgba(182, 189, 2, 0.2);
}
main #chip_pagecraft.active {
  background: rgba(204, 204, 2, 0.13);
  border-color: #F4B942;
}
main #why_card_pagecraft {
  background: radial-gradient(circle at bottom right, rgba(255, 225, 0, 0.25), transparent 60%), linear-gradient(140deg, rgba(0, 0, 0, 0.9), rgba(211, 181, 105, 0.111));
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 20px 40px rgba(216, 193, 80, 0.301);
  /* Lista */
}
main #why_card_pagecraft .card_list .check {
  background: #C4C4C4;
  color: #000000;
}
main .caption_text {
  background: linear-gradient(to bottom, rgba(0, 119, 182, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
}
main #caption_text_pagecraft {
  background: linear-gradient(to bottom, rgba(235, 191, 51, 0.6) 0%, rgba(244, 185, 66, 0.6) 100%);
}
main .experiences h2 {
  font-size: 40px;
  font-weight: bold;
  text-transform: capitalize;
}
main .experiences {
  /*------------------------------------*\
   #3D Carrousel
  \*------------------------------------*/
}
main .experiences .carrousel_3d {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .experiences .carrousel_3d .carrousel_3d_item {
  position: absolute;
  width: 280px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #0F0F0F;
  transition: all 0.8s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  /* preview superior */
}
main .experiences .carrousel_3d .carrousel_3d_item .card_preview {
  width: 100%;
  height: 65%;
  overflow: hidden;
}
main .experiences .carrousel_3d .carrousel_3d_item .card_preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  margin-right: 0px;
}
main .experiences .carrousel_3d .carrousel_3d_item {
  /* usuario */
}
main .experiences .carrousel_3d .carrousel_3d_item .card_user {
  display: flex;
  align-items: flex-start;
  padding: 16px;
}
main .experiences .carrousel_3d .carrousel_3d_item .card_user .avatar {
  width: 55px;
  height: 55px;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid white;
  border-radius: 50%;
}
main .experiences .carrousel_3d .carrousel_3d_item .card_user .user_info {
  display: flex;
  flex-direction: column;
}
main .experiences .carrousel_3d .carrousel_3d_item .card_user .user_info .name {
  font-weight: 600;
  font-size: 18px;
  color: #FFFFFF;
  font-family: "Lexend Giga";
}
main .experiences .carrousel_3d .carrousel_3d_item .card_user .user_info .career {
  font-size: 14px;
  opacity: 0.7;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
}
main .experiences .carrousel_3d .carrousel_3d_item {
  /* card central */
}
main .experiences .carrousel_3d .carrousel_3d_item.center {
  transform: scale(1);
  opacity: 1;
  z-index: 3;
}
main .experiences .carrousel_3d .carrousel_3d_item {
  /* cards laterales */
}
main .experiences .carrousel_3d .carrousel_3d_item.left, main .experiences .carrousel_3d .carrousel_3d_item.right {
  transform: scale(0.75);
  opacity: 0.35;
  z-index: 1;
  filter: blur(1px);
}
main #avatar_pagecraft {
  border: transparent;
}
main .pricing_section {
  text-align: center;
}
main .pricing_section h2 {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 60px;
  color: #FFFFFF;
}
main .pricing_section {
  /* GRID */
}
main .pricing_section .pricing_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-items: center;
}
main .pricing_section {
  /* CARD */
}
main .pricing_section .pricing_card {
  width: 320px;
  padding: 25px;
  border-radius: 25px;
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.9), rgba(0, 20, 40, 0.9));
  border: 2px solid rgba(0, 150, 255, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  text-align: left;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
main .pricing_section {
  /* HOVER */
}
main .pricing_section .pricing_card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 170, 255, 0.35);
}
main .pricing_section {
  /* HEADER */
}
main .pricing_section .plan_header {
  display: flex;
  align-items: center;
  gap: 15px;
}
main .pricing_section .plan_header img {
  width: 45px;
}
main .pricing_section .plan_header h3 {
  font-size: 30px;
  font-family: "Lexend Giga";
  color: #06BEE1;
}
main .pricing_section .plan_desc {
  font-size: 14px;
  opacity: 0.6;
  color: #FFFFFF;
  text-align: justify;
}
main .pricing_section {
  /* PRECIO */
}
main .pricing_section .plan_price {
  font-size: 48px;
  font-weight: bold;
  color: #FFFFFF;
}
main .pricing_section .plan_price span {
  font-size: 16px;
  margin-left: 5px;
  opacity: 0.7;
}
main .pricing_section h4 {
  margin-top: 10px;
  font-size: 20px;
  color: #FFFFFF;
}
main .pricing_section {
  /* LISTA */
}
main .pricing_section ul {
  list-style: none;
  padding: 0;
  margin-top: -10px;
}
main .pricing_section ul li {
  margin-bottom: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #FFFFFF;
  position: relative;
  padding-left: 22px;
}
main .pricing_section ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #7ED957;
}
main .pricing_section {
  /* ENTREGA */
}
main .pricing_section .plan_delivery {
  margin-top: 10px;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-top: auto;
}
main .pricing_section {
  /* BOTON */
}
main .pricing_section .plan_cta {
  margin-top: auto;
  padding: 14px;
  border-radius: 40px;
  border: none;
  background: #C4C4C4;
  color: #000000;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
}
main .pricing_section .plan_cta:hover {
  background: #06BEE1;
}
main .pricing_section {
  /* RESPONSIVE */
}
@media (max-width: 1000px) {
  main .pricing_section .pricing_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  main .pricing_section .pricing_cards {
    grid-template-columns: 1fr;
  }
}
main #pricing_pagecraft {
  /* CARD */
}
main #pricing_pagecraft .pricing_card {
  background: linear-gradient(160deg, rgba(0, 0, 0, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(235, 192, 51, 0.223);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
main #pricing_pagecraft {
  /* HOVER */
}
main #pricing_pagecraft .pricing_card:hover {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 242, 0, 0.35);
}
main #pricing_pagecraft {
  /* HEADER */
}
main #pricing_pagecraft .plan_header h3 {
  font-size: 30px;
  font-family: "Lexend Giga";
  color: #EBBF33;
}
main #pricing_pagecraft .plan_cta:hover {
  background: #F4B942;
}
main .MAIN_FAQ {
  background: linear-gradient(to top right, rgba(0, 108, 158, 0.6) 0%, rgb(18, 18, 18) 30%);
}
main .MAIN_FAQ .FAQ_LIST span {
  color: #0077B6;
}
main #FAQ_pagecraft {
  background: linear-gradient(to top right, rgba(158, 140, 0, 0.6) 0%, rgb(18, 18, 18) 30%);
}
main #FAQ_pagecraft .FAQ_LIST span {
  color: #EBBF33;
}

.MLA_footer {
  background: #0077B6;
}
.MLA_footer a {
  color: #EFF3F7;
}

#footer_pagecraft {
  background: #EBBF33;
}
#footer_pagecraft img {
  filter: brightness(0) invert(0);
}
#footer_pagecraft a,
#footer_pagecraft h3,
#footer_pagecraft h2,
#footer_pagecraft p {
  color: #000000;
}/*# sourceMappingURL=index.css.map */