@property --k {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}

body {
  font-family: "Montserrat", sans-serif;
  margin: 0;
  line-height: 1.2;
  background-color: black;
  color: white;
  overflow-x: hidden;
  max-width: 100vw;
  display: grid;
}
@media (max-width: 499px) {
  body {
    width: 100%;
    overflow-x: hidden;
  }
  html {
    max-width: 100vw;
  }
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 100vw;
}

@keyframes slideDown {
  0% {
    transform: translateY(-150%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header {
  position: fixed;
  top: 2vh;
  left: 5vw;
  width: 90vw;
  height: 80px;
  z-index: 1010;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  color: white;
  font-size: 1.2em;
  padding: 0 20px;
  display: flex;
  align-items: center;
  animation: slideDown 0.8s ease-out;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header-content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

nav {
  flex: 1;
  display: flex;
  justify-content: flex-start;
}

nav ul {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

nav li {
  margin-top: 5px;
  margin-left: 20px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  position: relative;
  transition: 0.3s ease-in-out;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #00ffcc;
  box-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

nav a:hover::after {
  transform: scaleX(1);
}

.logo-link {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-link img {
  height: 110px;
  width: auto;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.blue:hover {
  color: #5ce1e6;
  text-shadow: 0px 0px 10px #5ce1e6;
}

#checkbox {
  display: none;
}

.toggle {
  position: relative;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition-duration: 0.5s;
  margin-left: 0vw;
  margin-top: 0vh;
  z-index: 1001;
}

.bars {
  width: 100%;
  height: 4px;
  background-color: rgb(96, 223, 255);
  border-radius: 4px;
}

#bar2 {
  transition-duration: 0.8s;
}

#bar1,
#bar3 {
  width: 70%;
}

#checkbox:checked + .toggle .bars {
  position: absolute;
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar2 {
  transform: scaleX(0);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar1 {
  width: 100%;
  transform: rotate(45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle #bar3 {
  width: 100%;
  transform: rotate(-45deg);
  transition-duration: 0.5s;
}

#checkbox:checked + .toggle {
  transition-duration: 0.5s;
  transform: rotate(180deg);
}

@media (min-width: 1000px) {
  .toggle {
    display: none;
  }
}
@media (max-width: 999px) {
  nav {
    display: none;
  }
  header .logo-link {
    left: 52.5%;
  }
}

/* Dropdown menu styles */
.dropdown-menu {
  position: fixed;
  top: 80px;
  left: 5%;
  width: 90%;
  height: 0;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.377);
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: height 0.5s ease;
  z-index: 1002;
}

.dropdown-menu ul {
  flex-direction: column;
  padding: 0;
  margin-top: -5vh;
  display: flex;
  justify-content: center;
  text-align: center;
}

.dropdown-menu li {
  margin-top: 45px;
  margin-left: 20px;
}

.dropdown-menu a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 3vw;
  position: relative;
  transition: 0.3s ease-in-out;
}

.dropdown-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 3px;
  background: #00ffcc;
  box-shadow: 0 0 5px #00ffcc, 0 0 10px #00ffcc;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.dropdown-menu a:hover::after {
  transform: scaleX(1);
}

/* Active state for dropdown menu */
.dropdown-menu.active {
  height: 50vh;
}

@keyframes fadeInOpacity {
  0% {
    transform: translateY(5%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Estilos para los botones de redes sociales en el header */
.header-social-icons {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.header-social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  font-size: 18px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.header-social-icons a:hover {
  background-color: #262626;
  transform: scale(1.1);
}

.header-social-icons a svg {
  width: 20px;
  height: 20px;
}

.header-social-icons a img {
  width: 24px;
  height: 24px;
}

.f1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  margin-left: 0vw;
  margin-top: 0vh;
  flex-direction: column;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 1)
  );
  color: white;
  overflow: hidden;
  animation: fadeInOpacity 1s ease-out;
}
.f1 #particles {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}
.f1 .text {
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 1;
  position: relative;
  color: white;
  margin-left: 0vw;
}

.f1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.f1 h1 {
  position: relative;
  color: white;
  margin-top: 2vh;
  margin-bottom: 2vh;
  text-align: center;
  font-size: 2.5vw;
  font-weight: 1000;
  z-index: 2;
  font-family: "Neue Kabel W01 Black";
}
.f1 h3 {
  position: relative;
  color: white;
  margin-top: -2vh;
  margin-bottom: 2vh;
  text-align: center;
  font-size: 5vw;
  font-weight: 1000;
  z-index: 2;
  font-family: "Neue Kabel W01 Black";
}
.center__text {
  margin: auto;
  font-family: "Montserrat", sans-serif;
  font-size: 120px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 6vw;
}

.glitch {
  position: relative;
  font-size: 60px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 3px;
  z-index: 1;
}

.glitch:before,
.glitch:after {
  display: block;
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.glitch:before {
  animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #00ffff;
  z-index: -1;
}

.glitch:after {
  animation: glitch-it 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both
    infinite;
  color: #ff00ff;
  z-index: -2;
}

@keyframes glitch-it {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  to {
    transform: translate(0);
  }
}

.f1 .cssbuttons-io-button {
  background: #201d1d;
  color: rgb(255, 255, 255);
  font-family: inherit;
  padding: 0.35em;
  padding-left: 1.2em;
  font-size: 17px;
  font-weight: 500;
  border-radius: 0.9em;
  border: none;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  box-shadow: inset 0 0 1.6em -0.6em #2469a1;
  overflow: hidden;
  position: absolute;
  height: 2.8em;
  padding-right: 3.3em;
  cursor: pointer;
  z-index: 10;
  margin-top: 80vh;
}

.f1 .cssbuttons-io-button .icon {
  background: rgb(39, 34, 34);
  margin-left: 1em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.2em;
  width: 2.2em;
  border-radius: 0.7em;
  box-shadow: 0.1em 0.1em 0.6em 0.2em #1b7d86d0;
  right: 0.3em;
  transition: all 0.3s;
}

.f1 .cssbuttons-io-button:hover .icon {
  width: calc(100% - 0.6em);
}

.f1 .cssbuttons-io-button .icon svg {
  width: 1.1em;
  transition: transform 0.3s;
  color: #249993;
}

.f1 .cssbuttons-io-button:hover .icon svg {
  transform: translateX(0.1em);
}

.f1 .cssbuttons-io-button:active .icon {
  transform: scale(0.95);
}

.f12 {
  background-color: #5ce1e6;
  width: 30%;
  margin-top: -10vh;
  height: 120vh;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  right: 0;
  animation: slideIn 0.6s ease-out;
  z-index: 999;
}
.f12 h1 {
  color: rgb(28, 28, 28);
  margin-top: 35vh;
  text-align: center;
  font-size: 3.5vw;
  width: 80%;
  margin-left: 10%;
  font-weight: 500;
  font-family: "Neue Kabel W01 Black";
}

@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.f12:not(.hidden) {
  margin-right: 0vw;
  transform: translateX(0);
}

.hidden {
  display: none;
}

.f12 .input-container {
  position: relative;
  width: 70%;
  margin-left: 10%;
}

.form-control {
  position: relative;
  width: 100%;
  margin-left: 2vw;
  margin-top: 10vh;
}

.form-control input {
  background-color: transparent;
  border: 0;
  border-bottom: 2px #000000 solid;
  display: block;
  width: 100%;
  padding: 15px 0;
  font-size: 18px;
  color: #fff;
}

.form-control input:focus,
.form-control input:valid {
  outline: 0;
  border-bottom-color: rgb(0, 0, 0);
}

.form-control label {
  position: absolute;
  top: 15px;
  left: 0;
  pointer-events: none;
}

.form-control label span {
  display: inline-block;
  font-size: 18px;
  min-width: 5px;
  color: #000000;
  transition: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.form-control input:focus + label span,
.form-control input:valid + label span {
  color: rgb(73, 73, 73);
  transform: translateY(-30px);
}

.sendbutton {
  position: absolute;
  right: -2vw;
  top: 0vh;
  width: 7vh;
  height: 7vh;
  border-radius: 50%;
  background-color: rgb(28, 28, 28);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f3 {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  height: 40vh;
  flex-direction: column;
  background: rgba(0, 0, 0, 1);
}
.f3 .texto {
  opacity: 0;
  transform: translateY(200px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  margin-left: -1vw;
  margin-top: -5vh;
}

.f3 h1 {
  font-size: 5vw;
  font-weight: 800;
  margin-top: 25vh;
  text-align: center;
  color: white;
  font-family: "Neue Kabel W01 Black";
}
.f3 p {
  font-size: 1.7vw;
  margin-top: 3vh;
  text-align: center;
  color: white;
  width: 60vw;
  margin-left: 20vw;
}

.f3 .texto.visible {
  opacity: 1;
  transform: translateY(0);
}

.i1 section {
  margin-top: -5vh;
  height: 400vh;
  transform: translateY(200px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  scroll-snap-type: y mandatory;

  @supports (animation-timeline: view()) {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 1)
    );
    animation: k 1s both;
    animation-timeline: view();
    animation-range: contain;
  }
}
.i1 section.visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes k {
  to {
    --k: 1;
  }
}
.i1 section h3 {
  font-size: 3vw;
  font-weight: 500;
  margin-top: 45vh;
  text-align: center;
  color: white;
  font-family: "Neue Kabel W01 Black";
}
.i1 section img {
  width: 30vh;
  height: 30vh;
  object-fit: cover;
  margin-top: -5vh;
  border-radius: 50%;
}

.i1 .stick {
  box-sizing: border-box;
  display: grid;
  align-content: center;
  container-type: inline-size;
  position: sticky;
  top: 0;
  padding: 1em;
  height: 110vh;
  margin-top: 0vh;
}

.i1 .wrap {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 2em;
  translate: calc(var(--k) * (90cqw - 100%));
}
.i1 .card {
  background-color: transparent;
  border-radius: 1.5em;
  padding: 0.8em;
  box-shadow: 0 0 1em rgba(92, 225, 230, 0.4);
  display: grid;
  grid-gap: 1em;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
  height: 65vh;
  width: 35vw;
  margin-top: 5vh;
}
.i1 .card h1 {
  font-size: 2.5vw;
  font-weight: 800;
  color: white;
  text-align: center;
  font-family: "Neue Kabel W01 Black";
}
.i1 .card p {
  font-size: 1.5vw;
  font-weight: 300;
  color: white;
  text-align: justify;
  width: 30vw;
  margin-top: -5vh;
}

.i12 {
  height: 50vw;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2vh;
}
.i12 h2 {
  font-size: 4vw;
  color: white;
  text-align: center;
  opacity: 0;
  transform: translateY(15vh);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  margin-top: 12vh;
}
.i12 h2::after {
  content: "";
  position: absolute;
  bottom: -10px; /* Ajusta la distancia del borde inferior */
  left: -20%;
  width: 140%;
  height: 1px; /* Grosor del borde */
  background: linear-gradient(
    to right,
    transparent,
    rgb(0, 183, 255),
    transparent
  );
  pointer-events: none;
}
.i12 h2.visible {
  animation: slideUp 0.8s ease-out forwards;
}

@keyframes slideUp {
  from {
    transform: translateY(15vh);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.soluciones {
  text-align: center;
  margin-top: 40px;
  height: auto;
}

.soluciones-titulo {
  background: linear-gradient(to right, #5ce1e6, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.soluciones-desc {
  color: #bbbbbb;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.soluciones-contenedor {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.solucion-card {
  border-radius: 20px;
  padding: 2rem 2.5rem;
  width: 35vw;
  height: 60vh;
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 12px 40px 0 rgba(63, 252, 255, 0.18);
  position: relative;
  opacity: 10000;
}

.solucion-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 40px 0 rgba(63, 252, 255, 0.18);
  z-index: 1;
}

.solucion-icono {
  background: #5ce1e6;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  color: #172133;
  overflow: hidden;
}

.solucion-icono img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.solucion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.solucion-card h3 {
  align-items: center;
  margin-top: -20px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.solucion-card ul {
  list-style: disc;
  padding-left: 1.2rem;
  font-size: 1.2rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.solucion-card ul li {
  color: rgb(204, 204, 204);
}

.solucion-card ul li::marker {
  color: #5ce1e6;
  font-size: 1.3em;
}

.animar-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animar-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
#lightning-card {
  width: 78vw;
  height: 70vh;
  border: 1px solid #fff;
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}
#mkt-card {
  width: 78vw;
  height: 55vh;
}
.arkas-btn-dinamico {
  display: inline-block;
  background: #111;
  opacity: 0.9;
  color: #3ffcff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 0.5rem 1.8rem;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(63, 252, 255, 0.12);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s, color 0.25s, transform 0.18s;
  border: 2px solid #3ffcff;
  position: relative;
  overflow: hidden;
  z-index: 99;
  margin-top: -5vh;
}
.arkas-btn-dinamico:hover,
.arkas-btn-dinamico:focus {
  background: linear-gradient(90deg, #3ffcff 0%, #5ce1e6 100%);
  color: #111;
  transform: scale(1.05) translateY(-2px);
  border-color: #fff;
  box-shadow: 0 8px 32px 0 rgba(63, 252, 255, 0.18);
}
#herramientas-inteligentes {
  background-color: #06080a;
  margin-top: 15vh;
}
.herramientas-grid {
  display: flex;
  gap: 2.5vw;
  justify-content: center;
  flex-wrap: wrap;
}
.herramienta-card {
  background: #10151c;
  border-radius: 1.2em;
  box-shadow: 0 0 2em #00ffb220;
  padding: 2em 1.5em 1.5em 1.5em;
  width: 420px;
  min-width: 270px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2em;
}
.herramienta-header {
  display: flex;
  align-items: center;
  gap: 0.8em;
  margin-bottom: 1em;
}
.herramienta-icon {
  width: 2.5em;
  height: 2.5em;
  object-fit: cover;
}
.herramienta-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #00ffb2;
  letter-spacing: 0.01em;
}
.herramienta-preview {
  background: #181f29;
  border-radius: 1em;
  width: 100%;
  min-height: 120px;
  margin-bottom: 1.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em 0.5em 0.5em 0.5em;
  position: relative;
}
.ia-chat-window {
  width: 100%;
  min-height: 120px;
  max-height: 170px;
  overflow-y: auto;
  background: #11161e;
  border-radius: 0.7em;
  margin-bottom: 0.7em;
  padding: 0.7em 0.5em;
  font-size: 1em;
  color: #fff;
  box-shadow: 0 0 0.5em #00ffb230;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.ia-msg {
  padding: 0.5em 0.9em;
  border-radius: 1em;
  max-width: 90%;
  word-break: break-word;
  font-size: 1em;
  line-height: 1.3;
}
.ia-msg-user {
  align-self: flex-end;
  background: #00ffb2;
  color: #0a0e13;
}
.ia-msg-bot {
  align-self: flex-start;
  background: #232b36;
  color: #fff;
  border: 1px solid #00ffb2;
}
.herramienta-btn {
  background: linear-gradient(90deg, #00ffb2 60%, #00cfff 100%);
  color: #0a0e13;
  font-weight: 700;
  border: none;
  border-radius: 0.7em;
  padding: 0.7em 1.2em;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 0.2em;
  z-index: 99;
}
.herramienta-btn:active {
  background: #00cfff;
  color: #fff;
}
.herramienta-list {
  margin-top: 1em;
  color: #b8f7e5;
  font-size: 1em;
  list-style: none;
  padding: 0;
  width: 100%;
}
.herramienta-list li {
  margin-bottom: 0.3em;
}
.wallet-card {
  background: linear-gradient(90deg, #00ffb2 60%, #00cfff 100%);
  color: #0a0e13;
  border-radius: 0.8em;
  width: 95%;
  margin: 0.2em auto 0.8em auto;
  padding: 1em 1em 0.7em 1em;
  box-shadow: 0 0 1em #00ffb230;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.wallet-card-title {
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 0.4em;
}
.wallet-card-id {
  font-size: 0.98em;
  opacity: 0.8;
}
.wallet-status {
  margin-top: 0.7em;
  color: #00ffb2;
  font-weight: 600;
  font-size: 1em;
  min-height: 1.2em;
  text-align: center;
}
.auth-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #232b36;
  border-radius: 0.8em;
  width: 100%;
  min-height: 80px;
  margin-bottom: 0.8em;
  padding: 1.2em 0.5em 0.7em 0.5em;
  color: #b8f7e5;
  font-size: 1.1em;
  gap: 0.5em;
}
.auth-avatar {
  width: 2.7em;
  height: 2.7em;
  border-radius: 50%;
  background: #222;
  margin-bottom: 0.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-avatar-off {
  background: #444
    url("https://cdn-icons-png.flaticon.com/512/1077/1077114.png") center/60%
    no-repeat;
}
.auth-avatar-on {
  background: #00ffb2
    url("https://cdn-icons-png.flaticon.com/512/190/190411.png") center/60%
    no-repeat;
  border: 2px solid #00ffb2;
}
.auth-state-text {
  color: #b8f7e5;
  font-weight: 600;
}
.auth-state-text.on {
  color: #00ffb2;
}
.opiniones-list {
  width: 100%;
  min-height: 60px;
  max-height: 120px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  margin-bottom: 0.7em;
  scroll-behavior: smooth;
}
.opinion-card {
  background: #232b36;
  border-radius: 0.7em;
  padding: 0.6em 0.8em;
  color: #fff;
  font-size: 0.98em;
  box-shadow: 0 0 0.3em #00ffb220;
  display: flex;
  flex-direction: column;
  gap: 0.2em;
}
.opinion-stars {
  color: #00ffb2;
  font-size: 1.1em;
  font-weight: bold;
  margin-bottom: 0.1em;
}
.opinion-user {
  color: #b8f7e5;
  font-size: 0.95em;
  font-weight: 600;
}

.calendario-reservas {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-bottom: 1em;
  z-index: 99;
}
.calendario-semana {
  display: flex;
  justify-content: space-between;
}
.dia {
  background: #232b36;
  color: #b8f7e5;
  border: none;
  padding: 0.5em 0.9em;
  border-radius: 0.5em;
  font-weight: bold;
  cursor: default;
  z-index: 99;
}
.dia.activo {
  background: #00ffb2;
  color: #0a0e13;
}
.calendario-horarios {
  display: flex;
  justify-content: space-around;
}
.horario {
  background: #232b36;
  color: #b8f7e5;
  padding: 0.5em 1.2em;
  border-radius: 0.7em;
  border: 1px solid #00ffb2;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s;
  z-index: 99;
}
.horario.reservado {
  background: #00ffb2;
  color: #0a0e13;
  cursor: not-allowed;
  transform: scale(0.9);
}

.factura-info {
  background: #0f141c;
  border-radius: 0.8em;
  padding: 1em;
  width: 100%;
  margin-bottom: 1em;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}
.factura-encabezado {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.factura-encabezado .pagada {
  color: #00ffb2;
}
.factura-monto {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 0.2em;
}
.factura-vencimiento {
  font-size: 0.9em;
  color: #b8f7e5;
}

@media (max-width: 800px) {
  .herramientas-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5em;
  }
  .herramienta-card {
    width: 95vw;
    min-width: 0;
  }
}

@import "compass/css3";

@import url(https://fonts.googleapis.com/css?family=Squada+One);

.f4 {
  width: 100%;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -15vh;
}
.f4 .form {
  position: relative;
  display: block;
  padding: 2.2rem;
  width: 100vw;
  height: 90vh;
  margin-top: 30vh;
  background: radial-gradient(
    circle,
    rgba(53, 141, 153, 0.854) 0%,
    rgb(0, 0, 0) 35%,
    rgb(0, 0, 0) 100%
  );
  overflow: hidden;
  z-index: +1;
  border-radius: 8px;
}
.f4 .input-container {
  position: relative;
}

.f4 .input-container input,
.f4 .form button {
  outline: none;
  border: 1px solid #3b3b3b;
  margin: 8px 0;
  border-radius: 10px;
}

.f4 .input-container input {
  background: linear-gradient(90deg, #24292c 0%, #07090b 100%);
  padding: 6px;
  font-size: 0.875rem;
  line-height: 2vw;
  width: 39vw;
  margin-left: 0vw;
  box-shadow: 0 1px 1px 0 rgba(55, 55, 55, 0.459);
  transition: 0.3s ease;
}

.f4 .input-name:focus::placeholder {
  opacity: 0;
  transition: opacity 0.9s;
}
.f4 .input-name {
  color: white;
}
.f4 .input-name:hover {
  box-shadow: 0 0 0 0.15vw rgba(135, 207, 235, 0.375);
}
.f4 .input-name:focus {
  box-shadow: 0 0 0 0.15vw skyblue;
}

.f4 .input-mail:focus::placeholder {
  opacity: 0;
  transition: opacity 0.9s;
}
.f4 .input-mail {
  color: white;
}
.f4 .input-mail:hover {
  box-shadow: 0 0 0 0.15vw rgba(135, 207, 235, 0.375);
}
.f4 .input-mail:focus {
  box-shadow: 0 0 0 0.15vw skyblue;
}

.f4 .input-wpp:focus::placeholder {
  opacity: 0;
  transition: opacity 0.9s;
}
.f4 .input-wpp {
  color: white;
}
.f4 .input-wpp:hover {
  box-shadow: 0 0 0 0.15vw rgba(135, 207, 235, 0.375);
}
.f4 .input-wpp:focus {
  box-shadow: 0 0 0 0.15vw skyblue;
}

.f4 .input-container textarea {
  background: linear-gradient(90deg, #24292c 0%, #07090b 100%);
  padding: 0 5px;
  font-size: 0.875rem;
  line-height: 4vw;
  width: 39vw;
  height: auto;
  margin-left: 0vw;
  margin-top: 1vh;
  border: 1px solid #3b3b3b;
  border-radius: 10px;
  box-shadow: 0 1px 1px 0 rgba(55, 55, 55, 0.459);
  color: white;
  outline: none;
  transition: 0.3s ease;
}
.f4 .input-container textarea::placeholder {
  margin-top: 0vh;
}

.f4 .input-container textarea:focus::placeholder {
  opacity: 0;
  transition: opacity 0.9s;
}
.f4 .input-message:hover {
  box-shadow: 0 0 0 0.15vw rgba(135, 207, 235, 0.375);
}
.f4 .input-message:focus {
  box-shadow: 0 0 0 0.15vw skyblue;
}

.f4 .submit {
  position: relative;
  display: block;
  padding: 8px;
  background: linear-gradient(90deg, #2f5670 0%, #111e2b 100%);
  color: #ffffff;
  text-shadow: 1px 1px 1px rgba(75, 148, 133, 0.5);
  font-size: 0.875rem;
  line-height: 2vw;
  font-weight: 500;
  width: 39vw;
  text-transform: uppercase;
  overflow: hidden;
}

.f4 .submit:hover {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.f4 .submit:hover::before {
  -webkit-animation: sh02 0.5s 0s linear;
  -moz-animation: sh02 0.5s 0s linear;
  animation: sh02 0.5s 0s linear;
}

.f4 .submit::before {
  content: "";
  display: block;
  width: 0px;
  height: 85%;
  position: absolute;
  top: 50%;
  left: 0%;
  opacity: 0;
  background: #e4e4e4;
  box-shadow: 0 0 50px 30px #fff;
  -webkit-transform: skewX(-20deg);
  -moz-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  -o-transform: skewX(-20deg);
  transform: skewX(-20deg);
}

@keyframes sh02 {
  from {
    opacity: 0;
    left: 0%;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0.5;
    left: 100%;
  }
}

.form-title {
  font-size: 4vw;
  line-height: 10vh;
  font-family: "Neue Kabel W01 Black";
  font-weight: 600;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(150, 144, 144, 0.7);
  animation-duration: 1.5s;
  overflow: hidden;
}

.title-2 {
  display: block;
  margin-top: -0.5rem;
  font-size: 3vw;
  font-weight: 800;
  font-family: sans-serif;
  text-align: center;
  -webkit-text-stroke: #8686ab 0.1rem;
  letter-spacing: 0.2rem;
  color: transparent;
  position: relative;
  text-shadow: 0px 0px 16px #1c246e;
  margin-bottom: 10vh;
  transition: 0.2s;
  animation: flickering 2s linear infinite both;
}
.title-2 span::before,
.title-2 span::after {
  content: "—";
}

@keyframes flickering {
  0%,
  100% {
    opacity: 1;
  }

  41.99% {
    opacity: 1;
  }

  42% {
    opacity: 0;
  }

  43% {
    opacity: 0;
  }

  43.01% {
    opacity: 1;
  }

  47.99% {
    opacity: 1;
  }

  48% {
    opacity: 0;
  }

  49% {
    opacity: 0;
  }

  49.01% {
    opacity: 1;
  }
}

.bg-stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  animation: animateBg 50s linear infinite;
}

@keyframes animateBg {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.star {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1),
    0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.1);
  animation: animate 3s linear infinite;
}

.star::before {
  content: "";
  position: absolute;
  top: 10%;
  transform: translateY(-50%);
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, #fff, transparent);
}

@keyframes animate {
  0% {
    transform: rotate(315deg) translateX(0);
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: rotate(315deg) translateX(-1000px);
    opacity: 0;
  }
}

.star:nth-child(1) {
  top: -10vh;
  right: 0;
  left: initial;
  animation-delay: 0s;
  animation-duration: 3s;
}

.star:nth-child(2) {
  top: -10vh;
  right: 100px;
  left: initial;
  animation-delay: 0.2s;
  animation-duration: 3s;
}

.star:nth-child(3) {
  top: -10vh;
  right: 220px;
  left: initial;
  animation-delay: 2.75s;
  animation-duration: 2.75s;
}

.star:nth-child(4) {
  top: -10vh;
  right: -220px;
  left: initial;
  animation-delay: 1.6s;
  animation-duration: 1.6s;
}
.star:nth-child(5) {
  top: -10vh;
  right: 80vw;
  left: initial;
  animation-delay: 0s;
  animation-duration: 3s;
}

.star:nth-child(6) {
  top: -10vh;
  right: 90vw;
  left: initial;
  animation-delay: 0.2s;
  animation-duration: 3s;
}

.star:nth-child(7) {
  top: -10vh;
  right: 50vw;
  left: initial;
  animation-delay: 2.75s;
  animation-duration: 2.75s;
}

.star:nth-child(8) {
  top: -10vh;
  right: 40vw;
  left: initial;
  animation-delay: 1.6s;
  animation-duration: 1.6s;
}
.star:nth-child(9) {
  top: 0;
  right: 40vw;
  left: initial;
  animation-delay: 1.6s;
  animation-duration: 1.6s;
}

.f4 .img1 {
  width: 40vw;
  height: 40vh;
  margin-left: 70vw;
  margin-top: -50vh;
}
.f4 .img1 .text {
  position: absolute;
  width: 40vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -20vw;
  margin-top: -25vh;
  flex-direction: column;
}
.f4 .img1 .text h1 {
  font-size: 3vw;
  font-weight: 800;
  color: white;
  text-align: center;
  margin-left: 0vw;
  margin-top: 0vh;
  position: relative;
  font-family: "Neue Kabel W01 Black";
}
h4 {
  color: white;
  cursor: auto;
  position: relative;
  font-size: 2vw;
  margin-top: 2vh;
}
h4 a {
  color: rgb(91, 107, 124);
}
h4 a:hover {
  color: #5ce1e6;
  text-shadow: 0px 0px 5px #2c3030;
}
.f4 ul {
  list-style: none;
  margin-top: 4vh;
  margin-left: 0vw;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -10vh;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 60%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}

.example-2 .icon-content a[data-social="linkedin"] .filled,
.example-2 .icon-content a[data-social="linkedin"] ~ .tooltip {
  background-color: #0274b3;
}

.example-2 .icon-content a[data-social="github"] .filled,
.example-2 .icon-content a[data-social="github"] ~ .tooltip {
  background-color: #24262a;
}
.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

.f5 {
  height: 15vh;
}

/* SOLUCIONES */
/* SOLUCIONES */
/* SOLUCIONES */
/* SOLUCIONES */

.radio-inputs {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 350px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: 70vh;
  z-index: 1;
}

.radio-inputs > * {
  margin: 6px;
}

.radio-input:checked + .radio-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  color: #2260ff;
}

.radio-input:checked + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
  background-color: #2260ff;
  border-color: #2260ff;
}

.radio-input:checked + .radio-tile .radio-icon svg {
  fill: #2260ff;
}

.radio-input:checked + .radio-tile .radio-label {
  color: #2260ff;
}

.radio-input:focus + .radio-tile {
  border-color: #2260ff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1), 0 0 0 4px #b5c9fc;
}

.radio-input:focus + .radio-tile:before {
  transform: scale(1);
  opacity: 1;
}

.radio-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  min-height: 80px;
  border-radius: 0.5rem;
  border: 2px solid #b5bfd9;
  background-color: #000000be;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: 0.15s ease;
  cursor: pointer;
  position: relative;
}

.radio-tile:before {
  content: "";
  position: absolute;
  display: block;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  top: 0.25rem;
  left: 0.25rem;
  opacity: 0;
  transform: scale(0);
  transition: 0.25s ease;
}

.radio-tile:hover {
  border-color: #2260ff;
}

.radio-tile:hover:before {
  transform: scale(1);
  opacity: 1;
}

.radio-icon svg {
  width: 2rem;
  height: 2rem;
  fill: #494949;
}

.radio-label {
  color: #707070;
  transition: 0.375s ease;
  text-align: center;
  font-size: 13px;
}

.radio-input {
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.s1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  margin-left: 0vw;
  margin-top: 0;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.s1 #particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0; /* Hace que el fondo de partículas quede detrás del contenido */
}

.s1 h1 {
  color: white;
  margin-top: -5vh;
  text-align: center;
  font-size: 4.5vw;
  font-family: "Neue Kabel W01 Black";
  line-height: 1.1;
  width: 60vw;
  position: absolute;
  animation: scaleUp 1s ease-out forwards;
}
@keyframes scaleUp {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.touch-icon {
  position: absolute;
  margin-top: 140vw;
  margin-left: 45vw;
  align-items: center;
  justify-content: center;
  display: none;
  z-index: 90;
  animation: scaleUp 1s ease-out forwards;
}
.touch-icon img {
  width: 15vw;
  height: auto;
}

@media (max-width: 499px) {
  .touch-icon {
    display: flex;
  }
}

.gradient-text {
  background: linear-gradient(
    90deg,
    blue,
    indigo,
    violet,
    rgb(234, 99, 189),
    rgb(237, 83, 83),
    rgb(244, 162, 75),
    rgb(210, 239, 77),
    rgb(157, 235, 84),
    rgb(82, 245, 106),
    rgb(132, 242, 218),
    rgb(84, 156, 233),
    blue,
    indigo
  );
  background-size: 600%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-animation 50s linear infinite;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.s1 p {
  color: white;
  margin-top: 90vh;
  text-align: center;
  font-size: 1vw;
  font-weight: 300;
  width: 50vw;
  position: absolute;
  animation: scaleUp 1s ease-out forwards;
}

.s4 {
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 160vh;
  margin-top: 0vh;
  background-color: #000;
  flex-direction: column;
  display: grid;
}
.s4 .text4 {
  margin-top: 10vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.s4 .text4 h1 {
  font-size: 4.5vw;
  margin-top: 0vh;
  text-align: center;
  color: white;
  font-family: "Neue Kabel W01 Black";
}
.s4 .text4 p {
  font-size: 2vw;
  margin-top: 2vh;
  text-align: center;
  color: white;
  width: 80%;
}

:root {
  --space: 1rem;
  --bg: #09090b;
  --fg: #e3e3e3;
  --surface-1: #101012;
  --surface-2: #27272a;
  --surface-3: #52525b;
  --ease-out: cubic-bezier(0.5, 1, 0.89, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

.s4 main {
  display: grid;
  grid-template-columns: repeat(var(--count, 1), 1fr);
  gap: var(--space);
  margin: auto;
  inline-size: min(var(--max, 15rem), 100%);

  @media (min-width: 25rem) {
    --count: 2;
    --max: 30rem;
  }

  @media (min-width: 1000px) {
    --count: 3;
    --max: 60rem;
  }
}

.s4 .card img.card-img {
  position: absolute;
  z-index: 1;
  width: 40%;
  height: auto;
  object-fit: contain;
  transition: transform 300ms var(--ease-out), opacity 300ms var(--ease-out);
  left: 50%;
  top: 40%;
  transform: translate(-50%, -50%);
}
.s4 .card img.img-default {
  opacity: 1;
  filter: grayscale(50%) brightness(0.8);
}
.s4 .card img.img-hover {
  opacity: 0;
  filter: grayscale(0%) brightness(1);
}
.s4 .card:where(:hover, :focus-within) img.img-default {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1.1);
}
.s4 .card:where(:hover, :focus-within) img.img-hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.s4 .card .card-text {
  position: relative;
  z-index: 1;
  margin-top: 80%;
  font-size: 2.5vw;
  font-family: "Neue Kabel W01 Black";
  color: var(--surface-3);
  transition: color 300ms var(--ease-out);
  opacity: 0.5;
}

.s4 .card:where(:hover, :focus-within) .card-text {
  color: var(--active-color, var(--fg));
  transition: color 300ms var(--ease-in-out);
  opacity: 1;
}

.s4 .card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-areas: "card";
  place-items: center;
  aspect-ratio: 4/5;
  border: 1px solid var(--surface-2);
  isolation: isolate;
  transition: border-color 200ms var(--ease-out);
  user-select: none;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
      circle at bottom left,
      transparent 55%,
      var(--surface-1)
    );
    pointer-events: none;
    box-shadow: var(--bg) -0.5cqi 0.5cqi 2.5cqi inset;
    transition: opacity 900ms var(--ease-out);
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    aspect-ratio: 1;
    background: radial-gradient(circle, var(--bg), transparent 65%);
    opacity: 0;
    transition: opacity 800ms var(--ease-out);
  }

  > * {
    grid-area: card;
  }

  svg {
    position: relative;
    z-index: 1;
    width: 30%;
    height: auto;
    color: var(--surface-3);
    transition: 300ms var(--ease-out);
    transition-property: color, scale;
  }

  button {
    opacity: 0;
  }

  &:focus-within {
    outline: 5px auto Highlight;
    outline: 5px auto -webkit-focus-ring-color;
  }

  &:where(:hover, :focus-within) {
    border-color: var(--active-color, var(--fg));
    transition: border-color 800ms var(--ease-in-out);
  }

  &:where(:hover, :focus-within) svg {
    color: var(--active-color, var(--fg));
    scale: 1.1;
    transition: 300ms var(--ease-in-out);
  }

  &:where(:hover, :focus-within)::before {
    opacity: 0;
  }

  &:where(:hover, :focus-within)::after {
    opacity: 1;
  }
}
.s4 h1 {
  font-size: 1.5vw;
  font-weight: 800;
  color: white;
  text-align: center;
  font-family: "Neue Kabel W01 Black";
}
.s4 .card img {
  opacity: 1;
}

.title1 {
  align-items: center;
  justify-content: center;
  width: 80vw;
  height: 10vh;
  margin-left: 10vw;
  margin-top: 15vh;
  justify-content: center;
  align-items: center;
}
.title1 h1 {
  font-size: 2.5vw;
  margin-top: 2vh;
  text-align: center;
  color: white;
}
.title2 {
  align-items: center;
  justify-content: center;
  width: 60vw;
  margin-left: 20vw;
  margin-top: 0vh;
}
.title2 h1 {
  font-size: 2.5vw;
  margin-top: 0vh;
  text-align: center;
  color: white;
}

.s5 {
  width: 100vw;
  height: 110vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
  margin-left: 0vw;
  background-color: #000;
  margin-top: 0vh;
}

/* NOSOTROS */
/* NOSOTROS */
/* NOSOTROS */
/* NOSOTROS */

.n1 {
  width: 100vw;
  height: 100vh;
  margin-top: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 1;
}

.n1 h1 {
  width: 90vw;
  font-size: 11vw;
  margin-top: 25vh;
  font-family: "Neue Kabel W01 Black";
  opacity: 1;
  line-height: 1.2;
  position: relative;
  justify-content: center;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 4px white;
}
.n1 p {
  width: 50vw;
  font-size: 3vw;
  margin-top: 5vh;
  opacity: 1;
  line-height: 1.2;
  position: relative;
  justify-content: center;
  text-align: center;
  color: white;
}

.n1 img {
  margin-top: 5vh;
  width: 50vw;
  height: auto;
}

.n2 {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0vh;
  flex-direction: column;
}

.goats {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  width: 100vw;
  height: 120vh;
  margin-top: 29vh;
  overflow: hidden;
}

.goats .goats-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50vw;
  height: 135vh;
  text-align: center;
}

.goats .goats-container img {
  width: auto;
  height: 55vh;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 1;
}

.goats .name {
  font-size: 2vw;
  font-weight: bold;
  color: white;
  margin-top: 1vh;
}

.goats .position {
  font-size: 1.5vw;
  color: #666;
  margin-top: 0vh;
}

.n3 {
  width: 100vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5vh;
}

.n3 .ntexto {
  font-size: 3vw;
  margin-top: 0vh;
  color: rgba(255, 255, 255, 0.2);
  width: 80vw;
  text-align: justify;
  font-family: "Neue Kabel W01 Black";
  margin-left: 0vw;
}
.n3 .ntexto span {
  color: rgba(255, 255, 255, 0.2);
  transition: color 0.5s ease;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
/* FOOTER */
/* FOOTER */

#footer-container {
  position: relative;
  bottom: 0;
  width: 100vw;
  margin: 0 auto;
  margin-top: 5vh;
  height: 42vh;
  color: white;
  background: linear-gradient(270deg, #1a1a2e, #16213e, #0f3460, #53354a);
  background-size: 150% 150%;
  border-radius: 10px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  padding: 30px;
  transform: translateY(100%);
  opacity: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s ease-in-out;
}

#footer-container.visible {
  transform: translateY(0);
  opacity: 1;
}

/* Animación del gradiente (opcional) */
@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.footer-content {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-logo-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  margin-top: 0vh;
  margin-left: -4vw;
}

.footer-logo {
  width: 30vw;
  height: auto;
}

.footer-center {
  flex: 2;
  text-align: center;
  margin-left: -40vw;
  margin-top: 10vh;
  height: 100%;
}

#footer-hashtag {
  font-size: 3vw;
  font-weight: bold;
  margin-top: -8vh;
  margin-bottom: 3vh;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}

.footer-links,
.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 3vh;
}

.footer-links a,
.footer-legal-links a {
  color: #aaa;
  text-decoration: none;
  font-size: 1.5vw;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal-links a:hover {
  color: white;
}

.footer-bottom {
  font-size: 1.5vw;
  color: #aaa;
  text-align: center;
  margin-top: 4vh;
}

@media (max-width: 499px) {
  .footer-logo {
    width: 40vw;
    margin-top: 40vh;
    margin-left: 30vw;
    margin-bottom: 0vh;
  }

  .footer-center {
    margin-left: -40vw;
  }

  #footer-hashtag {
    font-size: 8vw;
    margin-top: -5vh;
    margin-bottom: 3vh;
  }

  .footer-links a,
  .footer-legal-links a {
    font-size: 6vw;
  }
  .footer-bottom {
    font-size: 3vw;
  }
}
@media (max-width: 1024px) {
  .solucion-card {
    width: 80vw !important;
    padding: 1.5rem 1.2rem;
    height: 50vh;
  }
  .soluciones-contenedor {
    gap: 1.2rem;
  }
  #lightning-bg {
    min-height: unset;
    max-height: unset;
  }
}
@media (max-width: 999px) {
  .dropdown-menu a {
    font-size: 5vw;
  }
  .header-social-icons {
    left: 20px;
  }
  .f1 h1 {
    font-size: 4.5vw;
  }
  .f1 h3 {
    font-size: 7vw;
    margin-top: 5vh;
  }
  .f3 {
    margin-top: -5vh;
  }
  .f3 h1 {
    font-size: 5vw;
  }
  .f3 p {
    font-size: 2.5vw;
    width: 75vw;
    margin-left: 12.5vw;
  }
  .i1 {
    margin-top: -10vh;
  }
  .i1 .card {
    height: 55vh;
    width: 40vw;
  }
  .i1 section img {
    width: 20vh;
    height: 20vh;
  }
  .i1 .card h1 {
    font-size: 3.5vw;
    margin-top: -5vh;
  }
  .i1 .card p {
    font-size: 2vw;
    width: 90%;
  }

  .f4 .input-container input {
    line-height: 5vh;
    width: 50vw;
  }
  .f4 .input-container textarea {
    line-height: 8vh;
    width: 50vw;
  }
  .f4 .form .submit {
    line-height: 3vw;
    width: 50vw;
  }
  .f4 .form-title {
    font-size: 5vw;
  }
  .f4 .title-2 {
    font-size: 4vw;
  }
  .f4 .img1 .text h1 {
    font-size: 4.5vw;
    margin-left: 4vw;
  }
  .f4 .img1 .text a {
    font-size: 2.5vw;
    margin-left: 4vw;
  }
  .f4 ul {
    margin-left: 2vw;
    margin-top: 10vh;
  }
  .example-2 .icon-content {
    margin: 0 -10px;
  }
  .example-2 .icon-content .tooltip {
    left: 70%;
  }
  .s1 h1 {
    font-size: 8vw;
    width: 90%;
  }
  .s1 p {
    font-size: 2vw;
  }
  .s4 {
    height: 170vh;
  }
  .s4 .card h1 {
    font-size: 2.8vw;
  }
  .s4 p {
    font-size: 2vw;
  }
  .title1 {
    width: 90vw;
    margin-left: 5vw;
  }
  .title1 h1 {
    font-size: 4vw;
  }
  .title2 {
    width: 90vw;
    margin-left: 5vw;
  }
  .title2 h1 {
    font-size: 4vw;
  }
  .n1 {
    height: 100vh;
  }
  .n1 h1 {
    font-size: 14vw;
  }
  .n1 p {
    font-size: 4vw;
    width: 60%;
  }
  .i12 {
    margin-top: -12vh;
  }
  .i12 h2 {
    font-size: 5vw;
  }
  .n2 {
    height: 100vh;
  }
  .goats .goats-container {
    height: 140vh;
  }
  .goats .name {
    font-size: 3vw;
    margin-top: 2vh;
  }
  .goats .position {
    font-size: 2vw;
    margin-top: 0vh;
  }
  .n3 span {
    font-size: 3.5vw;
  }
}
@media (max-width: 897px) {
  #lightning-card {
    height: 100vh;
  }
}
@media (max-width: 800px) {
  #mkt-card {
    height: 74vh;
  }
}

@media (max-width: 700px) {
  .header-social-icons {
    gap: 2px;
  }
  .header-social-icons a {
    width: 30px;
    height: 30px;
  }
  .header-social-icons a svg {
    width: 15px;
    height: 15px;
  }
  .header-social-icons a img {
    width: 19px;
    height: 19px;
  }
  .f3 {
    margin-top: -15vh;
  }
  .f3 h1 {
    font-size: 7vw;
  }
  .f3 p {
    font-size: 3vw;
    width: 90%;
    margin-left: 5vw;
  }
  .i1 .card {
    height: 50vh;
    width: 50vw;
  }
  .i1 .card h1 {
    margin-top: -8vh;
    font-size: 4vw;
  }
  .i1 .card p {
    font-size: 2.5vw;
    margin-top: -10vh;
  }
  .i12 {
    margin-top: -20vh;
    height: 50vh;
  }
  .i12 h2 {
    font-size: 6vw;
    margin-top: 10vh;
  }
  .soluciones-titulo {
    font-size: 2rem;
  }
  .soluciones-desc {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .soluciones-contenedor {
    align-items: center;
    gap: 2rem;
  }
  .solucion-card {
    min-width: unset;
    max-width: 99vw;
    padding: 1.2rem 0.7rem;
  }
  .solucion-header {
    align-items: flex-start;
    gap: 0.5rem;
  }
  .solucion-card h3 {
    font-size: 1.5rem;
    padding-left: 1rem;
    margin-top: 0.5rem;
  }
  .solucion-card ul {
    font-size: 1.1rem;
    padding-left: 1.5rem;
  }
  #lightning-bg {
    min-height: unset;
    max-height: unset;
  }
  #lightning-card {
    height: 110vh;
  }
  .f4 {
    flex-direction: column;
    height: 170vh;
    margin-top: -25vh;
  }
  .f4 .form {
    height: 170vh;
  }
  .f4 .form-title {
    font-size: 7.5vw;
  }
  .f4 .title-2 {
    font-size: 5vw;
  }
  .f4 .input-container input,
  .f4 .input-container textarea,
  .f4 .form .submit {
    width: 90vw;
  }
  .f4 .form .submit {
    line-height: 5vw;
  }
  .f4 .img1 {
    margin-top: 30vh;
  }
  .f4 .img1 .text {
    margin-left: -42vw;
    height: 50vh;
    width: 90%;
  }
  .f4 .img1 .text h1 {
    margin-left: -60vw;
    font-size: 8vw;
  }
  .f4 .img1 .text a {
    font-size: 4vw;
    margin-left: -58vw;
  }
  .f4 ul {
    margin-left: 44vw;
  }
  .example-2 .icon-content {
    margin: 0 50px;
  }
  .example-2 .icon-content .tooltip {
    left: -55vw;
  }
  .f5 {
    height: 5vh;
  }
  .s4 {
    margin-top: -10vh;
    height: 210vh;
  }
  .s4 .text4 {
    margin-top: 30vh;
  }
  .s4 .text4 h1 {
    font-size: 6vw;
  }
  .s4 .text4 p {
    font-size: 3vw;
  }
  .s4 main {
    margin-top: 10vh;
  }
  .s4 .card .card-text {
    font-size: 4.5vw;
  }
  .n1 {
    height: 80vh;
    margin-top: 10vh;
  }
  .n2 {
    height: 180vh;
    margin-top: 5vh;
  }
  .n2 .goats {
    flex-direction: column;
    align-items: center;
    height: 190vh;
    margin-top: 10vh;
  }
  .n2 .goats .goats-container {
    width: 100vw;
    margin-top: 0vh;
  }
  .goats .name {
    font-size: 4vw;
    margin-top: 3vh;
  }
  .goats .position {
    font-size: 3vw;
  }
  .draggables #barbabigote {
    display: none;
  }
  .draggables #bigote {
    top: 0;
    left: 12.5vw;
  }
  .draggables #lentes1 {
    top: 0;
    left: 42.5vw;
  }
  .draggables #sombreromex {
    top: 0;
    left: 72.5vw;
  }
  .draggables #lentes2 {
    display: none;
  }
  .draggables #sombrero {
    display: none;
  }
  .n3 {
    height: 60vh;
    margin-top: 10vh;
    margin-bottom: 10vh;
  }
  .n3 .ntexto span {
    font-size: 5vw;
  }

  #footer-container {
    height: 50vh;
    padding: 10px;
    flex-direction: column;
    margin-bottom: 0;
  }

  #footer-hashtag {
    font-size: 5vw;
    margin-top: 0vh;
  }
  .footer-bottom {
    font-size: 3vw;
  }
  .footer-links a,
  .footer-legal-links a {
    font-size: 3vw;
  }
  .footer-logo {
    display: none;
  }
}
@media (max-width: 600px) {
  .s4 {
    height: 180vh;
  }
  #mkt-card {
    height: 90vh;
  }
}
@media (min-width: 500px) {
  .i3 {
    display: none;
  }
}
@media (max-width: 499px) {
  header {
    height: 65px;
  }
  .logo-link {
    margin-left: 3vw;
  }
  .dropdown-menu {
    margin-top: -15px;
  }
  .dropdown-menu a {
    font-size: 7vw;
  }
  .header-social-icons a {
    background-color: transparent;
  }
  .header-social-icons a img {
    width: 28px;
    height: 28px;
  }
  .header-social-icons a:has(img) {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
  }
  .header-social-icons a svg {
    display: none;
  }
  html {
    max-width: 100vw;
  }
  .i1 {
    display: none;
  }
  .f1 h1 {
    font-size: 5vw;
    margin-top: -10vh;
    width: 90vw;
  }
  .i9 section {
    display: none;
  }
  .f1 h3 {
    font-size: 9vw;
    width: 90vw;
    margin-top: 0vh;
  }
  .f1 .cssbuttons-io-button {
    margin-top: 50vh;
  }
  .f3 {
    margin-top: -20vh;
  }
  .f3 .texto p {
    font-size: 4vw;
  }
  .solucion-card {
    height: 55vh;
  }
  #lightning-card {
    height: 130vh;
  }
  .arkas-btn-dinamico {
    font-size: 0.8rem;
  }
  .f4 {
    margin-top: -25vh;
    margin-bottom: -25vh;
  }
  .f4 .form-title {
    font-size: 8vw;
  }
  .f4 .title-2 {
    font-size: 6vw;
  }

  .f4 .input-container input,
  .f4 .input-container textarea,
  .f4 .form .submit {
    margin-left: -5vw;
  }
  .f4 .img1 .text {
    margin-top: -25vh;
    height: 40vh;
  }
  .f4 .img1 .text h1 {
    font-size: 7vw;
    margin-left: -65vw;
  }
  .f4 .img1 .text a {
    font-size: 5vw;
    margin-left: -65vw;
  }
  .f4 ul {
    margin-left: 52vw;
    margin-top: 4vh;
  }
  .radio-inputs {
    display: none;
  }
  .f5 {
    display: none;
  }

  .s1 {
    height: 80vh;
  }
  .s1 h1 {
    margin-top: 10vh;
    font-size: 10vw;
  }
  .s1 p {
    display: none;
  }
  .title1 {
    margin-top: 15vh;
  }
  .carousel-item {
    margin-top: -1.5vh;
  }
  .s5 {
    margin-top: 0;
    height: 100vh;
  }
  .s5 .carousel-container {
    margin-top: -6vh;
  }
  .s4 {
    margin-top: -20vh;
    height: 310vh;
  }
  .s4 .text4 {
    margin-top: 30vh;
  }
  .s4 .text4 h1 {
    font-size: 6.3vw;
  }
  .s4 .text4 p {
    font-size: 4vw;
    width: 70vw;
  }
  .s4 main {
    margin-top: 3vh;
  }
  .s4 .card .card-text {
    font-size: 6.5vw;
  }
  #custom-cursor {
    display: none;
  }
  .n1 {
    height: 90vh;
  }
  .n1 h1 {
    font-size: 18vw;
  }
  .n1 p {
    font-size: 8vw;
    width: 85vw;
  }
  .i12 {
    margin-top: -20vh;
    margin-bottom: 75vh;
  }
  .i12 h2 {
    font-size: 8vw;
  }
  .i12 h2::after {
    width: 100%;
    left: 0;
  }
  .n2 {
    margin-top: -10vh;
    height: 190vh;
  }
  .goats .goats-container img {
    width: 100%;
  }
  .draggables {
    top: -10vh;
    left: -4vw;
  }
  .draggables2 {
    top: -5vh;
    left: -5vw;
    margin-left: -10vw;
  }
  .goats {
    height: 220vh;
    width: 100vw;
    margin-top: 5vh;
  }
  .goats .goats-container {
    margin-top: 20vh;
    width: 80vw;
  }
  .goats .name {
    font-size: 8vw;
    margin-top: 3vh;
  }
  .goats .position {
    font-size: 6vw;
  }
  .n3 {
    margin-top: 0vh;
    height: 90vh;
  }
  .n3 .ntexto span {
    font-size: 7vw;
  }
  .social-icons section {
    gap: 4vw;
  }
}
