@media only screen and (max-width: 480px) {
    .logo {
      width: 10%;
    }
  }
  
  body {
    font-family: Arial, sans-serif;
    padding: 0;
    margin: 0;
    height: 100vh;
  }
  
  #header {
    background-color: green;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  #header img {
    margin-right: 20px;
  }
  
  .menu {
    background-color: lightgreen;
    list-style: none;
    display: flex;
    margin: 0;
    width: 100%;
    justify-content: flex-end;
  }
  
  .menu li {
    position: relative;
    margin-right: 20px;
  }
  
  .menu li a {
    color: #333;
    text-decoration: none;
    padding: 10px 10px;
  }
  
  .menu li a:hover {
    background: green;
    color: #fff;
    text-shadow: 0px 0px 5px #fff;
  }
  
  .menu li ul {
    position: absolute;
    top: 25px;
    left: 0;
    background-color: lightgreen;
    display: none;
    margin: 10px 0 0 0;
    padding: 0;
    margin-top: 12px;
  }
  
  .menu li:hover ul,
  .menu li.over ul {
    display: block;
  }
  
  .menu li ul li {
    display: block;
  }
  
  .logo {
    width: 65px;
    height: auto;
    margin: 0;
    padding: 0;
    max-width: 100%;
    min-width: 65px;
    max-height: 65px;
  }
  
  .logo:hover {
    opacity: 0.5;
    box-shadow: 1px 1px 1px #321AB8;
  }
  
  h1 {
    text-align: center;
  }
  
  .footer {
    background-color: green;
    color: white;
    padding: 20px;
    margin: 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    max-height: 10%;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
  }
  
  .footer-section {
    width: calc(33.33% - 10px);
  }
  
  .footer-section h3 {
    margin-bottom: 10px;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li {
    display: inline-block;
  }
  
  .titulo {
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  
  .t1 {
    display: inline-block;
  }
  
  .login {
    text-align: right;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    background-color: #eee;
    border-radius: 5px;
  }
  .login:hover {
    background-color: #ccc;
    color: white;
  }

  .footer-section img {
    width: 20px;
    height: auto;
  }
  
  .logo2 {
    width: 5%; /* ou outro valor que você preferir */
  }
    
  .imagem {
    width: 250px;
    height: auto;
    margin: 0;
    padding: 0;
    max-width: 100%;
    
  }