.tabs-bloco {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  animation: fadeIn 1s ease;
}

.tabs-bloco h2 {
  font-size: 35px;
  color: #444;
  margin-bottom: 25px;
  text-align: center;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 16px;
  background: #5b5f63;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
  background: #f8f8f8;
  color: #444;
  border: 2px solid #444;
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

.image-wrapper {
  text-align: center;
  margin-top: 20px;
}

.image-wrapper img {
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Animação */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}


.filhos-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.filhos-lista li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 15px;
}

.filhos-lista li img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.filhos-lista li div {
  max-width: 800px;
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}


 .btn-download {
      display: inline-block;    
      margin-top: 20px;
      padding: 10px 20px;
      background: #5b5f63;
      color: white;
      text-decoration: none;
      border-radius: 6px;
    }
