/* ===================================================
   CICLO ABUNDÂNCIA - CONTROLES
   =================================================== */

.ciclo-controls {
  display: none;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
}

.ciclo-controls.visible {
  display: flex;
}

.ciclo-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #0c1424;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ciclo-btn:hover {
  background: #162036;
  border-color: var(--gold-premium);
}

.ciclo-btn-auto {
  width: auto;
  padding: 0 20px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.ciclo-btn-auto.active {
  background: #F5A623;
  color: #000;
  border-color: #F5A623;
  box-shadow: 0 0 15px rgba(245, 166, 35, 0.3);
}

.ciclo-btn-auto.active ~ .ciclo-btn {
  background: #0c1424;
}