.quemsomos-section {
  background: #031d49;
  padding: 80px 20px;
  color: white;
  font-family: 'Montserrat', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.destaque-azul {
  font-size: 2.8rem;
  font-weight: 700;
  color: #00a0e1;
  margin: 0;
  line-height: 1.2;
}

.team-profile {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.profile-image {
  flex: 0 0 40%;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding-left: 20px; /* Mover Direita ou Esquerda */
  pointer-events: none;         /* Bloqueia clique com botão direito */
  user-select: none;
  -webkit-user-drag: none;      /* Safari */
}

.profile-content {
  flex: 1;
  padding: 40px;
}

.profile-content h4 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: #00a0e1;
}

.subtitulo {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.profile-details p {
  line-height: 1.6;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .team-profile {
    flex-direction: column;
  }

  .profile-image {
    width: 100%;
  }

  .destaque-azul {
    font-size: 2rem;
  }
}
