@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700&display=swap');

*{
  font-family: 'Montserrat', sans-serif;
  padding: 0;
  margin: 0;
}

.header{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #13242E;
}

.primary-text{
  color: white;
  font-weight: 300;
  font-size: 5rem;
}

.secondary-text{
  color: #fff; 
  font-weight: 300; 
  font-size: 2.5rem;
}

.bg-blur{
    background-image: url("../img/back.png");
    height: 650px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.text-icon{
  font-size: 1.5rem;
  color: #FFF;
}

.btn-hero{
  width: 250px;
  height: 60px;
  border: none;
  background: #00d2e6;
  color: #FFF;
  font-weight: 500;
  font-size: 1.3rem;
  transition: 0.2s;
  -webkit-box-shadow: 2px 4px 9px 4px rgba(0,0,0,0.35);
  -moz-box-shadow: 2px 4px 9px 4px rgba(0,0,0,0.35);
  box-shadow: 2px 4px 9px 4px rgba(0,0,0,0.35);
}

.btn-hero:hover{
  font-size: 1.35rem;
  width: 260px;
  transition: 0.2s;
}

.btn-hero-2{
  width: 250px;
  height: 60px;
  border: none;
  background: #00d2e6;
  color: #FFF;
  font-weight: 500;
  font-size: 1.3rem;
  transition: 0.2s;
}

.btn-hero-2:hover{
  background: #00a8b8;
  transition: 0.2s;
}

.hover:hover{
  cursor: pointer;
  opacity: 1!important;
  transition: .2s;
}

footer{
  background: #13242E;
}

.parceria{
  display: flex;
  justify-content: center;
  height: 180px;
  color: #13242E;
  flex-direction: column;
  align-items: center;
  width: 300px;
}

a > img:hover{
  cursor: pointer;
}

.parceria h2{
  font-weight: 300;
  font-size: 1.4rem;
  text-transform: uppercase;
  text-align: center;
}

.upFooter{
  justify-content: space-between;
}

.btn-uniftec{
  border: none;
  background: #1B3582;
  color: #FFF;
  margin: 10px 0;
  width: 110px;
  height: 30px;
  border-radius: 10px;
}

.unifitec{
  display: flex;
  gap: 10px;
  align-items: center;
}

/* cssJvascript */

[data-anime]{
  opacity: 0;
  transition: .6s;
}

[data-anime="up"]{
  transform: translate3d(0, 100px, 0);
}

[data-anime].animate {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.card{
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: justify;
  overflow: hidden;
}

.card h4{
  display: flex;
  font-size: 0.8rem;
  color: #fff;
  background: #9CA3AF;
  width: 90px;
  height: 19px;
  border-radius: 5px;
  margin-top: 10px;
  font-weight: bold;
  justify-content: center;
  align-items: center;
}

.card h3{
  font-weight: 300;
}

.card img{
  width: 90%;
  margin: 10px;
  border-radius: 5px;
}

.card p{
  padding: 5px 15px;
}

.card-end{
  width: 50%;
  height: 4vh;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(20,171,209);
  background: linear-gradient(90deg, rgba(20,171,209,1) 0%, rgba(3,216,248,1) 48%, rgba(8,227,245,1) 100%);
  border-radius: 5px;
  text-align: center;
  color: #fff;
  text-decoration: none;
  transition: .2s;
}

.card-end:hover{
  opacity: .8;
  transition: .2s;
  cursor: pointer;
}

.middle-page {
  background: url(../img/bgBlur.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  gap: 10px;
}

.middle-page--items{
  display: flex;
  gap: 25px;
  font-size: 1.5rem;
}

.middle-items{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.middle-items p{
  margin:0;
}

.card-content{
  width: 100%;
  height: 100%;
  position: absolute;
  background: #13242ee5;
  backdrop-filter: blur(5px);
  border-radius: 5px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 15px;
  opacity: 0;
  transition: .5s;
}

.card:hover .card-content{
  opacity: 1;
  transition: .5s;
}

.items-structure{
  width: 600px;
  margin: 50px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.items-structure h2{
  font-size: 2rem;
  font-weight: bold;

}

.items-4{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.items-4 h3{
  font-size: 1rem;
  font-weight: bold;
  margin: 5px;
}


