body, html {
  margin: 0;
  padding: 0;
  background: black;
  height: 100%;
}

.wrapper {
  width: 100%;
  height: 100%;
  max-height: 800px;
}
.wrapper section {
  width: calc(100%/ 4);
  height: 100%;
  float: left;
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
  position: relative;
}
.wrapper section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), transparent);
  opacity: 1;
  transition: 0.3s;
}

.wrapper section.active {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.wrapper section.active::before {
  opacity: 0;
}
.wrapper section.sec01:hover {
  background: url('../imagens/nos_adc.png');
}

.wrapper section.sec02:hover {
  background: url('../imagens/Imagem1.png');
}
.wrapper section.sec03:hover {
  background: url("../imagens/strongcho.png");
}
.wrapper section.sec04:hover {
  background: url("https://i.ytimg.com/vi/jZd4XkqL9OY/maxresdefault.jpg");
}
.wrapper section.sec01, .wrapper section.sec02, .wrapper section.sec03, .wrapper section.sec04 {
  background: linear-gradient(-155deg, #2D3B44 10%, #232C32 25%, #1C2124 40%, #181C1E 50%, #111111 90%, #111111 100%);
}
.wrapper section.sec02::before, .wrapper section.sec03::before, .wrapper section.sec04::before{
  border-left: 0.1px solid white;
}

.wrapper section.sec01, .wrapper section.sec02, .wrapper section.sec03, .wrapper section.sec04, 
.wrapper section.sec01:hover, .wrapper section.sec02:hover, .wrapper section.sec03:hover, .wrapper section.sec04:hover {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.sec01:hover .managementimgLink, .sec02:hover .csgolink, .sec03:hover .lollink, .sec04:hover .pupglink, .sec01:active .managementimgLink, .sec02:active .csgolink, .sec03:active .lollink, .sec04:active .pupglink, .wrapper img, .managementimgLink, .csgolink, .lollink, .pupglink {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 200px;
  height: 200px;<<
  /* 200 -240 px*/
  background-repeat: no-repeat;
  background-size: contain;
  top: 15%;
}

.sec01:hover .imgcenter, .sec02:hover .imgcenter, .sec03:hover .imgcenter, .sec04:hover .imgcenter, .sec01:active .imgcenter, .sec02:active .imgcenter, .sec03:active .imgcenter, .sec04:active .imgcenter  {
  display: none;
}

.text {
  display: block;
  position: relative;
  text-align: center;
  color: white;
  text-transform: uppercase;
  top: 25%;  
}

.sec01:hover .managementimgLink { 
  background: url('../imagens/icon_1.jpg');
  background-repeat: no-repeat;
  background-size: contain; 
  /*width: 200px;
  height: 200px;*/
}
.sec02:hover .csgolink {
  background: url('../imagens/gif.png');
  background-repeat: no-repeat;
  background-size: contain;
}
.sec03:hover .lollink {
  background: url('../imagens/icon_3.jpg');
    background-repeat: no-repeat;
  background-size: contain;
}
.sec04:hover .pupglink {
  background: url('https://i.pinimg.com/280x280_RS/df/98/be/df98be20c9424fa73449bcd4e4b86dd6.jpg');
    background-repeat: no-repeat;
  background-size: contain;
}
.sec01:active .managementimgLink {  
  background: url('../imagens/icon_1.jpg');  
    background-repeat: no-repeat;
  background-size: contain;
}
.sec02:active .csgolink {
  background: url('../imagens/gif.png');
    background-repeat: no-repeat;
  background-size: contain;
}
.sec03:active .lollink{
  background: url('../imagens/icon_3.jpg');
    background-repeat: no-repeat;
  background-size: contain;
}
.sec04:active .pupglink {
  background: url('https://i.pinimg.com/280x280_RS/df/98/be/df98be20c9424fa73449bcd4e4b86dd6.jpg');
    background-repeat: no-repeat;
  background-size: contain;
}

.diva {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px; /* Espaçamento entre as imagens */
  padding: 10px;
}

.img2 {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 2px solid #ccc;
  border-radius: 8px; /* Bordas arredondadas */
}
body {
  zoom: 75%; /* Ajusta a ampliação para 75% */
}


