/* Quem Somos Page Styles */

/* Header adjustments */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 50px;
}

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #1e3c72;
}

.btn-anuncie {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.btn-anuncie:hover {
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 150px 0 100px;
  text-align: center;
  margin-top: 80px;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main Content */
main {
  min-height: calc(100vh - 80px);
}

.section {
  padding: 80px 0;
}

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

.section-title {
  font-size: 2.5rem;
  color: #1e3c72;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Nossa História Section */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-text h2 {
  font-size: 2.5rem;
  color: #1e3c72;
  margin-bottom: 2rem;
  text-align: left;
}

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

.content-text strong {
  color: #1e3c72;
  font-weight: 600;
}

.content-image {
  text-align: center;
}

.content-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.content-image img:hover {
  transform: translateY(-10px);
}

/* MVV Section */
.mvv-section {
  background: #f8f9fa;
}

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.mvv-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mvv-card:hover {
  transform: translateY(-10px);
  border-color: #1e3c72;
  box-shadow: 0 20px 60px rgba(30, 60, 114, 0.15);
}

.mvv-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

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

.mvv-card h3 {
  font-size: 1.8rem;
  color: #1e3c72;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.mvv-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.mvv-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.mvv-card li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.mvv-card li strong {
  color: #1e3c72;
  font-weight: 600;
}

/* Números Section */
.numeros-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
}

.numeros-section .section-title {
  color: white;
}

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.numero-card {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.numero-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.numero-valor {
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 0.5rem;
}

.numero-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Equipe Section */
.equipe-section {
  background: white;
}

.equipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.membro-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.membro-card:hover {
  transform: translateY(-10px);
  background: white;
  border-color: #1e3c72;
  box-shadow: 0 20px 60px rgba(30, 60, 114, 0.1);
}

.membro-foto {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #1e3c72;
}

.membro-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membro-card h4 {
  font-size: 1.5rem;
  color: #1e3c72;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cargo {
  font-size: 1rem;
  color: #666;
  font-weight: 500;
  margin-bottom: 1rem;
}

.descricao {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Compromisso Section */
.compromisso-section {
  background: #f8f9fa;
}

.compromisso-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.compromisso-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.compromisso-item:hover {
  transform: translateY(-10px);
  border-color: #1e3c72;
  box-shadow: 0 20px 60px rgba(30, 60, 114, 0.15);
}

.compromisso-item i {
  font-size: 3rem;
  color: #1e3c72;
  margin-bottom: 1.5rem;
}

.compromisso-item h4 {
  font-size: 1.5rem;
  color: #1e3c72;
  margin-bottom: 1rem;
  font-weight: 600;
}

.compromisso-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  text-align: center;
}

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

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: #ffd700;
  color: #1e3c72;
}

.btn-primary:hover {
  background: #ffed4e;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: white;
  color: #1e3c72;
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: #1e3c72;
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.footer-column p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-column a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 0 1rem;
  }
  
  nav ul {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .hero {
    padding: 120px 0 80px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero h2 {
    font-size: 1.2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .content-text h2 {
    text-align: center;
    font-size: 2rem;
  }
  
  .mvv-grid {
    grid-template-columns: 1fr;
  }
  
  .numeros-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .equipe-grid {
    grid-template-columns: 1fr;
  }
  
  .compromisso-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .mvv-card {
    padding: 2rem 1.5rem;
  }
  
  .numero-card {
    padding: 1.5rem;
  }
  
  .numero-valor {
    font-size: 2.5rem;
  }
  
  .membro-card {
    padding: 1.5rem;
  }
  
  .compromisso-item {
    padding: 2rem 1.5rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .numeros-grid {
    grid-template-columns: 1fr;
  }
}
