nav {
  background-color: #222;
  color: white;
  padding: 12px 0;
  margin: 0;
  position: relative;
  }
  
  .navbar-menu {
     list-style: none;
     display: flex;
     justify-content: center;
     align-items: flex-end;
     height: 40px; 
     gap: 30px;
     margin: 0;
     padding: 0;
     
  }
  
  .navbar-menu li a {
     color: white;
     text-decoration: none;
     font-weight: bold;
     font-size: 16px;
  }

  .wave-bottom-navbar {
    height: 50px;
    position: relative;
    line-height: 0;
    z-index: 1;
    margin-top: 0px; /* Essa linha aqui é o truque ninja */
    margin-bottom: -2px; /* encosta o banner na onda */
    }
    
    .wave-bottom-navbar svg {
       display: block;
       width: 100%;
       height: 100%;
    }

    .wave-top {
      height: 100px;
      overflow: hidden;
      line-height: 0;
      }
      
      .wave-top svg {
      display: block;
      width: 100%;
      height: 100px;
      }

      footer {
        background: #222;
        color: white;
        text-align: center;
        padding: 20px;
        position: relative;
        }
        /* Animação no rodapé */
footer:hover {
   background: linear-gradient(135deg, #222, #222);
   animation: pulse 1.5s infinite; /* Pulsar suave */
 }
 
 @keyframes pulse {
   0% { transform: scale(1); }
   50% { transform: scale(1.05); }
   100% { transform: scale(1); }
 }