/* SOBRE DESTAQUE */
.sobre-destaque {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.titulo-destaque {
  font-size: 2.2rem;
  font-weight: 700;
  color: #004d26;
  line-height: 1.3;
}

/* CONTADORES */
.contadores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0;
}

.contador-item {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.contador-item:hover {
  transform: translateY(-5px);
}

.numero {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #004d26;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.rotulo {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  font-weight: 600;
}

/* COLUNAS FLEX (novidade) */
.sobre-destaque .row {
  align-items: stretch;
}

.sobre-destaque .col-lg-6 {
  display: flex;
  flex-direction: column;
}

.valores-card,
.diferenciais-card {
  flex: 1;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* VALORES */
.valores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  max-width: 800px;
}

.valor-item {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 77, 38, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
}

.valor-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 77, 38, 0.12);
  border-color: rgba(0, 77, 38, 0.3);
}

.icone-valor {
  font-size: 2rem !important;
  color: #004d26;
  margin-bottom: 1rem;
  background: rgba(0, 77, 38, 0.1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valor-item span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-top: auto;
}

/* DIFERENCIAIS */
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  align-items: stretch;
}

.diferencial-item {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 77, 38, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.diferencial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 77, 38, 0.12);
  border-color: rgba(0, 77, 38, 0.3);
}

.diferencial-item img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
}

.diferencial-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004d26;
  margin-bottom: 0.5rem;
}

.diferencial-item p {
  font-size: 0.95rem;
  color: #555;
}

/* BOTÃO */
.btn-historia {
  display: flex;
  justify-content: center;
  padding: 2px 48px;
  background-color: #004d26;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #004d26;
  margin: 30px auto 0;
  max-width: 350px;
  box-shadow: 0 15px 12px rgba(0, 77, 38, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-historia:hover {
  background-color: transparent;
  color: #004d26;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 77, 38, 0.3);
}

.btn-historia::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%, -50%);
  transform-origin: 50% 50%;
}

.btn-historia:hover::after {
  animation: ripple 1s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .valores-grid,
  .diferenciais-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valor-item {
    min-height: 100px;
    padding: 1rem;
  }

  .icone-valor {
    width: 50px;
    height: 50px;
    font-size: 1.5rem !important;
  }

  .btn-historia {
    padding: 10px 24px;
    margin: 30px auto 0;
  }
}
/* Estilo do menu e seletor de idiomas */
.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin-left: 20px;
}

.language-selector {
  display: flex;
  gap: 5px;
  margin-left: 20px;
}

.language-selector a {
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 3px;
  text-transform: uppercase;
  font-size: 0.8em;
}

.language-selector a.active {
  background-color: #0066cc;
  color: white;
  border-color: #0066cc;
}

/* Responsividade */
@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .nav-list {
    flex-direction: column;
  }
  
  .nav-list li {
    margin: 10px 0;
  }
  
  .language-selector {
    margin: 20px 0 0 0;
    justify-content: center;
  }
}