#tabelaContatos {
  color: white;
  transition: 0.5s;
  overflow: auto;

  position: fixed;
  right: 0;
  top: 0;

  border-radius: 10px;
  height: 100%;
  width: 100%;

  background-color: #003319;
  z-index: 10;

  .header {
    padding-top: 15px;
    padding-left: 25px;
    padding-right: 25px;
    img {
      height: 60px;
      z-index: 11;
    }

    img:nth-child(2) {
      transform: translate(0, -10px);
      height: 80px;
      margin-right: 10px;
      float: right;
    }
  }

  .nav {
    margin-left: 30px;
    margin-right: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #98C99C;

    h2 {
      text-align: center;
      margin-left: 15px;

      color: #98C99C;
    }
    
    p {
      text-align: center;
    }
  }

  .main {
    margin-top: 20px;
    padding-left: 25px;
    padding-right: 25px;

    .introducao {
      h2 {
        margin-bottom: 10px;
      }
      p {
        line-height: 23px;
      }
      > div {
        margin-top: 20px;
        border-bottom: 1px solid #98C99C;

        section {
          margin: 10px 0;
          padding: 10px;
          display: flex;
          align-items: center;
          background-color: #002613;
          border-radius: 10px;

          .bi {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 40px;
            width: 40px;
            font-size: 27px;
            margin-right: 15px;
            border-radius: 50%;
            background-color: #519a57;
          }

          div {
            p:nth-child(1) {
              color: #98C99C;
              font-size: 19px;
              margin-bottom: 5px;
            }
            p:nth-child(2) {
              color: white;
              font-size: 18px;
              margin-bottom: 10px;
            }}
        }}
    }
  }

  .footer {}
}

.anima_contato {
  transform: translate(-100%);
}

.simone, .cesar {
  background-color: #002613;
  margin-top: 20px;
  padding: 20px;
  border-radius: 15px;
  gap: 20px;

  .sobreEle {
    display: flex;
    gap: 30px;

    img {
      height: 100px;
      border-radius: 50%;
    }

    > div {
      h2 {
        margin-bottom: 8px;
      }

      .bi-code-slash {
        transform: translate(0, 3px);
      }

      .funcao-contato {
        display: flex;
        align-items: center;
        display: inline-block;
        padding: 5px 10px;
        border-radius: 10px;
        background-color: #00401f;
      }

      p {
        margin-bottom: 8px;
        line-height: 25px;
      }
    }
  }

  .tipoContatos {
    display: flex;
    align-items: center;
    gap: 20px;

    section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
      padding: 10px 0;
      border-radius: 10px;
      max-width: 420px;
      background-color: #00401f;

      .bi {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 20px;
        width: 20px;
        font-size: 27px;
        margin-left: 5px;
        height: 25px;
        width: 25px;
      }

      .bi-whatsapp {
        color: #06ca2b;
      }
      .bi-discord {
        color: #5c68fa;
      }

      a {
        font-size: 20px;
        color: white;
      }
    }
  }
}

.footer {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-bottom: 30px;

  > div {
    display: flex;
    flex-wrap: none;
    gap: 20px;
    width: 80%;
    margin-top: 20px;
    padding: 20px;
    border-radius: 15px;
    background-color: #002613;

    img {
      height: 60px;
      width: 60px;
    }
    div {
      h2 {
        font-size: 20px;
        color: #98C99C;
      }

      p {
        line-height: 25px;
      }}}
}