@font-face {
  font-family: "Arboria-Book";
  src: url("fonts/ArboriaBook.ttf");
}

@font-face {
  font-family: "Arboria-Bold";
  src: url("fonts/ArboriaBold.ttf");
}

@media screen and (max-width: 800px) {
  .mobileView {
    display: block !important;
  }
  .desktopView {
    display: none !important;
  }
}

.mobileView {
  display: none;
}
.desktopView {
  display: block;
}

.font-arboria-book {
  font-family: "Arboria-Book";
}

.font-arboria-bold {
  font-family: "Arboria-Bold";
}

.text-primary {
  color: #ff6d00;
}

.text-decoration-none {
  text-decoration: none;
}

.section-card {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.card {
  background-color: #ffffff;
  padding: 18px;
  box-shadow: 3px 3px 10px #00000068;
  width: 600px;
  border-radius: 8px;
}

.card-title {
  margin-bottom: 20px;
}

.card-title h2 {
  font-family: "Arboria-Bold";
  color: #ff6d00;
}

.input-div {
  display: flex;
  flex-direction: column;
  justify-content: start;
  margin-bottom: 18px;
}

.input-div label {
  font-family: "Arboria-Book";
  font-size: 18px;
  font-weight: 500;
  color: #000000;
  text-align: start;
  margin-bottom: 5px;
}

.input-div input {
  padding: 10px;
  border: 3px solid #ff6d00;
  border-radius: 4px;
}

.input-div textarea {
  padding: 10px;
  border: 3px solid #ff6d00;
  border-radius: 4px;
}

.input-div button {
  background-color: #ff6d00;
  padding: 8px 0px 8px 0px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
}

.input-div input:focus-visible {
  border: 3px solid #ff6d00 !important;
}

.wpp-button {
  position: fixed;
  width: 80px;
  bottom: 2px;
  left: 5px;
  z-index: 100000000000000000;
}

.wpp-button img {
  width: 100%;
}

* {
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

div#root {
  width: 100%;
  text-align: center;
  margin-bottom: 2rem;
  z-index: 1;
}

div#root img {
  max-width: 350px;
  padding-bottom: 3rem;
}

div#root p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

div#root p span {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

div#root p img {
  width: 1rem;
  padding-bottom: 0rem;
  margin-right: 0.5rem;
}

#imgSeta {
  position: fixed;
  bottom: -0.1rem;
  left: 0;
  right: 0;
  z-index: -2;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: auto;
  padding: 20px 0;
  margin-top: 50px;
}

.footer-container p {
  margin: 0 !important;
  font-family: "Arboria-Book";
}

/* Feedback do form */
.z-alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 10px;
  border: 1px solid transparent;
}

.z-alert--success {
  background: #ecfdf3;
  border-color: #b7f7d0;
  color: #0f5132;
}

.z-alert--error {
  background: #fff1f2;
  border-color: #ffc9cf;
  color: #842029;
}

/* Spinner */
#formSpinner {
  display: flex;
}
.z-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-top-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  animation: zspin 0.8s linear infinite;
  display: inline-block;
}

@keyframes zspin {
  to {
    transform: rotate(360deg);
  }
}

/* Botão loading */
button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
