/* Ocultar radios originales */
.custom-option-btn input[type="radio"] {
  display: none !important;
}

/* Contenedor centrado */
.custom-option-btn {
  text-align: center;
}

/* Botones */
.custom-option-btn label {
  display: block;
  width: 80%; /* Ajusta el ancho */
  margin: 10px auto; /* Centrado */
  background-color: #0c4a3d; /* Verde base */
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Hover */
.custom-option-btn label:hover {
  background-color: #0f6651;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Seleccionado */
.custom-option-btn input[type="radio"]:checked + label {
  background-color: #065f46;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transform: translateY(-2px);
}
