* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'poppins', sans-serif;
      background-color: rgb(252, 250, 247);
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      display: flexbox;
      

    }
    
    header {
      background-color: #191970;
      color: white;
      padding: 1rem;
      text-align: justify;
    }

    nav {
      max-width: 1700px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 5px;
    
    }

   
    /* Menu padrão (desktop) */
    .menu {
      display: flex;
      gap: 1.5rem;
    }

    .menu a {
      color: white;
      text-decoration: none;
      font-weight: 500;
      font-size: 17px;
      color: white;
      
    }

    /* Botão hambúrguer oculto no desktop */
    .menu-toggle {
      display: none;
    }

    .hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 5px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: white;
      display: block;
      border-radius: 2px;
    }

    
    .warapper {
        margin: 150px auto;
        width: 70%;
        
    }

    .warapper img {
        max-width: 350px;
        float: left;
        opacity: 0.6;
        border: 5px solid ;
        border-radius: 20px;
        margin-right:55px;
        
    }

    .text-box h2 {
        font-size: 42px;
        
    }

    .text-box p {
        font-size: 16px;
        
    }

    .pe footer {
    background-color: #191970;
    color:white;
    text-align: center;
    padding: 5px;
    margin-top: 1px;
    font-size: 16px;
   }

    .pe footer {
    padding-top: 20px;
    margin-top: 531px;
    
   }   

/* Estilo para dispositivos móveis */
    @media (max-width: 480px) {
     
        body {
        background-color: rgb(252, 250, 247);

    }
   
       .menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 1rem 0;
        text-align: center;
        z-index: 1;
      }

      .menu-toggle:checked + .hamburger + .menu {
        display: flex;
        background-color:#00008B;
        
      }

      .hamburger {
        display: flex;
      }

     
     .warapper {
        margin: 25px ;
        width: 70%;
     }
     
      .warapper img {
        max-width: 350px;
        float: left;
        opacity: 0.6;
        border: 3px solid ;
        border-radius: 20px;
        margin-bottom: 30px;
        margin-right: 40px;
        margin-top: 25px;
        margin-right: 20px;

    }

     .text-box h2 {
        font-size: 16px;
        margin-left: 60px;
        text-align: justify;
        
        
        
     }

    .text-box p {
        font-size: 13px;
        margin-top: 10px;
        text-align: justify;
        margin-left: 60px;
        
    }
     
     

}

 