@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
header .menu-desktop {
  display: none;
}
header .menu-mobile {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: #002852;
}
header .menu-mobile .logo img {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
}
header .menu-mobile .hamb {
  background-color: transparent;
  border: 0px;
}
header .menu-mobile .hamb svg {
  display: block;
  width: 30px;
  height: auto;
}
header .menu-mobile .hamb svg path {
  stroke: #ffffff;
}
header .menu-mobile-flutuante {
  left: 100%;
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  padding-top: 15px;
  width: 100%;
  min-height: 100svh;
  background-color: #002852;
}
header .menu-mobile-flutuante .topo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .menu-mobile-flutuante .topo button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  font-size: 1rem;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  color: #ffffff;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 100%;
  border: 3px solid #ffffff;
  background-color: transparent;
}
header .menu-mobile-flutuante .topo img {
  display: block;
  width: 200px;
  height: auto;
}
header .menu-mobile-flutuante nav {
  padding-left: 15px;
  padding-top: 5em;
  display: flex;
  flex-direction: column;
}
header .menu-mobile-flutuante nav a {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0.75em 0;
}
header .menu-mobile-flutuante nav .logo {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
}
header .menu-mobile-flutuante nav .default-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  color: #002852;
  background-color: #8bff00;
  padding: 12px 24px;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  text-decoration: none;
  border-radius: 32px;
  font-size: 1.2rem;
}
header .menu-mobile-flutuante nav .login-link {
  color: #00c1e4;
}
header .menu-mobile-flutuante nav .dropdown {
  margin: 0.75em 0;
  position: relative;
}
header .menu-mobile-flutuante nav .dropdown .dropdown-menu {
  border: 0px;
  position: static;
  top: 100%;
  left: 0;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 180px;
  background-color: transparent;
}
header .menu-mobile-flutuante nav .dropdown .dropdown-menu a {
  display: block;
  margin-left: 15px;
  margin-top: 5px;
  margin-bottom: 5px;
  white-space: nowrap;
}
header .menu-mobile-flutuante nav .dropdown:hover .dropdown-menu {
  display: flex;
}
header .menu-mobile-flutuante {
  transition: 300ms ease-in-out;
  transition-property: left;
}
header .menu-mobile-flutuante.active {
  left: 0;
}

@media (min-width: 768px) {
  header .menu-mobile,
  header .menu-mobile-flutuante {
    display: none;
  }
  header .menu-desktop {
    padding: 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  header .menu-desktop nav {
    display: flex;
    align-items: center;
  }
  header .menu-desktop a {
    font-family: "Rubik", sans-serif;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.6rem;
    padding: 0.5em 0.5em;
    border-radius: 5px;
    border-left: 1px solid transparent;
    border-right: 1px solid transparent;
  }
  header .menu-desktop a:hover {
    color: #8bff00;
  }
  header .menu-desktop .logo {
    display: block;
    width: 150px;
    height: auto;
    object-fit: contain;
  }
  header .menu-desktop .default-btn {
    width: max-content;
    color: #002852;
    background-color: #8bff00;
    padding: 6px 12px;
    margin-left: 0.5em;
    font-family: "Rubik", sans-serif;
    font-weight: 800;
    text-decoration: none;
    border-radius: 32px;
    font-size: 0.6rem;
    border: 0px;
  }
  header .menu-desktop .default-btn:hover {
    background-color: #002852;
    color: #8bff00;
    border: 0px;
  }
  header .menu-desktop .login-link {
    color: #00c1e4;
  }
  header .menu-desktop .dropdown {
    margin: 0 0.5em;
    position: relative;
    display: flex;
    align-items: center;
  }
  header .menu-desktop .dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 10px 0;
    border-radius: 8px;
    display: none;
    flex-direction: column;
    min-width: 180px;
    background-color: transparent;
    border: 0px;
  }
  header .menu-desktop .dropdown .dropdown-menu a {
    display: block;
    padding: 10px 10px;
    white-space: nowrap;
    width: fit-content;
    margin-left: 0;
  }
  header .menu-desktop .dropdown:hover .dropdown-menu {
    display: flex;
  }
}
@media (min-width: 992px) {
  header .menu-desktop .logo {
    width: 200px;
  }
  header .menu-desktop a {
    font-size: 0.8rem;
  }
  header .menu-desktop .default-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}
@media (min-width: 1200px) {
  header .menu-desktop .logo {
    width: 250px;
  }
  header .menu-desktop a {
    font-size: 1rem;
  }
  header .menu-desktop .default-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}
@media (min-width: 1400px) {
  header .menu-desktop .logo {
    width: 300px;
  }
  header .menu-desktop a {
    font-size: 1.1rem;
  }
  header .menu-desktop .default-btn {
    padding: 12px 24px;
    font-size: 1.1rem;
  }
}
#page__homepage .default-btn {
  display: block;
  width: fit-content;
  color: #002852;
  background-color: #8bff00;
  padding: 12px 24px;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  text-decoration: none;
  border-radius: 32px;
  font-size: 1rem;
}
#page__homepage .default-btn:hover {
  background-color: #002852;
  color: #8bff00;
}
#page__homepage .hero {
  width: 100%;
  height: 100svh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#page__homepage .hero .conteudo {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}
#page__homepage .hero h1 {
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #00c1e4;
  line-height: 1;
  margin-bottom: 0;
}
#page__homepage .hero h1 span {
  font-weight: normal;
}
#page__homepage .hero h2 {
  font-family: "Rubik", sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
}
#page__homepage .hero h2 span {
  font-style: italic;
  font-weight: 800;
}
#page__homepage .hero h4 {
  color: #8bff00;
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  font-size: 1rem;
}
#page__homepage .hero .default-btn {
  margin: auto;
}
#page__homepage .pgdr {
  padding-top: 3em;
  height: fit-content;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#page__homepage .pgdr h2 {
  text-align: center;
  width: fit-content;
  margin: auto;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1;
}
#page__homepage .pgdr h2 span {
  margin-top: 5px;
  display: block;
  font-size: 2.2rem;
  color: #00c1e4;
}
#page__homepage .pgdr .row {
  margin-top: 4em;
}
#page__homepage .pgdr .row .item {
  margin-bottom: 2em;
}
#page__homepage .pgdr .row .item .numerador {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00c1e4;
  text-align: center;
  width: fit-content;
  margin: auto;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: #ffffff;
  line-height: 1;
  width: 60px;
  height: 60px;
  border-radius: 100%;
}
#page__homepage .pgdr .row .item .descricao {
  font-size: 1rem;
  padding-top: 1em;
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  font-style: italic;
  text-align: center;
  font-weight: 600;
}
#page__homepage .pgdr .default-btn {
  margin: auto;
  margin-top: 3em;
  margin-bottom: 3em;
}
#page__homepage .proposito {
  padding-top: 5em;
  padding-bottom: 5em;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#page__homepage .proposito p {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  color: #00c1e4;
  margin-bottom: 5px;
}
#page__homepage .proposito h2 {
  max-width: 350px;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  color: #ffffff;
  font-size: 1.7rem;
}
#page__homepage .proposito h2 span {
  color: #00c1e4;
}
#page__homepage .diferenciais {
  overflow: hidden;
  padding: 3em 0;
  background-color: #002852;
}
#page__homepage .diferenciais h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #00c1e4;
  line-height: 1;
}
#page__homepage .diferenciais .swiper-diferenciais {
  display: flex;
  margin-top: 3em;
}
#page__homepage .diferenciais .swiper-diferenciais .swiper-wrapper {
  align-items: stretch;
}
#page__homepage .diferenciais .swiper-diferenciais .swiper-slide {
  height: auto;
  display: flex;
  padding: 15px;
  background-color: #01112f;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
#page__homepage .diferenciais .swiper-diferenciais .swiper-slide img {
  display: block;
  margin: 2em 0;
}
#page__homepage .diferenciais .swiper-diferenciais .swiper-slide h3 {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
#page__homepage .diferenciais .swiper-diferenciais .swiper-slide h3 span {
  font-style: italic;
}
#page__homepage .diferenciais .swiper-diferenciais .swiper-slide p {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  text-align: center;
}
#page__homepage .diferenciais .swiper-diferenciais .swiper-slide p.contador {
  position: absolute;
  top: -10px;
  margin: 0;
  background-color: #00c1e4;
  padding: 5px 10px;
}
#page__homepage .consultoria {
  width: 100%;
  height: 100svh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
#page__homepage .consultoria .titulo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 0.5em 0.5em;
  width: fit-content;
  margin: 0 auto;
}
#page__homepage .consultoria .titulo p {
  font-size: 16px;
  margin: 0;
  font-family: "Rubik", sans-serif;
}
#page__homepage .consultoria .titulo img {
  padding: 0 0.5em;
  height: 16px;
}
#page__homepage .consultoria .default-btn {
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#page__homepage .consultoria .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#page__homepage .consultoria .container .row {
  margin-top: auto;
  margin-bottom: 2em;
}
#page__homepage .consultoria .container .row h2 {
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  color: #00c1e4;
  line-height: 1;
}
#page__homepage .consultoria .container .row p {
  font-family: "Rubik", sans-serif;
  font-size: 1rem;
  color: #ffffff;
  line-height: 1;
  margin: 0;
}
#page__homepage .consultoria .container .row p span {
  color: #00c1e4;
  font-weight: 600;
}
#page__homepage .tecnologia {
  overflow: hidden;
  padding-bottom: 5em;
  background-color: #dbdbdb;
}
#page__homepage .tecnologia .titulo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  padding: 0.5em 0.5em;
  width: fit-content;
  margin: 0 auto;
}
#page__homepage .tecnologia .titulo p {
  font-size: 16px;
  margin: 0;
  font-family: "Rubik", sans-serif;
}
#page__homepage .tecnologia .titulo img {
  padding: 0 0.5em;
  height: 16px;
}
#page__homepage .tecnologia .swiper-tecnologias {
  display: flex;
  margin-top: 7em;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-wrapper {
  align-items: stretch;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide {
  display: flex;
  height: auto;
  align-items: stretch;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide .inner-slide {
  height: 100%;
  width: 100%;
  display: flex;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 2em 0;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide p {
  font-family: "Rubik", sans-serif;
  color: #002852;
  text-align: center;
  margin-bottom: 2em;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide .default-btn {
  margin-top: auto;
  margin-bottom: 1em;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide::after {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 80px;
  background-color: #00c1e4;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide.smart-gov::after {
  background-color: #383c88;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide.journey::after {
  background-color: #0054e1;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide.safebox::after {
  background-color: #005660;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide.iso::after {
  background-color: #007bff;
}
#page__homepage .tecnologia .swiper-tecnologias .swiper-slide.integrity::after {
  background-color: #00313a;
}
#page__homepage .quem-somos {
  background-color: #ffffff;
  padding: 3em 0;
}
#page__homepage .quem-somos h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #002852;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #00c1e4;
  margin: auto;
  margin-bottom: 1em;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  line-height: 1;
  width: 180px;
  height: 180px;
  border-radius: 100%;
}
#page__homepage .quem-somos p.foco {
  font-family: "Rubik", sans-serif;
  color: #002852;
  font-size: 1.2rem;
  margin-bottom: 0;
}
#page__homepage .quem-somos p.foco span {
  font-weight: bold;
  font-style: italic;
}
#page__homepage .quem-somos p.certificados {
  font-family: "Rubik", sans-serif;
  color: #002852;
  font-size: 1.2rem;
  margin-bottom: 0;
}
#page__homepage .quem-somos p.certificados span {
  font-weight: bold;
  color: #00c1e4;
}
#page__homepage .quem-somos img {
  display: block;
  width: 100%;
  margin-top: 3em;
  margin-bottom: 3em;
  object-fit: contain;
}
#page__homepage .quem-somos .cliente-chamada {
  font-weight: bold;
  color: #002852;
  width: 100%;
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
}
#page__homepage .quem-somos .vitrine {
  width: 100%;
  height: 100px;
  overflow: hidden;
}
#page__homepage .quem-somos .carrossel {
  height: 100%;
  display: flex;
  align-items: center;
  width: max-content;
  animation: scroll 50s linear infinite;
  will-change: transform;
}
#page__homepage .quem-somos .carrossel img {
  height: 50px;
  width: auto;
  margin: 0 1em;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
#page__homepage .academy {
  padding-top: 10em;
  padding-bottom: 5em;
  background-color: #002c52;
}
#page__homepage .academy .container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#page__homepage .academy .container img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 3em;
}
#page__homepage .academy .container p {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 3em;
}
#page__homepage .academy .container .default-btn {
  border: 1px solid #8bff00;
}
#page__homepage .academy .container .default-btn:hover {
  background-color: #221540;
}
#page__homepage .contato {
  padding: 3em 0;
  background-color: #002852;
}
#page__homepage .contato h2 {
  text-align: center;
  width: fit-content;
  margin: auto;
  margin-bottom: 1.5em;
  font-family: "Rubik", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #ffffff;
  line-height: 1;
}
#page__homepage .contato form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#page__homepage .contato .form-control {
  background-color: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 15px;
  color: #333;
  font-family: inherit;
}
#page__homepage .contato .form-control::placeholder {
  color: #666;
}
#page__homepage .contato .form-control:focus {
  background-color: #d9d9d9;
  box-shadow: none;
  outline: none;
}
#page__homepage .contato textarea.form-control {
  height: 180px;
  resize: none;
}
#page__homepage .contato .default-btn {
  width: 100%;
  outline: 0;
  border: 0px;
  border: 1px solid #8bff00;
}

@media (min-width: 576px) {
  #page__homepage .hero .conteudo {
    width: 100%;
  }
  #page__homepage .hero h1 {
    font-size: 2.3rem;
  }
  #page__homepage .pgdr h2 {
    font-size: 2rem;
  }
  #page__homepage .pgdr h2 span {
    padding-top: 0.5rem;
    font-size: 2.3rem;
  }
  #page__homepage .proposito h2 {
    max-width: 400px;
    font-size: 2.3rem;
  }
  #page__homepage .diferenciais h2 {
    font-size: 2.3rem;
    width: fit-content;
    margin: 0 auto;
  }
  #page__homepage .consultoria .container .row h2 {
    font-size: 2.3rem;
  }
  #page__homepage .quem-somos h2 {
    font-size: 2.3rem;
    width: 200px;
    height: 200px;
  }
  #page__homepage .quem-somos img {
    width: 80%;
    margin: 1em auto;
  }
  #page__homepage .quem-somos .cliente-chamada {
    font-size: 1.3rem;
    margin-top: 3em;
  }
  #page__homepage .academy .container img {
    width: 400px;
  }
  #page__homepage .contato h2 {
    font-size: 2.3rem;
  }
  #page__homepage .contato .default-btn {
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  #page__homepage .hero .conteudo {
    width: 100%;
    max-width: 700px;
  }
  #page__homepage .hero h1 {
    font-size: 2.3rem;
  }
  #page__homepage .hero .default-btn {
    font-size: 1.3rem;
  }
  #page__homepage .pgdr h2 {
    font-size: 2.1rem;
  }
  #page__homepage .pgdr .default-btn {
    font-size: 1.3rem;
  }
  #page__homepage .consultoria .default-btn {
    font-size: 1.3rem;
  }
  #page__homepage .tecnologia .swiper-tecnologias .swiper-slide .inner-slide p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #page__homepage .quem-somos h2 {
    margin-bottom: 0;
  }
  #page__homepage .quem-somos p.foco,
  #page__homepage .quem-somos p.certificados {
    font-size: 1.3rem;
  }
  #page__homepage .academy .container img {
    width: 500px;
    margin-bottom: 4em;
  }
  #page__homepage .academy .container p {
    width: 630px;
    margin-bottom: 3em;
  }
  #page__homepage .academy .container .default-btn {
    font-size: 1.3rem;
  }
  #page__homepage .contato form .default-btn {
    font-size: 1.3rem;
  }
}
@media (min-width: 992px) {
  #page__homepage .hero .conteudo {
    max-width: 750px;
  }
  #page__homepage .hero h1 {
    font-size: 2.8rem;
  }
  #page__homepage .hero h2 {
    font-size: 2.2rem;
  }
  #page__homepage .hero h4 {
    font-size: 1.2rem;
  }
  #page__homepage .hero .default-btn {
    font-size: 1.5rem;
  }
  #page__homepage .pgdr h2 {
    max-width: 800px;
    font-size: 2.2rem;
  }
  #page__homepage .pgdr h2 span {
    font-size: 2.8rem;
  }
  #page__homepage .pgdr .default-btn {
    font-size: 1.5rem;
  }
  #page__homepage .proposito p {
    font-size: 1.25rem;
  }
  #page__homepage .proposito h2 {
    max-width: 500px;
    font-size: 2.8rem;
  }
  #page__homepage .diferenciais h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5em;
  }
  #page__homepage .diferenciais .swiper-diferenciais .swiper-slide h3 {
    font-size: 1.25rem;
  }
  #page__homepage .consultoria .titulo p {
    font-size: 1.25rem;
  }
  #page__homepage .consultoria .container .row h2 {
    font-size: 2.8rem;
    text-align: center;
  }
  #page__homepage .consultoria .container .row p {
    font-size: 1.1rem;
  }
  #page__homepage .tecnologia .titulo p {
    font-size: 1.25rem;
  }
  #page__homepage .quem-somos h2 {
    font-size: 2.8rem;
    height: 240px;
    width: 240px;
  }
  #page__homepage .quem-somos p.foco,
  #page__homepage .quem-somos p.certificados {
    font-size: 1.5rem;
  }
  #page__homepage .contato h2 {
    font-size: 2.8rem;
  }
  #page__homepage .contato textarea.form-control {
    height: 250px;
  }
}
@media (min-width: 1200px) {
  #page__homepage .hero .conteudo {
    max-width: 1000px;
    bottom: 40px;
  }
  #page__homepage .hero h1 {
    font-size: 50px;
  }
  #page__homepage .hero h2 {
    font-size: 40px;
  }
  #page__homepage .pgdr .row .item .numerador {
    font-size: 1.2rem;
  }
  #page__homepage .pgdr .row .item .descricao {
    font-size: 1.2rem;
  }
  #page__homepage .proposito {
    padding-top: 7em;
    padding-bottom: 7em;
  }
  #page__homepage .proposito p {
    font-size: 1.5rem;
  }
  #page__homepage .diferenciais .swiper-diferenciais .swiper-slide h3 {
    font-size: 1.75rem;
  }
}
@media (min-width: 1400px) {
  #page__homepage .hero .conteudo {
    max-width: 1200px;
  }
  #page__homepage .hero h1 {
    font-size: 56px;
  }
  #page__homepage .hero h2 {
    font-size: 46px;
  }
  #page__homepage .pgdr h2 {
    max-width: 900px;
    font-size: 45px;
  }
  #page__homepage .pgdr h2 span {
    font-size: 60px;
  }
  #page__homepage .proposito {
    padding-top: 10em;
    padding-bottom: 10em;
  }
  #page__homepage .proposito h2 {
    max-width: 660px;
    font-size: 60px;
  }
  #page__homepage .diferenciais .container-fluid {
    padding-right: 100px;
    padding-left: 100px;
  }
  #page__homepage .diferenciais .swiper-diferenciais .swiper-slide p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  #page__homepage .diferenciais .swiper-diferenciais .swiper-slide p.contador {
    width: fit-content;
  }
}
footer {
  background: #000c32;
  padding: 2em 0;
}
footer .desktop {
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
footer .logo {
  width: 250px;
}
footer .bandeiras {
  display: flex;
  gap: 10px;
  margin-bottom: 1.5em;
}
footer .bandeiras img {
  width: 40px;
}
footer .default-btn {
  background: #8bff00;
  color: #000c32;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}
footer .default-btn:hover {
  background-color: #000c32;
  color: #8bff00;
}
footer .email {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  max-width: 280px;
  text-decoration: none;
  margin-bottom: 1em;
  margin-bottom: 1.5em;
}
footer .certificados {
  width: 120px;
}
footer p {
  font-family: "Rubik", sans-serif;
  color: #ffffff;
  font-size: 1rem;
  max-width: 280px;
}
footer p span {
  color: #00c1e4;
  font-weight: bold;
}

@media (min-width: 768px) {
  footer {
    padding: 1.5em 0;
  }
  footer .desktop {
    max-width: none;
  }
  footer .desktop .logo {
    width: 160px;
  }
  footer .desktop .bandeiras {
    margin: 0;
  }
  footer .desktop .bandeiras img {
    width: 24px;
  }
  footer .desktop .default-btn {
    background: #8bff00;
    color: #002852;
    padding: 6px 12px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.8rem;
    font-family: "Rubik", sans-serif;
  }
  footer .desktop .email {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0;
  }
  footer .desktop .certificados {
    width: 105px;
  }
  footer .desktop p {
    text-align: left;
    color: #ffffff;
    font-size: 0.7rem;
    max-width: 200px;
    margin: 0;
  }
  footer .desktop p span {
    color: #00c1e4;
    font-weight: bold;
  }
  footer .desktop .ultima {
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  footer .desktop .logo {
    width: 200px;
  }
  footer .desktop .bandeiras img {
    width: 40px;
  }
  footer .desktop .default-btn {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
  footer .desktop .email {
    font-size: 0.8rem;
  }
  footer .desktop .certificados {
    width: 200px;
  }
  footer .desktop p {
    font-size: 1rem;
  }
  footer .desktop .ultima {
    margin: 0;
  }
}
@media (min-width: 1200px) {
  footer .desktop .default-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
  footer .desktop .email {
    font-size: 1rem;
  }
  footer .desktop .certificados {
    width: 200px;
  }
  footer .desktop p {
    font-size: 1rem;
  }
  footer .desktop .ultima {
    margin: 0;
  }
}

/*# sourceMappingURL=styles.css.map */
