@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@400;500;600&display=swap');

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
}

/* Container do carrossel */
.banner-formacao {
  position: relative;
  height: 540px;
  overflow: hidden;
  margin-top: 110px; /* espaço para o header fixo */
}

/* Cada slide */
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
}

.banner-slide.active {
  opacity: 1;
}

/* Faixa diagonal azul */
.banner-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(to right, rgba(107, 70, 2, 0.85), rgba(1, 19, 119, 0.85));
  clip-path: polygon(0 0, 85% 0, 65% 100%, 0% 100%);
  z-index: 1;
}

/* Conteúdo do banner */
.banner-content {
  position: relative;
  z-index: 2;
  width: 600px;
  padding: 20px;
  color: #fff;
}

.banner-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 120px;
}

/* Container principal */
.industrial-section {
  padding: 40px 20px;
}

.industrial-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Moldura azul em paralelogramo */
.industrial-image {
  position: relative;
  flex: 1 1 45%;
}

.image-bg {
  background: #004aad; /* Azul */
  width: 100%;
  height: 100%;
  clip-path: polygon(8% 0, 100% 0, 85% 100%, 0% 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Imagem diagonal por cima */
.image-wrapper {
  position: relative;
  z-index: 2;
  margin: 15px 0 15px -10px; 
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  clip-path: polygon(0 0, 90% 0, 80% 100%, 0% 100%);
}

/* Texto */
.industrial-text {
  flex: 1 1 50%;
}

.industrial-text h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.industrial-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Botão */
.industrial-btn {
  display: inline-block;
  background: linear-gradient(to right, #023d7c, #f7b724);
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.industrial-btn:hover {
  background: #e64300;
}

/* Responsivo */
@media (max-width: 768px) {
  .industrial-container {
    flex-direction: column;
    text-align: center;
    margin-top: -100px;
  }

  .image-bg {
    clip-path: none;
  }

  .image-wrapper {
    margin: 0;
  }

  .image-wrapper img {
    clip-path: none;
  }

  .industrial-text h2 {
    font-size: 1.5rem;
  }
}
.services-section {
  width: 100%;
  margin: 0 auto;
  padding: 60px 100px;
  text-align: center;
  background-color: #111;
  color: #fff;
}

.services-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.services-header p {
  max-width: 700px;
  margin: auto;
  font-size: 1rem;
  line-height: 1.5;
  color: #ccc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-item {
  background: #1b1b1b;
  padding: 20px;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  position: relative;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.service-icon {
  width: 100%;
  height: 300px; /* altura maior */
  object-fit: cover;
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 1.2rem;
  color: #f7b724;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.5;
}

/* Responsivo */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* Efeito de transição */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
}
.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.parcerias-section {
  position: relative;
  background: url('../imag/pessoas-de-negocios-na-africa-apertando-as-maos.webp') no-repeat center center/cover;
  height: 350px; /* Ajuste conforme necessário */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 150px;
  color: white;
  margin-top: 100px;
  margin-bottom: 100px;
}

.parcerias-overlay {
  background: rgba(0, 0, 0, 0.2); /* Efeito escuro */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.parcerias-conteudo {
  max-width: 500px;
}

.parcerias-conteudo h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.parcerias-conteudo p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.parcerias-btn {
  display: inline-block;
  background: linear-gradient(to right, #023d7c, #f7b724);
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.parcerias-btn:hover {
  background: #c72d00;
}

/* Responsivo */
@media (max-width: 768px) {
  .parcerias-section {
    height: auto;
    padding: 40px 20px;
  }

  .parcerias-conteudo h3 {
    font-size: 1.5rem;
  }

  .parcerias-conteudo p {
    font-size: 0.95rem;
  }
}

.noticias-section {
  background: linear-gradient(90deg, #0a367c, #cfa634);
  padding: 50px 20px;
  color: white;
  text-align: center;
  position: relative;
}

.noticias-section h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}

.noticias-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: bold;
}

/* Slider */
.slider-container {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.slide-card {
  background: white;
  border-radius: 15px;
  color: #000;
  min-width: calc(33.333% - 20px);
  margin: 0 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease-in-out;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Estado visível com animação */
.slide-card.show {
  opacity: 1;
  transform: translateY(0);
}

.slide-card:hover {
  transform: translateY(-5px);
}

.slide-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.slide-content {
  padding: 15px;
  text-align: left;
}

.slide-content h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 14px;
  line-height: 1.4;
  color: #333;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #0a367c, #cfa634);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: white;
  font-size: 18px;
  transition: background 0.3s ease;
}

.arrow:hover {
  background: radial-gradient(circle, #cfa634, #0a367c);
}

.arrow-left { left: 10px; }
.arrow-right { right: 10px; }

/* Responsividade */
@media (max-width: 992px) {
  .slide-card {
      min-width: calc(50% - 20px);
  }
}

@media (max-width: 600px) {
  .slide-card {
      min-width: 100%;
  }
}

/* Responsivo: um serviço por linha no mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 30px;
  }

  .hero-banner {
    height: auto;
    padding: 60px 0;
  }

  .bannr-overlay {
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
  }

  .banner-content {
    max-width: 100%;
    text-align: center;
  }

  .btn-banner {
    display: inline-block;
    margin-top: 10px;
  }
}

/* Efeito de transição suave (PowerPoint style) */
.fade-in {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Responsividade */
@media (max-width: 768px) {
  .imagem {
    height: 150px;
  }
}

/* Responsividade */
@media (max-width: 992px) {
  .services-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .services-grid {
      grid-template-columns: 1fr;
  }
  .services-header h2 {
      font-size: 1.5rem;
  }
}
/* Responsivo */
@media (max-width: 768px) {
  .banner-slide {
    height: 75%;
  }
  .banner-overlay::before {
    display: none; /* some no mobile */
  }
  .banner-content {
    background: rgba(0, 0, 0, 0.2); /* leve contraste no texto */
    padding: 10px;
    border-radius: 8px;
    margin-top: 0px;
  }
  .banner-content h1 {
    font-size: 1.5rem;
  }
  .banner-formacao {
    margin-top: 60px;
  }
}

.clientes-relevantes {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.clientes-relevantes h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.clientes-relevantes p {
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 10px;
}

.clientes-relevantes .linha {
  width: 40px;
  height: 3px;
  background: #fbbd08;
  margin: 0 auto 30px;
}
.logos-clientes {
  overflow: hidden;
  width: 100%;
  background: #fff; /* opcional */
}

.logos-track {
  display: flex;
  width: calc(150px * 12); /* largura = número de logos × tamanho */
  animation: scroll 20s linear infinite;
}

.logos-clientes img {
  max-width: 150px;
  height: auto;
  margin: 0 20px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logos-clientes img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsivo */
@media (max-width: 768px) {
  .logos-clientes img {
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .logos-clientes img {
    max-width: 100px;
    margin: 0 10px;
  }
}
/* Responsivo */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Container do carrossel */
.banner-formacao {
  position: relative;
  height: 450px;
  overflow: hidden;
  margin-top: 20px; /* espaço para o header fixo */
}

/* Cada slide */
.banner-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: flex;
  align-items: center;
}

.banner-slide.active {
  opacity: 1;
}

/* Faixa diagonal azul */
.banner-overlay {
  position: relative;
  width: 100%;
  height: 100%;
}

.banner-overlay::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(to right, rgba(107, 70, 2, 0.85), rgba(1, 19, 119, 0.85));
  clip-path: polygon(0 0, 85% 0, 65% 100%, 0% 100%);
  z-index: 1;
}

/* Conteúdo do banner */
.banner-content {
  position: relative;
  z-index: 2;
  width: 400px;
  padding: 20px;
  color: #fff;
}

.banner-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  margin-top: 120px;
}
.industrial-container {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 700px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Moldura azul em paralelogramo */
.industrial-image {
  position: relative;
  flex: 1 1 45%;
}
.industrial-text h2 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 15px;
}

.industrial-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: justify;
}

}

.imagem-full {
  width: 100%;                        /* ocupa toda a largura da tela */
  margin-left: calc(50% - 50%);        /* puxa para as bordas do site */
  overflow: hidden;
}

.imagem-full img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;                    /* cobre a área sem distorcer */
}

@media (max-width: 768px) {
  .imagem-full img {
    height: auto;                        /* ajusta automaticamente em tablets */
  }
}

@media (max-width: 480px) {
  .imagem-full img {
    height: auto;                        /* garante boa exibição em telemóveis */
  }
}

