@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Comfortaa&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: 0;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.spinner {
  border: 8px solid rgba(0, 0, 0, 0.1);
  border-top: 8px solid rgb(68, 153, 161);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
header {
  width: 100%;
}

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

.header-content .header-icons,
.header-content .header-agendar {
  width: 20%;
  justify-content: center;
  text-align: center;
  align-items: center;
}

.header-content .header-logo {
  width: 50%;
}

i {
  color: #FFF;
}

.header-icons {
  display: flex;
  gap: 14px;
}

.header-icons a:hover i {
  animation: translateY 0.8s infinite alternate;
  color: rgb(68, 153, 161);
}

@keyframes translateY {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-8px) scale(1.1);
  }
}
.header-agendar {
  display: flex;
  align-items: center;
}

.header-button {
  display: flex;
  border: 1px solid #FFF;
  text-align: center;
  align-items: center;
  padding: 8px 10px;
  border-radius: 4px;
  color: #FFF;
  background-color: transparent;
  transition: background-color 0.8s;
}

.header-button:hover {
  border: 1px solid rgb(244, 96, 54);
  background-color: rgb(244, 96, 54);
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.header-logo img {
  max-width: 250px;
}

@media screen and (max-width: 768px) {
  .header-content {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .header-content i {
    margin-top: 16px;
    font-size: 34px;
  }
  .header-logo img {
    margin-top: 12vh;
  }
  .header-button {
    display: none;
  }
}
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8px;
}

.bg-home {
  position: relative;
}

.bg-home::before {
  content: "";
  display: block;
  position: absolute;
  background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.7) 30%, rgb(68, 153, 161)), url("../assets/enfermeira-banner.webp");
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  opacity: 0.95;
}

.hero {
  color: #FFF;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
}
.hero h1 {
  text-align: center;
  line-height: 150%;
  max-width: 940px;
  font-size: 46px;
}
.hero p {
  text-align: center;
  margin: 14px 0;
}

.button-contact, .button-exames {
  padding: 14px 28px;
  color: #FFF;
  background-color: rgb(244, 96, 54);
  border: 0;
  font-size: 18px;
  font-weight: 600;
  margin: 14px 0;
}

.button-exames {
  border: 1px solid #FFF;
  background-color: transparent;
  border-radius: 10px;
}

.button-contact:hover, .button-exames:hover {
  animation: scaleButton 0.8s alternate infinite;
}

@keyframes scaleButton {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.07);
  }
}
@media screen and (max-width: 768px) {
  .hero {
    min-height: 60vh;
  }
  .hero h1 {
    font-size: 34px;
    padding: 0 14px;
    width: 100%;
  }
  .hero p {
    font-size: 14px;
  }
  .bg-home::before {
    background-image: linear-gradient(to bottom, rgba(6, 18, 30, 0.8) 40%, rgb(68, 153, 161)), url("../assets/enfermeira-banner-vertical-2.webp");
    background-position: 50% 0%;
    opacity: 0.95;
  }
}
@media screen and (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
  }
}
.about {
  background-color: rgb(68, 153, 161);
  overflow: hidden;
  color: #FFF;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.about-content img {
  max-width: 570px;
}

.about-content div {
  flex: 1;
}

.about-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.about-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }
}
.services, .local {
  background-color: #f7f4e5;
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.services-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
  color: rgb(68, 153, 161);
}

.services-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}

.local p {
  margin-top: 2%;
  text-align: center;
}

.exams {
  display: flex;
  justify-content: center;
  align-items: stretch; /* Garante que os cards tenham a mesma altura */
  gap: 16px;
  padding: 10px 10%;
  flex-wrap: wrap; /* Para que os cards quebrem para uma nova linha em telas menores */
}

.exam {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  border-radius: 8px;
  box-shadow: 0px -1px 17px -4px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  flex-wrap: wrap;
  text-align: center;
  min-width: 200px;
  max-width: 250px;
  min-height: 400px; /* Define uma altura mínima para garantir uniformidade */
}
.exam img {
  width: 100%;
  max-width: 354px;
  transition: transform 0.2s;
  -o-object-fit: cover;
     object-fit: cover; /* Garante que a imagem ocupe o espaço sem distorcer */
  height: auto;
}

.exam img:hover {
  transform: scale(1.2);
  z-index: 1;
}

.exam-info {
  padding: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Garante que o botão fique alinhado na parte inferior */
  flex-grow: 1; /* Faz com que o conteúdo preencha o espaço disponível */
}

.exam-info button, .exam-info a {
  color: #FFF;
  background-color: rgb(244, 96, 54);
  padding: 4px 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
}

.exam-info a:hover {
  animation: scaleButton 0.6s alternate infinite;
}

@media screen and (max-width: 768px) {
  .exams {
    flex-direction: column;
    flex-wrap: nowrap;
  }
  .exam {
    max-width: 300px;
    width: 90%;
    min-height: 400px; /* Define uma altura mínima para garantir uniformidade */
  }
  .exam img {
    max-width: 740px;
  }
}
.planos-e-convenios {
  background-color: #f7f4e5;
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}

.planos-content, .convenios-content {
  margin: 60px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.planos-content h2, .convenios-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
  color: rgb(68, 153, 161);
}
.planos-content p, .convenios-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
  max-width: 780px;
}
.planos-content ul, .convenios-content ul {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  list-style: none;
}
.planos-content ul li, .convenios-content ul li {
  width: 40%;
  gap: 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.planos-content ul li img, .convenios-content ul li img {
  width: 100%;
  max-width: 354px;
  height: auto;
  transition: transform 0.2s;
  -o-object-fit: cover;
     object-fit: cover; /* Garante que a imagem ocupe o espaço sem distorcer */
  height: auto;
}

.planos-content ul {
  align-items: center;
  justify-content: center;
}

.convenios-content ul li {
  width: 20%;
}

@media screen and (max-width: 768px) {
  .planos-content, .convenios-content {
    padding: 5% 0 5% 0;
  }
  .planos-content ul, .convenios-content ul {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
  .planos-content ul li, .convenios-content ul li {
    width: 80%;
    justify-content: center;
    max-width: 768px;
  }
}
.servicos-corporativos-treinamentos {
  background-color: rgb(68, 153, 161);
  overflow: hidden;
  color: #FFF;
}

.servicos-corporativos-treinamentos-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.servicos-corporativos-treinamentos-content img {
  max-width: 570px;
}

.servicos-corporativos-treinamentos-content div {
  flex: 1;
}

.servicos-corporativos-treinamentos-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
}
.servicos-corporativos-treinamentos-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .servicos-corporativos-treinamentos-content {
    flex-direction: column;
  }
}
.produtos {
  background-color: #f7f4e5;
  color: #232224;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
}
.produtos .prdotos-content {
  margin-top: 80px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.produtos .prdotos-content h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
  color: rgb(68, 153, 161);
}
.produtos .prdotos-content p {
  line-height: 150%;
  margin-bottom: 14px;
  text-align: center;
}
.produtos .prdotos-content img {
  width: 100%;
  max-width: 354px;
  height: auto;
  transition: transform 0.2s;
  -o-object-fit: cover;
     object-fit: cover; /* Garante que a imagem ocupe o espaço sem distorcer */
  height: auto;
}
.produtos .prdotos-content a {
  color: #FFF;
  background-color: rgb(244, 96, 54);
  margin-top: 8px;
  padding: 8px;
  border-radius: 4px;
  border: 0;
  cursor: default;
}
.produtos .prdotos-content a:hover {
  animation: scaleButton 0.5s alternate infinite;
}

@media screen and (max-width: 768px) {
  .prdotos-content {
    padding: 10% 0 20% 0;
  }
}
.infraestrutura {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF;
  padding: 5vh 0;
  width: 100%;
  padding: 2% 5%;
}
.infraestrutura h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 38px;
  margin-bottom: 14px;
}
.infraestrutura .unidades {
  display: flex;
  flex-direction: column;
  gap: 10%;
  margin: 2vh 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.infraestrutura .unidades .unidade {
  width: 70%;
  height: 400px;
  margin: 5vh 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.infraestrutura .unidades .unidade .img-e-descricao {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  align-items: center;
}
.infraestrutura .unidades .unidade .img-e-descricao img {
  width: auto;
  height: 400px;
  border-radius: 20px 0 0 20px;
}
.infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: start;
  text-align: start;
  background-color: rgb(229, 192, 123);
  height: 80%;
  border: 1px solid rgb(229, 192, 123);
  border-left: 0;
  border-radius: 0 20px 20px 0;
  padding: 20px 10px 20px 20px;
  gap: 10px;
}
.infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao article {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao article a {
  font-style: normal;
  color: #FFF;
}
.infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao article i {
  font-size: 15px;
}
.infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao .button-maps {
  color: #FFF;
  padding: 10px;
  border: 1px solid #FFF;
  border-radius: 4px;
  transition: all 0.3s;
}
.infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao .button-maps:hover {
  background-color: rgb(68, 153, 161);
  border: 1px solid rgb(68, 153, 161);
  font-weight: bold;
}
.infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao h3 {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .infraestrutura {
    margin-top: 25px;
  }
  .infraestrutura .unidades .unidade {
    width: 90%;
    height: auto;
  }
  .infraestrutura .unidades .unidade .img-e-descricao {
    flex-direction: column;
  }
  .infraestrutura .unidades .unidade .img-e-descricao img {
    width: auto;
    height: 400px;
    border-radius: 20px 20px 0 0px;
  }
  .infraestrutura .unidades .unidade .img-e-descricao .unidade-descricao {
    border-radius: 0 0px 20px 20px;
  }
}
.contato {
  padding: 5vh;
  background-color: #f7f4e5;
  display: flex;
  align-items: center;
  text-align: center;
}
.contato h2 {
  color: rgb(68, 153, 161);
  font-size: 38px;
  margin-bottom: 15px;
}
.contato ul {
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 5vh 0;
}
.contato ul li i {
  color: #040f1a;
  padding: 0 5px;
}
.contato ul li a {
  text-decoration: none;
  color: #040f1a;
}

.fundadora {
  background-color: #f7f4e5;
  overflow: hidden;
  color: #232224;
}

.fundadora-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 34px 14px 64px 14px;
}
.fundadora-content img {
  max-width: 570px;
}

.fundadora-content div {
  flex: 1;
}

.fundadora-description h2 {
  font-size: 38px;
  margin-bottom: 24px;
  color: rgb(68, 153, 161);
}
.fundadora-description p {
  margin-bottom: 14px;
  line-height: 150%;
}

@media screen and (max-width: 768px) {
  .fundadora-content {
    flex-direction: column;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 54px 14px;
  gap: 24px;
  color: #FFF;
}
.footer .copyright .horizontal, .footer .copyright .vertical {
  line-height: 1.6em;
}
.footer .copyright .horizontal {
  display: flex;
}
.footer .copyright .vertical {
  display: none;
  align-items: center;
  text-align: center;
  gap: 5px;
}

.footer-rede-social {
  display: flex;
  gap: 8px;
  color: #FFF;
}
.footer-rede-social a {
  text-align: center;
  text-decoration: none;
  color: #FFF;
}
.footer-rede-social a div {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

#desenvolvido {
  margin-top: 75px;
  text-align: end;
}

#desenvolvido a {
  color: #fff;
}

.view-logo {
  max-width: 50vw;
}

.btn-whatsapp {
  position: fixed;
  bottom: 14px;
  right: 24px;
  z-index: 99;
}
.btn-whatsapp img {
  max-width: 74px;
  transition: transform 0.4s;
}
.btn-whatsapp img:hover {
  transform: scale(1.1);
}

.btn-whatsapp .tooltip-text {
  visibility: hidden;
  position: absolute;
  width: 120px;
  top: 8px;
  left: -144px;
  padding: 6px;
  border-radius: 8px;
  text-align: center;
  background-color: #232224;
  color: #FFF;
  opacity: 0;
  transition: opacity 0.4s;
}

.btn-whatsapp:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .footer .copyright {
    max-width: 80%;
  }
  .footer .copyright .horizontal {
    display: none;
  }
  .footer .copyright .vertical {
    display: flex;
  }
  .btn-whatsapp img {
    max-width: 64px;
  }
}
body {
  font-family: "Comfortaa", sans-serif;
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: rgb(68, 153, 161);
}

button {
  font-family: "Comfortaa", sans-serif;
  cursor: pointer;
}

svg {
  width: 100%;
}

img {
  width: 100%;
}

a {
  cursor: pointer;
  text-decoration: none;
}/*# sourceMappingURL=style.css.map */