/* Fonte padrão */
body {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Banner Quem Somos */
  .banner-quemsomos {
    position: relative;
    margin-top:130px;
    width: 100%;
    height: 45vh;
    background: url('../imag/woman-wearing-suit-leads-visionary-business-pitch.webp') center 20% / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
  z-index: 1;
  margin-bottom: 100px;
  }
  
  .banner-quemsomos .overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(3, 4, 71, 0.4); /* Escurecimento */
    display: flex;
     flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .banner-quemsomos h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    z-index: 1;
  }
  
  .banner-quemsomos p {
    font-size: 20px;
    color:#f7f3f3;
    width: 600px;
    text-align: center;
    z-index: 1;
  }
  /* Responsividade do Banner */
  @media (max-width: 768px) {
    .banner-quemsomos {
      height: 40vh;
     margin-top: 65px;
    }
  
    .banner-quemsomos h1 {
      font-size: 1.7rem;
    }
     .banner-quemsomos p {
      display: none;

  }
  }
  
  @media (max-width: 480px) {
    .banner-quemsomos {
      height: 30vh;
    }
  
    .banner-quemsomos h1 {
      font-size: 1.5rem;
    }
    
  }
  
  /* =========================
   SECTION FORMAÇÕES
========================= */

.academy-services{
  width:100%;
  padding:100px 7%;
  background:
  linear-gradient(135deg,#f5f8ff 0%,#eef3ff 100%);
  overflow:hidden;
  position:relative;
  font-family: "Segoe UI", sans-serif;
}

/* EFEITO DECORATIVO */
.academy-services::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(0,78,255,0.06);
  border-radius:50%;
  top:-200px;
  right:-100px;
  filter:blur(10px);
}

.academy-container{
  max-width:1400px;
  margin:auto;
}

/* TÍTULO */
.academy-heading{
  text-align:center;
  margin-bottom:70px;
}

.academy-tag{
  display:inline-block;
  background:#bb0206;
  color:#fff;
  padding:8px 18px;
  border-radius:30px;
  font-size:13px;
  letter-spacing:1px;
  margin-bottom:18px;
}

.academy-heading h2{
  font-size:48px;
  color:#08254b;
  margin-bottom:15px;
  font-weight:800;
}

.academy-heading p{
  max-width:700px;
  margin:auto;
  color:#5d6d84;
  font-size:17px;
  line-height:1.7;
}

/* GRID */
.academy-content{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:40px;
  align-items:start;
}

/* MENU */
.academy-menu{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.academy-item{
  background:#fff;
  border-radius:22px;
  padding:28px 28px;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border:1px solid rgba(0,0,0,0.05);
  transition:0.4s ease;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
  position:relative;
  overflow:hidden;
}

.academy-item::before{
  content:"";
  position:absolute;
  width:0%;
  height:100%;
  left:0;
  top:0;
  background:linear-gradient(135deg,#0a4fc7,#08398f);
  transition:0.5s;
  z-index:0;
}

.academy-item span,
.academy-item i{
  position:relative;
  z-index:2;
}

.academy-item span{
  font-size:24px;
  font-weight:700;
  color:#08398f;
  line-height:1.3;
  transition:0.4s;
}

.academy-item i{
  font-style:normal;
  font-size:35px;
  color:#bb0206;
  transition:0.4s;
}

.academy-item:hover{
  transform:translateY(-4px);
}

.academy-item.active::before{
  width:100%;
}

.academy-item.active span,
.academy-item.active i{
  color:#fff;
}

/* PAINEL DIREITO */
.academy-details{
  background:#081f46;
  border-radius:35px;
  padding:70px;
  position:relative;
  overflow:hidden;
  min-height:500px;
  display:flex;
  align-items:center;
}

.academy-glow{
  position:absolute;
  width:350px;
  height:350px;
  background:rgba(0,110,255,0.25);
  border-radius:50%;
  top:-120px;
  right:-80px;
  filter:blur(20px);
}

.academy-details-content{
  position:relative;
  z-index:2;
  max-width:700px;
}

.academy-mini-title{
  color:#8db8ff;
  letter-spacing:2px;
  font-size:13px;
  display:block;
  margin-bottom:18px;
}

.academy-details h3{
  color:#fff;
  font-size:50px;
  line-height:1.2;
  margin-bottom:25px;
  font-weight:800;
}

.academy-details p{
  color:#d8e4ff;
  font-size:19px;
  line-height:1.9;
  margin-bottom:40px;
}

/* BOTÕES */
.academy-buttons{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.academy-buttons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 32px;
  background:#0a61ff;
  color:#fff;
  text-decoration:none;
  border-radius:14px;
  font-weight:600;
  transition:0.4s;
}

.academy-buttons a:hover{
  transform:translateY(-4px);
  background:#2c7dff;
}

.academy-outline{
  background:transparent !important;
  border:1px solid #bb0206;
}

/* RESPONSIVO */
@media(max-width:1100px){

  .academy-content{
    grid-template-columns:1fr;
  }

  .academy-details{
    min-height:auto;
  }

}

@media(max-width:768px){

  .academy-services{
    padding:80px 5%;
  }

  .academy-heading h2{
    font-size:36px;
  }

  .academy-item{
    padding:22px;
  }

  .academy-item span{
    font-size:20px;
  }

  .academy-details{
    padding:40px 30px;
    border-radius:25px;
  }

  .academy-details h3{
    font-size:34px;
  }

  .academy-details p{
    font-size:17px;
  }

}

@media(max-width:480px){

  .academy-heading h2{
    font-size:30px;
  }

  .academy-item span{
    font-size:18px;
  }

  .academy-item i{
    font-size:28px;
  }

  .academy-details h3{
    font-size:28px;
  }

  .academy-buttons{
    flex-direction:column;
  }

  .academy-buttons a{
    width:100%;
  }

}

/* BANNER PRINCIPAL */
.banner-coscame {
  position: relative;
  width: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 60px;

  background:
    linear-gradient(135deg, #0a2a66, #0e3a8a),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Crect width='200' height='200' fill='none' stroke='%23ffffff' stroke-opacity='0.04'/%3E%3C/svg%3E");
}

/* OVERLAY SUAVE */
.banner-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,0,0,0.08), transparent 60%);
}

/* CONTEÚDO */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  text-align: center;
  color: #fff;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.6;
  color: #e6ecff;
}

/* BOTÃO */
.banner-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #d90429, #bb0206);
  box-shadow: 0 15px 30px rgba(217,4,41,0.4);
  transition: all 0.3s ease;
}

.banner-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(217,4,41,0.55);
}

/* FORMAS DECORATIVAS */
.banner-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.35;
}

.shape-1 {
  width: 260px;
  height: 260px;
  background: #d90429;
  top: -80px;
  right: -80px;
}

.shape-2 {
  width: 180px;
  height: 180px;
  background: #ff2e2e;
  bottom: -60px;
  left: -60px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .banner-content h1 {
    font-size: 2.4rem;
  }

  .banner-content p {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .banner-coscame {
    min-height: 380px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-btn {
    padding: 12px 32px;
  }
}