/* ==========================
   ESTILOS ESPECÍFICOS - PÁGINA QUEM SOMOS
========================== */

/* Hero Section */
.hero-quem {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 400px;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4);
}

.hero-quem .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.7);
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
  text-align: center;
  color: white;
}

.hero-logo {
  max-width: 280px;
  height: auto;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease forwards;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.3s;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* Nossa História */
.nossa-historia {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
}

.historia-content {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.historia-texto {
  text-align: justify;
}

.historia-paragrafo {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #1b263b;
}

.historia-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 2rem;
}

.stat-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(65, 90, 119, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #415a77;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #1b263b;
  font-weight: 600;
}

/* Missão, Visão e Valores */
.mvv-section {
  position: relative;
  padding: 5rem 0;
  background-image: url("../banner/solucoes.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.overlay-mvv {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85);
  z-index: 1;
  top: 0;
  left: 0;
}

.mvv-section .container {
  position: relative;
  z-index: 2;
}

.mvv-section .titulo-centralizado {
  color: white;
  margin-bottom: 3rem;
}

.mvv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mvv-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: white;
  transition: transform 0.3s ease, background 0.3s ease;
}

.mvv-card.full-width {
  grid-column: 1 / -1;
}

.mvv-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.mvv-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.mvv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #4ade80;
}

.mvv-card p {
  line-height: 1.6;
  font-size: 1rem;
}

.valores-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.valor-item {
  text-align: left;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.valor-item strong {
  color: #4ade80;
}

/* Diferenciais */
.diferenciais-section {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.diferencial-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diferencial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.diferencial-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  background: #415a77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.diferencial-item h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #1b263b;
}

.diferencial-item p {
  color: #415a77;
  line-height: 1.6;
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, #0d1b2a, #415a77);
  padding: 4rem 0;
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.botao-cta {
  background: #4ade80;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.botao-cta:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

/* Link ativo no menu */
.link.active {
  color: #4ade80 !important;
}

.link.active::before {
  transform: scaleX(1);
  background: #4ade80;
}

/* Responsividade */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-logo {
    max-width: 220px;
  }
  
  .historia-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .historia-stats {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stat-item {
    flex: 1;
    min-width: 120px;
  }
  
  .mvv-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .valores-grid {
    grid-template-columns: 1fr;
  }
  
  .diferenciais-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-quem {
    height: 50vh;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .nossa-historia {
    padding: 3rem 0;
  }
  
  .mvv-section {
    padding: 3rem 0;
  }
  
  .diferenciais-section {
    padding: 3rem 0;
  }
  
  .cta-section {
    padding: 3rem 0;
  }
}