.hero {
  position: relative;
  min-height: 100vh;
  padding: 130px 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background-color: #191919;
  color: #ffffff;
}

.hero-background {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: flex-end;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(25, 4, 2, 0.94) 0%,
    rgba(25, 4, 2, 0.8) 46%,
    rgba(25, 4, 2, 0.8) 76%,
    rgba(25, 4, 2, 0.8) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 54px;
}

.hero-copy {
  width: 58%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker {
  margin-bottom: 14px;
  color: #ffd47b;
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-title {
  max-width: 950px;
  color: #ffffff;
  font-family: "PT Serif", Georgia, serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 71px;
  letter-spacing: 0;
}

.hero-text {
  max-width: 760px;
  margin-top: 28px;
  color: #f3f0ee;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
}

.hero-ecosystem {
  width: 480px;
  height: 480px;
  min-width: 480px;
  position: relative;
  display: flex;
  flex: 0 0 auto;
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-orbit-one {
  width: 450px;
  height: 450px;
}

.hero-orbit-two {
  width: 350px;
  height: 350px;
  border-color: rgba(255, 212, 123, 0.28);
}

.hero-orbit-three {
  width: 250px;
  height: 250px;
}

.hero-student {
  width: 155px;
  height: 155px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.student-icon {
  color: #ffd47b;
  font-size: 48px;
  line-height: 34px;
}

.hero-student strong {
  color: #ffffff;
  font-size: 23px;
  font-weight: 500;
  line-height: 26px;
}

.hero-node {
  width: 104px;
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-align: center;
}

.hero-node span {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background-color: rgba(6, 6, 6, 0.82);
  color: #ffd47b;
  font-size: 28px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease;
}

.hero-node:hover span {
  transform: translateY(-4px);
}

.hero-node small {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.hero-node-materias {
  top: 0;
  left: 188px;
}

.hero-node-evaluacion {
  top: 90px;
  right: 0;
}

.hero-node-soporte {
  right: 0;
  bottom: 90px;
}

.hero-node-pagos {
  bottom: 0;
  left: 188px;
}

.hero-node-expediente {
  bottom: 90px;
  left: 0;
}

.hero-node-docentes {
  top: 90px;
  left: 0;
}

.hero-node-evaluacion span,
.hero-node-pagos span {
}

.hero-node-soporte span,
.hero-node-docentes span,
.hero-node-expediente span,
.hero-node-materias span {
  background-color: rgba(23, 23, 23, 0.86);
}

.hero-pillars {
  max-width: 780px;
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-pillars span {
  flex: 1 1 220px;
  min-height: 66px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
}

@media (max-width: 1360px) {
  .hero-title {
    font-size: 66px;
    line-height: 67px;
  }

  .hero-ecosystem {
    width: 430px;
    height: 430px;
    min-width: 430px;
  }

  .hero-orbit-one {
    width: 400px;
    height: 400px;
  }

  .hero-orbit-two {
    width: 315px;
    height: 315px;
  }

  .hero-orbit-three {
    width: 230px;
    height: 230px;
  }

  .hero-student {
    width: 140px;
    height: 140px;
  }

  .hero-node-materias,
  .hero-node-pagos {
    left: 163px;
  }

  .hero-node-evaluacion,
  .hero-node-docentes {
    top: 78px;
  }

  .hero-node-soporte,
  .hero-node-expediente {
    bottom: 78px;
  }
}

@media (max-width: 1180px) {
  .hero {
    padding-top: 120px;
    padding-bottom: 116px;
  }

  .hero-title {
    font-size: 50px;
    line-height: 51px;
  }

  .hero-kicker {
    font-size: 19px;
    line-height: 25px;
  }

  .hero-background img {
    width: 76%;
  }

  .hero-container {
    align-items: flex-end;
    gap: 34px;
  }

  .hero-copy {
    width: 58%;
  }

  .hero-ecosystem {
    width: 360px;
    height: 360px;
    min-width: 360px;
  }

  .hero-orbit-one {
    width: 335px;
    height: 335px;
  }

  .hero-orbit-two {
    width: 265px;
    height: 265px;
  }

  .hero-orbit-three {
    width: 190px;
    height: 190px;
  }

  .hero-student {
    width: 118px;
    height: 118px;
  }

  .student-icon {
    font-size: 38px;
    line-height: 28px;
  }

  .hero-student strong {
    font-size: 19px;
    line-height: 22px;
  }

  .hero-node {
    width: 86px;
  }

  .hero-node span {
    width: 52px;
    height: 52px;
    font-size: 23px;
  }

  .hero-node small {
    font-size: 12px;
    line-height: 16px;
  }

  .hero-node-materias,
  .hero-node-pagos {
    left: 137px;
  }

  .hero-node-evaluacion,
  .hero-node-docentes {
    top: 66px;
  }

  .hero-node-soporte,
  .hero-node-expediente {
    bottom: 66px;
  }
}

@media (max-width: 1020px) {
  .hero {
    padding-top: 140px;
    padding-bottom: 88px;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 42px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-ecosystem {
    align-self: center;
  }
}

@media (max-width: 760px) {
  .hero-title {
    font-size: 46px;
    line-height: 48px;
  }

  .hero-text {
    font-size: 19px;
    line-height: 26px;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 100vh;
    padding: 152px 20px 72px;
  }

  .hero-background img {
    width: 100%;
    opacity: 0.55;
  }

  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 38px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-title {
    font-size: 40px;
    line-height: 42px;
    letter-spacing: 0;
  }

  .hero-kicker {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 2px;
  }

  .hero-text {
    font-size: 18px;
    line-height: 25px;
  }

  .hero-pillars span {
    flex-basis: 100%;
    min-height: auto;
    padding: 16px 18px;
    font-size: 17px;
    line-height: 23px;
  }

  .hero-ecosystem {
    width: 300px;
    height: 300px;
    min-width: 300px;
    align-self: center;
  }

  .hero-orbit-one {
    width: 280px;
    height: 280px;
  }

  .hero-orbit-two {
    width: 220px;
    height: 220px;
  }

  .hero-orbit-three {
    width: 160px;
    height: 160px;
  }

  .hero-student {
    width: 96px;
    height: 96px;
  }

  .student-icon {
    font-size: 30px;
    line-height: 23px;
  }

  .hero-student strong {
    font-size: 16px;
    line-height: 19px;
  }

  .hero-node {
    width: 74px;
    gap: 6px;
  }

  .hero-node span {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hero-node small {
    font-size: 11px;
    line-height: 14px;
  }

  .hero-node-materias,
  .hero-node-pagos {
    left: 113px;
  }

  .hero-node-evaluacion,
  .hero-node-docentes {
    top: 55px;
  }

  .hero-node-soporte,
  .hero-node-expediente {
    bottom: 55px;
  }
}

@media (max-width: 360px) {
  .hero-ecosystem {
    width: 270px;
    height: 270px;
    min-width: 270px;
  }

  .hero-orbit-one {
    width: 252px;
    height: 252px;
  }

  .hero-orbit-two {
    width: 198px;
    height: 198px;
  }

  .hero-orbit-three {
    width: 144px;
    height: 144px;
  }

  .hero-student {
    width: 88px;
    height: 88px;
  }

  .hero-node {
    width: 68px;
  }

  .hero-node span {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .hero-node-materias,
  .hero-node-pagos {
    left: 101px;
  }

  .hero-node-evaluacion,
  .hero-node-docentes {
    top: 48px;
  }

  .hero-node-soporte,
  .hero-node-expediente {
    bottom: 48px;
  }
}
