/* =============================================
   Quem Somos Page Styles
   ============================================= */

/* Hero */
.qs-hero {
  background-color: #142740;
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.qs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1F68C7 0%, #142740 60%);
  opacity: 0.6;
  pointer-events: none;
}

.qs-hero .custom-container {
  position: relative;
  z-index: 1;
}

.qs-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.qs-hero .subtitle {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.5;
}

/* Shared section spacing */
.qs-section {
  padding: 64px 0;
  border-bottom: 1px solid #E5E7EB;
}

.qs-section svg, .qs-content-section svg {
  height: 24px;
  width: auto;
}

.qs-section:last-child {
  border-bottom: none;
}

/* Two-column sections (Quem Somos / Nossa Equipe) */
.qs-two-col {
  display: flex;
  gap: 48px;
  align-items: center;
}

.qs-two-col .qs-img-placeholder {
  flex: 0 0 300px;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.qs-two-col .qs-img-placeholder i {
  font-size: 64px;
  color: #9CA3AF;
}

.qs-two-col .qs-text-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1F68C7;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
}

.qs-two-col .qs-text-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 12px;
}

.qs-two-col .qs-text-block p:last-child {
  margin-bottom: 0;
}

/* Mission / Vision / Values cards */
.qs-cards-row {
  display: flex;
  gap: 24px;
}

.qs-card {
  flex: 1;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px 24px;
  background-color: #fff;
}

.qs-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5E7EB;
  margin-bottom: 16px;
}

.qs-card-header i {
  font-size: 24px;
  color: #1F68C7;
}

.qs-card-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1F68C7;
}

.qs-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #374151;
}

.qs-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qs-card ul li {
  font-size: 14px;
  font-weight: 500;
  color: #1F68C7;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.qs-card ul li i {
  color: #16A34A;
  font-size: 14px;
}

/* Content section */
.qs-content-section {
  padding: 64px 0;
  border-bottom: 1px solid #E5E7EB;
}

.qs-content-section .section-title {
  font-size: 22px;
  font-weight: 700;
  color: #1F68C7;
  text-align: center;
  margin-bottom: 40px;
}

.qs-icon-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.qs-icon-grid .qs-icon-card {
  flex: 0 0 calc(33.333% - 14px);
}

.qs-icon-card {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 28px 16px 20px;
  text-align: center;
  background-color: #fff;
}

.qs-icon-card i {
  font-size: 36px;
  color: #1F68C7;
  margin-bottom: 16px;
  display: block;
}

.qs-icon-card span {
  font-size: 13px;
  font-weight: 500;
  color: #142740;
  line-height: 1.4;
}

/* Commitment banner */
.qs-commitment {
  background-color: #142740;
  padding: 48px 0;
}

.qs-commitment .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.qs-commitment-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.qs-commitment-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.qs-commitment-item i {
  color: #16A34A;
  font-size: 18px;
}

/* Fale Conosco */
.qs-contact {
  padding: 64px 0;
  text-align: center;
}

.qs-contact h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1F68C7;
  margin-bottom: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E5E7EB;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.qs-contact p {
  font-size: 15px;
  color: #374151;
  margin-bottom: 28px;
}

.qs-contact .default-btn {
  max-width: 220px;
  margin: 0 auto;
  background-color: #16A34A;
}

.qs-contact .default-btn:hover {
  background-color: #15803D;
  color: #fff;
  opacity: 1;
}

.qs-content-section .section-subtitle {
  text-align: center;
  font-size: 15px;
  color: #374151;
  margin-bottom: 32px;
  margin-top: -24px;
}

/* Commitment tagline */
.qs-commitment-tagline {
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-style: italic;
  margin-top: 28px;
}

/* Disclaimer */
.qs-disclaimer {
  padding: 32px 0;
  background-color: #F9FAFB;
  border-top: 1px solid #E5E7EB;
}

.qs-disclaimer-text {
  font-size: 13px;
  line-height: 1.7;
  color: #6B7280;
  margin-bottom: 16px;
}

.qs-disclaimer-text i {
  color: #1F68C7;
  margin-right: 6px;
}

.qs-policy-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.qs-policy-links a {
  font-size: 13px;
  color: #1F68C7;
  text-decoration: none;
}

.qs-policy-links a:hover {
  text-decoration: underline;
}

.qs-policy-links span {
  color: #9CA3AF;
}

/* Values list - description inline */
.qs-card ul li span {
  font-weight: normal;
  color: #374151;
}

.qs-card ul li span strong {
  color: #1F68C7;
}

/* Responsive */
@media (max-width: 991px) {
  .qs-hero h1 {
    font-size: 36px;
  }

  .qs-cards-row {
    flex-direction: column;
  }

  .qs-icon-grid .qs-icon-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 767px) {
  .qs-hero {
    padding: 56px 0 40px;
  }

  .qs-hero h1 {
    font-size: 28px;
  }

  .qs-hero .subtitle {
    font-size: 15px;
  }

  .qs-two-col {
    flex-direction: column;
    gap: 28px;
  }

  .qs-two-col .qs-img-placeholder {
    flex: none;
    width: 100%;
    height: 180px;
  }

  .qs-icon-card {
    flex: 1 1 calc(50% - 20px);
  }

  .qs-commitment-items {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
