@charset "UTF-8";
/*
 ITCSS ARCHITECTURE
 Doc: https://imasters.com.br/arquitetura-da-informacao/arquitetura-css-itcss
*/
label {
  width: 100%;
}

.form-control-lg {
  padding: 0.37rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}
@media screen and (max-width: 767px) {
  .form-control-lg {
    margin-top: 1rem;
  }
}

/* input type file */
input[type=file]:hover {
  cursor: pointer;
}

/* input type with name logo */
input[name=logo] {
  width: auto;
  height: auto;
}

.loading {
  border: 4px solid #f3f3f3; /* Cinza claro */
  border-top: 4px solid #3498db; /* Azul */
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite; /* Animação de rotação */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.passwords {
  position: relative;
}
.passwords__toggle {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  cursor: pointer;
}

.providers {
  position: relative;
}
.providers__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .providers__content {
    padding: 3rem 1.5rem;
    width: 60%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1280px) {
  .providers__content {
    width: 50%;
  }
}
.providers__form {
  width: 100%;
}
.providers__form2 {
  margin-bottom: 0;
}
.providers__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.providers__btn {
  margin-bottom: 0;
  margin-top: 0;
  border: 1px solid #66615B !important;
  height: 2.375rem;
  display: inline-flex;
  align-items: center;
  border-radius: 0.375rem;
}
.providers__empty {
  display: flex;
  justify-content: center;
  text-align: center;
}
.providers__clear {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.125rem;
  color: black;
  transition: all 0.3s ease;
}
.providers__clear:hover {
  text-decoration: none;
  color: red;
}
.providers__search {
  display: flex;
  gap: 1rem;
  margin: 0 auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .providers__search {
    width: 85%;
  }
}
.providers__title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0;
}
.providers__title span {
  color: red;
}
@media screen and (min-width: 768px) {
  .providers__title {
    width: 100%;
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1280px) {
  .providers__title {
    width: 80%;
  }
}
.providers__subtitle {
  font-size: 0.829rem;
  font-weight: 400;
  margin-bottom: 0;
  color: #66615B;
}
@media screen and (min-width: 1280px) {
  .providers__subtitle {
    font-size: 0.875rem;
  }
}
.providers__input {
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  width: 100%;
  border: 1px solid #66615B;
  outline: none;
}
.providers__input::-moz-placeholder {
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.providers__input::placeholder {
  transition: all 0.3s ease;
}
.providers__input:focus {
  border-color: red;
  outline: 1px solid red;
}
.providers__input:focus::-moz-placeholder {
  padding-left: 0.5rem;
}
.providers__input:focus::placeholder {
  padding-left: 0.5rem;
}
.providers__icon {
  border-radius: 0.375rem;
  width: 3.125rem;
  border: none;
  box-shadow: 0 2px 6px red;
  background-color: red;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}
.providers__icon:hover {
  background-color: #db0000;
  box-shadow: #db0000;
}
.providers__img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  display: none;
}
@media screen and (min-width: 768px) {
  .providers__img {
    display: block;
  }
}
.providers__vector1 {
  bottom: 0;
  right: 0;
}
.providers__vector2 {
  top: 1rem;
  left: 1rem;
}
.providers__container {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  gap: 1.5rem;
}
.providers__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .providers__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.providers__text {
  display: flex;
  flex-direction: column;
}
.providers__title2 {
  margin-bottom: 0;
  font-size: 1.125rem !important;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: black;
}
.providers__subtitle2 {
  margin-bottom: 0;
  font-size: 0.9375rem !important;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: normal !important;
  text-transform: none !important;
  color: rgba(47, 43, 61, 0.7019607843);
}
.providers__select {
  font-size: 0.875rem;
  line-height: 1.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.375rem;
  border: 1px solid #66615B;
  outline: none;
  height: 2.375rem;
  min-width: 40%;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .providers__select {
    min-width: 30%;
  }
}
.providers__cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(15rem, 1fr));
}
@media screen and (min-width: 613px) {
  .providers__cards {
    grid-template-columns: repeat(2, minmax(15rem, 1fr));
  }
}
@media screen and (min-width: 1280px) {
  .providers__cards {
    grid-template-columns: repeat(3, minmax(15rem, 1fr));
  }
}
.providers__card {
  border-style: solid;
  border-width: thin;
  border-color: #E6E5E7;
  border-radius: 0.375rem;
  background-color: white;
  color: rgba(47, 43, 61, 0.7019607843);
  overflow: hidden;
  overflow-wrap: break-word;
  text-decoration: none;
  padding: 0;
  z-index: 0;
  transition-duration: 0.28s;
  transition-property: box-shadow, opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.providers__card {
  position: relative;
}
.providers__card-header {
  padding-top: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.providers__card-body {
  line-height: 1.375rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: normal;
  padding: 1.5rem;
  text-transform: none;
  display: flex;
  flex-direction: column;
  min-height: 15rem;
  justify-content: space-between;
}
.providers__card-img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  height: 100%;
}
.providers__card-category {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: 0.375rem;
}
.providers__card-link:hover {
  text-decoration: none;
}
.providers__card-link:hover > h3 {
  color: black;
}
.providers__card-title {
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  font-size: 1.125rem !important;
  font-weight: 500;
  line-height: 1.75rem;
  letter-spacing: normal !important;
  color: #66615B;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.providers__card-text {
  margin-bottom: 1rem;
  height: 4.125rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.providers__card-more {
  text-align: center;
  transition: all 0.3s ease;
  padding: 0.375rem;
  background-color: transparent;
  border: 1px solid black;
  color: black;
  border-radius: 0.375rem;
}
.providers__card-more:hover {
  color: white;
  background-color: black;
  text-decoration: none;
}
.providers__pagination {
  display: flex;
  justify-content: center;
}
.providers__loader {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8); /* Fundo semi-transparente para o loader */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999; /* Coloca o loader sobre os conteúdos */
}
.providers__switch-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.providers__wrap-logo {
  display: inline-flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.providers__file {
  display: none;
}
.providers__add-files {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top: 1px solid lightgray;
}
.providers__labels {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.provider {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 1rem;
}
.provider__item {
  position: relative;
}
.provider__remove {
  padding: 0.5rem;
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  background-color: lightgray;
  border-radius: 50%;
  color: red;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.provider__remove:hover {
  cursor: pointer;
  background-color: red;
  color: white;
}
.provider__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid lightgray;
  padding-bottom: 1rem;
}
.provider__head {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.provider__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.provider__title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .provider__title {
    font-size: 3rem;
  }
}
@media screen and (min-width: 1280px) {
  .provider__title {
    font-size: 4rem;
  }
}
.provider__subtitle {
  font-size: 1.125rem;
  font-weight: 700;
  border-bottom: 1px solid lightgray;
  padding-bottom: 1rem;
}
.provider__info {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}
.provider__logo {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.provider__insta {
  margin-bottom: 0;
  margin-top: 0;
  transition: all 0.3s ease;
}
.provider__insta:hover {
  color: red;
  text-decoration: none;
}
.provider__btn {
  margin-bottom: 0;
  margin-top: 0;
  border-radius: 1rem;
}
.provider__body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.provider__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}
.provider__social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .provider__social {
    width: 40%;
  }
}
.provider__icon {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.provider__icon:hover {
  text-decoration: underline;
}
.provider__description {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .provider__description {
    width: 55%;
  }
}

.misc {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem;
  min-block-size: 100dvh;
}
.misc__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
}
.misc__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  font-size: clamp(3rem, 5vw, 6rem);
  line-height: clamp(3rem, 5vw, 6rem);
}
.misc__subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 2.375rem;
  letter-spacing: normal;
}
.misc__description {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.375rem;
  letter-spacing: normal;
  color: gray;
  text-align: center;
}
.misc__button {
  width: -moz-fit-content;
  width: fit-content;
}
.misc__footer {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  max-height: 440px;
}
.misc__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/images/403-Error-Forbidden.svg?6da19a4b50a4cdae6d3291804f792b9c) no-repeat center center;
}
.misc__avatar--alt {
  background: url(/images/404-Error-Page-Not-Found.svg?ea9510c4acfcd12c726c6608c730e121) no-repeat center center;
}

.orders__wrap {
  position: relative;
}
.orders__badge {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  background-color: #FFCA01;
  color: white;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
}

.overflow-unset {
  overflow: unset;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-auto {
  overflow-x: auto;
}

.cursor-pointer {
  cursor: pointer !important;
}
