@charset "UTF-8";
.sidelist {
  display: block !important; }

.sidelist.parent {
  display: block !important;
  border-bottom: none !important; }

.sidelist.parent .sidelist {
  display: block !important; }

.gc-button-wrapper {
  display: flex;
  justify-content: center;
  margin: 0.5rem 0; }

.content a.gc-button {
  color: black;
  text-decoration: none !important; }

.gc-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #007acc;
  border-radius: 50px;
  color: #007acc;
  font-weight: bold;
  text-align: center;
  transition: all 0.2s ease-in-out;
  min-width: 280px; }

.gc-button:hover {
  background-color: #007acc;
  color: #ffffff !important; }

.gc-button.disabled {
  color: black;
  cursor: default;
  pointer-events: none;
  text-decoration: none; }

/* Neutralizar o hover especificamente para o botão desativado */
.gc-button.disabled:hover,
.gc-button.disabled:focus {
  text-decoration: none;
  /* evita sublinhados */
  box-shadow: none;
  /* remove realces, se existirem */ }

.button-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap; }

.button-single {
  flex: 1; }

.button-column {
  display: flex;
  flex-direction: column;
  gap: 1rem; }

.button-sub {
  margin-left: 2rem; }

#feedback-form-container {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease; }

#feedback-form-container.is-open {
  max-height: 500px;
  /* ajusta conforme a altura real do conteúdo */
  opacity: 1; }

#feedback-form-container.is-closed {
  max-height: 0;
  opacity: 0; }
