@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

* {
  margin: 0;
  padding: 0;
}

body {
  /* background-image: url("../img/bg_gradient.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
  background: linear-gradient(180deg, #98cff4 0%, #104685 100%);
  min-height: 100vh;
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #e7e7e7;
  padding-top: 20px;
  padding-bottom: 20px;
}

.header img {
  max-width: 75%;
}

.f-spaceb {
  justify-content: space-between;
}

.f-row {
  flex-direction: row;
}

.voltar {
  text-decoration: none;
  color: #999999;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  padding: 5px;
  cursor: pointer;
}

.footer {
  width: 95%;
  display: flex;
  align-items: center;
  padding: 12px 0;
  margin-top: 10px;
  border-top: 1px solid #e7e7e7;
}

.footer form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.f-center {
  align-items: center;
  justify-content: center;
}

.f-column {
  flex-direction: column;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.container-content {
  width: 350px;
  min-height: 650px;
  background-color: #fff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.content {
  width: 100%;
  min-height: max-content;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  padding-top: 10px;
  flex-grow: 1; /* Faz com que a div content ocupe o espaço restante */
}

.content h3 {
  font-size: 1rem;
  font-family: "Inter", sans-serif;
}

.content p {
  width: 80%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
}

.content form {
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 10px;
  gap: 10px;
}

.divInput {
  width: 90%;
  height: 40px;
  background-color: #fcfcfc;
  color: #999999;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 0 10px 0 10px;
}

.formInput {
  width: 100%;
  height: 40px;
  background-color: #fcfcfc;
  color: #999999;
  border: none;
}

.content form select {
  width: 100%;
  height: 40px;
  background-color: #fcfcfc;
  color: #535353;
  border: none;
}

.content form select:focus,
.content form input:focus {
  outline: none;
}

.btnStandard {
  text-decoration: none;
  background-color: #035aa3;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  color: #ffffff;
  height: 35px;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  margin-top: 10px;
  margin-bottom: 10px;
}

#buttonAgendar {
  background-color: #0084ff;
  border-radius: 7px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  padding: 12px 25px;
  user-select: none;
  text-decoration: none;
}

#buttonAgendar:disabled {
  background-color: #d0d0d0;
  cursor: not-allowed;
}

.buttonWhatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: none;
  background-color: #60e554;
  color: #ffffff;
  cursor: pointer;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 0.8rem;
  padding: 10px 20px;
}

.loading-button {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.loading-button:disabled {
  background-color: #d3d3d3;
  cursor: not-allowed;
}

.loading-button span {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.loading-button.loading span {
  opacity: 0;
}

.loading-button .loader {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 3px solid transparent;
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.loading-button.loading .loader {
  opacity: 1;
}

.comunicados {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  gap: 10px;
}

.comunicado-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 80%;
  padding: 15px;
  border: 1px;
  border-radius: 15px;
}

.info {
  border: 1px solid #104685;
  background-color: #ddefff;
  color: #104685;
}

.warning {
  border: 1px solid #bd7a2c;
  background-color: #fff3dd;
  color: #bd7a2c;
}

.danger {
  border: 1px solid #bd2c2c;
  background-color: #ffdddd;
  color: #bd2c2c;
}

.lista-colaboradores {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  list-style-type: none;
  width: 90%;
  font-family: Arial, Helvetica, sans-serif;
}

.lista-colaboradores li {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 8px 12px;
  background-color: #f9f9fc;
  border-radius: 9px;
}

.lista-colaboradores li a {
  text-decoration: none;
  color: #007bff;
}

.buttonAgendarVisita {
  width: 80%;
  height: 40px;
  border-radius: 8px;
  border: none;
  background-color: #60e554;
  color: #ffffff;
  cursor: pointer;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
