/* HERO */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter',sans-serif;
    background:#f6f6f6;
    color:#13233b;
    overflow-x:hidden;
}

.hero{
  height:100vh;
  background:url('../Imagens/HeroInsitucional.png') center/cover;
  position:relative;
  display:flex;
  align-items:center;
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.55);
}

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.hero-content{
  position:relative;
  z-index:2;
  color:#fff;
  width:90%;
  max-width:700px;
  margin-left:5%;
}

.hero-content span{
  color:#7bd1ff;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:2px;
}

.hero-content h1{
  font-size:60px;
  line-height:1.1;
  margin:20px 0;
}

.hero-content p{
  font-size:18px;
  line-height:1.8;
  margin-bottom:35px;
}

.btn{
  display:inline-block;
  padding:15px 35px;
  background:#0097d8;
  color:#fff;
  text-decoration:none;
  border-radius:50px;
  transition:.3s;
}

.btn:hover{
  background:#0077aa;
}

/* SOBRE */

.sobre{
  padding:30px 0;
}

.sobre-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.tag{
  color:#57A695;
  font-size:14px;
  text-transform:uppercase;
  font-weight:600;
  letter-spacing:1px;
}

.sobre-text h2,
.diferencial-text h2,
.section-title h2{
  font-size:42px;
  margin:20px 0;
  line-height:1.2;
}

.sobre-text p,
.diferencial-text p{
  line-height:1.9;
  margin-bottom:20px;
  color:#666;
}

.sobre-image{
    height:250px;
    overflow:hidden;

    border-radius:20px;
}

.sobre-image video{
    width:100%;
    height:100%;

    object-fit:cover;


}

.diferencial-image img{
    width:100%;
    border-radius:20px;
}

/* NÚMEROS */

.numeros{
  background:#f5f9fc;
  padding:80px 0;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

.card{
  background:#fff;
  padding:40px 20px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.card h3{
  color:#0097d8;
  font-size:38px;
  margin-bottom:10px;
}

/* MISSÃO */

.missao{
  padding:50px 0;
}

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#0097d8;
  text-transform:uppercase;
  font-size:14px;
  font-weight:600;
}

.missao-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.missao-card{
  background:#fff;
  border:1px solid #eee;
  padding:40px;
  border-radius:20px;
  transition:.3s;
}

.missao-card:hover{
  transform:translateY(-5px);
}

.missao-card h3{
  margin-bottom:20px;
  font-size:28px;
}

.missao-card p{
  color:#666;
  line-height:1.8;
}

/* DIFERENCIAL */

.diferencial{
  padding:50px 0;
  background:#f8fbfd;
}

.diferencial-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.diferencial-text ul{
  margin-top:25px;
}

.diferencial-text li{
  margin-bottom:15px;
  color:#555;
}

/* RESPONSIVO */

@media(max-width:992px){

  .sobre-grid,
  .diferencial-grid,
  .cards,
  .missao-grid{
    grid-template-columns:1fr;
  }

  .hero-content h1{
    font-size:42px;
  }

  .sobre-text h2,
  .diferencial-text h2,
  .section-title h2,
  .cta h2{
    font-size:32px;
  }

}