.Text_text__fLTwn[data-appearance="label"] {
    font-weight: 600;
    font-size: 16px;
  }

.Footer_container__kXO5A {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: #181719;
  height: 110px;
  color: var(--background);
  padding: 16px;
  width: 100%;
  grid-area: footer;
}

@media (max-width: 530px) {
  .Footer_container__kXO5A {
    display: flex;
    justify-content: space-between;
    padding: 4px;
  }
}

@media (max-width: 767px) {
  .Footer_container__kXO5A {
    display: none;
  }
}

.Footer_lucyIcon__9H85E {
  margin-right: 6px;
}

/* .socialLinks {
  padding-right: 45px;
  display: flex;
  justify-content: space-between;
} */

.Badge_base__TR5M6 {
  display: flex;
  width: fit-content;
  font-size: var(--font-size-1);
  border-radius: var(--radius-round);
}

.Badge_outline__oWL77,
.Badge_true__dFOBH {
  outline: 2px solid white;
}

.Badge_outline__oWL77.Badge_none__VU_T_, .Badge_true__dFOBH.Badge_none__VU_T_ {
    outline: none;
  }

.Badge_badge__WYder {
  padding: var(--size-1);
}

.Badge_badge__WYder.Badge_xs__eTzHN {
    width: var(--size-2);
    height: var(--size-2);
  }

.Badge_badge__WYder.Badge_sm__77Ywq {
    width: var(--size-3);
    height: var(--size-3);
  }

.Badge_badge__WYder.Badge_md__47UH9 {
    width: var(--size-7);
    height: var(--size-7);
  }

.Badge_badge__WYder.Badge_lg__GLbYq {
    width: var(--size-9);
    height: var(--size-9);
  }

.Badge_badgeText__rBQoD {
  padding: var(--size-1) var(--size-2);
}

.Badge_badgeText__rBQoD .Badge_xs__eTzHN {
    height: var(--size-3);
  }

.Badge_badgeText__rBQoD .Badge_sm__77Ywq {
    height: var(--size-5);
  }

.Badge_badgeText__rBQoD .Badge_md__47UH9 {
    height: var(--size-7);
  }

.Badge_badgeText__rBQoD .Badge_lg__GLbYq {
    height: var(--size-9);
  }

/* colors */

.Badge_brand__WXQoB {
  background-color: var(--brand);
}

.Badge_success__otI5p {
  background-color: var(--green-7);
}

.Badge_error__PiDY7 {
  background-color: var(--red-7);
}

.Avatar_avatarWrapper__7FnKt {
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  color: var(--background);
  font-size: 0.9em;
}

  .Avatar_avatarWrapper__7FnKt[data-outline="true"] {
    outline: var(--outline-width) solid var(--outline-color);
  }

  .Avatar_avatarWrapper__7FnKt > img {
    width: inherit;
    height: inherit;
    border-radius: inherit;
    object-fit: cover;
  }

.Avatar_avatarBadge__3mVdY {
  position: absolute;
}

.Avatar_avatarBadge__3mVdY.Avatar_topRight__eaK9N {
    top: 0;
    right: 0;
  }

.Avatar_avatarBadge__3mVdY.Avatar_bottomRight__1W53A {
    bottom: 0;
    right: 0;
  }

.Avatar_fallback__N8Qlq {
  background-color: var(--brand);
  text-transform: uppercase;
}

.Avatar_fallback__N8Qlq[data-custom-fallback="false"] {
    background-color: transparent;
  }

/* formats */

.Avatar_rounded__V4ox8 {
  border-radius: var(--radius-round);
}

.Avatar_soft__Kcuc5 {
  border-radius: var(--radius-2);
}

.Avatar_square__D8BPA {
  border-radius: none;
}

.Avatar_upload__oNFhL {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0;
  height: inherit;
  width: inherit;
  border-radius: inherit;
  opacity: 0;
  transition-duration: 200ms;
  background-color: hsl(var(--gray-9-hsl) / 30%);
}

.Avatar_upload__oNFhL:hover {
    opacity: 1;
  }

.Avatar_upload__oNFhL > input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
  }

/* stylelint-disable keyframes-name-pattern */

.Popover_popoverContent__JiDhN {
  border-radius: 0 0 14px 14px;
  padding: 20px;
  background-color: var(--brand);
  box-shadow: var(--shadow-2);
  animation-duration: 400ms;
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
  z-index: 10;
}

.Popover_popoverContent__JiDhN[data-state="open"][data-side="top"] {
  animation-name: Popover_slideDownAndFade__znUyk;
}

.Popover_popoverContent__JiDhN[data-state="open"][data-side="right"] {
  animation-name: Popover_slideLeftAndFade__d6j4Q;
}

.Popover_popoverContent__JiDhN[data-state="open"][data-side="bottom"] {
  animation-name: Popover_slideUpAndFade__vGFcK;
}

.Popover_popoverContent__JiDhN[data-state="open"][data-side="left"] {
  animation-name: Popover_slideRightAndFade__BA_dh;
}

.Popover_popoverTrigger__E_8HM {
  background-color: transparent;
}

@keyframes Popover_slideUpAndFade__vGFcK {
  from {
    opacity: 0;
    transform: translateY(2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Popover_slideRightAndFade__BA_dh {
  from {
    opacity: 0;
    transform: translateX(-2px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes Popover_slideDownAndFade__znUyk {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes Popover_slideLeftAndFade__d6j4Q {
  from {
    opacity: 0;
    transform: translateX(2px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.Header_container__46aCD {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background-color: var(--white);
  height: 64px;
  padding-right: 50px;
  padding-left: 30px;
}

.Header_logo__Ux2j4 {
  height: 150px;
  width: 150px;
  margin-right: 8px;
  max-width: 150px;
  display: flex;
  align-items: center;
}

.Header_nav__KpBJk {
  display: flex;
  align-items: center;
  gap: 16px;
}

.Header_menu__7peW8 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  opacity: 0;
  margin-left: auto;
}

.Header_button__jPR5j {
  /* background-color: #FFB0B040; */
  width: 100px !important;
  justify-content: flex-start;
}

.Header_button__jPR5j svg {
    height: 14px;
    width: 14px;
    fill: #fff9;
  }

.Header_button__jPR5j div {
    font-size: 14px;
    font-weight: 400;
  }

.Header_logoutButton__PxPfN {
  color: #fff9 !important;
  align-self: flex-end;
  font-size: 12px;
  margin-top: 6px;
}

.Header_username___oIzL {
  display: none;
}

/* Estilo para o conteúdo do Popover */
.Header_popoverContent__jQEJY {
  margin-top: 35px !important;
}

@media (max-width: 768px) {
  .Header_popoverContent__jQEJY {
    margin-top: 17px !important;
  }
}

@media (min-width: 720px) {
  .Header_container__46aCD {
    height: 94px;
    padding-right: 50px;
    padding-left: 30px;
  }

  .Header_username___oIzL {
    display: block;
  }
}

.LoginIntro_wrapper__pO8Js {
  display: flex;
  height: 100%;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

  @media (max-width: 480px) {.LoginIntro_wrapper__pO8Js {
    align-items: flex-start;
    justify-content: flex-start
}
  }

.LoginIntro_mobileModalBackdrop__vMFPq {
  display: none;
}

@media (max-width: 600px) {

.LoginIntro_mobileModalBackdrop__vMFPq {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    position: fixed;
    top: 0;
    width: 100%;
    height: 85vh;
    z-index: 2
}
  }

.LoginIntro_mobileModal__fwSHs {
  background-color: #e62d25;
  color: #fff;
  width: 90%;
  max-width: 350px;
  padding-left: 20px;
  padding-right: 20px;
  height: 499px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: 400;
  line-height: 27px;
}

.LoginIntro_mobileModal__fwSHs p {
    margin-bottom: 30px;
  }

.LoginIntro_mobileModal__fwSHs a {
    font-weight: 700;
  }

.LoginIntro_closeMobileModalContainer__MWPb4 {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 10px;
  font-size: 35px !important;
  margin-right: -35px;
}

.LoginIntro_closeMobileModalContainer__MWPb4 img {
    width: 40px;
  }

.LoginIntro_head__YLglR {
  display: flex;
  flex-direction: column;
  padding: 0 16px;
  width: 100%;
  align-items: center;
  margin-top: 25vh;
}

@media (max-width: 480px) {

.LoginIntro_head__YLglR {
    margin-top: 25px;
    align-items: flex-start
}
  }

.LoginIntro_cardSection__3splM {
  display: flex;
  flex: 1;
  width: 100%;
  padding: 16px;
  justify-content: center;
  flex-direction: row;
}

@media (max-width: 480px) {

.LoginIntro_cardSection__3splM {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start
}
  }

.LoginIntro_card__qKmE2 {
  padding: 16px;
  background-color: var(--white);

  /* z-index: 3; */
  border-radius: 14px;

  /* border-radius: 14px; */
}

.LoginIntro_columns__h0Iq3 {
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 800px;
}

.LoginIntro_column__zrtog {
  flex: 1;
  margin: 0 10px;
  text-align: center;
}

.LoginIntro_boxFlex__oUhp0 {
  padding-top: 11px;

  /* width:50%; */
  margin-right: 25px;
  border-radius: 14px;
}

@media (max-width: 480px) {

.LoginIntro_boxFlex__oUhp0 {
    margin-right: 0;
    width: 100%;
    height: 212px;
    padding: 0 16px
}
  }

.LoginIntro_box__SYpMv {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 14px;

  /* border-radius: var(--size-2) 0 0 var(--size-2); */

  /* overflow-x: scroll; */

  /* width: 100%; */
  transition: 0.3s ease;
  height: 212px;
}

.LoginIntro_box__SYpMv:hover {
    filter: drop-shadow(0 4px 4px rgba(0 0 0 / 25%));
  }

.LoginIntro_box__SYpMv svg {
    height: 18px;
    width: 18px;
  }

.LoginIntro_box__SYpMv a {
    color: currentcolor;
  }

.LoginIntro_box__SYpMv a::before {
      content: "";
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
    }

.LoginIntro_myBox__Lx2Mp {
  width: 100%;
  border-radius: 14px;
}

.LoginIntro_myBox__Lx2Mp img {
    border-radius: var(--size-2) var(--size-2) 0 0;
    height: 108px;
    width: 100%;
    object-fit: cover;
  }

.LoginIntro_responsiveHeaderCompanies__u2dk9 {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {

.LoginIntro_responsiveHeaderCompanies__u2dk9 {
    display: none
}
  }

.LoginIntro_companiesHeaderWide__I76nd {
  width: 95%;
  display: flex;
  margin-left: 100px;
}

/* margin-bottom: 100px; */

@media (max-width: 480px) {

.LoginIntro_companiesHeaderWide__I76nd {
    display: none
}
  }

.LoginIntro_companiesHeader__2dcJK {
  display: none;

  /* display:none; */

  /* text-align: center; */
  font-weight: bold;
  font-size: 14px;
  color: var(--lucy-grey1);
}

/* margin-top:-26px; */

/* margin-left:100px; */

/* flex-wrap: nowrap; */

/* width: 200px;
  width:95%; */

/* justify-content:center; */

@media (max-width: 480px) {

.LoginIntro_companiesHeader__2dcJK {
    display: flex;
    size: var(--font-size-4);
    margin-top: 0;
    font-weight: bold;
    align-items: start;
    margin-bottom: 19px
}
  }

.LoginIntro_companies__xg18v {
  padding-top: 10px;
  width: 50%;
  overflow: auto;
}

/* padding: 0px 16px ; */

/* flex-wrap: wrap; */

@media (max-width: 480px) {

.LoginIntro_companies__xg18v {
    /* display:flex; */
    width: 100%;

    /* padding:16px; */

    flex-flow: column wrap
}
  }

.LoginIntro_scrollView__uUA7R {
  /* overflow-x: scroll; */

  /* padding: 0px 16px ; */
  scrollbar-width: none;
}

/* padding:  0px -36px 0px -36px; */

@media (max-width: 480px) {

.LoginIntro_scrollView__uUA7R {
    flex-wrap: wrap
}
  }

.LoginIntro_footer__dyidy {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  color: white;
  background-color: var(--brand);
  gap: 25px;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-align: left;
  border-radius: 0 0 var(--size-2) var(--size-2);
}

.LoginIntro_collaboratorBox__4arUD {
  background-color: var(--white);
}

.LoginIntro_collaboratorBox__4arUD img {
    padding: 20px;
    height: 108px;
    width: 420px;
    object-fit: contain;
  }

.LoginIntro_collaboratorBox__4arUD .LoginIntro_footer__dyidy {
    background-color: var(--white);
    color: var(--foreground);
  }

.LoginIntro_footerIcon__VDLJk {
  margin-left: 8px;
}

.LoginIntro_logoBox__ocN_h {
  background-color: #fff;
}

.LoginIntro_logo__Q6UcV {
  margin-top: 10px;
  max-height: 50px;
}

