/* ===== QUEM SOMOS ===== */

/* Hero Section */
.quem-somos-hero {
  background: #004968;
  padding: 6rem 0 4rem;
  color: white;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
  font-size: 1.25rem;
  color: #f97316;
}

.quem-somos-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.quem-somos-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* Nossa História */
.nossa-historia {
  padding: 5rem 0;
  background: white;
}

.content-box {
  padding-right: 2rem;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fef3c7;
  color: #92400e;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.section-badge i {
  font-size: 1.1rem;
}

.content-box h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.content-box strong {
  color: #f97316;
  font-weight: 700;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: #f97316;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s;
}

.stat-card:hover .stat-icon {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 2rem;
  color: #ea580c;
  transition: color 0.3s;
}

.stat-card:hover .stat-icon i {
  color: white;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #f97316;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 600;
}

/* Nosso Propósito */
.nosso-proposito {
  padding: 5rem 0;
  background: #f9fafb;
}

.nosso-proposito .content-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.nosso-proposito h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1.5rem;
}

/* MVV Section */
.mvv-section {
  padding: 5rem 0;
  background: white;
}

.mvv-card {
  background: white;
  border: 2px solid #f3f4f6;
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s;
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s;
}

.mvv-icon i {
  font-size: 2.5rem;
  color: white;
}

.mvv-icon.missao {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.mvv-icon.visao {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.mvv-icon.valores {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.mvv-card:hover .mvv-icon {
  transform: scale(1.1);
}

.mvv-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.mvv-card p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}

.cta-content {
  flex: 1;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin: 0;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
  padding: 1rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-cta-primary {
  background: #f97316;
  color: white;
}

.btn-cta-primary:hover {
  background: #ea580c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  color: white;
}

.btn-cta-secondary {
  background: white;
  color: #1f2937;
}

.btn-cta-secondary:hover {
  background: #f3f4f6;
  transform: translateY(-2px);
  color: #1f2937;
}

.btn-cta-primary i,
.btn-cta-secondary i {
  font-size: 1.5rem;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .quem-somos-hero h1 {
    font-size: 3rem;
  }

  .content-box h2 {
    font-size: 2rem;
  }

  .nosso-proposito h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .quem-somos-hero {
    padding: 4rem 0 3rem;
  }

  .quem-somos-hero h1 {
    font-size: 2.5rem;
  }

  .nossa-historia,
  .nosso-proposito,
  .mvv-section,
  .cta-section {
    padding: 3rem 0;
  }

  .content-box {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .content-box h2,
  .nosso-proposito h2 {
    font-size: 1.75rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .quem-somos-hero h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .mvv-card {
    padding: 2rem;
  }

  .mvv-icon {
    width: 70px;
    height: 70px;
  }

  .mvv-icon i {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }
}
