/* Breadcrumbs */
#breadcrumbs {
  padding: 50px 0 0 0;
  background-color: #eeedf9;
}
#breadcrumbs .page-title {
  color: #1B3A69;  
  font-family: var(--font-BaksoSapi);
  font-size: 50px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}




/* Sobre */
#sobre {
  padding: 50px 0 0 0;
  background-color: #eeedf9;
}
#sobre .content,
#sobre .image {
  margin: 0 0 50px 0;
}
#sobre .content p {
  color: #1B3A69;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}
#sobre .content .action {
  display: block;
  width: fit-content;
  margin: 50px auto 0 auto;
}
#sobre .content .action h3 {
  color: #1B3A69;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 15px 0;
}
#sobre .content .action .actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#sobre .content .action .actions .botao {
    display: block;
    width: 100%;
    
    padding: 10px 50px;
    background-color: #E63331;
    border-radius: 50px;
    
    color: #fff;
    font-size: 25px;
    font-weight: 400;
    text-decoration: none;
    box-shadow: rgba(0, 0, 0, .2) 0 5px 10px;
    line-height: normal;
    text-align: center;
    margin: 0 auto;

    -webkit-transition: all .15s ease-in-out;
    -moz-transition: all .15s ease-in-out;
    -ms-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
}
#sobre .content .action .actions .botao:hover {
    background-color: #E63331;
    text-shadow: none;
    transform: scale(1.05);
}
#sobre .image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 32px 32px 200px 32px;
  overflow: hidden;
}
#sobre .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#sobre .image img._1 {
  object-position: center 25%;
}
#sobre .image img._2 {
  object-position: center bottom;
}



#missao-visao {
  position: relative;
  background-color: #fff;
  z-index: 0;
}
#missao-visao .divisor-top,
#missao-visao .divisor-bottom {
  position: relative;
  display: block;
  fill: #eeedf9;
  width: 100%;
  height: auto;
  z-index: -1;
}
#missao-visao .card-missao {
  position: relative;
  top: calc(var(--divisor-top-height, 0px) * -0.5);
  display: block;
}
#missao-visao .card-visao {
  position: relative;
  top: auto;
  bottom: calc(var(--divisor-bottom-height, 0px) * -0.75);
  display: block;
}
#missao-visao .card-missao h2,
#missao-visao .card-visao h2 {
  color: #0059A5;
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 10px 0;
}
#missao-visao .card-missao p,
#missao-visao .card-visao p {
  color: #1B3A69;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin: 0;
}




/* Centro de Distribuição */
#centro-distribuicao {
  background-color: #eeedf9;
  padding: 50px 0;
}
#centro-distribuicao .image {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 32px 32px 200px 32px;
  overflow: hidden;
}
#centro-distribuicao .image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#centro-distribuicao .content p {
  color: #1B3A69;
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}



/* Responsivo */
@media (max-width: 992px) {
  #breadcrumbs .page-title {
    font-size: 32px;
  }



  /* Sobre */
  #sobre {
    padding: 25px 0 0 0;
  }
  #sobre .content p {
    font-size: 18px;
    text-align: justify;
  }


  /* Missão Visão */
  #missao-visao .card-missao,
  #missao-visao .card-visao {
    top: unset;
    bottom: unset;
    margin: 50px 0;
  }


  /* Centro Distribuição */
  #centro-distribuicao .image {
    margin: 0 0 50px 0;
  }
  #centro-distribuicao .content p {
    font-size: 18px;
    text-align: justify;
  }
}