
@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: 100px;
  width: 100%;
  height: 45vh;
  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/RETRATO.webp');
  background-position: center;
  background-size: cover;
  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 #f1c40f;
  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: #f7b724;
}

.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;
  }
}
 
  .quem-somos-section {
    padding: 60px 20px;
    background-color: #fff;
    display: flex;
    justify-content: center;
  }
  
  .quem-somos-card {
    display: flex;
    align-items: flex-start;
    gap: 150px;
    max-width: 1000px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 40px;
    box-sizing: border-box;
  }
  
  .qs-icon-title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .icon-circle {
    width: 60px;
    height: 60px;
    background-color: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-circle i {
    color: white;
    font-size: 24px;
  }
  
  .qs-icon-title h2 {
    font-size: 30px;
    font-weight: 800;
    margin-top: 15px;
    color: #000;
    text-align: center;
  }
  
  .qs-content {
    flex: 1 1 500px;
    text-align: justify;
  }
  
  .qs-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #222;
    margin-bottom: 15px;
  }
  
  .qs-content strong {
    font-weight: 700;
  }
  
  .titulo-editora-centro {
    text-align: center;
    font-size: 36px;
    color: #f7b724;
    font-weight: 500;
    margin-bottom: 40px;
    animation: fadeIn 1.2s ease-in-out forwards;
    opacity: 0;
  }
  
  .container-editora.estilizada {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .editora-parte {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    animation: slideInText 1.2s ease-in-out forwards;
    opacity: 0;
  }
  
  .editora-parte.esquerda {
    animation-delay: 0.3s;
  }
  
  .editora-parte.direita {
    animation: slideInRight 1.2s ease-in-out forwards;
    animation-delay: 0.3s;
  }
  
  .editora-parte p {
    font-size: 18px;
    color: #000000;
    line-height: 2;
    text-align: justify;
  }
  
  .editora-imagem-central {
    flex: 1;
    text-align: center;
    animation: zoomInImage 1.5s ease-in-out forwards;
    opacity: 0;
  }
  
  .editora-imagem-central img {
    max-width: 100%;
    max-height: 350px;
    transition: transform 0.4s ease;
  }
  
  .editora-imagem-central img:hover {
    transform: scale(1.05);
  }
  
  
  /* Transição diferente */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Animações */
  @keyframes slideInText {
    0% {
      transform: translateY(40px);
      opacity: 0;
    }
    100% {
      transform: translateY(0px);
      opacity: 1;
    }
  }
  
  @keyframes zoomInImage {
    0% {
      transform: scale(0.7);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @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);
    }
  }
  
  /* Responsivo */
  @media (max-width: 992px) {
    
  .titulo-editora-centro {
    font-size: 24px;
  }
    .container-editora.estilizada {
      flex-direction: column;
      align-items: center;
    }
  
    .editora-parte {
      max-width: 100%;
      text-align: center;
    }
  
    .editora-parte p {
      font-size: 16px;
    }
  
    .editora-imagem-central img {
      max-height: 300px;
    }
  }
    
  @media (max-width: 768px) {
    .linha {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .base {
      max-width: none;
    }
      .quem-somos-card {
      margin-top: 50px;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 30px; /* gap reduzido em mobile */
      padding: 0 20px;
    }
  
    .qs-icon-title h2 {
      font-size: 20px; /* título menor */
    }
  
    .qs-content p {
      font-size: 16px; /* texto menor */
      text-align: justify;
    }
  }
  
  .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: #023d7c;
    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: #f7b724;
    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);
  }