
        body {
              background: linear-gradient(to top, #fff, #fff); /* Gradiente de azul escuro para azul claro */
		    font-family: Arial, sans-serif;
            margin: 0;
            padding:0;
       
        }
        .container-4 {
            max-width: 1200px;
          height: 50%;
		    margin: 0px;
        
		    padding: 20px;
      
	    }
     
      
	  
	  h2 {
           
		  
       
	  font-size: 32px;
    color: #215373;
    font-weight: bold;
    margin: 0;
    text-align: center;
     line-height: 1.0;  
  margin-bottom: 20px;
	   
	   
	   
	   
	   
	   
	   
	    }
        .categorias {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .categorias button {
            padding: 10px 15px;
            border: none;
            cursor: pointer;
            background: #333;
            color: white;
            border-radius: 5px;
        }
        .categorias button:hover {
            background: #555;
        }
        .galeria-2 {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            transition: opacity 0.5s ease-in-out;
        }
        .galeria-2 img {
            width: 150px;
            height: 150px;
            object-fit: cover;
            cursor: pointer;
             border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
            transition: transform 0.3s;
        }
        .galeria-2 img:hover {
            transform: scale(1.1);
        }
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            justify-content: center;
            align-items: center;
        }
        .modal img {
            max-width: 90%;
            max-height: 80%;
                     border-top-left-radius:45px;
    border-bottom-right-radius: 45px;
        }
        .fechar {
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 30px;
            color: white;
            cursor: pointer;
        }
        .seta {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 30px;
            color: white;
            cursor: pointer;
            background: rgba(0, 0, 0, 0.5);
            padding: 10px;
            border-radius: 5px;
        }
        .seta.esquerda {
            left: 20px;
        }
        .seta.direita {
            right: 20px;
        }
