.chave-na-mao-section {
  padding: 40px !important;
  background: #fff;
}
.chave-header {
  text-align: center;
  margin-bottom: 60px;
}
.chave-header h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.chave-header p {
  font-size: 18px;
  color: #444;
  max-width: 880px;
  margin: 0 auto;
}

.chave-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 80px;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.chave-texto {
  flex: 1 1 60%;
  text-align: justify;
}
.chave-texto h2 {
  font-size: 28px;
  margin-bottom: 20px;
  position: relative;
}
.chave-texto h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #009245;
  display: block;
  margin-top: 10px;
}
.chave-texto p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #333;
}



.chave-beneficios {
  flex: 1 1 35%;
  background: #009245;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  color: #fff;
}

.chave-beneficios h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
}

.chave-beneficios ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.chave-beneficios li {
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 400;
}



/* Seção com os 6 cards "Por que escolher a Bramiar" */
.chave-escolher {
  max-width: 1080px;
  margin: 80px auto 20px;
}

.chave-escolher h2 {
  text-align: center;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
}

.chave-escolher-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Card base */
.chave-card {
  background-color: #f0f0f0;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Card alternado (se quiser usar zebra visual clara no futuro) */
.chave-card.alt {
  background-color: #e8e8e8;
}

.chave-card:hover {
  transform: translateY(-4px);
  background-color: #e0e0e0;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.chave-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.chave-card p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin: 0;
}

/* Sombra no bloco verde (benefícios principais) */
.chave-beneficios {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}


@media (max-width: 768px) {
  .chave-escolher {
    padding: 0 !important;
  }

  .chave-escolher-grid {
    grid-template-columns: 1fr !important;
  }

  .chave-card {
    max-width: 100% !important;
    width: 100% !important;
  }
}
