.secondary-btn {
  display: flex;
  height: 48px;
  padding: 10px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: #0074C8;
  border-radius: 8px;
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease-out;
}

.secondary-btn:hover {
  background: #005EA2;
}

.btn-tertiary {
  display: flex;
  width: 240px;
  height: 48px;
  padding: 10px 24px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: var(--font-family-primary);
  color: var(--primary-gray-50);
  border: none;
  gap: 8px;
  cursor: pointer;
  border-radius: 8px;
  background: #0096E2;
  transition: background 0.3s ease-out;
}
@media (max-width: 768px) {
  .btn-tertiary {
    width: 100%;
  }
}
/* TODO: Trocar o nome disso */
.btn-tertiary:hover {
  background: #0073ba;
}