@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.10.5/font/bootstrap-icons.css");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
.banner .container-img-banner {
  height: 320px;
}
.banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.bg-gradient-gray {
  background: linear-gradient(45deg, #796862, #a7a7a7);
}

.bg-color-primary {
  background-color: #e90707;
}

.bg-color-primary-200 {
  background-color: #ec4646;
}

.text-color-primary-200 {
  color: #ec4646;
}

.bg-color-primary-100 {
  background-color: #b12222;
}

.text-color-primary {
  color: #e90707;
}

.text-color-primary-800 {
  color: #ff9f9f;
}

.bg-color-dark {
  background-color: #796862;
}

.text-color-dark {
  color: #796862;
}

.bg-color-dark-100 {
  background-color: #cbbcb9;
}

.text-color-dark-100 {
  color: #cbbcb9;
}

.text-color-dark-0 {
  color: #4b3c36;
}

.bg-color-light {
  background-color: #fefefe;
}

.bg-turkese-color {
  background-color: #8a8a8a;
}

.bg-turkese-color-light {
  background: #bbbbbb;
}

.text-color-light {
  color: #fefefe;
}

.hover-scale-05:hover {
  transform: scale(1.05);
  transition: 0.12s ease;
}

#banner-mobile {
  display: none;
}

#banner-mobile.active {
  display: block;
}

.navbar {
  background: #fefefe;
}
.navbar .nav-item a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  color: #796862;
}
.navbar .nav-item a:hover {
  color: #4b3c36;
}

.nav-container__contato__item i {
  color: #e90707;
}
.nav-container__contato__item span {
  color: #796862;
}
.nav-container__contato__item span a {
  color: #796862;
}
.nav-container__contato__item span a:hover {
  color: #796862;
}

.dropdown-menu {
  background: #fefefe;
}
.dropdown-item {
  text-transform: none !important;
  font-weight: 400 !important;
  font-size: 16px !important;
}
.dropdown-item:hover {
  background: #ec4646;
}

.copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-direction: column;
  background: linear-gradient(45deg, #796862, #8a8a8a);
  padding: 1rem;
}
.copyright__logo {
  background: url("/assets/img/logo/arco.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 2rem;
  height: 2rem;
}
.copyright h5 {
  color: #fefefe;
  text-transform: uppercase;
  font-size: 0.95rem;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .copyright h5:after {
    content: "";
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    right: 103%;
    width: 2%;
    height: 27px;
    background: #ec4646;
  }
}
.copyright h5 ~ i {
  color: #fefefe;
}
.copyright ul li a {
  letter-spacing: 1px;
  color: #fefefe;
  text-decoration: none;
  font-weight: 300;
  font-size: 0.93rem;
}
.copyright ul li a:hover {
  color: #bbbbbb;
}
.copyright address {
  color: #fefefe;
}

.cardMembro {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: 3px solid rgb(226, 224, 224);
  height: 100%;
  padding: 0.5rem 0;
}
.cardMembro__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid #b12222;
  padding: 0.3rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.cardMembro__text h5 {
  color: #4b3c36;
}

.cardMembro2 {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
.cardMembro2__img {
  width: 190px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid #b12222;
}

.cardMembro3 {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid rgb(226, 224, 224);
  border-radius: 8px;
  padding: 0.5rem;
  height: 100%;
}
.cardMembro3__img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 2px solid #b12222;
}

.acesso-rapido {
  background: linear-gradient(to right, #b12222, #ec4646);
}
.acesso-rapido .imagem-link {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.acesso-rapido i.bi {
  font-size: 3rem;
  -webkit-background-clip: text;
          background-clip: text;
}
.acesso-rapido .container-quick-access {
  position: relative;
  left: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(#fefefe, #d8d8d8);
}
.acesso-rapido .container-quick-access a {
  background: linear-gradient(#fefefe, #bbbbbb);
  transition: 0.3s ease-in;
  border-radius: 10px;
}
.acesso-rapido .container-quick-access a:hover {
  background: linear-gradient(#bbbbbb, #d8d8d8);
  border-radius: 10px;
}
.acesso-rapido .glide__arrows {
  position: absolute;
  display: flex;
  justify-content: center;
  gap: 1rem;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.acesso-rapido .glide__arrows .glide__arrow {
  background: #ec4646 !important;
  border: none;
  display: inline;
  transform: unset;
  position: unset;
}
.acesso-rapido .glide__arrows i.bi {
  color: #fefefe;
}
.acesso-rapido__item {
  width: 50%;
}
.acesso-rapido__item a {
  color: #fefefe;
}
.acesso-rapido__item {
  border-right: 1px solid #fefefe;
}
.acesso-rapido__item:last-child {
  border-right: none;
}

.card-residencia--medica {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(121, 104, 98, 0.5)), url("/assets/img/residencia_medica.jpg");
  width: 100%;
  height: 300px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fefefe;
  transition: 0.2s ease-in;
}
.card-residencia--medica:hover {
  background-size: 105%;
  background-position: center;
}
.card-residencia--multidisciplinar {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(121, 104, 98, 0.5)), url("/assets/img/residencia_multidisciplinar.jpg");
  width: 100%;
  height: 300px;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fefefe;
  transition: 0.2s ease-in;
}
.card-residencia--multidisciplinar:hover {
  background-size: 105%;
  background-position: center;
}

.lgpd-fixed {
  height: 125px;
  width: 100%;
  background: rgba(64, 64, 65, 0.8);
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: center;
  z-index: 9999999999;
  display: none;
}

.lgpd-fixed__content {
  padding: 15px 25px;
  font-size: 17px;
  color: white;
}

.lgpd-fixed__content p {
  color: white;
}

@media (max-width: 640px) {
  .lgpd-fixed {
    height: 120px;
  }
  .lgpd-fixed__content {
    font-size: 12px !important;
  }
  .lgpd-fixed .btn-lgpd {
    font-size: 10px !important;
  }
}
.lgpd-fixed span {
  color: white;
  font-weight: 600;
}

.lgpd-fixed button {
  color: white;
  font-weight: 600;
  text-decoration: underline;
  background-color: transparent;
}

.lgpd-fixed .btn-lgpd {
  padding: 10px;
  text-transform: uppercase;
  background: #e90707;
  color: white;
  text-decoration: none;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
  border: none;
}

.btn-lgpd {
  margin-bottom: 10px;
}

.lgpd-fixed-block {
  display: block;
}

.lgpd-fixed-hidden {
  display: none;
}

.lgpd-fixed a {
  text-decoration: none;
  color: #ffffff;
}

.lgpd-fixed a:hover {
  color: rgb(22, 85, 185);
}

.estrutura__title {
  font-weight: 800;
  color: #796862;
  position: relative;
}
.estrutura__title::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #e90707;
  right: 100%;
  margin: 0 0.5rem 0 0;
}
.estrutura__texto {
  color: #4b3c36;
}

.horario-encontre__bg {
  position: relative;
  cursor: pointer;
}
.horario-encontre__bg span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fefefe;
  font-size: 1.5rem;
  font-weight: 800;
  text-shadow: 0px 0px 20px rgb(0, 0, 0);
  width: 100%;
}
.horario-encontre table tbody tr:nth-child(even) {
  background: #8a8a8a;
}
.horario-encontre table tbody tr:nth-child(odd) {
  background: #bbbbbb;
}
.horario-encontre table thead tr {
  background: #ec4646;
  color: #fefefe;
}

.areas {
  background: linear-gradient(to right, #8a8a8a, #bbbbbb);
}
.areas__imagem {
  width: 100%;
  height: 310px;
}
.areas span {
  font-size: 3rem;
  display: block;
}
.areas__item {
  position: relative;
}
.areas__titulo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fefefe;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.1rem;
}
.areas__ensino-pesquisa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 310px;
}
.areas__item {
  width: 50%;
  border-right: 1px solid #fefefe;
}
.areas__item:last-child {
  border-right: none;
}

.doacao {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.doacao .circle-video {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid black;
}
.doacao .circle-video i {
  color: #e90707;
}
.doacao .span-texto {
  width: 70%;
}
.doacao a.btn-acao {
  color: #fefefe;
  font-weight: 800;
  font-size: 2rem;
  background: #ec4646;
  padding: 0.3rem 0.5rem;
  margin: auto;
  border-radius: 200px;
}

.noticias__card {
  text-decoration: none;
}
.noticias__card--content h3 {
  font-weight: 700;
  color: #796862;
  margin-top: 0.8rem;
}
.noticias__card--content p {
  color: #4b3c36;
}
.noticias__card--img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

.videos .container-video {
  position: relative;
}
.videos .container-video i {
  position: absolute;
  color: #fefefe;
}
.videos .container-video:hover i {
  color: #e90707;
}

@media screen and (min-width: 768px) {
  .doacao .span-texto {
    width: 44%;
  }
}
.historia__titulo {
  margin-top: 1rem;
  font-weight: 800;
  color: #796862;
  position: relative;
}
.historia__titulo::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #e90707;
  right: 100%;
  margin: 0 0.5rem 0 0;
}
.historia__texto {
  color: #4b3c36;
}

.conselho__titulo {
  font-weight: 800;
  color: #796862;
  position: relative;
}
.conselho__titulo::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #e90707;
  right: 100%;
  margin: 0 0.5rem 0 0;
}

.capelania__img {
  width: 100%;
  height: 285px;
  -o-object-fit: cover;
     object-fit: cover;
}

.trabalhe-conosco button:hover {
  background: #ec4646;
  color: #fefefe;
}

.form-trabalhe-conosco .getData, .form-trabalhe-conosco .getData ~ p {
  height: 0;
  width: 0;
  opacity: 0;
}
.form-trabalhe-conosco .getData.active, .form-trabalhe-conosco .getData.active ~ p {
  height: auto;
  width: auto;
  opacity: 1;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.trabalhe-conosco {
  height: 100%;
  opacity: 0;
  transition: 0.3s ease-in-out;
}
.trabalhe-conosco.active {
  height: 100%;
  opacity: 1;
  transition: 0.3s ease-in-out;
}

.login-curriculo,
.login-curriculo form {
  height: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
  position: relative;
  z-index: -999;
}

.login-curriculo.active,
.login-curriculo.active form {
  background-color: #d8d8d8;
  padding: 1.5rem;
  height: 100%;
  opacity: 1;
  transition: 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 999;
}

.login-workus {
  cursor: pointer;
  background-color: #ec4646;
  color: #fefefe;
  z-index: 999;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

#curriculo_atual {
  margin-bottom: 1rem;
}
#curriculo_atual a {
  text-decoration: none;
  background-color: #796862;
  color: #d8d8d8;
  border-radius: 8px;
  padding: 0.5rem 1rem;
}
#curriculo_atual a:hover {
  color: #d8d8d8;
}

.ouvidoria button:hover {
  background: #ec4646;
  color: #fefefe;
}

.noticias a img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
.noticias__card--img img {
  width: 100%;
  height: 200px !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.ensino-pesquisa .areas ul li:hover,
.ensino-pesquisa .arquivos ul li:hover {
  cursor: pointer;
}

.biblioteca-virtual__img {
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.denuncia .index-denuncia,
.denuncia #form-denuncia {
  display: none;
}
.denuncia .index-denuncia.active,
.denuncia #form-denuncia.active {
  display: block;
}

.paciente-e-visitante button.active {
  background: #ec4646;
  color: #fefefe;
  transform: scale(1.08);
  transition: 0.12s ease-in;
}

.biblioteca-virtual-publicacao li:hover {
  cursor: pointer;
}
.biblioteca-virtual-publicacao .ano-publicacao.active {
  background: #ec4646;
  color: #fefefe;
  transform: scale(1.08);
  transition: 0.12s ease-in;
}

.corpo-clinico .expand {
  cursor: pointer;
}
.corpo-clinico .list-expand {
  height: 100%;
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.corpo-clinico .especialidade-btn:hover {
  transform: scale(1.08);
  padding-left: 8px;
}

.sala-imprensa nav ul li {
  list-style-type: none;
}
.sala-imprensa nav ul li a {
  display: flex;
  gap: 0.5rem;
  border: 1px solid #e90707;
  border-radius: 4px;
  padding: 0.5rem;
  margin: 0.3rem 0;
  text-decoration: none;
  color: #796862;
}

.informativos .container .row a {
  display: flex;
  background-color: #e90707;
  color: #fefefe;
  padding: 0.5rem;
  border-radius: 4px;
  margin: 0.5rem 0;
  text-decoration: none;
  gap: 0.5rem;
}
.informativos .container .row a:hover {
  background-color: #ec4646;
  color: #fefefe;
}

body {
  font-family: "Inter", sans-serif;
}

#modal__horarios {
  display: block;
}

#modal__horarios {
  display: none;
}

#modal__horarios.active {
  display: block;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#modal__horarios.active table {
  background: #fefefe;
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  box-shadow: 0px 0px 10px black;
}
#modal__horarios.active table tr, #modal__horarios.active table td, #modal__horarios.active table th {
  padding: 0.5rem;
}
#modal__horarios.active table tr:nth-child(even) {
  background: #cbbcb9;
}
#modal__horarios.active .modal__horarios--btn-close button {
  border: none;
  border-radius: 50%;
  background: #ec4646;
  width: 40px;
  height: 40px;
}

.whatsapp-eva {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 999;
  border-radius: 50%;
  text-align: center;
}

.hover {
  cursor: pointer;
}

a.btn-veja-mais, .btn-veja-mais {
  height: 48px;
  background: #e90707;
  color: #fefefe;
  border-radius: 100px;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  gap: 0.5rem;
}

.busca {
  width: 0;
  height: 0;
  opacity: 0;
  transition: 0.2s ease-in;
}

.busca.active {
  width: 100%;
  height: auto;
  opacity: 1;
  transition: 0.2s ease-in;
  padding: 0.5rem 0;
}

.header-manuais {
  background: #8a8a8a;
  padding: 0.5rem;
}
.header-manuais h5 {
  color: #fefefe;
}
.header-manuais i {
  color: #e90707;
}

.is-invalid {
  color: red;
}/*# sourceMappingURL=styleform.css.map */