.container-principal {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.header-titulo {
  text-align: center;
  margin-bottom: 48px;
}

.titulo-principal {
  font-size: 28px;
  font-weight: 700;
  color: #2d2d3d;
  margin-bottom: 8px;
}

.titulo-subtexto {
  font-size: 14px;
  color: #8a8a9e;
  font-weight: 400;
}

.container-botoes {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.botao-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, #4f46e5 0%, #3b5bdb 100%);
  border-radius: 14px;
  padding: 18px 24px;
  text-decoration: none;
  color: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(79, 70, 229, 0.12);
  border: none;
  cursor: pointer;
}

.botao-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.25);
}

.botao-conteudo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.botao-icone {
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.botao-texto {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.botao-titulo {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: white;
}

.botao-descricao {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.88;
  color: rgba(255, 255, 255, 0.8);
}

.botao-seta {
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.botao-item:hover .botao-seta {
  opacity: 1;
}

.hidden {
  display: none !important;
}

@media (max-width: 640px) {
  .titulo-principal {
    font-size: 24px;
  }

  .botao-item {
    padding: 16px 18px;
  }

  .botao-icone {
    font-size: 20px;
  }

  .botao-titulo {
    font-size: 15px;
  }

  .botao-descricao {
    font-size: 12px;
  }
}

.container-botoes {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}