 /* Seção de boas-vindas com imagem de fundo */
.boas-vindas {
  background: url('apex_logo.jpg') no-repeat center center;
  background-size: cover;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.boas-vindas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6); /* escurece a imagem para melhor leitura */
  z-index: -1;
}

.boas-vindas .conteudo-limitado {
  max-width: 1000px;
  margin: 0 auto;
  color: white;
  text-align: justify;
}

.boas-vindas h1 {
  font-size: 36px;
  margin-bottom: 30px;
}

.boas-vindas p {
  font-size: 18px;
  line-height: 1.6;
}

/* Estratégias de BI */
.estrategias {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.estrategias h2 {
  font-size: 30px;
  color: #002f6c;
  margin-bottom: 40px;
}

.grade-estrategias {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

.grade-estrategias div {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.grade-estrategias div:hover {
  transform: translateY(-5px);
}

.grade-estrategias h3 {
  font-size: 20px;
  color: #002f6c;
  margin-bottom: 10px;
  font-weight: 700;
}

.grade-estrategias p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}

/* Galeria de projetos */
.galeria-projetos {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.galeria-projetos h2 {
  font-size: 32px;
  color: #002f6c;
  margin-bottom: 50px;
}

.projeto-detalhado {
  max-width: 1000px;
  margin: 0 auto 80px auto;
  background-color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
}

.projeto-detalhado img {
  width: 100%;
  height: auto;
  display: block;
}

.projeto-detalhado .descricao {
  padding: 30px;
}

.projeto-detalhado .descricao h3 {
  font-size: 28px;
  color: #002f6c;
  margin-bottom: 15px;
}

.projeto-detalhado .descricao p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
}

.lista-apex {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.lista-apex li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.5;
  color: white; /* cor do texto da lista */
}

.lista-apex li::before {
  content: "\2714"; /* Unicode de check ✔ */
  position: absolute;
  left: 0;
  top: 2px;
  color: white; /* ícone branco */
  font-size: 1rem;
} 
.swiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: #002f6c;
}

.swiper-pagination-bullet-active {
  background: #002f6c;
}
/* Estilo do Swiper */
.swiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  top: 45%;
  transform: translateY(-50%);
  color: #002f6c;
  z-index: 10;
}

/* Setas menores e mais discretas no mobile */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    top: 35%;
  }

  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 24px; /* menor que o padrão de ~44px */
    opacity: 0.7; /* um pouco mais sutil */
  }
}

.swiper-pagination-bullet-active {
  background: #002f6c;
}
.grid-imagens {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 20px;
}

.grid-imagens img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

