@import url(https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap);

:root {
  --font-montserrat: "Montserrat", sans-serif;
  --font-Inter: "Inter", sans-serif;
  --font-text: "Lato", sans-serif;
  --font-title: "Libre Baskerville", serif;
  --open-sans: "Open Sans", sans-serif;
  --color-soft: #f1f1ef;
  --color-foco: #014040;
  --color-primary: #269fe6;
  --color-primary-hover: #2086c2;
  --color-primary-dark: #13141f;
  --color-primary-dark-hover: #212336;
  --color-primary-light: #d4ecfa;
  --color-primary-light-hover: #bdd8e7;
  --color-white: #fff;
  --color-black: #000;
  --color-dark-text: #444;
  --color-info-light: #cce5ff;
  --color-debug-light: #cce5ff;
  --color-success-light: #d4edda;
  --color-alert-light: #fff3cd;
  --color-warning-light: #fff3cd;
  --color-error-light: #f8d7da;
  --color-info-dark: #4d86c4;
  --color-debug-dark: #4d86c4;
  --color-success-dark: #4a9c5d;
  --color-alert-dark: #927f40;
  --color-warning-dark: #927f40;
  --color-error-dark: #da525d;
  --color-gray-0: #f9f9f9;
  --color-gray-1: #e0e0e0;
  --color-gray-2: #c7c7c7;
  --color-gray-3: #aeaeae;
  --color-gray-4: #959595;
  --color-gray-5: #7d7d7d;
  --color-gray-6: #646464;
  --color-gray-7: #4b4b4b;
  --color-gray-8: #323232;
  --color-gray-9: #191919;
  --san-juan: #2d4e68;
  --bermuda: #77d7b9;
  --white: #fff;
  --black: #000;
  --spacing-gutter-medium: 3rem;
  --spacing-gutter-large: 4rem;
  --font-montserrat: "Montserrat", sans-serif;
  --regal-blue: #004c8c;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-style: normal;
}

body {
  background-color: var(--color-soft) !important;
  overflow-x: hidden;
}

#content {
  height: 100dvh;
  width: 100dvw;
  overflow-x: hidden;
  background-color: var(--color-soft);
  padding-bottom: 4rem;
}

.card-container {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 2px 5px 10px 2px #d5d5d5;
}

#content-login {
  width: 100%;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#content-login>.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  width: 450px;
  margin-bottom: 1rem;
}

#content-login>.header>.title {
  font-weight: 700;
  color: #034378;
}

#content-login>.container-buttons {
  display: flex;
  width: 510px;
  background-color: #fff;
  border-radius: 20px 20px 0 0;
  border-bottom: solid 0.5px #e1e1e1;
}

#content-login>.container-buttons>button {
  flex: 1;
  padding: 15px;
  height: 45px;
  font-weight: 500;
  border: none;
}

#content-login>.container-buttons>button:first-child {
  border-radius: 20px 0 0 0;
}

#content-login>.container-buttons>button:last-child {
  border-radius: 0 20px 0 0;
}

#content-login>.container-buttons>.toggle-btn {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  background-color: #fff;
  color: #575757;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

#content-login>.container-buttons>.toggle-btn:hover {
  background-color: #e9e9e9;
  color: #151717;
}

#content-login>.container-buttons>.toggle-btn.active {
  background-color: #1b4a86;
  color: #fff;
}

#content-login #cad-form {
  display: none;
}

.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 10px 0;
  color: #777;
  font-size: 14px;
}

.divider::before,
.divider::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
  margin: 0 10px;
}

.divider>span {
  font-size: 14px;
}

.google-login {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.google-button {
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgb(0 0 0 / 0.1);
  transition: background-color 0.3s;
}

.google-login a {
  text-decoration: none;
}

.google-button img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.google-button:hover {
  background-color: #f8f8f8;
}

.form-login {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #fff;
  padding: 30px;
  width: 450px;
  border-radius: 0 0 20px 20px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

::placeholder {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

.form-login button {
  align-self: flex-end;
}

.flex-column>label {
  color: #151717;
  font-weight: 600;
}

.inputForm {
  border: 1.5px solid #ecedec;
  border-radius: 10px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.input {
  margin-left: 10px;
  border-radius: 10px;
  border: none;
  width: 100%;
  height: 100%;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid #2d79f3;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  margin-top: 1rem;
}

.flex-row>div>label {
  font-size: 14px;
  color: #000;
  font-weight: 400;
}

.span {
  font-size: 14px;
  margin-left: 5px;
  color: #2d79f3;
  font-weight: 500;
  cursor: pointer;
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: #1b4a86;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
}

.p {
  text-align: center;
  color: #000;
  font-size: 14px;
  margin: 5px 0;
}

.btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: #fff;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

.btn:hover {
  border: 1px solid #2d79f3;
}

.msg-error {
  color: darkred;
}

.user-img {
  width: 4rem;
  height: 4rem;
  border-radius: 15%;
  overflow: hidden;
  background-size: cover;
  padding: auto;
}

.user-img img {
  width: 100%;
  object-fit: cover;
  height: auto;
}

.nav {
  flex: 1;
}

#arrow_1 {
  transition: transform 0.3s ease;
  font-size: 0.875rem;
}

.rotate-180 {
  transform: rotate(180deg);
}

.login-button {
  display: flex;
  align-items: center;
}

.login-button button {
  border: none;
  background-color: #6c63ff;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.login-button button:hover {
  background-color: #6b63fff1;
}

.login-button button a {
  text-decoration: none;
  font-weight: 500;
  color: #fff;
}

@media screen and (max-width: 1330px) {
  .container {
    width: 50%;
  }

  .form {
    width: 100%;
  }
}

@media screen and (max-width: 1064px) {
  .container {
    width: 90%;
    height: auto;
  }

  .input-group {
    flex-direction: column;
    z-index: 5;
    padding-right: 5rem;
    max-height: 10rem;
    overflow-y: scroll;
    flex-wrap: nowrap;
  }

  .gender-title h6 {
    margin: 0;
  }
}

.custom-modal-container {
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 999;
  align-items: baseline;
  justify-content: center;
  display: none;
  padding-top: 4rem;
}

.custom-modal {
  width: 60%;
  padding: 50px;
  border-radius: 0.625rem;
}

.custom-open {
  display: flex;
}

.custom-modal-content {
  width: 50%;
  min-width: 400px;
  min-height: 200px;
  background-color: #fff;
  backdrop-filter: blur(0.625rem);
  padding: 1rem;
  border-radius: 0.625rem;
  overflow: auto;
}

.scale-up-center {
  animation: scale-up-center 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@keyframes scale-up-center {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

.container-file {
  height: 300px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 4px 4px 30px rgb(0 0 0 / 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  gap: 5px;
  background-color: rgb(0 110 255 / 0.041);
}

.header-file {
  flex: 1;
  width: 100%;
  height: 100%;
  border: 2px dashed royalblue;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.header-file svg {
  height: 100px;
  margin: 1rem;
}

.header-file p {
  text-align: center;
  color: #000;
}

.footer-file {
  background-color: rgb(0 110 255 / 0.075);
  width: 100%;
  height: 100%;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #000;
  border: none;
}

.footer-file svg {
  height: 130%;
  fill: royalblue;
  background-color: #fff;
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
  box-shadow: 0 2px 30px rgb(0 0 0 / 0.205);
}

.footer-file p {
  flex: 1;
  text-align: center;
}

#id_document {
  display: none;
}

.button_modal {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 2rem 0 0 0;
}

.button-form {
  font-size: 18px;
  display: inline-block;
  outline: 0;
  border: 0;
  cursor: pointer;
  will-change: box-shadow, transform;
  background: radial-gradient(100% 100% at 100% 0%, #89e5ff 0%, #5468ff 100%);
  box-shadow: 0 0.01em 0.01em rgb(45 35 66 / 40%),
    0 0.3em 0.7em -0.01em rgb(45 35 66 / 30%),
    inset 0 -0.01em 0 rgb(58 65 111 / 50%);
  padding: 0 2em;
  border-radius: 0.3em;
  color: #fff;
  height: 2.6em;
  text-shadow: 0 1px 0 rgb(0 0 0 / 40%);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

#root {
  width: 100dvw;
  height: 100dvh;
}

.cart-catalog-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  height: calc(100vh - 100px);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px;
  background-color: var(--regal-blue);
  color: #fff;
  margin-bottom: 2rem;
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.header-text h3 {
  text-transform: uppercase;
}

.header-buttons {
  display: flex;
  gap: 2rem;
}

.header-buttons a {
  font-size: 16px;
  font-weight: 500;
  border-radius: 7.5px;
  height: 40px;
  width: fit-content;
  cursor: pointer;
  font-weight: 700;
  border: solid 1.5px #1b4a86;
  color: #1b4a86;
  background-color: #fff;
  transition: background 0.2s, color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 20px;
  text-decoration: none;
}

.header-container>* {
  font-weight: 700;
}

.cart-catalog-content>.search-container {
  display: flex;
  min-height: 60px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  align-items: center;
  overflow: hidden;
}

.header-container a {
  text-decoration: none;
  color: var(--regal-blue);
  width: auto;
  height: 2rem;
}

.cart-catalog-content>.search-container>.search-input {
  flex: 1;
  font-size: 16px;
  outline: none;
  min-height: 50px;
  box-shadow: 0 0 0 1px #ecedec;
  border: none;
  border-radius: 10px 0 0 10px;
  padding: 10px;
  transition: 0.2s ease-in-out;
}

.cart-catalog-content>.search-container>.search-input:focus-within {
  border-top: 1px solid var(--regal-blue);
  border-left: 1px solid var(--regal-blue);
  border-bottom: 1px solid var(--regal-blue);
}

.cart-catalog-content>.search-container>.search-button {
  background-color: var(--regal-blue);
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  min-height: 50px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 0 10px 10px 0;
  margin-left: 0;
  white-space: nowrap;
}

.cart-catalog-content>.search-container>.search-dropdown {
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  min-height: 51px;
  background-color: var(--regal-blue);
  color: #fff;
  outline: none;
  width: 150px;
  border-radius: 0 10px 10px 0;
  white-space: nowrap;
  position: relative;
  appearance: none;
  box-shadow: inset 0 1px 3px rgb(0 0 0 / 0.1);
}

.cart-catalog-content>.grid-container {
  display: grid;
  padding: 0 30px;
  gap: 30px;
  padding-bottom: 4rem;
  grid-template-columns: repeat(auto-fit, 350px);
}

.cart-catalog-content>.grid-container>.grid-item {
  position: relative;
}

.cart-catalog-content>.grid-container>.grid-item>.item-head {
  display: flex;
}

.cart-catalog-content>.grid-container>.grid-item>.item-status {
  position: absolute;
  width: fit-content;
  top: 0;
  right: 0;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 0 10px 0 10px;
  font-weight: 700;
}

.cart-catalog-content>.grid-container>.grid-item>.item-status.True {
  background-color: #b2dfb2;
  color: #206020;
}

.cart-catalog-content>.grid-container>.grid-item>.item-status.False {
  background-color: #f5a9a9;
  color: darkred;
}

.cart-catalog-content>.grid-container>.grid-item>.item-head>span {
  width: 75%;
  font-weight: 700;
}

.cart-catalog-content>.grid-container>.grid-item>.item-content>ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cart-catalog-content>.grid-container>.grid-item>.item-content>ul li {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 5px 0;
  font-size: 16px;
  color: #333;
}

.cart-catalog-content>.grid-container>.grid-item>.item-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.cart-catalog-content>.grid-container>.grid-item>.item-btn>button {
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  height: 50px;
  width: 100%;
  cursor: pointer;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

.cart-catalog-content>.grid-container>.grid-item>.item-btn>button:first-child svg {
  fill: #fff;
}

.cart-catalog-content>.grid-container>.grid-item>.item-btn>button:not(:first-child) svg {
  fill: #1b4a86;
}

.cart-catalog-content>.grid-container>.grid-item>.item-btn>button:first-child {
  background-color: #1b4a86;
  border: none;
  color: #fff;
}

.cart-catalog-content>.grid-container>.grid-item>.item-btn>button:not(:first-child) {
  background-color: #fff;
  border: solid 1px #1b4a86;
  color: #1b4a86;
}

.cart-catalog-content>.grid-container>.grid-item>.item-btn>button:not(:first-child):hover {
  background-color: #e9e9e9;
}

.cart-catalog-content>.status-container {
  padding: 0 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 20px;
}

.cart-catalog-content>.status-container>.status-item {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 2px 5px 10px 2px #d5d5d5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  width: 100%;
}

.cart-catalog-content>.status-container>.status-item>.icon {
  position: absolute;
  top: 10px;
  right: 20px;
}

.cart-catalog-content>.status-container>.status-item>.icon svg {
  fill: #1b4a86;
}

.cart-catalog-content>.status-container>.status-item>.status-title {
  font-size: 20px;
  max-width: 90%;
}

.cart-catalog-content>.status-container>.status-item>.status-value {
  font-size: 28px;
  font-weight: 700;
  max-width: 90%;
}

.cart-catalog-content>.status-container>.status-item>.status-disclaimer {
  font-size: 16px;
  max-width: 90%;
}

.cart-catalog-content>.start-call-container {
  display: grid;
  padding: 0 30px;
  grid-template-columns: repeat(2, minmax(460px, 1fr));
  gap: 20px;
  width: 100%;
}

.cart-catalog-content>.start-call-container>div {
  flex: 1;
  min-height: 7rem;
  position: relative;
}

.cart-catalog-content>.start-call-container h3 {
  margin-bottom: 20px;
}

.cart-catalog-content>.start-call-container .call-grid {
  display: grid;
  grid-template-rows: repeat(auto, 1fr);
  gap: 10px;
}

.cart-catalog-content>.start-call-container .call-item {
  width: 100%;
  display: grid;
  grid-template-columns: 100px 62% 150px;
  gap: 20px;
  background-color: #f2f2f2;
  border-radius: 10px;
  padding: 10px;
}

.cart-catalog-content>.start-call-container .call-item:hover {
  background-color: #ecedec;
}

.cart-catalog-content>.start-call-container .call-item .icon,
button {
  align-self: center;
  margin: 0 auto;
}

.cart-catalog-content>.start-call-container .call-item #button-iniciar button {
  font-size: 16px;
  font-weight: 500;
  border-radius: 7.5px;
  height: 40px;
  width: 125px;
  cursor: pointer;
  font-weight: 700;
  border: solid 1.5px #1b4a86;
  color: #1b4a86;
  background-color: #fff;
  transition: background 0.2s, color 0.2s;
}

.cart-catalog-content>.start-call-container .call-item #button-iniciar button:hover {
  color: #fff;
  background-color: #1b4a86;
}

.cart-catalog-content>.start-call-container .call-item>.call-schedule {
  display: flex;
  flex-direction: column;
}

.cart-catalog-content>.start-call-container .call-item>.call-schedule> :first-child {
  font-size: large;
  font-weight: 700;
}

.cart-catalog-content>.start-call-container .call-item>.call-schedule> :not(:first-child) {
  font-size: small;
  font-weight: 700;
}

.cart-catalog-content>.start-call-container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-catalog-content>.start-call-container ul li {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.cart-catalog-content .table-container {
  padding: 0 10px;
  margin: 0 30px;
  border-radius: 20px;
}

.cartorio-table {
  width: 100%;
  border-collapse: collapse;
  margin: 10px 0;
  font-size: 16px;
  text-align: left;
}

.cartorio-table thead {
  background-color: #e1e1e1;
}

.cartorio-table th,
.cartorio-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.cartorio-table thead th:first-child {
  border-top-left-radius: 10px;
}

.cartorio-table thead th:last-child {
  border-top-right-radius: 10px;
}

.cartorio-table thead th:last-child {
  border-top-right-radius: 10px;
}

.cartorio-table tbody thead tr:hover {
  background-color: #ecedec;
}

.status {
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
}

.status.True {
  background-color: #b2dfb2;
  color: #206020;
}

.status.False {
  background-color: #f5a9a9;
  color: darkred;
}

.acoes {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.tb-btn {
  border: none;
  cursor: pointer;
  background-color: #fff;
}

.tb-btn.edit svg {
  fill: #1b4a86;
}

.tb-btn.delet svg {
  fill: darkred;
}

#jaas-container {
  height: 100dvw;
  width: 100dvw;
}

.menu {
  width: 100%;
  margin: 4rem auto 0 auto;
  display: flex;
  justify-content: center;
}

.menu_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  gap: 3rem;
}

.grid {
  display: grid;
}

.menu .grid {
  gap: 1rem;
}

.menu a {
  color: var(--regal-blue);
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 4px;
  width: 240px;
  min-height: 240px;
  box-shadow: 0 3px 6px 0 rgb(0 0 0 / 0.16);
  display: block;
  font-size: 1.3rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  padding: 50px 30px;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out,
    transform 0.3s ease-in-out;
}

.menu i {
  font-size: 50px;
}

i {
  font-weight: 700;
  line-height: 1;
}

.menu a:hover {
  background-color: var(--regal-blue);
  color: #fff;
  cursor: pointer;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 800px) {
  .menu_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .menu_grid {
    grid-template-columns: 1fr;
  }
}

.marcar-atendimento {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
}

.marcar-atendimento i {
  font-size: 2rem;
  color: var(--regal-blue);
}

.hover:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.custom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#custom-modal-atendimento.custom-open,
#modal-atendimento.custom-open {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content-atendimento {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  min-width: 500px;
  width: auto;
  position: relative;
  box-shadow: none;
}

#custom-fechar {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
}

.forms_marcar_atendimento {
  display: grid;
  grid-template-columns: 14rem 14rem;
  gap: 1.5rem;
}

.span_1 {
  grid-column: span 1;
}

.span_2 {
  grid-column: span 2;
}

.span_3 {
  grid-column: span 3;
}

.span_4 {
  grid-column: span 4;
}

.span_5 {
  grid-column: span 5;
}

.cart-catalog-content>.start-call-container .call-item a {
  font-size: 16px;
  font-weight: 500;
  border-radius: 7.5px;
  height: 40px;
  width: 125px;
  cursor: pointer;
  font-weight: 700;
  border: solid 1.5px #1b4a86;
  color: #1b4a86;
  background-color: #fff;
  transition: background 0.2s, color 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.messages-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* Adicione isso para garantir que o container não ocupe espaço quando vazio */
  min-height: 0;
}

.message {
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgb(0 0 0 / 10%);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  min-width: 18rem;
  max-height: 100px;
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.5s ease,
    padding 0.5s ease, margin 0.5s ease;
}

.message.show {
  opacity: 1;
  transform: translateY(0);
}

.message.hide {
  opacity: 0;
  transform: translateY(-20px);
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: -10px;
  /* Compensa o gap do container */
}

.message.success {
  background-color: #28a745;
}

.message.error {
  background-color: #dc3545;
}

.message.warning {
  background-color: #ffc107;
  color: #212529;
}

.message.show {
  opacity: 1;
  transform: translateY(0);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 9999;
  display: flex;
  justify-content: center;
}

.center {
  text-align: center;
}

#root ._M8cCug8H18ALQ05cNMt {
  display: none;
}

.mydict div {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  justify-content: center;
}

.mydict input[type="radio"] {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.mydict input[type="radio"]:checked+span {
  box-shadow: 0 0 0 0.0625em #1b4a86;
  z-index: 1;
  color: #fff;
  background-color: #1b4a86;
}

label span {
  display: block;
  cursor: pointer;
  background-color: #fff;
  padding: 0.375em 0.75em;
  position: relative;
  margin-left: 0.0625em;
  box-shadow: 0 0 0 0.0625em #4a5568;
  letter-spacing: 0.05em;
  border: solid 1px #1b4a86;
  color: #1b4a86;
  text-align: center;
  transition: background-color 0.5s ease;
}

label:first-child span {
  border-radius: 0.375em 0 0 0.375em;
}

label:last-child span {
  border-radius: 0 0.375em 0.375em 0;
}

#modal-atendimento,
#custom-modal-atendimento {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0 0 0 / 0.5);
}

#modal-atendimento .close {
  float: right;
  font-size: 28px;
  cursor: pointer;
}

#modal-atendimento input,
#modal-atendimento select,
#custom-modal-atendimento input,
#custom-modal-atendimento select {
  width: 100%;
  padding: 8px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#modal-atendimento button,
#custom-modal-atendimento button {
  width: 100%;
  background-color: #28a745;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

#modal-atendimento button:hover,
#custom-modal-atendimento button:hover {
  background-color: #218838;
}

.flex-check {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 2rem;
}

.flex-check i {
  font-size: 1.5rem;
  color: #218838;
  border-radius: 50%;
}

.flex-check i:hover {
  font-size: 1.9rem;
  color: #fff;
  border-radius: 50%;
  background-color: #218838;
}

#button-check button {
  margin: 0;
  border: none;
  background: #fff0;
  text-decoration: none;
  padding: 0;
  outline: none;
  box-shadow: none;
  cursor: pointer;
}

#button-check button:focus,
#button-check button:active {
  outline: none;
  box-shadow: none;
}

.pag_not_found,
.call {
  /* width: 100dvw; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pag_not_found .card {
  min-width: 300px;
  height: 220px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 13px;
  position: relative;
  overflow: hidden;
  box-shadow: 2px 2px 20px rgb(0 0 0 / 0.062);
}

#cookieSvg {
  width: 50px;
}

#cookieSvg g path {
  fill: #615151;
}

.cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  color: #1a1a1a;
}

.cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
  color: #636363;
}

.buttonContainer {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.acceptButton {
  width: 80px;
  height: 30px;
  background-color: var(--regal-blue);
  transition-duration: 0.2s;
  border: none;
  color: #f1f1f1;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
}

.pag_not_found .ph-warning-octagon {
  font-size: 3rem;
  color: darkred;
}

.declineButton {
  width: 80px;
  height: 30px;
  background-color: #dadada;
  transition-duration: 0.2s;
  color: #2e2e2e;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.declineButton:hover {
  background-color: #ebebeb;
  transition-duration: 0.2s;
}

.acceptButton:hover {
  background-color: #9173ff;
  transition-duration: 0.2s;
}

.buttonContainer a {
  text-decoration: none;
}

#template_admin_fluxo {
  display: grid;
  grid-template-columns: 20% 80%;
  overflow: auto;
  height: auto;
}

#content_fluxo {
  overflow-y: auto;
}

#content_fluxo h1 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 30px;
}

.pergunta {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #3498db;
}

.pergunta-header {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  padding-right: 80px;
  /* Espaço para os ícones */
  align-items: center;
}

.content_segmento {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.segmento_fluxo input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

#id_segmento,
#segmento_nome {
  width: 1195.45px;
}

.campos-adicionais {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.campos-adicionais textarea,
.campos-adicionais input {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  width: 100%;
}

.campos-adicionais textarea {
  min-height: 80px;
  resize: vertical;
}

.botoes-acoes {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.btn-adicionar,
.btn-voltar {
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-adicionar {
  background-color: #2ecc71;
  color: #fff;
}

.btn-adicionar:hover {
  background-color: #27ae60;
}

.btn-voltar {
  background-color: #e74c3c;
  color: #fff;
  width: 45px;
}

.btn-voltar:hover:not([disabled]) {
  background-color: #c0392b;
  color: #fff;
}

.btn-voltar[disabled] {
  background-color: #95a5a6;
  cursor: not-allowed;
}

#btn-exibir,
#btn-salvar {
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  flex: 1;
}

#btn-exibir {
  background-color: #3498db;
  color: #fff;
}

#btn-exibir:hover {
  background-color: #2980b9;
}

#btn-salvar {
  background-color: #9b59b6;
  color: #fff;
}

#btn-salvar:hover {
  background-color: #8e44ad;
}

.arvore {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px dashed #bdc3c7;
}

#perguntas-container {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  background: #f9f9f9;
}

.pergunta {
  transition: all 0.3s ease;
  margin-bottom: 20px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 0.05);
}

.pergunta.saindo {
  transform: translateX(-100%);
  opacity: 0;
}

.no-arvore {
  background: #fff;
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 0.1);
}

.conector {
  text-align: center;
  color: #3498db;
  margin: 5px 0;
}

.todos_fluxos {
  width: 100%;
  overflow-y: auto;
  padding-right: 15px;
  border-right: 1px solid #eee;
}

.todos_fluxos li,
.todos_fluxos a {
  text-decoration: none;
  color: #000;
}

.todos_fluxos li:hover,
.status-item .icon .edit_carto_hr:hover {
  color: #269fe6;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.edit_carto_hr {
  font-size: 1.4rem;
}

.status-item a {
  text-decoration: none;
}

#content_fluxo {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 20px;
}

#perguntas-container {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
  padding-right: 10px;
}

#arvore-visualizacao {
  max-height: 100dvh;
  overflow-y: auto;
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
}

.controles {
  position: sticky;
  bottom: 0;
  background: transparent;
  padding: 15px 0;
  border-top: 1px solid #eee;
  display: flex;
  gap: 10px;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.campos-adicionais input.motivo {
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 100%;
  background-color: #f9f9f9;
  transition: border 0.3s;
}

.campos-adicionais input.motivo:focus {
  border-color: #3498db;
  outline: none;
  box-shadow: 0 0 0 2px rgb(52 152 219 / 0.2);
}

/* Estilos para o drag and drop */
.pergunta {
  position: relative;
  transition: transform 0.2s, opacity 0.2s;
  cursor: move;
  cursor: grab;
}

.pergunta.dragging {
  opacity: 0.5;
  background: #f8f9fa;
  border: 2px dashed #3498db;
}

.drag-handle {
  right: 50px;
  top: 15px;
  cursor: move;
  color: #6c757d;
  padding: 5px;
  font-size: 1.5rem;
}

.drag-handle:hover {
  color: #3498db;
}

.btn-voltar {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
}

/* Efeito visual ao arrastar */
.pergunta-ghost {
  opacity: 0.5;
  transform: scale(0.98);
}

.btn-remover {
  position: absolute;
  right: 15px;
  background: none;
  border: none;
  color: rgb(220, 53, 69);
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  padding: 15px;
}

.btn-remover:hover {
  transition: 0.4s ease-in-out;
  box-shadow: rgb(220, 53, 69) 0px 0px 0px 2px,
    rgb(220, 53, 69) 0px 4px 6px -1px, rgb(220, 53, 69) 0px 1px 0px inset;
}

.esqueceu-senha a {
  text-decoration: none;
}

.password-container {
  position: relative;
}

.password-container i {
  font-size: 1.3rem;
}

.password-container .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #666;
}

.dark_red {
  color: darkred;
}

/* ---------------------------------------- */

/* .message {
  padding: 15px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
  color: #333;
  max-width: 300px;
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.3s ease;
  margin-bottom: 10px;
  border-left: 4px solid #dc3545;
} */

.editando {
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

/* Remover duplicatas na tabela */
#corpoTabela tr {
  display: table-row !important;
}

#tabelaRespostas tr.sim {
  --bs-table-bg: rgba(40, 167, 69, 0.1);
}

#tabelaRespostas tr.nao-se-aplica {
  --bs-table-bg: rgba(255, 193, 7, 0.1);
}

#tabelaRespostas tr.nao {
  --bs-table-bg: rgba(220, 53, 69, 0.1);
}

.pergunta-item {
  transition: all 0.3s ease;
}

.btn-group .btn {
  transition: all 0.2s ease;
}

.spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.editando {
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.25);
}

.respondida {
  background-color: rgba(25, 135, 84, 0.1);
  transition: background-color 0.5s ease;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

.parent_menu_qualificacao {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* agora são 3 colunas, uma para cada div */
  gap: 8px;
}

.div1_menu_qualificacao,
.div2_menu_qualificacao,
.div3_menu_qualificacao {
  grid-column: auto;
  grid-row: auto;
}

.parent_menu_qualificacao a {
  text-decoration: none;
  color: #000;
}

.parent_menu_qualificacao a:hover {
  color: #2d79f3;
  cursor: pointer;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.arquivos_anexados i {
  font-size: 1.4rem;
}

.arquivos_anexados a {
  text-decoration: none;
}

#template_resp_qualificacao {
  margin: 0 1rem 0 1rem;
  padding: 20px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

#template_resp_qualificacao .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #007BFF; */
  color: black;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header h1 {
  margin: 0;
  font-size: 24px;
}

.download-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #218838;
}

.qa-section {
  margin-top: 20px;
}

.qa-item {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.question {
  font-weight: bold;
  margin: 5px 0;
}

.edit-btn {
  background-color: #ffc107;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 10px;
  transition: background-color 0.3s;
}

.edit-btn:hover {
  background-color: #e0a800;
}

.answer,
.cause,
.result,
.fundamentals {
  margin: 5px 0;
  padding: 5px;
  background-color: #ffffff;
  border-radius: 3px;
  border: 1px solid #e0e0e0;
}

#template_resp_qualificacao .bi-file-pdf-fill {
  color: #2086c2;
  font-size: 1.6rem;
  margin-left: 0.4rem;
}

#template_resp_qualificacao a {
  text-decoration: none;
}

.title_admin_colaboradores {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
}

.title_admin_colaboradores i {
  font-size: 1.4rem;
  color: #2086c2;
  font-weight: bold;
}

#botoes_reuniao {
  height: 1rem;
  gap: 1rem;
  margin-top: 3rem;
}