@charset "UTF-8";
/*
  ==================== SCSS ====================
*/
@import "../plugins/font/stylesheet.css";
html {
  scroll-behavior: smooth;
  overflow-x: hidden !important;
}

body {
  background-color: white;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #333333;
}

::-moz-selection {
  background: #00e18c;
  color: white;
  text-shadow: none;
}

::selection {
  background: #00e18c;
  color: white;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb {
  background-color: #00e18c;
  border-radius: 0px;
  cursor: pointer;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #d9ff00;
}

::-webkit-scrollbar-track {
  background: #006464;
  border-radius: 0px;
}

#general-overlay {
  position: fixed;
  height: 100%;
  width: 0;
  left: 0;
  top: 0;
  z-index: 19;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.3s;
}

/*
  ==================== LAYOUT ====================
*/
/*
  ==================== APP WRAPPER ====================
*/
.app-wrapper {
  display: grid;
  box-sizing: border-box;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "header" "main" "footer";
}

/*
  ==================== HEADER WRAPPER ====================
*/
.header-wrapper .header-desktop {
  display: flex;
  visibility: visible;
}
.header-wrapper .header-mobile {
  display: none;
  visibility: hidden;
}

/*
  ==================== HEADER DESKTOP ====================
*/
.header-desktop {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.header-desktop .header-top {
  background-color: #d9ff00;
  height: 40px;
  display: flex;
  font-family: "Gorga Grotesque", sans-serif;
  font-size: 14px;
  z-index: 999;
}
.header-desktop .header-top .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header-desktop .header-top .container a {
  color: #006464;
  text-decoration: none;
}
.header-desktop .header-top .container a:hover {
  color: #ff7837;
}
.header-desktop .header-top .container .header-top-mail {
  border-right: 1px solid #006464;
  padding-right: 20px;
}
.header-desktop .header-top .container .header-top-phone {
  border-right: 1px solid #006464;
  padding-right: 20px;
}
.header-desktop .header-top .container .header-top-social a {
  display: inline-block;
  color: white;
}
.header-desktop .header-top .container .header-top-social a i {
  width: 24px;
  height: 24px;
  background-color: #006464;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.header-desktop .header-top .container .header-top-social a:hover {
  color: #d9ff00;
}
.header-desktop .header-top .container .header-top-social a:hover i {
  background-color: #ff7837;
}
.header-desktop .header-main {
  width: 100%;
  height: 100px;
  display: flex;
  background-color: #006464;
  position: relative;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
}
.header-desktop .header-main .container {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.header-desktop .header-main .container .header-main-logo a img {
  max-height: 50px;
}
.header-desktop .header-main .container .header-main-menu {
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-desktop .header-main .container .header-main-menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
  gap: 10px;
}
.header-desktop .header-main .container .header-main-menu ul li {
  list-style: none;
  margin: 0 5px;
}
.header-desktop .header-main .container .header-main-menu ul li a {
  text-decoration: none;
  position: relative;
  color: white;
  font-family: "Gorga Grotesque", sans-serif;
  font-size: 16px;
  padding: 10px 15px;
}
.header-desktop .header-main .container .header-main-menu ul li a:hover, .header-desktop .header-main .container .header-main-menu ul li a.active {
  color: #00e18c;
}
.header-desktop .header-main .container .header-main-menu ul li a::before,
.header-desktop .header-main .container .header-main-menu ul li a::after {
  content: "";
  position: absolute;
  display: block;
  border: 0 solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease;
}
.header-desktop .header-main .container .header-main-menu ul li a::after {
  top: 0;
  left: 0;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
  border-radius: 0 10px 0 10px;
}
.header-desktop .header-main .container .header-main-menu ul li a::before {
  right: 0;
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
  border-radius: 0 10px 0 10px;
}
.header-desktop .header-main .container .header-main-menu ul li a:hover::before,
.header-desktop .header-main .container .header-main-menu ul li a.active::before,
.header-desktop .header-main .container .header-main-menu ul li a:hover::after,
.header-desktop .header-main .container .header-main-menu ul li a.active::after {
  width: 100%;
  height: 100%;
  border-color: #d9ff00;
}

/*
  ==================== HEADER MOBILE ====================
*/
.header-mobile {
  display: flex;
}
.header-mobile .header-main {
  width: 100%;
  display: flex;
  padding: 0;
  background-color: #006464;
  border-top: 10px solid #d9ff00;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.header-mobile .header-main .container {
  width: 100%;
  display: flex;
  padding: 20px 15px;
}
.header-mobile .header-main .container .header-main-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile .header-main .container .header-main-logo img {
  max-height: 50px;
}
.header-mobile .header-main .container .header-main-navigation {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-mobile .header-main .container .header-main-navigation button {
  outline: none;
  box-shadow: none;
  font-size: 20px;
  z-index: 2;
  background-color: #d9ff00;
  color: #006464;
  border-radius: 0 5px 0 5px;
}
.header-mobile .header-main .container .header-main-navigation button:hover {
  background-color: #00e18c;
}

#aside-menu {
  height: 100%;
  width: 280px;
  position: fixed;
  z-index: 20;
  left: -280px;
  top: 0;
  background-color: black;
  color: #cccccc;
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
  transition: 0.5s;
  box-sizing: border-box;
}
#aside-menu .mobile-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: url("../images/breadcrumb.png") repeat center center;
}
#aside-menu .mobile-wrapper .mobile-top {
  height: 80px;
  width: 100%;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #006464;
  color: white;
  border-top: 8px solid #d9ff00;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.4);
}
#aside-menu .mobile-wrapper .mobile-top img {
  max-height: 40px;
}
#aside-menu .mobile-wrapper .mobile-top button {
  background-color: #d9ff00;
  font-size: 20px;
  color: #006464;
  padding: 5px 10px;
  border-radius: 0 5px 0 5px;
}
#aside-menu .mobile-wrapper .mobile-top button:hover {
  background-color: #00e18c;
}
#aside-menu .mobile-wrapper .mobile-menu {
  display: flex;
  width: 100%;
  margin-top: 10px;
}
#aside-menu .mobile-wrapper .mobile-menu .menu {
  width: 100%;
  height: auto;
  overflow: hidden;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul li {
  margin: 15px;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a {
  width: 240px;
  display: block;
  text-decoration: none;
  color: white;
  font-family: "Gorga Grotesque", sans-serif;
  padding: 10px;
  border-left: solid 6px #d9ff00;
  background-color: #006464;
  position: relative;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a:hover,
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a .active {
  color: #00e18c;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a::before,
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a::after {
  content: "";
  position: absolute;
  display: block;
  border: 0 solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a::after {
  top: 0;
  left: 0;
  border-top: 2px solid transparent;
  border-left: 2px solid transparent;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a::before {
  right: 0;
  bottom: 0;
  border-bottom: 2px solid transparent;
  border-right: 2px solid transparent;
}
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a:hover::before,
#aside-menu .mobile-wrapper .mobile-menu .menu ul li a:hover::after {
  width: 100%;
  height: 100%;
  border-color: #d9ff00;
}
#aside-menu .mobile-wrapper .mobile-contact {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}
#aside-menu .mobile-wrapper .mobile-contact .mobile-contact-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 15px;
  border-bottom: 1px solid #00e18c;
  border-top: 1px solid #00e18c;
  padding: 10px 0;
  gap: 10px;
}
#aside-menu .mobile-wrapper .mobile-contact .mobile-contact-item i {
  font-size: 24px;
  background-color: #d9ff00;
  color: #006464;
  border-radius: 0 5px 0 5px;
  padding: 5px;
}
#aside-menu .mobile-wrapper .mobile-contact .mobile-contact-item div {
  display: flex;
  flex-direction: column;
}
#aside-menu .mobile-wrapper .mobile-contact .mobile-contact-item div span {
  color: #d9ff00;
  font-family: "Addington CF", serif;
  font-style: italic;
  font-size: 16px;
}
#aside-menu .mobile-wrapper .mobile-contact .mobile-contact-item div a {
  text-decoration: none;
  color: white;
  font-family: "Gorga Grotesque", sans-serif;
}
#aside-menu .mobile-wrapper .mobile-contact .mobile-contact-item div a:hover {
  color: #00e18c;
}
#aside-menu .mobile-wrapper .mobile-contact .mobile-contact-item:last-of-type {
  border-top: none;
}

/*
  ==================== BREADCRUMB ====================
*/
.breadcrumb-wrapper {
  width: 100%;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url("../images/breadcrumb.png") repeat center center;
}
.breadcrumb-wrapper h1 {
  font-family: "Gorga Grotesque", sans-serif;
  color: #f5f5f0;
  text-align: center;
  font-size: 36px;
  margin-bottom: 0;
}
.breadcrumb-wrapper div {
  display: flex;
  color: #d9ff00;
  align-items: center;
  gap: 10px;
  font-family: "Addington CF", serif;
  font-style: italic;
}
.breadcrumb-wrapper div a {
  color: white;
  text-decoration: none;
  font-family: "Gorga Grotesque", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
}
.breadcrumb-wrapper div a:hover {
  color: #00e18c;
}
.breadcrumb-wrapper div img {
  height: 20px;
}
.breadcrumb-wrapper div span {
  font-size: 16px;
}

/*
  ==================== BREADCRUMB RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .breadcrumb-wrapper {
    height: 140px;
  }
  .breadcrumb-wrapper h1 {
    font-size: 30px;
  }
}
/*
  ==================== MAIN WRAPPER ====================
*/
.main-wrapper {
  width: 100%;
}
.main-wrapper .page {
  width: 100%;
}
.main-wrapper .page .container {
  padding: 60px 0;
}
.main-wrapper .pages {
  width: 100%;
}
.main-wrapper .pages .img-fluid {
  max-width: 100%;
  height: auto;
}

/*
  ==================== MAIN WRAPPER RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .main-wrapper .page .container {
    padding: 40px;
  }
}
/*
  ==================== FOOTER WRAPPER ====================
*/
.footer-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.footer-wrapper .footer-main {
  min-height: 240px;
  display: flex;
  position: relative;
  background-color: #006464;
}
.footer-wrapper .footer-main .container {
  display: flex;
  height: 100%;
}
.footer-wrapper .footer-main .container .footer-main-logo {
  width: 40%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.footer-wrapper .footer-main .container .footer-main-logo img {
  max-height: 90px;
}
.footer-wrapper .footer-main .container .footer-main-content {
  width: 100%;
  display: flex;
  flex: 1;
  height: 100%;
  justify-content: space-around;
  font-family: "Gorga Grotesque", sans-serif;
  font-size: 13px;
  gap: 20px;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-menu {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 10px;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-menu ul li {
  display: flex;
  gap: 5px;
  margin: 6px 0;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-menu ul li i {
  color: #d9ff00;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-menu ul li a {
  text-decoration: none;
  color: white;
  transition: all 0.3s;
  height: 30px;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-menu ul li a:hover {
  color: #00e18c;
  border: 1px solid #d9ff00;
  border-radius: 0 10px 0 10px;
  padding: 5px 15px;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-contato {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-contato div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-contato a {
  text-decoration: none;
  color: white;
  transition: all 0.3s;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-contato a:hover {
  color: #00e18c;
}
.footer-wrapper .footer-main .container .footer-main-content .footer-main-content-contato i {
  text-decoration: none;
  color: #006464;
  background-color: #00e18c;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-wrapper .footer-bottom {
  width: 100%;
  height: 40px;
  background-color: #d9ff00;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #006464;
  font-family: "Addington CF", serif;
}

/*
  ==================== FOOTER RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .footer-wrapper .footer-main .container {
    flex-direction: column;
    padding: 40px 0;
    gap: 20px;
  }
  .footer-wrapper .footer-main .container .footer-main-logo {
    width: 100%;
    justify-content: center;
  }
  .footer-wrapper .footer-main .container .footer-main-content {
    align-items: center;
  }
  .footer-wrapper .footer-main .container .footer-main-content .footer-main-content-contato {
    border-top: 1px solid #d9ff00;
    padding-top: 20px;
  }
  .footer-wrapper .footer-main .container .footer-main-content .footer-main-content-menu {
    display: none;
  }
  .footer-wrapper .footer-bottom {
    font-size: 12px;
  }
}
@media only screen and (max-width: 600px) {
  /*
    ==================== HEADER WRAPPER ====================
  */
  .header-wrapper .header-desktop {
    display: none;
    visibility: hidden;
  }
  .header-wrapper .header-mobile {
    display: flex;
    visibility: visible;
  }
  /*
    ==================== MAIN WRAPPER ====================
  */
  .main-wrapper {
    width: 100%;
  }
  /*
    ==================== FOOTER WRAPPER ====================
  */
  .footer-wrapper {
    width: 100%;
  }
}
/*
  ==================== FONT FACE ====================
*/
/*
  ==================== PAGE ====================
*/
/*
  ==================== PAGE HOME ====================
*/
.page-home {
  width: 100%;
}
.page-home .container .home-solucoes {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: -100px;
  margin-bottom: 60px;
}
.page-home .container .home-solucoes .home-solucoes-item {
  width: 30%;
  border-radius: 0 20px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 60px 20px 30px 20px;
  font-family: "Gorga Grotesque", sans-serif;
  background-color: #006464;
  color: white;
  font-size: 14px;
  gap: 20px;
}
.page-home .container .home-solucoes .home-solucoes-item .icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00e18c;
  position: absolute;
  top: -40px;
  transition: transform 0.3s ease-in-out;
}
.page-home .container .home-solucoes .home-solucoes-item .icon img {
  height: 35px;
}
.page-home .container .home-solucoes .home-solucoes-item:nth-of-type(1) .icon {
  background-color: #c3b9f0;
}
.page-home .container .home-solucoes .home-solucoes-item:nth-of-type(2) .icon {
  background-color: #64d2e6;
}
.page-home .container .home-solucoes .home-solucoes-item:nth-of-type(3) .icon {
  background-color: #00e18c;
}
.page-home .container .home-solucoes .home-solucoes-item span {
  font-family: "Addington CF", serif;
  font-weight: bold;
  font-size: 18px;
  text-decoration: underline;
  text-decoration-color: #d9ff00;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 5px;
}
.page-home .container .home-solucoes .home-solucoes-item p {
  font-weight: 300;
}
.page-home .container .home-solucoes .home-solucoes-item a {
  width: 160px;
  height: 40px;
  background-color: #d9ff00;
  text-decoration: none;
  color: #006464;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px;
  position: absolute;
  bottom: -20px;
  transition: all 0.3s ease-in-out;
}
.page-home .container .home-solucoes .home-solucoes-item a::before {
  content: "";
  position: absolute;
  background: #ff7837;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 10px;
  transition: width 0.3s ease-in-out;
}
.page-home .container .home-solucoes .home-solucoes-item a:hover {
  background-color: #ff7837;
  color: white;
  z-index: 1;
}
.page-home .container .home-solucoes .home-solucoes-item a:hover::before {
  width: 100%;
}
.page-home .container .home-solucoes .home-solucoes-item:hover {
  background-color: #f5f5f0;
  color: #006464;
}
.page-home .container .home-solucoes .home-solucoes-item:hover .icon {
  background-color: #006464;
  transform: rotate(360deg);
}
.page-home .container .quemsou {
  display: flex;
  gap: 20px;
  align-items: center;
}
.page-home .container .quemsou .quemsou-img {
  width: 40%;
  min-height: 390px;
  background: url("../images/simbolo-bg.png") no-repeat top left;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-home .container .quemsou .quemsou-img img {
  width: 70%;
  border: 8px solid #d9ff00;
  border-radius: 0 30px;
  margin-top: 20px;
  margin-right: 30px;
}
.page-home .container .quemsou .quemsou-txt {
  flex: 1;
}
.page-home .container .quemsou .quemsou-txt h2,
.page-home .container .quemsou .quemsou-txt h3 {
  font-family: "Addington CF", serif;
}
.page-home .container .quemsou .quemsou-txt h2 {
  color: #006464;
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 30px;
}
.page-home .container .quemsou .quemsou-txt h3 {
  font-style: italic;
  color: #00e18c;
  font-size: 28px;
  margin-bottom: 20px;
}
.page-home .container .quemsou .quemsou-txt span.color {
  color: #006464;
  font-weight: bold;
}
.page-home .container .quemsou .quemsou-txt span.circle {
  height: 30px;
  padding: 5px 0;
  background: url("../images/circle.png") no-repeat center center;
}
.page-home .container .quemsou .quemsou-txt p {
  margin-bottom: 30px;
}
.page-home .container .quemsou .quemsou-txt a {
  padding: 10px 20px;
  background-color: #d9ff00;
  text-decoration: none;
  font-weight: 600;
  color: #006464;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px;
  position: relative;
  transition: all 0.5s ease-in-out;
}
.page-home .container .quemsou .quemsou-txt a::before {
  content: "";
  position: absolute;
  background: #ff7837;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 10px;
  transition: width 0.3s ease-in-out;
}
.page-home .container .quemsou .quemsou-txt a:hover {
  background-color: #ff7837;
  color: white;
  z-index: 1;
}
.page-home .container .quemsou .quemsou-txt a:hover::before {
  width: 100%;
}
.page-home .home-cta {
  width: 100%;
  height: 180px;
  background: url("../images/cta.png") no-repeat center center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-home .home-cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.page-home .home-cta .container h2 {
  color: white;
  text-align: center;
  font-family: "Addington CF", serif;
  font-size: 24px;
}
.page-home .home-cta .container h2 span {
  font-style: italic;
  font-size: 28px;
}

.main-banner {
  width: 100%;
  height: 380px;
  background: url("../images/banner.webp") no-repeat center center;
  font-family: "Addington CF", serif;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-banner .container {
  width: 65%;
}
.main-banner .container h1 {
  color: white;
  font-size: 26px;
}
.main-banner .container h1 span.circle {
  height: 30px;
  padding: 7px 8px;
  background: url("../images/circle.png") no-repeat center center;
  margin: 0 -3px;
}
.main-banner .container h2 {
  color: #00e18c;
  font-size: 30px;
}

/*
  ==================== PAGE HOME RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-home {
    width: 100%;
  }
  .page-home .container .home-solucoes {
    flex-direction: column;
    gap: 80px;
    margin-top: -80px;
  }
  .page-home .container .home-solucoes .home-solucoes-item {
    width: 100%;
  }
  .page-home .container .quemsou {
    flex-direction: column;
  }
  .page-home .container .quemsou .quemsou-img {
    width: 100%;
  }
  .page-home .container .quemsou .quemsou-img img {
    margin-top: 25px;
    margin-right: 0;
  }
  .page-home .home-cta .container h2 {
    font-size: 21px;
  }
  .page-home .home-cta .container h2 span {
    font-size: 28px;
  }
  .main-banner .container {
    width: 90%;
    padding: 0 40px;
  }
}
.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  z-index: 999;
}

.white-heading {
  color: #ffffff;
}

.heading:after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png);
  background-repeat: no-repeat;
  background-position: center;
}

.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}

.white-heading span {
  color: #ffffff;
}

/*-----Testimonial-------*/
.testimonial {
  min-height: 375px;
  position: relative;
  background: url(../images/bg-depoimentos.webp);
  padding-top: 50px;
  padding-bottom: 50px;
  background-position: center;
  background-size: cover;
}

#testimonial4 .carousel-inner:hover {
  cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
  cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
  height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
  background: #eeeeee;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control {
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  border-radius: 100%;
  box-shadow: none;
  transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
  left: 7%;
  top: 50%;
  right: auto;
}

.testimonial4_control_button .carousel-control.right {
  right: 7%;
  top: 50%;
  left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header {
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}

.testimonial4_header h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}

.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
  color: white;
  font-size: 16px;
  line-height: 1.4;
  margin: 40px 0 20px 0;
  font-family: "Gorga Grotesque", sans-serif;
}

.testimonial4_slide h4 {
  color: #00e18c;
  font-size: 22px;
  font-family: "Addington CF", serif;
}

.testimonial4_slide h5 {
  color: #d9ff00;
  font-size: 18px;
  font-family: "Addington CF", serif;
  font-style: italic;
}

.testimonial .carousel {
  padding-bottom: 50px;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
}

/* ------testimonial  close-------*/
/*
  ==================== PAGE SOBRE ====================
*/
.page-sobre {
  width: 100%;
}
.page-sobre .container .sobre {
  display: flex;
  gap: 20px;
  align-items: center;
}
.page-sobre .container .sobre .sobre-img {
  width: 40%;
  min-height: 390px;
  background: url("../images/simbolo-bg.png") no-repeat top left;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-sobre .container .sobre .sobre-img img {
  width: 70%;
  margin-top: 20px;
  margin-right: 30px;
}
.page-sobre .container .sobre .sobre-txt {
  flex: 1;
}
.page-sobre .container .sobre .sobre-txt h2,
.page-sobre .container .sobre .sobre-txt h3 {
  font-family: "Addington CF", serif;
}
.page-sobre .container .sobre .sobre-txt h2 {
  color: #00e18c;
  font-weight: bold;
  font-size: 30px;
}
.page-sobre .container .sobre .sobre-txt h3 {
  font-style: italic;
  color: #006464;
  font-size: 28px;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-decoration-color: #d9ff00;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: -3px;
}
.page-sobre .container .sobre .sobre-txt span.color {
  color: #006464;
  font-weight: bold;
}
.page-sobre .container .sobre .sobre-txt span.circle {
  height: 30px;
  padding: 5px 0;
  background: url("../images/circle.png") no-repeat center center;
}

/*
  ==================== PAGE SOBRE RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-sobre {
    width: 100%;
  }
  .page-sobre .container .sobre {
    flex-direction: column;
  }
  .page-sobre .container .sobre .sobre-img {
    width: 100%;
  }
  .page-sobre .container .sobre .sobre-img img {
    margin-top: 25px;
    margin-right: 0;
  }
}
/*
  ==================== PAGE QUEM SOU ====================
*/
.page-filipe {
  width: 100%;
}
.page-filipe .container .quemsou {
  display: flex;
  gap: 20px;
  align-items: center;
}
.page-filipe .container .quemsou .quemsou-img {
  width: 40%;
  min-height: 390px;
  background: url("../images/simbolo-bg.png") no-repeat top left;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.page-filipe .container .quemsou .quemsou-img img {
  width: 70%;
  border: 8px solid #d9ff00;
  border-radius: 0 30px;
  margin-top: 20px;
  margin-right: 30px;
}
.page-filipe .container .quemsou .quemsou-txt {
  flex: 1;
}
.page-filipe .container .quemsou .quemsou-txt h2,
.page-filipe .container .quemsou .quemsou-txt h3 {
  font-family: "Addington CF", serif;
}
.page-filipe .container .quemsou .quemsou-txt h2 {
  color: #006464;
  font-weight: bold;
  font-size: 30px;
}
.page-filipe .container .quemsou .quemsou-txt h3 {
  font-style: italic;
  color: #00e18c;
  font-size: 28px;
  margin-bottom: 20px;
}
.page-filipe .container .quemsou .quemsou-txt span.color {
  color: #006464;
  font-weight: bold;
}
.page-filipe .container .quemsou .quemsou-txt span.circle {
  height: 30px;
  padding: 7px 0;
  background: url("../images/circle.png") no-repeat center center;
}
.page-filipe .whatsapp-cta {
  width: 100%;
  height: 180px;
  background: url("../images/whatsapp.png") no-repeat center center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-filipe .whatsapp-cta .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.page-filipe .whatsapp-cta .container h2 {
  color: #006464;
  text-align: center;
  font-family: "Addington CF", serif;
  font-size: 24px;
  font-weight: bold;
}
.page-filipe .whatsapp-cta .container h2 span {
  font-style: italic;
  font-size: 28px;
}
.page-filipe .whatsapp-cta .container a {
  background-color: #d9ff00;
  padding: 15px 20px;
  border-radius: 0 10px;
  text-decoration: none;
  color: #006464;
  font-family: "Gorga Grotesque", sans-serif;
  line-height: normal;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.page-filipe .whatsapp-cta .container a::before {
  content: "";
  position: absolute;
  background: #006464;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 10px;
  transition: width 0.3s ease-in-out;
}
.page-filipe .whatsapp-cta .container a:hover {
  background-color: #006464;
  color: #d9ff00;
  z-index: 1;
}
.page-filipe .whatsapp-cta .container a:hover::before {
  width: 100%;
}

/*
  ==================== PAGE QUEM SOU RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-filipe {
    width: 100%;
  }
  .page-filipe .container .quemsou {
    flex-direction: column;
  }
  .page-filipe .container .quemsou .quemsou-img {
    width: 100%;
  }
  .page-filipe .container .quemsou .quemsou-img img {
    margin-top: 25px;
    margin-right: 0;
  }
  .page-filipe .whatsapp-cta .container h2 {
    font-size: 21px;
  }
  .page-filipe .whatsapp-cta .container h2 span {
    font-size: 24px;
  }
}
/*
  ==================== PAGE SOLUÇÕES ====================
*/
.page-solucoes {
  width: 100%;
}
.page-solucoes .container h2 {
  font-family: "Addington CF", serif;
  text-align: center;
  color: #00e18c;
  font-weight: bold;
  font-size: 30px;
}
.page-solucoes .container h2 span {
  color: #006464;
  height: 30px;
  padding: 7px 0;
  background: url("../images/circle3.png") no-repeat center right;
}
.page-solucoes .container .solucoes-item {
  display: flex;
  align-items: center;
  position: relative;
  margin: 40px 0;
}
.page-solucoes .container .solucoes-item .solucoes-img {
  width: 40%;
}
.page-solucoes .container .solucoes-item .solucoes-img img {
  width: 100%;
  border: 6px solid #00e18c;
  border-radius: 0 30px;
}
.page-solucoes .container .solucoes-item:nth-of-type(1) .solucoes-img img {
  border: 8px solid #c3b9f0;
}
.page-solucoes .container .solucoes-item:nth-of-type(2) .solucoes-img img {
  border: 8px solid #64d2e6;
}
.page-solucoes .container .solucoes-item:nth-of-type(3) .solucoes-img img {
  border: 8px solid #00e18c;
}
.page-solucoes .container .solucoes-item .solucoes-txt {
  width: 65%;
  position: absolute;
  right: 0;
  background-color: #f5f5f0;
  padding: 30px 40px;
  border-radius: 0 30px;
}
.page-solucoes .container .solucoes-item .solucoes-txt h3 {
  font-family: "Addington CF", serif;
  color: #006464;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 20px;
  text-decoration: underline;
  text-decoration-color: #c3b9f0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 5px;
}
.page-solucoes .container .solucoes-item:nth-of-type(1) .solucoes-txt h3 {
  text-decoration-color: #c3b9f0;
}
.page-solucoes .container .solucoes-item:nth-of-type(2) .solucoes-txt h3 {
  text-decoration-color: #64d2e6;
}
.page-solucoes .container .solucoes-item:nth-of-type(3) .solucoes-txt h3 {
  text-decoration-color: #00e18c;
}

/*
  ==================== PAGE SOLUÇÕES RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-solucoes {
    width: 100%;
  }
  .page-solucoes .container .solucoes-item {
    flex-direction: column;
  }
  .page-solucoes .container .solucoes-item .solucoes-img {
    width: 100%;
  }
  .page-solucoes .container .solucoes-item .solucoes-img img {
    border-radius: 0 30px 0 0;
  }
  .page-solucoes .container .solucoes-item .solucoes-txt {
    width: 100%;
    position: relative;
    border-radius: 0 0 0 30px;
  }
}
/*
  ==================== PAGE COMO FUNCIONA ====================
*/
.page-consultoria {
  width: 100%;
}
.page-consultoria .container h2 {
  font-family: "Addington CF", serif;
  text-align: center;
  color: #00e18c;
  font-weight: bold;
  font-size: 30px;
}
.page-consultoria .container h2 span {
  color: #006464;
  height: 30px;
  padding: 7px 0;
  background: url("../images/circle3.png") no-repeat center right;
}
.page-consultoria .container .consultoria-content {
  text-align: center;
  margin-top: 30px;
}
.page-consultoria .container .consultoria-content .consultoria-item {
  margin: 30px 0;
}
.page-consultoria .container .consultoria-content .consultoria-item h3 {
  font-family: "Addington CF", serif;
  font-weight: 700;
  color: #006464;
  font-size: 24px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.page-consultoria .container .consultoria-content .consultoria-item .consultoria-box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-top: 3px solid #c3b9f0;
  padding-top: 20px;
}
.page-consultoria .container .consultoria-content .consultoria-item .consultoria-box .consultoria-box-etapa {
  width: 30%;
  background-color: #f5f5f0;
  border-radius: 0 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.page-consultoria .container .consultoria-content .consultoria-item .consultoria-box .consultoria-box-etapa .title {
  width: 100%;
  border-radius: 0 20px 0 0;
  background-color: #a299e0;
  color: white;
  font-weight: 700;
  padding: 12px 0 10px 0;
}
.page-consultoria .container .consultoria-content .consultoria-item .consultoria-box .consultoria-box-etapa .txt {
  min-height: 180px;
  padding: 0 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-consultoria .container .consultoria-content .consultoria-item .consultoria-box .arrow {
  font-size: 30px;
  color: white;
  background-color: #c3b9f0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin: 0 -50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.page-consultoria .container .consultoria-content .consultoria-item.blue h3 {
  text-decoration-color: #64d2e6;
}
.page-consultoria .container .consultoria-content .consultoria-item.blue .consultoria-box {
  border-color: #64d2e6;
}
.page-consultoria .container .consultoria-content .consultoria-item.blue .consultoria-box .consultoria-box-etapa .title {
  background-color: #48c2d3;
}
.page-consultoria .container .consultoria-content .consultoria-item.blue .consultoria-box .arrow {
  background-color: #64d2e6;
}
.page-consultoria .container .consultoria-content .consultoria-item.green h3 {
  text-decoration-color: #00e18c;
}
.page-consultoria .container .consultoria-content .consultoria-item.green .consultoria-box {
  border-color: #00e18c;
}
.page-consultoria .container .consultoria-content .consultoria-item.green .consultoria-box .consultoria-box-etapa .title {
  background-color: #02c676;
}
.page-consultoria .container .consultoria-content .consultoria-item.green .consultoria-box .arrow {
  background-color: #00e18c;
}

/*
  ==================== PAGE COMO FUNCIONA RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-consultoria {
    width: 100%;
  }
  .page-consultoria .container .consultoria-content .consultoria-item .consultoria-box {
    flex-direction: column;
  }
  .page-consultoria .container .consultoria-content .consultoria-item .consultoria-box .consultoria-box-etapa {
    width: 100%;
  }
  .page-consultoria .container .consultoria-content .consultoria-item .consultoria-box .consultoria-box-etapa .txt {
    min-height: 200px;
    padding: 0 30px;
  }
  .page-consultoria .container .consultoria-content .consultoria-item .consultoria-box .arrow {
    transform: rotate(90deg);
    margin: -20px 0 -10px 0;
  }
}
/*
  ==================== PAGE PLANOS ====================
*/
.page-planos {
  width: 100%;
}
.page-planos .container h2 {
  font-family: "Addington CF", serif;
  text-align: center;
  color: #00e18c;
  font-weight: bold;
  font-size: 30px;
}
.page-planos .container h2 span {
  color: #006464;
  height: 30px;
  padding: 7px 0;
  background: url("../images/circle2.png") no-repeat center right;
}
.page-planos .container .planos-item {
  margin: 40px 0;
}
.page-planos .container .planos-item .planos-item-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.page-planos .container .planos-item .planos-item-title .icon {
  background-color: #c3b9f0;
  width: 50px;
  height: 50px;
  border-radius: 25px;
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-planos .container .planos-item .planos-item-title .icon img {
  width: 22px;
}
.page-planos .container .planos-item .planos-item-title .planos-item-title-txt {
  display: flex;
  flex-direction: column;
}
.page-planos .container .planos-item .planos-item-title .planos-item-title-txt h3 {
  font-family: "Addington CF", serif;
  font-weight: 700;
  color: #006464;
  font-size: 24px;
  text-decoration: underline;
  text-decoration-color: #c3b9f0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: 5px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.page-planos .container .planos-item .planos-item-title .planos-item-title-txt p {
  margin-bottom: 0;
}
.page-planos .container .planos-item .planos-item-valores {
  display: flex;
  gap: 20px;
  justify-content: space-around;
}
.page-planos .container .planos-item .planos-item-valores div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  width: 30%;
  border-radius: 0 20px;
  padding: 40px 20px;
  text-decoration: none;
  color: #006464;
  position: relative;
  z-index: 2;
  background-color: #f5f5f0;
  color: #333333;
}
.page-planos .container .planos-item .planos-item-valores div h4 {
  font-size: 21px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 8px;
  text-decoration-color: #c3b9f0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: -3px;
}
.page-planos .container .planos-item .planos-item-valores div h5 {
  background-color: #dcd7ff;
  padding: 10px 40px 5px 40px;
  font-size: 30px;
  border-radius: 5px;
  font-family: "Gorga Grotesque", sans-serif;
}
.page-planos .container .planos-item .planos-item-valores div h5 span {
  font-size: 18px;
}
.page-planos .container .planos-item .planos-item-valores div ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
}
.page-planos .container .planos-item .planos-item-valores div ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.page-planos .container .planos-item .planos-item-valores div ul li i {
  font-size: 14px;
  margin-right: 8px;
  background-color: #00e18c;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-planos .container .planos-item .planos-item-valores div a {
  width: 160px;
  height: 40px;
  background-color: #d9ff00;
  text-decoration: none;
  color: #006464;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 10px;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-family: "Gorga Grotesque", sans-serif;
}
.page-planos .container .planos-item .planos-item-valores div a::before {
  content: "";
  position: absolute;
  background: #ff7837;
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  border-radius: 0 10px;
  transition: width 0.3s ease-in-out;
}
.page-planos .container .planos-item .planos-item-valores div a:hover {
  background-color: #ff7837;
  color: white;
  z-index: 1;
}
.page-planos .container .planos-item .planos-item-valores div a:hover::before {
  width: 100%;
}
.page-planos .container .planos-item.blue .planos-item-title .icon {
  background-color: #64d2e6;
}
.page-planos .container .planos-item.blue .planos-item-title .planos-item-title-txt h3 {
  text-decoration-color: #64d2e6;
}
.page-planos .container .planos-item.blue .planos-item-valores div {
  background-color: #f5f5f0;
}
.page-planos .container .planos-item.blue .planos-item-valores div h4 {
  text-decoration-color: #9de1ea;
}
.page-planos .container .planos-item.blue .planos-item-valores div h5 {
  background-color: #9de1ea;
}
.page-planos .container .planos-item.orange .planos-item-title .icon {
  background-color: #00e18c;
}
.page-planos .container .planos-item.orange .planos-item-title .planos-item-title-txt h3 {
  text-decoration-color: #00e18c;
}
.page-planos .container .planos-item.orange .planos-item-title .planos-item-title-txt a {
  font-weight: 900;
  color: #006464;
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-decoration-color: #d9ff00;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: -3px;
  transition: all 0.3s;
}
.page-planos .container .planos-item.orange .planos-item-title .planos-item-title-txt a:hover {
  color: #ff7837;
  text-decoration-color: #f5f5f0;
}

/*
  ==================== PAGE PLANOS RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-planos {
    width: 100%;
  }
  .page-planos .container .planos-item .planos-item-title .planos-item-title-txt h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }
  .page-planos .container .planos-item .planos-item-valores {
    flex-direction: column;
  }
  .page-planos .container .planos-item .planos-item-valores div {
    width: 100%;
  }
}
/*
  ==================== PAGE CONTATOS ====================
*/
.page-contato {
  width: 100%;
}
.page-contato .container h2,
.page-contato .container h3 {
  font-family: "Addington CF", serif;
  text-align: center;
}
.page-contato .container h2 {
  color: #00e18c;
  font-weight: bold;
  font-size: 30px;
}
.page-contato .container h3 {
  font-style: italic;
  color: #006464;
  font-size: 28px;
  margin-bottom: 40px;
  position: relative;
  text-decoration: underline;
  text-decoration-thickness: 6px;
  text-decoration-color: #d9ff00;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-underline-offset: -3px;
}
.page-contato .container .contatos {
  display: flex;
  gap: 20px;
  justify-content: space-around;
}
.page-contato .container .contatos a {
  width: 30%;
  border-radius: 0 20px;
  padding: 40px 20px;
  font-family: "Gorga Grotesque", sans-serif;
  text-decoration: none;
  color: #006464;
  position: relative;
  transition: all 0.5s;
  z-index: 2;
}
.page-contato .container .contatos a div {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.page-contato .container .contatos a:nth-of-type(1) {
  background-color: #c3b9f0;
}
.page-contato .container .contatos a:nth-of-type(2) {
  background-color: #64d2e6;
}
.page-contato .container .contatos a:nth-of-type(3) {
  background-color: #d9ff00;
}
.page-contato .container .contatos a i {
  font-size: 40px;
  color: #006464;
}
.page-contato .container .contatos a::before,
.page-contato .container .contatos a::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 0;
  background-color: #006464;
  border-radius: 0 20px;
  transition: all 0.5s;
  z-index: -1;
}
.page-contato .container .contatos a::before {
  right: 0;
  top: 0;
}
.page-contato .container .contatos a::after {
  left: 0;
  bottom: 0;
}
.page-contato .container .contatos a:hover::before,
.page-contato .container .contatos a:hover::after {
  width: 100%;
}
.page-contato .container .contatos a:hover {
  background-color: #006464;
}
.page-contato .container .contatos a:hover i {
  color: #00e18c;
}
.page-contato .container .contatos a:hover a {
  color: #00e18c;
}
.page-contato .container .contatos a:hover span {
  color: #00e18c;
}

/*
  ==================== PAGE CONTATOS RESPONSIVE ====================
*/
@media only screen and (max-width: 600px) {
  .page-contato {
    width: 100%;
  }
  .page-contato .container {
    padding: 40px 20px !important;
  }
  .page-contato .container .contatos {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .page-contato .container .contatos a {
    width: 100%;
    padding: 40px 0;
  }
}/*# sourceMappingURL=styles.css.map */