/* DESKTOP PEQUENO - 1080px para baixo */

@media (max-width: 1080px) {
  .header {
    /* border: 1px solid blue; */
    height: auto;
    min-height: 300px;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem min(12vw, 6rem);
    gap: 1.5rem;
  }

  .header-left {
    /* border: 1px solid blue; */
    justify-content: space-between;
    width: 100%;
    gap: 1rem;
  }

  .header-left h2 {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .header-right {
  flex: none;
  width: 100%;
  align-items: flex-start; /* Esta é a chave! */
}

.status-box {
  width: auto;
  align-self: flex-start;
}

  .about {
    min-height: calc(100vh - 300px);
    padding: 1.5rem min(12vw, 6rem);
  }

  .about-content {
    /* border: 1px solid red; */
    flex-direction: column;
    gap: 4rem;
    min-height: auto;
  }

  .left {
    /* border: 1px solid blue; */
    flex: none;
    gap: 6rem;
  }

  .intro {
    order: 2;
  }

  .intro h1 {
    font-size: clamp(2rem, 8vw, 6rem);
    max-width: 15ch;
    line-height: 1.2;
  }

  .right {
    /* border: 1px solid blue; */
    flex: none;
  }

  .right p {
    max-width: 69ch;
    font-size: 1.2rem;
    font-weight: 350;
    line-height: 1.4;

  }

  .right h2 {
  width: 90%;
  font-size: 1.2rem;
}

  .logo {
    order: 1;
    width: clamp(80px, 5vw, 60px);
}

  .links {
    order: 3;
    justify-content: left;
    gap: clamp(1.5rem, 4vw, 3rem);
    font-size: 1.2rem;
  }

  .icones {
    /* justify-content: center; */
    gap: 2rem;
  }
}