* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

header .headerFixed {
  position: fixed;
  width: 100%;
  background-color: white;
  z-index: 98;
}
header .btnHamburguer {
  display: none;
}
header .ajustHeader {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 100px;
}
header .ajustHeader .logo img {
  width: 140px;
  display: block;
}
header .ajustHeader .noneImg {
  display: none;
}
header .ajustHeader .menuNav .logoMobil {
  display: none;
}
header .ajustHeader .menuNav ul {
  display: flex;
  gap: 35px;
}
header .ajustHeader .menuNav ul li a {
  color: #004DA6;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 1s;
  position: relative;
  transition: 1s;
}
header .ajustHeader .menuNav ul li a:hover::after {
  content: "";
  width: 40px;
  height: 3px;
  bottom: 0;
  left: 0;
  border-radius: 10px;
  background-color: #004DA6;
  position: absolute;
}
header .ajustHeader .copy {
  display: none;
}
header .headerInfo {
  background-color: white;
}
header .headerInfo .overflow .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 100px 0 0 0;
}
header .headerInfo .overflow .header .col1 {
  flex: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
header .headerInfo .overflow .header .col1 .titleHeader {
  display: flex;
  justify-content: flex-start;
}
header .headerInfo .overflow .header .col1 .titleHeader h1 {
  color: #004DA6;
  font-size: 2.2rem;
  font-weight: bold;
  text-transform: uppercase;
  max-width: 90%;
}
header .headerInfo .overflow .header .col1 .subtitleHeader {
  color: #7f8c8d;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 36px;
}
header .headerInfo .overflow .header .col1 .subtitleHeader strong {
  font-weight: normal;
}
header .headerInfo .overflow .header .col1 .contactHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 25px;
}
header .headerInfo .overflow .header .col1 .contactHeader .videoheader .modal-video span {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  color: #00ADEF;
  cursor: pointer;
}
header .headerInfo .overflow .header .col1 .contactHeader .videoheader .modal-video span i {
  font-size: 2.2rem;
  color: #00ADEF;
}
header .headerInfo .overflow .header .col2 {
  flex: 0.7;
}
header .headerInfo .overflow .header .col2 .imgHeader {
  display: flex;
  justify-content: end;
  overflow: hidden;
  height: 580px;
}
header .headerInfo .overflow .header .col2 .imgHeader img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .headerInfo .overflow .cardsHeaderContainer {
  position: absolute;
  top: 110vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 17px;
  padding-right: 10px;
}
header .headerInfo .overflow .cardsHeaderContainer .card-item {
  flex: 1;
  background-color: #004DA6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 25px 10px;
  border-radius: 15px;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
header .headerInfo .overflow .cardsHeaderContainer .card-item div {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .headerInfo .overflow .cardsHeaderContainer .card-item div img {
  width: 150px;
}
header .headerInfo .overflow .cardsHeaderContainer .card-item div h3 {
  color: white;
  font-weight: 300;
}
header .video {
  background-color: transparent;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}
header .video .fa-circle-xmark {
  display: flex;
  position: absolute;
  top: 60px;
  right: 12%;
  font-size: 30px;
  cursor: pointer;
  color: #36CDBC;
}
header .video video {
  box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  background-color: #000;
}
header .close {
  display: flex;
}

.contact button {
  background-color: transparent;
}
.contact button a {
  color: #00ADEF;
  display: block;
  width: 150px;
  height: 45px;
  border-radius: 10px;
  border: 2px solid #00ADEF;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 3px;
  transition: ease-in 0.5s;
  line-height: 40px;
}
.contact a:hover {
  border: none;
  box-sizing: border-box;
  color: #fff;
  background-color: #004DA6;
  border: 2px solid #004DA6;
}

@media (max-width: 576px) {
  header .headerInfo {
    background-color: #fff;
  }
  header .headerInfo .overflow .header {
    height: 212vh;
    flex-direction: column-reverse;
  }
  header .headerInfo .overflow .header .col1 {
    gap: 20px;
    order: 2;
  }
  header .headerInfo .overflow .header .col1 .titleHeader h1 {
    color: #004DA6;
    font-size: 1.5rem;
    margin-top: 40px;
  }
  header .headerInfo .overflow .header .col1 .subtitleHeader {
    font-size: 1rem;
    font-weight: 400;
    color: #7f8c8d;
    margin-bottom: 15px;
  }
  header .headerInfo .overflow .header .col2 {
    flex: 0.1;
    order: 2;
  }
  header .headerInfo .overflow .header .col2 .imgHeader img {
    min-width: 90%;
  }
  header .headerInfo .overflow .header .col2 .slider {
    max-width: 97% !important;
  }
  header .headerInfo .overflow .cardsHeaderContainer {
    top: 115vh !important;
    flex-direction: column;
    gap: 7px;
  }
  header .headerInfo .overflow .cardsHeaderContainer .card-item {
    width: 100%;
  }
  header .ajustHeader .logo img {
    width: 110px;
  }
}
@keyframes animationBtbMenu {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
@media (max-width: 768px) {
  header .btnHamburguer {
    display: flex;
    position: fixed;
    right: 15px;
    top: 30px;
    font-size: 30px;
    cursor: pointer;
    color: #004DA6;
    z-index: 9999;
    animation-name: animationBtbMenu;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 4;
    animation-direction: alternate;
  }
  header .btnHamburguer .fa-circle-xmark {
    display: none;
  }
  header .ajustHeader .menuNav {
    background-color: #36CDBC;
    width: 90%;
    display: none;
    flex-direction: column;
    align-items: center;
    position: fixed;
    height: 80vh;
    left: 50%;
    transform: translateX(-50%);
    top: 65%;
    border-radius: 20px;
    transition: all 0.5s linear;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
  }
  header .ajustHeader .menuNav .logoMobil {
    display: block;
    text-align: center;
    margin: 70px 0 20px 0;
    width: 100%;
    position: relative;
  }
  header .ajustHeader .menuNav .logoMobil img {
    width: 100px;
  }
  header .ajustHeader .menuNav ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
  }
  header .ajustHeader .menuNav .copy {
    display: block;
    width: 300px;
    text-align: center;
    color: #36CDBC;
    position: absolute;
    bottom: 50px;
  }
  header .ajustHeader .openModal {
    display: flex;
  }
  header .headerInfo {
    height: 150vh;
  }
  header .headerInfo .overflow .header {
    padding-top: 175px;
    flex-direction: column-reverse;
    height: 100vh;
  }
  header .headerInfo .overflow .header .col1 {
    gap: 10px;
  }
  header .headerInfo .overflow .header .col1 .titleHeader h1 {
    color: #004DA6;
    font-size: 1.6rem;
    margin-top: 40px;
  }
  header .headerInfo .overflow .header .col1 .subtitleHeader {
    font-size: 1rem;
    font-weight: 400;
    color: #7f8c8d;
    margin-bottom: 15px;
  }
  header .headerInfo .overflow .header .col2 .imgHeader {
    display: none;
    justify-content: center;
  }
  header .headerInfo .overflow .header .col2 .imgHeader img {
    width: 65%;
  }
  header .headerInfo .overflow .cardsHeaderContainer {
    top: 140vh;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 7px;
  }
  header .headerInfo .overflow .cardsHeaderContainer .card-item {
    padding: 35px 5px;
  }
  header .headerInfo .overflow .cardsHeaderContainer .card-item div {
    height: 50px;
  }
  header .headerInfo .overflow .cardsHeaderContainer .card-item div img {
    width: 80px;
  }
  header .headerInfo .overflow .cardsHeaderContainer .card-item div h3 {
    font-size: 1rem;
  }
}
@media (max-width: 996px) {
  header .headerInfo .overflow .header {
    height: 100vh;
  }
  header .headerInfo .overflow .header .col2 {
    flex: 0.7;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 0;
  }
  header .headerInfo .overflow .header .col2 .imgHeader {
    display: flex;
    justify-content: center;
  }
}
footer {
  background-color: #000F21;
}
footer .footer-container {
  display: flex;
  flex-direction: row;
  padding: 50px 0;
}
footer .footer-container div ul {
  display: flex;
  flex-direction: column;
  padding: 30px 0;
  gap: 17px;
}
footer .footer-container div ul li a {
  color: white;
  font-weight: 300;
  transition: 0.5s;
}
footer .footer-container div ul li a:hover {
  color: #36CDBC;
}
footer .footer-container .foo-col1 {
  flex: 1;
}
footer .footer-container .foo-col1 .foo-text {
  padding: 15px 0;
}
footer .footer-container .foo-col1 .foo-text p {
  text-align: justify;
  font-size: 0.9rem;
  color: white;
  font-weight: 200;
  padding: 0 60px 0 0;
}
footer .footer-container .foo-col1 .foo-text p strong {
  color: #36CDBC;
  font-weight: normal;
}
footer .footer-container .foo-col1 .foo-social ul {
  display: flex;
  gap: 20px;
  flex-direction: row;
}
footer .footer-container .foo-col1 .foo-social ul li a {
  display: block;
  background-color: transparent;
  border: 2px solid #179385;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 52px;
  transition: 0.5s;
}
footer .footer-container .foo-col1 .foo-social ul li a i {
  font-size: 1.5rem;
  color: #1eae9d;
  transition: 0.5s;
}
footer .footer-container .foo-col1 .foo-social ul li a:hover {
  border: 2px solid #36CDBC;
}
footer .footer-container .foo-col1 .foo-social ul li a:hover i {
  color: #36CDBC;
}
footer .footer-container .foo-col2 {
  flex: 0.3;
}
footer .footer-container .foo-col3 {
  flex: 0.4;
}
footer .footer-container .foo-col4 {
  flex: 0.6;
}
footer .footer-container .foo-title {
  color: #36CDBC;
  font-size: 1.8rem;
}
footer .footer-container .foo-title .pqn {
  font-size: 1rem;
}
footer .footer-container .foo-cols {
  flex: 1;
  display: flex;
}
footer .direitos {
  text-align: center;
  padding: 30px 0px;
  border-top: 1px solid #fff;
  border-top-color: aqua;
}
footer .direitos p {
  color: #36CDBC;
  font-size: 0.8rem;
}
footer .direitos p strong {
  color: #36CDBC;
  font-weight: 700;
}
footer .btnZap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  height: auto;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  animation-name: animationZap;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}
footer .btnZap a {
  display: block;
  font-size: 50px;
  color: #5CF576;
  transition: ease 0.5s;
  font-weight: 400;
}
footer .btnZap a:hover {
  font-size: 60px;
}
footer .btnZap::before {
  content: "Entre em contato";
  position: relative;
  background-color: #36CDBC;
  padding: 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  color: #fff;
  font-weight: normal;
  letter-spacing: 2px;
  display: none;
}
footer .btnZap:hover::before {
  display: flex;
}

@keyframes animationZap {
  0% {
    bottom: 10px;
  }
  50% {
    bottom: 60px;
  }
  100% {
    bottom: 10px;
  }
}
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    justify-content: center;
  }
  footer .foo-col1 .foo-social ul {
    justify-content: center;
    padding-bottom: 80px;
  }
}
@media (max-width: 576px) {
  footer .footer-container {
    flex-direction: column;
    justify-content: center;
  }
  footer .footer-container .foo-col1 .foo-social {
    padding-bottom: 40px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  footer .footer-container .foo-cols {
    flex-direction: column;
  }
  footer .footer-container .foo-cols div {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  footer .footer-container .foo-cols div ul li a {
    font-size: 1rem;
  }
}
main {
  padding-right: 10px;
  overflow-x: hidden;
  padding-top: 500px;
}
main .titleSection {
  width: 100%;
  text-align: start;
  padding-bottom: 50px;
}
main .titleSection h3 {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 600;
  position: relative;
  color: #004DA6;
}
main .titleSection h3::before {
  content: " ";
  position: absolute;
  bottom: 0;
  width: 40px;
  height: 4px;
  border-radius: 10px;
  background-color: #004DA6;
}
main .subtitle--section {
  padding: 0 0 120px 0;
  text-align: center;
}
main .subtitle--section h2 {
  background-color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
  color: #004DA6;
  font-weight: 500;
}
main .subtitle--section h2 strong {
  font-weight: 500;
}
main .about .colsConatinerSectionOn {
  display: flex;
  flex-direction: row;
  gap: 80px;
}
main .about .colsConatinerSectionOn .colSection-on {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
main .about .colsConatinerSectionOn .colSection-on .titleLocation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-weight: normal;
}
main .about .colsConatinerSectionOn .colSection-on .titleLocation p {
  font-weight: 400;
  font-size: 1.2rem;
}
main .about .colsConatinerSectionOn .colSection-on .titleLocation p strong {
  font-weight: 600;
  color: #000;
  font-weight: normal;
}
main .about .colsConatinerSectionOn .colSection-on .titleLocation p .destaque {
  color: #004DA6;
  font-weight: 600;
}
main .about .colsConatinerSectionOn .colSection-on .titleLocation p:last-child {
  font-size: 1rem;
}
main .about .colsConatinerSectionOn .colSection-on .textLocation {
  width: 100%;
}
main .about .colsConatinerSectionOn .colSection-on .textLocation p {
  font-size: 1rem;
  font-weight: normal;
  text-indent: 30px;
}
main .about .colsConatinerSectionOn .colSection-on .textLocation p strong {
  font-weight: normal;
}
main .about .colsConatinerSectionOn .colSection-two {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main .about .colsConatinerSectionOn .colSection-two .title-two h3 {
  font-weight: 400;
  font-size: 1.2rem;
}
main .about .colsConatinerSectionOn .colSection-two .title-two h3 strong {
  color: #000;
  font-weight: normal;
}
main .about .colsConatinerSectionOn .colSection-two .listService p:first-child {
  color: #004DA6;
  font-weight: 600;
  padding-bottom: 20px;
}
main .about .colsConatinerSectionOn .colSection-two .listService ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 100px;
}
main .about .colsConatinerSectionOn .colSection-two .listService ul li i {
  padding-right: 10px;
  color: #004DA6;
  font-size: 20px;
}
main .about .colsConatinerSectionOn .colSection-two .listService ul li strong {
  color: #000;
  font-weight: normal;
}
main .about .colsConatinerSectionOn .colSection-two .history {
  box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
}
main .about .colsConatinerSectionOn .colSection-two .btnHistory {
  width: 100%;
}
main .about .colsConatinerSectionOn .colSection-two .btnHistory a {
  color: red;
  width: 100%;
  letter-spacing: 2px;
  box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}
main .about .colsConatinerSectionOn .colSection-two .btnHistory a:hover {
  color: white;
  border: 2px solid #004DA6;
}
main .services {
  padding: 100px 0 80px 0;
}
main .services .titleSection {
  padding-bottom: 80px;
}
main .services .service--cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 19px;
}
main .services .service--cards .card--item {
  width: 300px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border-radius: 15px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .services .service--cards .card--item .card--img {
  height: 200px;
  display: flex;
  justify-content: center;
}
main .services .service--cards .card--item .card--img img {
  border-radius: 15px;
  width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
main .services .service--cards .card--item .card--title {
  display: flex;
  align-items: center;
  height: 40px;
}
main .services .service--cards .card--item .card--title h4 {
  color: #004DA6;
  text-transform: uppercase;
  font-size: 1rem;
  text-align: start;
}
main .services .service--cards .card--item .card--text {
  height: 60px;
}
main .services .service--cards .card--item .card--text p {
  font-size: 0.9rem;
  font-weight: normal;
  text-align: start;
}
main .services .service--cards .card--item .card--text p strong {
  color: #7f8c8d;
}
main .services .service--cards .card--item .card--button {
  position: relative;
}
main .services .service--cards .card--item .card--button button {
  background-color: transparent;
}
main .services .service--cards .card--item .card--button button a {
  color: #004DA6;
  display: block;
  width: 95px;
  height: 35px;
  border-radius: 7px;
  border: 1px solid #004DA6;
  transition: 0.5s;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 35px;
}
main .services .service--cards .card--item .card--button a:hover {
  color: white;
  background-color: #004DA6;
}
main .services .service--cards .card--item .card--button span i {
  color: #00ADEF;
}
main .galery {
  margin: 100px 0;
}
main .galery .galeryContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: space-between;
  gap: 20px;
}
main .galery .galeryContainer .video-item {
  position: relative;
  width: 300px;
  flex-grow: 1;
  margin: 0 auto;
  padding: 20px;
  overflow: hidden;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
  border-radius: 15px;
}
main .faixaCTA {
  background-color: #004DA6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
  margin: 150px 0;
  gap: 50px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}
main .faixaCTA .containerCTA {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
main .faixaCTA h2 {
  background-color: transparent;
  color: white;
  font-size: 2rem;
  font-weight: 500;
}
main .faixaCTA a {
  color: #fff;
  display: flex;
  font-size: 1rem;
  font-weight: 500;
}
main .faixaCTA a i {
  font-size: 1.5rem;
  margin-right: 7px;
}
main .faixaCTA a:not(:last-child) {
  margin-right: 120px;
}
main .testemunhas {
  padding-bottom: 200px;
}
main .testemunhas .slider2 {
  width: 100%;
  height: 400px;
  overflow: hidden;
}
main .testemunhas .slider2 .slides2 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  width: 400%;
  height: 400px;
}
main .testemunhas .slider2 .slides2 input {
  display: none;
}
main .testemunhas .slider2 .slides2 .slide2 {
  position: relative;
  width: 7.8%;
  height: 350px;
  margin: 10px;
  transition: 2s;
  text-align: center;
}
main .testemunhas .slider2 .slides2 .slide2 img {
  width: 200px;
}
main .testemunhas .slider2 .slides2 .slide2 .slide-img img {
  width: 80px;
  border-radius: 50%;
}
main .testemunhas .slider2 .slides2 .slide2 .slide-textDestaque {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 20px;
}
main .testemunhas .slider2 .slides2 .slide2 .slide-textDestaque h4 {
  font-size: 1rem;
}
main .testemunhas .slider2 .slides2 .slide2 .slide-textDestaque span {
  color: #7f8c8d;
  font-size: 0.8rem;
}
main .testemunhas .slider2 .slides2 .slide2 .slide-textDestaque .star {
  display: flex;
  flex-direction: row;
}
main .testemunhas .slider2 .slides2 .slide2 .slide-textDestaque .star i {
  color: #ffc107;
}
main .testemunhas .slider2 .slides2 .slide2 .slide-text {
  text-indent: 30px;
  text-align: justify;
  font-size: 0.8rem;
  font-style: italic;
}
main .testemunhas .slider2 .slides2 .slide2 .imgGoogle {
  position: absolute;
  right: 5px;
  top: 5px;
}
main .testemunhas .slider2 .slides2 .slide2 .imgGoogle img {
  width: 40px;
}
main .testemunhas .slider2 .slides2 .auto-navigation {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 492px;
}
main .testemunhas .slider2 .slides2 .auto-navigation div {
  padding: 5px;
  border: 2px solid #004DA6;
  border-radius: 10px;
}
main .testemunhas .slider2 .slides2 .auto-navigation div:not(:last-child) {
  margin-right: 10px;
}
main .testemunhas .slider2 .slides2 #radio-1:checked ~ .auto-navigation .btn-auto1 {
  background-color: #004DA6;
}
main .testemunhas .slider2 .slides2 #radio-2:checked ~ .auto-navigation .btn-auto2 {
  background-color: #004DA6;
}
main .testemunhas .slider2 .slides2 #radio-3:checked ~ .auto-navigation .btn-auto3 {
  background-color: #004DA6;
}
main .testemunhas .slider2 .slides2 #radio-4:checked ~ .auto-navigation .btn-auto4 {
  background-color: #004DA6;
}
main .testemunhas .slider2 .slides2 #radio-5:checked ~ .auto-navigation .btn-auto5 {
  background-color: #004DA6;
}
main .testemunhas .slider2 #radio-1:checked ~ .first2 {
  margin-left: 0%;
}
main .testemunhas .slider2 #radio-2:checked ~ .first2 {
  margin-left: -8.3%;
}
main .testemunhas .slider2 #radio-3:checked ~ .first2 {
  margin-left: -16.6%;
}
main .testemunhas .slider2 #radio-4:checked ~ .first2 {
  margin-left: -25%;
}
main .testemunhas .slider2 #radio-5:checked ~ .first2 {
  margin-left: -42%;
}
main .testemunhas .slider2 .manual-navigation2 {
  width: 100%;
  position: absolute;
  margin-top: 39.5px;
  display: flex;
  justify-content: center;
}
main .testemunhas .slider2 .manual-navigation2 .manual-btn2 {
  border: 2px solid #004DA6;
  padding: 5px;
  border-radius: 10px;
  transition: 1s;
  cursor: pointer;
}
main .testemunhas .slider2 .manual-navigation2 .manual-btn2:not(:last-child) {
  margin-right: 10px;
}
main .testemunhas .slider2 .manual-navigation2 .manual-btn2:hover {
  background-color: white;
}
main .contact {
  padding-bottom: 100px;
}
main .contact .contact-conatiner {
  display: flex;
  gap: 10px;
}
main .contact .contact-conatiner .col1-contact {
  flex: 1.5;
}
main .contact .contact-conatiner .col2-contact {
  flex: 1;
  padding: 25px;
  background-color: #002e64;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
main .contact .contact-conatiner .col2-contact div {
  background-color: #001f42;
  width: 100%;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
main .contact .contact-conatiner .col2-contact div div {
  flex: 0.5;
  display: flex;
  align-items: center;
}
main .contact .contact-conatiner .col2-contact div div i {
  font-size: 2.5em;
  color: white;
}
main .contact .contact-conatiner .col2-contact div .contact-text {
  flex: 2;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
}
main .contact .contact-conatiner .col2-contact div .contact-text p:first-child {
  color: #004DA6;
  font-weight: 600;
  font-size: 1.4rem;
}
main .contact .contact-conatiner .col2-contact div .contact-text p:last-child {
  color: white;
  font-weight: 400;
  font-size: 0.8rem;
}
main .contact .contact-conatiner .col2-contact div .contact-text p:last-child a {
  color: white;
  border: none;
}
main .contact .contact-conatiner .col2-contact div .contact-text p:last-child a i {
  font-size: 1.4rem;
  margin-left: 5px;
  color: #36CDBC;
}

@media (max-width: 768px) {
  main {
    padding-top: 200px;
  }
  main .about .colsConatinerSectionOn {
    gap: 40px;
  }
  main .about .colsConatinerSectionOn .colSection-on .titleLocation p {
    font-size: 16px;
  }
  main .about .colsConatinerSectionOn .colSection-two .title-two h3 {
    font-size: 1rem;
  }
  main .about .colsConatinerSectionOn .colSection-two .title-two h3 strong {
    color: white;
  }
  main .about .colsConatinerSectionOn .colSection-two .listService ul {
    gap: 8px;
  }
  main .about .colsConatinerSectionOn .colSection-two .listService ul li {
    font-size: 0.9rem;
  }
  main .about .colsConatinerSectionOn .colSection-two .listService ul li strong {
    color: #000;
  }
  main .about .colsConatinerSectionOn .colSection-two .btnHistory {
    color: red;
    width: 100%;
  }
  main .testemunhas .slider2 {
    max-width: 800px;
  }
  main .testemunhas .slider2 .slides2 {
    margin-left: 7px;
    gap: 0;
  }
  main .testemunhas .slider2 .slides2 .slide2 {
    min-width: 23%;
  }
  main .testemunhas .slider2 .slides2 .auto-navigation {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 492px;
    left: 50%;
    transform: translateX(-50%);
  }
  main .testemunhas .slider2 .slides2 .auto-navigation div {
    padding: 5px;
    border: 2px solid white;
    border-radius: 10px;
  }
  main .testemunhas .slider2 .slides2 .noneSlide {
    display: none;
  }
  main .testemunhas .slider2 #radio-1:checked ~ .first2 {
    margin-left: 0%;
  }
  main .testemunhas .slider2 #radio-2:checked ~ .first2 {
    margin-left: -24%;
  }
  main .testemunhas .slider2 #radio-3:checked ~ .first2 {
    margin-left: -48%;
  }
  main .testemunhas .slider2 #radio-4:checked ~ .first2 {
    margin-left: -73%;
  }
  main .testemunhas .slider2 #radio-5:checked ~ .first2 {
    margin-left: -97%;
  }
  main .subtitle--section {
    padding-bottom: 70px;
  }
  main .faixaCTA {
    margin-right: 80px;
  }
  main .faixaCTA h2 {
    font-size: 1.5rem;
  }
  main .faixaCTA a {
    display: flex;
    font-size: 0.8rem;
  }
  main .faixaCTA a i {
    font-size: 1.5rem;
    margin-right: 7px;
  }
  main .faixaCTA a:not(:last-child) {
    margin-right: 70px;
  }
  .contact .contact-conatiner {
    flex-direction: column;
  }
  .contact .contact-conatiner .col1-contact iframe {
    height: 400px;
  }
}
@media (max-width: 576px) {
  main {
    padding-top: 615px;
  }
  main .about .colsConatinerSectionOn {
    flex-direction: column;
  }
  main .about .colsConatinerSectionOn .colSection-on .titleLocation p {
    font-size: 1rem;
  }
  main .about .colsConatinerSectionOn .colSection-on .titleLocation p:last-child {
    font-size: 0.9rem;
  }
  main .about .colsConatinerSectionOn .colSection-on .slider {
    margin-right: 10px;
  }
  main .about .colsConatinerSectionOn .colSection-on .slider .slides .slide img {
    -o-object-fit: cover;
       object-fit: cover;
  }
  main .about .colsConatinerSectionOn .colSection-on .textLocation p {
    font-size: 0.9rem;
  }
  main .about .colsConatinerSectionOn .colSection-two .title-two h3 {
    font-size: 1rem;
  }
  main .about .colsConatinerSectionOn .colSection-two .title-two h3 strong {
    color: #000;
  }
  main .about .colsConatinerSectionOn .colSection-two .listService ul {
    gap: 8px;
  }
  main .about .colsConatinerSectionOn .colSection-two .listService ul li {
    font-size: 0.9rem;
  }
  main .about .colsConatinerSectionOn .colSection-two .listService ul li strong {
    color: #000;
  }
  main .about .colsConatinerSectionOn .colSection-two .history {
    margin-right: 10px;
  }
  main .about .colsConatinerSectionOn .colSection-two .btnHistory {
    color: red;
    width: 100%;
  }
  main .about .colsConatinerSectionOn .colSection-two .btnHistory {
    margin-left: 50%;
    transform: translateX(-50%);
  }
  main .services {
    padding: 0 0 150px 0;
  }
  main .services .service--cards .card--item {
    width: 100%;
    height: 450px;
  }
  main .services .service--cards .card--item .card--img {
    height: 250px;
  }
  main .services .subtitle--section {
    padding: 0 0 80px 0;
    text-align: center;
  }
  main .services .subtitle--section h2 {
    background-color: #fff;
    font-size: 1.4rem;
    text-transform: uppercase;
    color: #004DA6;
  }
  main .contact .contact-conatiner .col2-contact div div i {
    font-size: 2.2em;
  }
  main .contact .contact-conatiner .col2-contact div .contact-text p:first-child {
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
  }
  main .contact .contact-conatiner .col2-contact div .contact-text p:last-child {
    color: #fff;
    font-weight: 400;
    font-size: 0.7rem;
  }
  main .contact button a {
    font-size: 0.9rem;
  }
  main .faixaCTA .containerCTA {
    flex-wrap: wrap;
    gap: 20px;
  }
  main .faixaCTA h2 {
    font-size: 1rem;
  }
  main .faixaCTA a {
    font-size: 0.7rem;
  }
  main .faixaCTA a i {
    font-size: 1.5rem;
    margin-right: 7px;
  }
  main .faixaCTA a:not(:last-child) {
    margin-right: 40px;
  }
}
@media (max-width: 992px) {
  main .testemunhas .slider2 .slides2 .slide2 {
    height: 320px;
  }
  main .testemunhas .slider2 .slides2 .slide2 .slide-textDestaque h4 {
    font-size: 0.8rem;
  }
  main .testemunhas .slider2 .slides2 .slide2 .slide-img img {
    width: 65px;
  }
  main .testemunhas .slider2 .slides2 .slide2 .slide-text {
    font-size: 0.7rem;
  }
}
body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 5px;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

h2 {
  background-color: #000;
  font-weight: 700;
  font-size: 2rem;
}

p, .p {
  font-size: 1rem;
  text-indent: inherit;
  line-height: 24px;
  color: #575959;
}

li {
  color: #575959;
}

.stron {
  color: #575959 !important;
}

.stron strong {
  color: #575959 !important;
}

.slider {
  max-width: 100%;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  position: relative;
  height: 400px;
}
.slider .slides {
  width: 400%;
  height: 400px;
  display: flex;
}
.slider .slides input {
  display: none;
}
.slider .slides #radio1:checked ~ .first {
  margin-left: 0;
}
.slider .slides #radio2:checked ~ .first {
  margin-left: -25%;
}
.slider .slides #radio3:checked ~ .first {
  margin-left: -50%;
}
.slider .slides #radio4:checked ~ .first {
  margin-left: -75%;
}
.slider .slides .slide {
  width: 25%;
  transition: 1s;
  position: relative;
}
.slider .slides .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
     object-fit: fill;
}
.slider .slides .navigation-auto div {
  border: 2px solid white;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transform: 1s;
}
.slider .slides .navigation-auto {
  position: absolute;
  width: 100%;
  margin-top: 360px;
  display: flex;
  justify-content: center;
  bottom: 49.5px;
}
.slider .slides .navigation-auto div:not(:last-child) {
  margin-right: 40px;
}
.slider .slides #radio1:checked ~ .navigation-auto .auto-btn1 {
  background-color: #00ADEF;
}
.slider .slides #radio2:checked ~ .navigation-auto .auto-btn2 {
  background-color: #00ADEF;
}
.slider .slides #radio3:checked ~ .navigation-auto .auto-btn3 {
  background-color: #00ADEF;
}
.slider .slides #radio4:checked ~ .navigation-auto .auto-btn4 {
  background-color: #00ADEF;
}
.slider .mnual-navigation {
  position: absolute;
  width: 100%;
  margin-top: -63px;
  display: flex;
  justify-content: center;
}
.slider .mnual-navigation .manual-btn {
  border: 2px solid #fff;
  padding: 5px;
  border-radius: 10px;
  cursor: pointer;
  transition: 1s;
}
.slider .mnual-navigation .manual-btn:not(:last-child) {
  margin-right: 40px;
}
.slider .mnual-navigation .manual-btn:hover {
  background-color: #fff;
}/*# sourceMappingURL=style.css.map */