/* Person */
/* Efeito menu */
.u-nav-link {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.u-nav-link:hover {
  transform: scale(1.08); /* aumenta 08% */
}
/* End Person */

.u-section-1 .u-sheet-1 {
  min-height: 400px;
}

.container.links {
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
}

/* Títulos */
.h1-clube {
  font-size: 32px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

.h2-clube {
  font-size: 20px !important;
  color: #555 !important;
  margin-bottom: 20px !important;
}

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

.li-list {
  background: #f5f7fa;
  margin: 10px 0;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
}

/* Botões */
.btn {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
  cursor: pointer;
}

.btn-success {
  background: #78C257;
  color: #ffffff;
}

.btn-danger {
  background: #8E8E93;
  color: #ffffff;
}

.btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}