@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Montserrat:wght@400;500;600&display=swap');

body {
  font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
/* Banner Quem Somos */
.banner-quemsomos {
  position: relative;
  width: 100%;
  height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(to right,   rgba(24, 46, 61, 0.85),
    rgba(24, 46, 61, 0.85)),
    url('../imag/female-engineers-working.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0 20px;
}

.banner-content {
  display: flex;
  justify-content:center;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  color: #fff;
  flex-wrap: wrap;
  margin-top: 100px;
}

.banner-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.info-boxes {
  display: flex;
  gap: 20px;
  background-color: transparent;
  border: 2px solid #E69600;
  border-radius: 50px;
  padding: 10px 20px;
  flex-wrap: wrap;
  justify-content: center; /* 🔥 centraliza horizontal */
  align-items: center;     /* 🔥 centraliza vertical */
  text-align: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item .icon {
  font-size: 2rem;
  color: #E69600;
}

.info-item h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
}

.info-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #ddd;
}

/* Responsividade */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .info-boxes {
    flex-direction: column;
    align-items: center;
    border-width: 1.5px;
  }
}
  
  @keyframes slideInRight {
    from {
      transform: translateX(50px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
/* ===== SEÇÃO ===== */
.estrutura {
  padding: 80px 20px;
  background: #f7f7f7;
  font-family: 'Poppins', sans-serif;
  margin-bottom:60px;
}

.estrutura-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== IMAGEM ===== */
.estrutura-imagem {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
}

.estrutura-imagem img {
  width: 360px;
  height: 360px;
  object-fit: cover;
  border-radius: 50%;
  border: 10px solid #1d3340;
  z-index: 2;
}

/* círculo decorativo */
.circulo-decorativo {
  position: absolute;
  left: -30px;
  bottom: 40px;
  width: 120px;
  height: 120px;
  background: #1d3340;
  border-radius: 50%;
  z-index: 1;
}

/* ===== CONTEÚDO ===== */
.estrutura-conteudo {
  flex: 2;
  background: #e69600;
  padding: 50px 60px;
  position: relative;
  color: #1d3340;
}

.estrutura-conteudo h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.estrutura-conteudo .linha {
  display: block;
  width: 60px;
  height: 6px;
  background: #1d3340;
  margin-bottom: 25px;
}

.estrutura-conteudo p {
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
  text-align: justify;
}

/* detalhe quadrado */
.estrutura-conteudo::after {
  content: "";
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  height: 20px;
  background: #1d3340;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .estrutura-container {
    flex-direction: column;
    text-align: center;
  }

  .estrutura-imagem img {
    width: 280px;
    height: 280px;
  }

  .estrutura-conteudo {
    padding: 40px 30px;
  }

  .estrutura-conteudo p {
    max-width: 100%;
  }

  .estrutura-conteudo .linha {
    margin: 0 auto 25px;
  }
}

@media (max-width: 480px) {
  .estrutura-imagem img {
    width: 220px;
    height: 220px;
  }

  .estrutura-conteudo h2 {
    font-size: 26px;
  }

  .estrutura-conteudo p {
    font-size: 15px;
  }
}

  .valores-section {
    background-color: #fff;
    padding: 20px 20px;
    text-align: center;
    overflow: hidden;
    margin-top: 100px;
  }

  .section-title {
    font-size: 2.5rem;
    color: #f7b724;
    margin-bottom: 60px;
    font-weight: 500;
  }
  
  /* Cards container */
  .valores-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  /* Individual card */
  .valor-card {
    background-color: #1d3340;
    color: #fff;
    width: 300px;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(50px);
  }
  
  /* Icon styling */
  .valor-card .icon {
    font-size: 60px;
    color: #E69600;
    margin-bottom: 15px;
  }
  
  /* Title */
  .valor-card h3 {
    font-size: 1.5rem;
    color: #f5f4f4;
    margin-bottom: 15px;
  }
  
  /* Description */
  .valor-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
  }
  
  /* Reveal active state */
  .valor-card.active {
    opacity: 1;
    transform: translateY(0);
  }