/* Estilizando a div */
        .top-centered {
            position: absolute; 
            top: 0;            
            left: 50%;         
            transform: translateX(-50%); 
            background-color: #f0f0f0; 
            padding: 20px;     
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); 
            text-align: center; 
			margin-top: 5px;
        }
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #f3f3f3;
      min-height: 100vh;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 10px;
      width: 90%;
      max-width: 1200px;
	  margin-top: 180px;
    }
    .grid img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
      cursor: pointer;
    }
    .grid img:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    /* Tela cheia */
    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      visibility: hidden;
      opacity: 0;
      transition: visibility 0.2s, opacity 0.2s;
    }
    .modal.ativo {
      visibility: visible;
      opacity: 1;
    }
    .modal img {
      max-width: 90%;
      max-height: 90%;
      border-radius: 10px;
    }
    .modal .controle {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      padding: 10px;
      cursor: pointer;
      font-size: 24px;
      border-radius: 50%;
      color: black;
      z-index: 1100;
    }
    .modal .anterior {
      left: 5%;
    }
    .modal .proximo {
      right: 5%;
    }
    .modal .fechar {
      position: absolute;
      top: 10px;
      right: 10px;
      background-color: rgba(255, 255, 255, 0.5);
      border: none;
      padding: 5px 10px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 5px;
      z-index: 1100;
    }