#banner {
  width: 100%;
  height: auto;
  padding: 70px 0;
  background: url(../images/11186.jpg) center no-repeat;
  background-size: cover;
}

#banner .container {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.textoBanner {
  width: 100%;
  max-width: 500px;
  animation: textoBannerAnimation ease 1s normal none;
}
@keyframes textoBannerAnimation {
  0% {
    transform: translateX(200px);
    opacity: 0;
  }

  20% {
    opacity: 0.5;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.textoBanner h1,
.textoBanner h2 {
  font-size: 53px;
  line-height: 73px;
  font-weight: 700;
}

.textoBanner h1 {
  color: #fff;
}
.textoBanner h2 {
  color: #fff;
}

.textoBanner span {
  background: #2e91c6;
  color: #fff;
}

.textoBanner p {
  font-size: 16px;
}

.textoBanner a {
  display: block;
  padding: 20px 0;
  text-align: center;
  border: 1px solid #264784;
  color: #264784;
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
  max-width: 350px;
  transition: 0.5s;
}

.textoBanner a:hover {
  background: #264784;
  color: #fff;
}

/* FIM BANNER */

/* BOXES SOBRE */

#boxes-sobre {
  width: 100%;
  height: auto;
}

#boxes-sobre .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: #fff;
}
#boxes-sobre .container div {
  max-width: 380px;
  min-height: 334px;
  background-color: #2e91c6;
  padding: 40px 30px;
  transform: translateY(-30px);
  opacity: 0;
}

#boxes-sobre .container div:nth-child(1) {
  animation: boxesAnimation 1s ease 0.5s forwards;
}

#boxes-sobre .container div:nth-child(2) {
  animation: boxesAnimation 1s ease 1s forwards;
}

#boxes-sobre .container div:nth-child(3) {
  animation: boxesAnimation 1s ease 1.5s forwards;
}

@keyframes boxesAnimation {
  from {
    transform: translateY(0);
    opacity: 0;
  }
  to {
    transform: translateY(-30px);
    opacity: 1;
  }
}

#boxes-sobre .container div h3 {
  font-size: 18px;
  margin: 15px 0;
}
#boxes-sobre .container div p {
  font-size: 1rem;
}

/* BOXES SOBRE */

/* O QUE FAZEMOS */

#o-que-fazemos {
  width: 100%;
  height: auto;
  padding: 70px 0 0 0;
  background-color: #f4f4f4;
}

.titulo-central {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.titulo-central h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  color: #333;
}
.titulo-central span {
  display: block;
  height: 2px;
  width: 40px;
  background-color: #2e91c6;
}
.titulo-central p {
  color: #777;
}

#boxes-servicos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 50px 0 0 0;
}

.box-dois-servicos {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: auto;
  text-align: left;
  margin-bottom: 70px;
}

.box-dois-servicos i {
  font-size: 45px;
  color: #2e91c6;
}

.box-dois-servicos h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
}

.box-dois-servicos p {
  font-size: 1.1rem;
  color: #777;
}

.box-dois-servicos a {
  font-size: 1.1rem;
  color: #2e91c6;
  border-bottom: 2px solid #f4f4f4;
  transition: 250ms ease-in-out;
}
.box-dois-servicos a:hover {
  color: #0087be;
  border-bottom: 2px solid #0087be;
}

.box-dois-servicos div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

#img-servicos {
  width: 70%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: -22px;
}

#img-servicos img {
  width: 100%;
}

/* O QUE FAZEMOS */

/* NUMEROS E ESTATISTICAS */

#numeros-estatisticas {
  width: 100%;
  height: 480px;
  background: url("../images/medicos.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

#numeros-estatisticas::before {
  background-color: rgba(0, 135, 190, 0.8);
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

/* NUMEROS E ESTATISTICAS */

/* NOTICIAS E OFERTAS */

#noticias-ofertas {
  width: 100%;
  height: auto;
  padding: 70px 0;
}

.row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

#ofertas,
#noticias {
  width: 50%;
}

.titulo-esquerda {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.titulo-esquerda h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
  color: #333;
}
.titulo-esquerda span {
  display: block;
  height: 2px;
  width: 40px;
  background-color: #2e91c6;
}
.titulo-esquerda p {
  color: #777;
}

/* NOTICIAS E OFERTAS */

.owl-carousel {
  width: 100%;
  height: auto;
  padding: 50px 0;
  position: relative;
}

.owl-dots {
  display: none !important;
}

.owl-carousel .item {
  position: relative;
  z-index: 100;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.owl-nav {
  position: absolute;
  top: 0;
  right: 10px;

  display: flex;
  gap: 10px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
  background-color: #0087be;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  display: grid;
  place-items: center;
}

.owl-nav i {
  font-size: 18px;
  color: #fff;
}

.box-noticias {
  max-height: 495px;
}

.box-noticias .box-item {
  color: #000;
}

.ctn-noticia {
  border: 1px solid #eee;
  border-top: none;
  overflow: hidden;
  padding: 20px;
}

.ctn-noticia h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: 600;
  color: #000;
}
.ctn-noticia h3:hover {
  color: #0087be;
}

.ctn-noticia .autor {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 15px 0;
}

.ctn-noticia p {
  margin-bottom: 15px;
}

.ctn-noticia span {
  color: #000;
}

.ctn-noticia span:hover {
  color: #0087be;
  border-bottom: 2px solid #0087be;
}

#accordion {
  list-style: none;
  margin: 50px 0 0 0;
  padding: 0;
}

.accordion {
  width: 100%;
}
.accordion li {
  margin: 10px 0;
  overflow: hidden;
}
.link {
  text-transform: uppercase;
  color: #484848;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 15px 15px 20px;
  overflow: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.seta_accordion {
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  width: 1.5%;
}
.accordion li.open .seta_accordion {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  top: 22px;
}
.submenu {
  display: none;
  padding: 15px 30px;
  color: #7e7e7e;
}

#parceiros {
  width: 100%;
  height: auto;
  background-color: #f7f7f7;
}

#parceiros .item {
  display: flex;
  justify-content: center;
}
#parceiros .owl-nav {
  display: flex;
  margin-top: -50px;
}

#parceiros .owl-prev,
#parceiros .owl-next {
  background-color: #bdbbbc;
}
#parceiros .owl-nav i {
  color: #fff;
}
#parceiros .owl-dots {
  display: none !important;
}

/* FIM CONTATO */

@media screen and (max-width: 900px) {
  #banner {
    width: 100%;
    height: auto;
    padding: 70px 0;
    background-size: cover;
    background-position: -200px 0;
  }

  #banner .container {
    flex-wrap: wrap;
    align-items: center;
  }

  .textoBanner {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .textoBanner h1 {
    font-size: 40px;
    line-height: 40px;
    font-weight: 700;
  }

  #boxes-servicos {
    flex-direction: column;
  }

  .box-dois-servicos {
    margin-bottom: 0px;
  }

  #img-servicos {
    width: 100%;
    margin-bottom: 0px;
    padding: 30px 0;
  }

  #boxes-sobre .container {
    flex-direction: column;
    gap: 20px;
  }

  .owl-nav {
    display: none;
  }
  .owl-dots {
    display: block !important;
  }
}

@media screen and (max-width: 700px) {
}
