/* ==========================================
   SISTEMA DE BOTONES UNIFICADO - COPERA
   ========================================== */

/* Boton primario - Verde COPERA */
.btn-primary {
  background: linear-gradient(90deg, #00a551, #a3dc35);
  color: white;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(0, 165, 81, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 165, 81, 0.4);
  color: white;
  text-decoration: none;
}

/* Boton secundario - Outline verde */
.btn-secondary {
  background: transparent;
  color: #00a551;
  font-weight: 700;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  border: 2px solid #00a551;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  font-family: inherit;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-secondary:hover {
  background: linear-gradient(90deg, #00a551, #a3dc35);
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 165, 81, 0.3);
  text-decoration: none;
}

/* Variante light para fondos oscuros */
.btn-secondary--light {
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary--light:hover {
  border-color: transparent;
  color: white;
}