@media (max-width: 800px) {
  html,
  body {
    background-color: #0C6A64;
    grid-template-columns: 1fr;
    overflow-x: hidden;
    overflow-y: auto;
    min-height: 100vh;
  }

  #container-profile {
    width: 380px;
    height: 350px;
  }

  .profile {
    gap: 12px;
    padding: 0px;
    flex-direction: column;
  }

  .profile h1 {
    width: 380px;
    text-align: center;
  }

  .botoes-profile,
  .botao-profile {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    height: 42px;
    width: 360px;
    padding: 0;
    box-sizing: border-box;
    justify-content: center;
    margin: 0 auto;
    font-weight: 500;
    margin-top: 6px;
  }

  .botao-profile a {
    width: 380px;
  }

  #typewriter {
    display: none;
  }

  #container-lives {
    margin: 0px auto;
    width: 100%;
  }

  ul {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    height: 46px;
    width: 380px;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    font-size: 1rem;
    border-radius: 20px;
    width: 160px;
    height: 42px;
    padding: 0;
    text-decoration: none;
    color: #fff;
    margin-top: 12px;
  }

  .kick a::before,
  .twitch a::before,
  .yt a::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .kick a {
    border: 2px solid #00282e;
  }

  .twitch a {
    border: 2px solid #00282e;
  }

  .yt a {
    border: 2px solid #00282e;
  }

  .sociais {
    margin: 0;
    margin-top: 16px;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  #container-sociais {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
  }

  .links-sociais {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .links-sociais span {
    display: none;
  }

  .links-sociais a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.2s ease;
  }

  .links-sociais a:hover {
    transform: scale(1.2);
    background: #e4b929;
  }

  .links-sociais img {
    width: 32px;
    height: 32px;
    display: block;
  }

  footer {
    text-align: center;
    justify-content: center;
    font-size: 1rem;
    padding: 0;
    margin: 0;
    height: 0px;
  }

.avatar-canto {
display: none;
  }
}

/* responsivo acima de 1440px */

@media (min-width: 1440px) {
  .botoes-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .botao-profile {
    width: 180px;
    height: 48px;
  }

  .profile {
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  #container-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}









