@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Maven+Pro:wght@400..900&family=Montserrat:wght@400;600;700&display=swap");

body,
html {
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  width: 100%;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.hero-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-family: "Inter", sans-serif;
  width: 100%;
  padding: 50px 20px;
  height: auto;
  flex-shrink: 0;
  animation: updown 1000ms;
}

.hero {
  display: flex;
  width: 100%;
  max-width: 600px;
  padding: 20px 0;
  margin-top: 50px;
  margin-left: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 14px;
}

.label {
  display: flex;
  padding: 8px 16px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 7px;
  background: #f5f5f5;
  animation: leftright 800ms;
}

.labelp {
  color: #00accd;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: -0.12px;
}

.title {
  color: #000;
  font-family: "Maven Pro", sans-serif;
  font-size: 35px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  animation: leftright 1000ms;
}

.description {
  width: 100%;
  color: #787272;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  animation: leftright 1200ms;
}

.buttons {
  display: flex;
  padding-top: 8px;
  align-items: center;
  gap: 14px;
  animation: leftright 1000ms;
}

.other {
  border: none;
  border-radius: 10px;
  background: var(--Neutral-10, #fff);
  color: #00accd;
  padding: 8px 16px;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.176px;
  cursor: pointer;
}

.demo:hover {
  background: #39d7f7;
}

.other:hover {
  background: #f5f5f5;
}

.img-hero {
  margin-top: 50px;
  width: 100%;
  max-width: 500px;
  display: flex;
  height: auto;
  padding: 5px;
  margin-left: 60px;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  animation: rightleft 1000ms;
}
::-webkit-scrollbar {
  width: 5px; /* Ancho de la barra de desplazamiento */
}
::-webkit-scrollbar-thumb {
  background: #c0c0c0;
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 50px 40px;
  }
  .hero {
    align-items: center;
    text-align: center;
  }

  .img-hero {
    margin-left: 20px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 50px 20px;
  }

  .img-hero {
    margin-top: 30px;
    margin-left: 0;
    justify-content: center;
  }
  .image_hero {
    max-width: 400px;
  }

  .hero {
    margin-left: 0;
    align-items: center;
    text-align: center;
  }

  .description {
    width: 100%;
  }

  .buttons {
    flex-direction: row;
    font-size: 12px;
  }

  .buttons button {
    border-radius: 20px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 28px;
  }

  .labelp {
    font-size: 16px;
  }
}

/*-------------Animaciones--------------*/

@keyframes leftright {
  0% {
    transform: translateX(-500px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes rightleft {
  0% {
    transform: translateX(500px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes updown {
  0% {
    transform: translateY(-500px);
  }
  100% {
    transform: translateY(0px);
  }
}
