/* MOBILE - 480px para baixo */

@media (max-width: 480px) {
  .header {
    /* border: 1px solid blue; */
    display: none;
    height: auto;
    min-height: 100px;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem min(8vw, 4rem);
    padding-top: 50px;
  }

  .header left {
    display: flex;
    justify-content: space-between;
  }

  .header-left h2 {
    display: none;
    max-width: 16ch;
    font-size: clamp(0.7rem, 4vw, 1.2em);
  }

  .header-left .flags {
    display: none;
    gap: 0.3rem;
  }

  .header-left .flags img {
    width: 16px;
  }

  .status-box {
    font-size: 0.7rem;
    padding: 0.6rem 1rem;
  }

  .about {
    padding: 2rem min(10vw, 5rem);
  }

  .about-content {
    gap: 1rem;
  }

  .left {
    gap: 3rem;
  }
  .intro {
    /* border: 1px solid blue; */
    order: 2;
  }

  .intro h1 {
    font-size: clamp(2.5rem, 4.5vw, 4rem);
  }

  .logo {
    order: 1;
    width: 55px;
  }

  .links {
    display: none;
    order: 3;
    font-size: 1rem;
  }

  .right {
    gap: 1.2rem;
  }

  .right p {
    max-width: 50ch;
    font-size: 0.85rem;
    font-weight: 400;
  }

  .right h2 {
    max-width: 25ch;
    font-size: 1.3rem;
  }

  .icones {
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.4rem;
  }

  .icones a {
    font-size: 1.1rem;
  }
}