#contato {
      padding: 10px 0;
      text-align: center;
      width: 100%;
      height: 65vh;
      line-height: 40px;
}

#contato .logo {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 30px
}

#contato .logo img {
      width: 200px;
      height: auto;
}

/* Animação da logo */
@keyframes girar {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
}
