.wrapper {
  position: relative;
  width: 80vw;
  max-width:1200px;
  transform: translateX(-50%);
  left: 50%;
  display: flex;
  justify-content: space-around;
  gap: 10px;
  font-family: "Font Awesome 6 Free"!important;
}

.container {
width: 28vmin;
height: 28vmin;
display: flex;
flex-direction: column;
justify-content: space-around;
padding: 1em 0;
position: relative;
border-radius: 0.5em;
backdrop-filter: blur(10px);
box-shadow: -1px -1px 4px #aaa9a9a2, 1px 1px 7px rgba(147, 149, 151, 0.671);
  font-family: "Font Awesome 6 Free"!important; 
}

i{
  color: var(--azul);
  font-size: 3.8em;
  text-align: center;
  font-family: "Font Awesome 6 Free";
}
span.num {
color: var(--azul);
display: grid;
place-items: center;
font-weight: 600;
font-size: 3em;
}
span.text {
color: var(--azul);
font-size: 1.2em;
text-align: center;
}
@media screen and (max-width: 1024px) {
.wrapper {
  width: 85vw;
}
.container {
  height: 26vmin;
  width: 26vmin;
  font-size: 12px;
}
}
@media screen and (max-width: 768px) {
.wrapper {
  width: 90vw;
  flex-wrap: wrap;
  gap: 30px;
}
.container {
  width: calc(50% - 40px);
  height: 30vmin;
  margin-bottom: 25px;
  font-size: 14px;
}
}
@media screen and (max-width: 480px) {
.wrapper {
  gap: 15px;
}
.container {
  width: 100%;
  height: 25vmin;
  font-size: 8px;
  margin-bottom: 25px;
}
}