@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body {
  background-color: #000;
  font-family: "Poppins", sans-serif;
  transition: opacity 0.5s ease-in-out;
}

body.fade-out {
  opacity: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

section {
  width: 100%;
  height: 100%;
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 15px 0;
  transition: background-color 0.4s ease, backdrop-filter 0.4s ease,
    border-bottom 0.4s ease;
}

.menu.scrolled {
  background-color: rgba(13, 13, 13, 0.295);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
}

.menu-2 {
  margin-left: 180px;
  display: flex;
  align-items: center;
}

.logo-1 {
  width: 0;
}

#logosize {
  width: 60px;
  height: 60px;
}

#logosize2 {
  width: 50px;
  height: 40px;
  animation: slideOn 0.9s ease forwards;
}

#logosize3 {
  width: 50px;
  height: 40px;
  animation: slideIn 0.9s ease forwards;
}

@keyframes slideOn {
  from {
    transform: translate3d(40%, 10%, 0);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: translate3d(-40%, -30%, 0);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.iconX img {
  transform: translateY(5px);
  width: 30px;
  height: 30px;
}

.logo-2 img {
  width: 70px;
}

.logo-3 {
  width: 150px;
}

.socials {
  display: flex;
}

.social-links i {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  background-color: transparent;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  color: #fff;
  margin: 5px 10px;
  font-size: 1.5rem;
  transition: 0.2s linear;
}
.social-links i:hover {
  scale: 1.3;
  color: #000;
  background-color: #fff;
  filter: drop-shadow(0 0 10px #fff);
}
.menu .navbar ul li {
  position: relative;
  float: left;
}

.menu .navbar ul li a {
  font-size: 18px;
  padding: 20px;
  color: #ffffff;
  display: block;
  transition: 0.2s linear;
}

.menu .navbar ul li a.active,
.menu .navbar ul li a:hover {
  color: #ccc;
}

.menu .navbar ul li a::before {
  position: absolute;
  content: "";
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #fff;
  transition: 0.2s linear;
}

.menu .navbar ul li a:hover::before,
.menu .navbar ul li a.active::before {
  width: 100%;
}

#menu {
  display: none;
}

.menu-icono {
  width: 25px;
}

.menu label {
  cursor: pointer;
  display: none;
}

.header-content {
  margin-top: 150px;
  padding-bottom: 50px;
}

.slider {
  display: flex;
  align-items: center;
}

.slider-txt {
  margin-left: 85px;
  width: 50%;
}

.slider-txt h1 {
  font-size: 70px;
  color: #ffffff;
  text-transform: uppercase;
  font-weight: 800;
  background: linear-gradient(90deg, #ffffff 10%, rgb(112, 114, 112) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: filter 0.3s ease;
}

.slider-txt p {
  font-size: 18px;
  color: #a7a7a7;
}

.botones {
  margin-top: 50px;
}

.btn-1 {
  display: inline-block;
  padding: 15px 35px;
  border: 2px solid white;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 20px;
  border-radius: 50px;
}

.slider-img {
  width: 50%;
}

.slider-img img {
  margin-left: 225px;
  width: 225px;
}

.dowloads {
  background-color: #0d0d0d;
  margin: 10%, 20%;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 0px;
}

.tabsUs {
  display: flex;
  flex-wrap: wrap;
  padding: 100px 0px;
}

.tabs label {
  width: 15%;
  order: 1;
  display: block;
  padding: 20px 0;
  text-align: center;
  cursor: pointer;
  color: #a7a7a7;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  transition: background ease 0.2s;
}

.tabsUs label {
  width: 15%;
  order: 1;
  display: block;
  padding: 20px 0;
  text-align: center;
  cursor: pointer;
  color: #a7a7a7;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  transition: background ease 0.2s;
}

.tabs .tab {
  order: 99;
  flex-grow: 1;
  width: 100%;
  display: none;
  padding-top: 20px;
}

.tabsUs .tab {
  order: 999;
  flex-grow: 3;
  width: 100%;
  padding-top: 25px;
}

.tabs input[type="radio"] {
  display: none;
}

.tabsUs input[type="radio"] {
  display: none;
}

.tabs input[type="radio"]:checked + label {
  border-bottom: 2px solid white;
  color: #ffffff;
}

.tabs input[type="radio"]:checked + label + .tab {
  display: block;
}

.tabsUs input[type="radio"]:checked + label + .tab {
  display: block;
}

.tabs .dowload {
  display: flex;
  align-items: center;
  padding: 25px;
  margin: 0 10px;
}

.dowload-img {
  width: 50%;
  text-align: left;
}

.dowload-img a {
  cursor: pointer;
}

.dowload-img a img {
  width: 80px;
  height: 80px;
}

.dowload-img h4 {
  display: inline-block;
  padding: 5px 7px;
  line-height: 15px;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 800;
  border: 2px solid #555555;
  border-radius: 10px;
  margin-bottom: 50px;
}

.dowload-img img:hover {
  filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.774))
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.774));
}

.dowload-img img {
  width: 80px;
  height: 80px;
}

.dowload-txt {
  width: 50%;
  margin-left: 10px;
  text-align: center;
}

.dowload-txt h4 {
  color: #ffffff;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 5px;
}

.dowload-txt p {
  color: #a7a7a7;
  font-size: 16px;
  margin-bottom: 15px;
}

.dowload-txt span {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.info {
  padding: 100px 0px;
  display: flex;
  align-items: center;
}

.info-img {
  width: 50%;
}

.info-img img {
  width: 400px;
  height: 400px;
}

.info-txt {
  width: 50%;
}

.info-txt h2 {
  font-size: 75px;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.NameOverride {
  font-size: 15px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 30px;
}

.info-txt p {
  font-size: 18px;
  color: #a7a7a7;
  margin-bottom: 50px;
}

.btn-2 {
  padding: 15px 35px;
  background-color: white;
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 50px;
  align-content: center;
}

.map {
  filter: grayscale(100%) invert(92%) contrast(93%);
}

.footer {
  padding: 10px 0px;
  display: flex;
  justify-content: center;
}

.links h4 img {
  width: 25px;
  height: 22px;
}

.links h4 {
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.links ul li a {
  font-size: 16px;
  margin-bottom: 5px;
  display: inline-block;
}

.listItem {
  margin-right: 10px;
}
.swiper-button-prev,
.swiper-button-next {
  transition: 0.2s linear;
}

#btn-Us {
  transform: translate(5%);
}

@media (max-width: 921px) {
  .modal_Action {
    left: 0;
  }

  .mySwiper-logos {
    transform: translate3d(-100%, -100%, 0);
    width: 80px;
    height: 80px;
  }

  .menu {
    padding: 20px;
    justify-content: space-between;
  }

  .menu-2 {
    display: none;
  }

  .logo-2 {
    display: none;
  }

  .iconX {
    display: none;
  }

  .menu label {
    display: initial;
  }

  .menu .navbar {
    display: none;
    position: absolute;
    top: 70%;
    left: 0;
    right: 0;
  }

  .menu .navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    position: absolute;
    background-color: #181818;
  }

  .menu .navbar li a {
    display: block;
    padding: 8px 16px;
    text-decoration: none;
  }

  .menu .navbar ul li {
    width: 100%;
  }

  .menu .navbar ul li a:hover {
    background-color: white;
    color: #000;
  }

  .menu .navbar ul li a.active {
    background-color: white;
    color: #000;
  }

  #arrowAnim {
    transform: translate3d(-80%, -100%, 0);
  }

  #menu:checked ~ .navbar {
    display: initial;
  }

  .header-content {
    padding: 30px;
    margin-top: 100px;
  }

  .slider {
    flex-direction: column;
  }

  .slider-txt {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }

  .slider-txt h1 {
    font-size: 40px;
  }

  .slider-txt p {
    font-size: 16px;
  }

  .btn-1 {
    padding: 10px 25px;
    font-size: 10px;
  }

  .slider-img {
    width: 100%;
    text-align: center;
  }

  .slider-img img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }

  .swiper-horizontal > .swiper-pagination-bullets,
  .swiper-pagination-bullets,
  .swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: -7px;
  }

  .tabs {
    padding: 50px 30px;
  }

  .tabs label {
    width: 50%;
    font-size: 10px;
  }

  .tabsUs {
    padding: 80px 40px;
  }

  #btn-Us {
    font-size: 10px;
  }

  .tabsUs label {
    width: 100%;
  }

  .info {
    padding: 30px;
    flex-direction: column;
  }

  .info-img {
    width: 100%;
    text-align: center;
  }

  .info-img img {
    width: 200px;
    height: 200px;
    justify-content: center;
    align-items: center;
  }

  .info-txt {
    width: 100%;
  }

  .info-txt h2 {
    font-size: 40px;
    text-align: center;
  }

  .info-txt p {
    font-size: 16px;
    text-align: center;
  }

  .btn-1 {
    font-size: 16px;
  }

  .footer {
    padding: 10px;
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .links h4 {
    margin: 20px 0px 10px 0px;
    justify-content: center;
  }

  .mySwiper-logos {
    position: fixed;
    right: 0;
    top: 0;
  }

  #toggleButton {
    border: none;
    background-color: #000;
  }

  .hamburger {
    cursor: pointer;
  }

  .hamburger svg {
    height: 3em;
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .line {
    fill: none;
    stroke: white;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .line-top-bottom {
    stroke-dasharray: 12 63;
  }

  .hamburger.active svg {
    transform: rotate(-45deg);
  }

  .hamburger.active .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }

  .tooltiptext {
    display: none;
  }

  .tooltiptextMovil {
    display: block;
  }

  .card_expertise {
    width: 100% !important;
  }

  .text-tecno {
    font-size: 40px !important;
    text-align: center;
    width: 100%;
    padding: 5% 0;
  }

  .article {
    font-size: 11px !important;
    text-align: start !important;
  }

  .text-FAQ {
    display: contents !important;
    width: 100% !important;
  }

  .list_FAQ {
    width: 100% !important;
  }

  .text-QS {
    font-size: 40px !important;
    width: 100% !important;
  }
  .text-FAQ-info {
    font-size: 40px !important;
    margin-bottom: 30% !important;
  }

  .text-FAQ-info .text-faq,
  .text-QS-info {
    font-size: 12px !important;
  }

  .trigger {
    font-size: 11px !important;
  }

  .form-container {
    width: 100% !important;
    margin: 10%;
  }

  .btn-g {
    font-size: 13px;
    width: 100% !important;
  }

  .container-count-proyects {
    transform: translate(-3%);
  }

  .container-count-proyects .coupon {
    transform: translate(5%);
    margin-top: 20%;
  }

  .logos-proyects img {
    width: 20% !important;
    height: 20% !important;
  }

  .terms-link {
    z-index: 9999;
  }

  .imgSizeInfo {
    width: 50% !important;
    height: 50% !important;
  }

  .text-Info-header {
    color: white;
    font-size: 40px !important;
  }

  .text-Info-main {
    color: #ccc;
    font-size: 13px !important;
  }

  .text-info-details {
    font-size: 30px !important;
  }

  .Container_TitleInfoG {
    margin-top: 15px !important;
  }
}

.modal_Action {
  width: 50px;
  height: 50px;
  position: absolute;
  transform: translate3d(600%, 20%, 0);
  opacity: 0.3;
}

.tooltiptextMovil {
  display: none;
}

.grupo-2 {
  background-color: #181818;
  top: 10%;
  text-align: center;
  color: #fff;
}

.terms-link {
  color: #fff;
  justify-content: center;
  margin: 30px;
  position: absolute;
}

.terms-link:hover {
  color: #ccc;
}

.tags-container {
  padding: 8px;
  border-radius: 4px;
}

.tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 4px 8px;
  background-color: #161616;
  color: white;
  font-size: 12px;
  border-radius: 4px;
  font-weight: bold;
}

.imgSizeInfo {
  width: 20%;
  height: 20%;
}

.text-Info-header {
  color: white;
  font-size: 70px;
}

.text-Info-main {
  color: #ccc;
  font-size: 20px;
}

.text-info-details {
  font-size: 70px;
}

.text-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Container_TitleInfoG h2 {
  font-size: 8vw;
  font-weight: 900;
  background-color: #000;
  color: #fff;
  display: block;
  padding: 0.5em;
}

.Container_TitleInfoG h2:nth-child(2) {
  position: absolute;
  background-color: #fff;
  color: #000;
  clip-path: inset(-1% -1% 50% -1%);
}

.Container_TitleInfoG {
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logos-proyects {
  text-align: center; /* Centra el enlace si el contenedor lo permite */
}

/* Estilo para el enlace con el texto degradado */
.logos-proyects a {
  font-size: 4.5rem; /* Tamaño de fuente solicitado */
  font-weight: 800; /* Hacemos la fuente más gruesa para que el gradiente se note */
  text-decoration: none; /* Quitamos el subrayado del enlace */

  /* --- La magia del gradiente --- */
  /* 1. Definimos un fondo con un gradiente lineal de arriba (blanco) hacia abajo (un gris) */
  background: linear-gradient(45deg, #66a2c5 10%, #e6ac54 80%);

  /* 2. Hacemos que el fondo se recorte con la forma del texto */
  -webkit-background-clip: text;
  background-clip: text;

  /* 3. Hacemos el color del texto transparente para que se vea el fondo */
  color: transparent;

  /* Opcional: Añadimos una transición para un efecto suave si se añaden más estilos */
  transition: filter 0.3s ease;
}

/* Opcional: Efecto al pasar el cursor para hacerlo más interactivo */
.logos-proyects a:hover {
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
}

.footer.container {
  background-color: #000;
  color: #ffffff;
  padding: 60px 20px 0px;
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  transform: translate(-3%);
  width: 100%;
}

.footer-column {
  flex: 1;
  min-width: 220px;
  padding: 0 15px;
  text-align: center;
}

.footer-column .logo-3 {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

.footer-column .NameOverride {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}

.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #ffffff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #a7a7a7;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-column ul li a img {
  width: 22px;
  height: 22px;
}

.footer-column .social-links a {
  justify-content: center;
  align-items: center;

  color: #ffffff;

  transition: all 0.3s ease;
}

.grupo-2 {
  text-align: center;

  margin-top: 20px;
  border-top: 1px solid #414141;
}

.grupo-2 small {
  font-size: 0.7rem;
  color: #a7a7a7;
}

@media (max-width: 992px) {
  .footer-content {
    justify-content: space-between;
  }
  .footer-column {
    flex-basis: 45%;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    transform: translate(0%) !important;
  }
  .footer-column {
    flex-basis: 100%;
    min-width: unset;
  }
}

.sizeImgLogoColab {
  height: 100px !important;
  width: 100px !important;
  filter: grayscale(100%);
}
