
@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;
  margin-top: 80px;
  width: 100%;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image:
    linear-gradient(to right, rgba(0, 28, 77, 0.95), rgba(0, 28, 77, 0.85)),
    url('../imag/businessman-holding-tablet-meeting.webp');
  background-position: center top; /* mantém o topo visível */
  background-size: cover; /* cobre toda a largura, sem espaços brancos */
  background-repeat: no-repeat;
  padding: 0 20px;
}

.banner-content {
  display: flex;
  justify-content: space-between;
  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: 1px solid #d4280a;
  border-radius: 50px;
  padding: 10px 20px;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-item .icon {
  font-size: 2rem;
  color: #d4280a;
}

.info-item h2 {
  margin: 0;
  font-size: 1.3rem;
  color: #fff;
}

.info-item p {
  margin: 0;
  font-size: 0.85rem;
  color: #ddd;
}

/* Media Queries para telas menores */
@media (max-width: 1024px) {
  .banner-content {
    margin-top: 70px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }

  .info-item h2 {
    font-size: 1.1rem;
  }

  .info-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .banner-quemsomos {
    height: auto;
    padding: 40px 20px;
    flex-direction: column;
  }

  .banner-content {
    flex-direction: column;
    margin-top: 50px;
    text-align: center;
  }

  .info-boxes {
    flex-direction: column;
    gap: 15px;
    padding: 15px;
  }

  .info-item {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .banner-quemsomos {
    margin-top: 70px;
  }
  .banner-content h1 {
    font-size: 1.7rem;
  }

  .info-item h2 {
    font-size: 1rem;
  }

  .info-item p {
    font-size: 0.75rem;
  }

  .info-boxes {
    padding: 10px;
  }
} 
  /* CONTAINER PRINCIPAL */
.sobre-editora .container-editora {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 0;
}

/* IMAGEM (ESQUERDA) */
.editora-imagem-central {
  flex: 0 0 40%; /* Ocupa 30% */
}

.editora-imagem-central img {
  width: 100%;
  height: 380px;
  border-radius: 8px;
  object-fit: cover;
}

/* TEXTO (DIREITA) */
.editora-parte.direita {
  flex: 0 0 50%; /* Ocupa 70% */
  text-align: justify;      /* JUSTIFICA O TEXTO */
  line-height: 1.8;         /* AUMENTA O ESPAÇAMENTO ENTRE LINHAS */
  font-size: 17px;    
}

.titulo-editora {
  font-size: 32px;
  margin-bottom: 35px;
}

/* RESPONSIVIDADE */
@media (max-width: 900px) {
  .sobre-editora .container-editora {
    flex-direction: column; /* Empilha */
    text-align: center;
  }

  .editora-imagem-central,
  .editora-parte.direita {
    flex: 0 0 100%;
  }

  .editora-parte.direita {
    text-align: left;
    padding: 0 15px;
  }
}

  .valores-section {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    overflow: hidden;
    margin-top: 100px;
    margin-bottom: 100px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #023d7c;
    margin-bottom: 60px;
    font-weight: 500;
  }
  
  /* Cards container */
  .valores-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  /* Individual card */
  .valor-card {
    background-color: #023d7c;
    color: #0f0f0f;
    width: 320px;
    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: #ffffff;
    margin-bottom: 15px;
  }
  
  /* Title */
  .valor-card h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  /* Description */
  .valor-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: justify;
    color:#ffffff;
  }
  
  .valores-lista {
    list-style-type: disc;
    text-align: left;
    margin: 10px 0 0 20px;
    padding: 0;
    line-height: 1.6;
    color: #ffffff;
    font-size: 15px;
  }
  
  /* Reveal active state */
  .valor-card.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Media Queries para responsividade */
  @media (max-width: 1024px) {
    .valores-section {
      margin-top: 150px;
    }
    .section-title {
      font-size: 2.2rem;
      margin-bottom: 50px;
      margin-top: 150px;
    }
  
    .valor-card {
      width: 280px;
      padding: 25px 15px;
    }
  
    .valor-card .icon {
      font-size: 50px;
    }
  
    .valor-card h3 {
      font-size: 1.3rem;
    }
  
    .valor-card p, .valores-lista {
      font-size: 0.9rem;
    }
  }
  
  @media (max-width: 768px) {
     .valores-container {
      gap: 25px;
      justify-content: center;
    }
  
    .valor-card {
      width: 100%;
      max-width: 320px;
      padding: 20px 15px;
    }
  }
  
  @media (max-width: 480px) {
    .section-title {
      font-size: 1.8rem;
      margin-bottom: 40px;
      margin-top: 150px;
    }
  
    .valor-card {
      padding: 15px 10px;
    }
  
    .valor-card .icon {
      font-size: 40px;
      margin-bottom: 10px;
    }
  
    .valor-card h3 {
      font-size: 1.2rem;
    }
  
    .valor-card p, .valores-lista {
      font-size: 0.85rem;
    }
  
    .valores-container {
      flex-direction: column;
      gap: 20px;
    }
  }
  