@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");
:root {
  --primary: #001F3F;
  --text: #252728;
  --headline: #1a1e1f;
  --gray-text: #6d7679;
  --white: #fff;
  --bacground: #f8f8ff;
  --gray-dark: #9ba2a4;
  --gray-light: #f3f3f4;
}

#primary {
  background-color: var(--primary);
  color: var(--white);
}

.course-dialog {
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(149, 157, 165, 0.2);
  max-width: 36rem;
  margin: 0 auto;
  width: 100%;
  align-self: center;
  border: none;
  background-color: var(--white);
  border: 0.1rem solid #ced4da;
  animation: fadeInAnimation 0.5s ease-in-out forwards;
}
.course-dialog header {
  display: flex;
  min-height: 4rem;
  padding: 1.5rem 2rem 0.75rem 2rem;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-light);
}
.course-dialog header .form-header .form-header-title {
  font-size: 2.4rem;
  color: var(--headline);
}
.course-dialog header .form-header p {
  max-width: 27rem;
  margin-top: 1.2rem;
  font-size: 1.2rem;
  line-height: 2rem;
}
.course-dialog header .close-btn {
  background-color: inherit;
  cursor: pointer;
  border: none;
  align-self: flex-start;
}
.course-dialog header .close-btn .close-btn span {
  stroke: var(--gray-dark);
  height: 1.75rem;
  width: 1.75rem;
}
.course-dialog .course-dialog__content {
  padding: 2rem;
}
.course-dialog .course-dialog__content .course-dialog-wrapper {
  display: flex;
  flex-direction: column;
  color: var(--gray-text);
  padding: 0.25rem;
  gap: 1.6rem;
}
.course-dialog .course-dialog__content .course-dialog-wrapper .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.course-dialog .course-dialog__content .course-dialog-wrapper .form-group label {
  font-size: 1.2rem;
  font-weight: 600;
}
.course-dialog .course-dialog__content .course-dialog-wrapper .form-group .form-group-input {
  display: block;
  color: var(--gray-text);
  outline: none;
  border: none;
  width: 100%;
  font-weight: 400;
  font-size: 1.2rem;
  border: 0.1rem solid #ced4da;
  background-color: var(--gray-light);
  border-radius: 0.5rem;
  padding: 0.8rem 1.6rem;
}
.course-dialog .course-dialog__content .course-dialog-wrapper .form-group .form-group-input:focus {
  outline: 0;
  border-color: var(--primary);
  color: var(--gray-text);
}
.course-dialog .course-dialog__content .course-dialog-wrapper .form-group .form-control {
  display: block;
  color: var(--gray-text);
  outline: none;
  border: none;
  width: 100%;
  font-weight: 400;
  font-size: 1.2rem;
  background-color: var(--gray-light);
  border: 0.1rem solid #ced4da;
  border-radius: 0.5rem;
  padding: 0.8rem 1.6rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.course-dialog .course-dialog__content .course-dialog-wrapper .form-group .form-control:focus {
  outline: 0;
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(60, 152, 250, 0.25);
}
.course-dialog .course-dialog__content .form-group-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.8rem;
  gap: 1.6rem;
}
.course-dialog .course-dialog__content .form-group-button button {
  color: var(--gray-text);
  outline: none;
  border: none;
  width: 100%;
  font-weight: 600;
  font-size: 1.2rem;
  background-color: var(--gray-light);
  border-radius: 0.5rem;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
}

.course-dialog--fadeout {
  animation: fadeInAnimation 0.5s ease-in-out forwards;
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}

@font-face {
  font-family: "Lato-Light";
  src: url("../fonts/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lato";
  src: url("../fonts/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Lato", sans-serif;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

::-webkit-scrollbar {
  width: 0.6rem;
}

::-webkit-scrollbar-track {
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 3.2rem;
  background-color: #001F3F;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

span.ammizing {
  background-color: #001F3F;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAFAFA;
}
@media screen and (max-width: 76.8rem) {
  span.ammizing {
    width: 4rem;
    height: 4rem;
  }
}

a, p, li, span, small {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

a {
  text-decoration: none;
  color: #847F90;
}
a:hover {
  color: #001F3F;
}

ul {
  list-style: none;
}

p {
  pointer-events: none;
  user-select: none;
}

.btn-center {
  margin-top: 2.4rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.btn-assinar {
  color: #847F90;
  border-radius: 0.4rem;
  border: 0.1rem solid #001F3F;
  padding: 0.8rem 1.6rem;
  transition: all 0.2s ease-in-out;
  background-color: transparent;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
}
.btn-assinar:hover {
  color: #001F3F;
}

.slogan {
  color: #001F3F;
  background-color: white;
  line-height: 0.8rem;
  font-weight: 700;
}

.header {
  --tw-border-opacity: 0.5;
  position: fixed;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
  border-bottom: 0.1rem solid rgb(41 41 46/var(--tw-border-opacity));
  z-index: 1000;
}
.header .menu_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 102.4rem;
  margin: 0 auto;
  height: 6.4rem;
  padding: 0 1.6rem;
}
.header .menu_wrapper .menu_bar {
  display: flex;
  align-items: center;
}
.header .menu_wrapper .menu_bar .marca {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #001F3F;
  font-size: 2rem;
  font-weight: 700;
}
.header .menu_wrapper .menu_bar .logo {
  display: flex;
  align-items: center;
  cursor: pointer;
  height: 3.8rem;
  width: 3.8rem;
}
.header .menu_wrapper .menu_bar .logo img {
  border-radius: 8%;
  margin-top: 0.26rem;
  width: 100%;
  height: 100%;
}
.header .menu_wrapper .menu_bar .navigation {
  display: flex;
  margin-left: 13.2rem;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
  align-self: center;
}
.header .menu_wrapper .menu_bar .navigation > li {
  display: flex;
  position: relative;
  cursor: pointer;
  align-items: center;
  min-height: 3.2rem;
}
.header .menu_wrapper .menu_bar .navigation > li > a {
  color: #001F3F;
  font-size: 1.6rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
  flex-wrap: nowrap;
  border-radius: 0.4rem;
  padding: 0.8rem 1.4rem;
  transition: background-color 0.2s ease-in-out;
}
.header .menu_wrapper .menu_bar .navigation > li > a:hover {
  color: #FAFAFA;
  background-color: #001F3F;
}
.header .menu_wrapper .menu_bar .navigation > li > button {
  width: 100%;
  color: #001F3F;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  margin-right: -0.4rem;
  align-items: center;
  min-height: 3.2rem;
  font-size: 1.6rem;
  font-weight: 600;
  gap: 0.4rem;
  flex-wrap: nowrap;
  border-radius: 0.4rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  background: none;
  display: flex;
  justify-content: space-between;
  position: relative;
  transition: background-color 0.2s ease-in-out;
}
.header .menu_wrapper .menu_bar .navigation > li > button > span {
  fill: #001F3F;
  margin-top: 0.2rem;
  transition: all 0.2s ease-in-out;
}
.header .menu_wrapper .menu_bar .navigation > li:hover > button > span {
  fill: #555555;
  rotate: 180deg;
}
.header .menu_wrapper .menu_bar .navigation > li:hover > button {
  color: #FAFAFA;
  background-color: #001F3F;
}
.header .menu_wrapper .menu_bar .navigation > li:hover .dropdown {
  display: block;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding-top: 6rem;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown {
  border-radius: 0.8rem;
  background-color: #FAFAFA;
  display: none;
  padding: 0.8rem;
  width: 100%;
  max-width: 60rem;
  border: 0.1rem solid #e4e9ed;
  box-shadow: 0 5rem 10rem -2rem rgba(0, 0, 0, 0.12), 0 3rem 6rem -30px rgba(0, 0, 0, 0.15);
  z-index: 4;
  animation: fadeIn 0.2s ease-in-out;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown .list-items-with-description {
  list-style-type: none;
  display: grid;
  width: 100%;
  grid-auto-columns: 1fr 1fr;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown .list-items-with-description li {
  display: flex;
  padding: 0.8rem;
  gap: 1.6rem;
  width: 100%;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown .list-items-with-description li:hover {
  border-radius: 0.6rem;
  background-color: #F2F2F2;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown .list-items-with-description li a {
  display: flex;
  padding: 0.8rem;
  gap: 1.6rem;
  width: 100%;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown .list-items-with-description li span {
  color: #001F3F;
  stroke-width: 0.1rem;
  width: 2.4rem;
  height: 2.4rem;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown .list-items-with-description li .item-title h3 {
  font-weight: 500;
  font-size: 1.4rem;
  color: #555555;
}
.header .menu_wrapper .menu_bar .navigation .dropdown_wrapper .dropdown .list-items-with-description li .item-title p {
  font-size: 1.2rem;
  white-space: nowrap;
  color: #847F90;
}
@media screen and (max-width: 76.8rem) {
  .header .menu_wrapper .menu_bar #hide {
    display: none;
  }
}
.header .menu_wrapper .menu_bar .navigation-responsive {
  border-block-start: 0.1rem solid rgb(41 41 46/var(--tw-border-opacity));
  margin-top: 3.2rem;
  right: 0;
  background-color: #fff;
  display: block;
  position: absolute;
  z-index: 1999;
  width: 100dvw;
  padding: 1.6rem 1.6rem;
  font-weight: 600;
  box-shadow: 0rem 0.2rem 0.4rem rgba(0, 0, 0, 0.1);
}
.header .menu_wrapper .menu_bar .navigation-responsive li {
  margin-bottom: 0.8rem;
}
.header .menu_wrapper .menu_bar .navigation-responsive li a {
  font-size: 1.6rem;
  color: #001F3F;
  padding: 0.8rem;
  border-radius: 0.4rem;
  transition: background-color 0.5ms ease-in-out;
}
.header .menu_wrapper .menu_bar .navigation-responsive li a:hover {
  color: #fff;
  background-color: #001F3F;
}
.header .menu_wrapper .menu_bar .navigation-responsive li button {
  border: none;
  color: #001F3F;
  background-color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 0.4rem;
  transition: background-color 0.5ms ease-in-out;
}
.header .menu_wrapper .menu_bar .navigation-responsive li button:hover {
  color: #fff;
  background-color: #001F3F;
}
.header .menu_wrapper .menu_bar .navigation-responsive li button span {
  display: none;
}
.header .menu_wrapper .menu_bar .navigation-responsive li div {
  display: none;
}
.header .menu_wrapper .menu_bar .navigation-responsive li:last-child {
  margin-bottom: 0;
}
.header .menu_wrapper .action-buttons {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  flex-wrap: nowrap;
}
.header .menu_wrapper .action-buttons a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2rem ease-in-out;
  line-height: 2rem;
}
.header .menu_wrapper .action-buttons .primary {
  color: #001F3F;
  border-radius: 0.4rem;
  border: 0.1rem solid #001F3F;
  padding: 0.8rem 1.4rem;
  transition: background-color 0.2rem ease-in-out;
}
.header .menu_wrapper .action-buttons .primary:hover {
  background-color: #001F3F;
  color: #FAFAFA;
}
@media screen and (max-width: 76.8rem) {
  .header .menu_wrapper .hide {
    display: none;
  }
}
.header .menu_wrapper .burger-menu {
  display: none;
  output: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
}
@media screen and (max-width: 76.8rem) {
  .header .menu_wrapper .burger-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
    width: 3.2rem;
    min-width: 3.2rem;
    min-height: 3.2rem;
    pointer-events: all;
    gap: 0.4rem;
    flex-direction: column;
  }
}
@media screen and (max-width: 76.8rem) {
  .header .menu_wrapper .burger-menu span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.2rem;
    width: 3.2rem;
    color: #001F3F;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.99) translateY(-0.7em);
    transform-origin: top;
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.hero {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  padding-top: 6.4rem;
}
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 4;
}
.hero-container-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.6rem;
  gap: 0.8rem;
}
.hero-container-title span {
  font-size: 1.2rem;
  color: #847F90;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-container-title h1 {
  font-size: 4rem;
  font-weight: 800;
  color: #FAFAFA;
}
.hero-container p {
  color: #FAFAFA;
  font-size: 2.4rem;
  margin-bottom: 3.2rem;
}
@media screen and (max-width: 76.8rem) {
  .hero-container p {
    margin-bottom: 3.2rem;
  }
}
.hero-container .hero-container-cta-button {
  color: #847F90;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2rem ease-in-out;
  line-height: 2rem;
  border-radius: 0.4rem;
  border: 0.1rem solid #847F90;
  padding: 1.2rem 2.4rem;
  transition: all 0.2s ease-in-out;
}
.hero-container .hero-container-cta-button:hover {
  background-color: #847F90;
  color: #FAFAFA;
  border: none;
}

.main {
  width: 100%;
}
.main .backgound-0 {
  background-image: url("../image/img/Wireframe - 1.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.main .about {
  padding-top: 8rem;
  min-height: 100dvh;
  max-width: 102.4rem;
  max-width: 102.4rem;
  margin: 0 auto;
}
.main .about-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 1.6rem;
  align-items: flex-start;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container {
    flex-direction: column;
    align-items: center;
    gap: 3.2rem;
  }
}
.main .about-container-title {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-title {
    text-align: center;
  }
}
.main .about-container-title-itens {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-title-itens {
    gap: 0.6rem;
  }
}
.main .about-container-title-itens span {
  font-size: 1.2rem;
  color: #847F90;
  font-weight: 700;
  text-transform: uppercase;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-title-itens span {
    font-size: 1.6rem;
  }
}
.main .about-container-title-itens h2 {
  font-size: 4rem;
  text-transform: uppercase;
  color: #001F3F;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-title-itens h2 {
    font-size: 6rem;
  }
}
.main .about-container-title p {
  font-size: 1.2rem;
  color: #555555;
  opacity: 0.5;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-title p {
    font-size: 1.6rem;
  }
}
.main .about-container-description {
  text-align: justify;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 60rem;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-description {
    gap: 2.4rem;
  }
}
.main .about-container-description p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3rem;
  color: #171717;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-description p {
    line-height: 3.4rem;
  }
}
.main .about-container-description p .span-underline {
  text-decoration: underline;
  cursor: pointer;
}
.main .about-container-description-social {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-description-social {
    align-items: center;
    gap: 1.6rem;
    text-align: center;
  }
}
.main .about-container-description-social h5 {
  font-size: 1.6rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #847F90;
}
.main .about-container-description-social div {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 0.4rem;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-description-social div {
    gap: 2.4rem;
  }
}
.main .about-container-description-social div i {
  font-size: 1.6rem;
  font-weight: 700;
  margin-right: 1.6rem;
  transition: background-color 0.2s ease-in-out;
  background-color: #001F3F;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FAFAFA;
  cursor: pointer;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-description-social div i {
    margin-right: 0;
  }
}
.main .about-container-description-social div i:hover {
  color: #001F3F;
  opacity: 0.5;
}
.main .about-container-partner {
  width: 100%;
  margin-top: 4.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  padding: 1.6rem;
  border-radius: 0.4rem;
  background-color: #001F3F;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-partner {
    flex-direction: column;
  }
}
.main .about-container-partner-title {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #FAFAFA;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-partner-title {
    max-width: none;
    font-size: 1.6rem;
  }
}
.main .about-container-partner-itens {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #FAFAFA;
}
.main .about-container-partner-itens img {
  width: 5.6rem;
  height: 5.6rem;
  background: #fff;
  border-radius: 0.4rem;
}
@media screen and (max-width: 76.8rem) {
  .main .about-container-partner-itens {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    font-size: 3rem;
  }
}
.main .backgound-2 {
  background-image: url("../image/img/Wireframe - 2.png");
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.main .backgound-2 .main-service-cards-itens {
  background-color: #FAFAFA;
}
.main .main-service {
  padding-top: 8rem;
  min-height: 100dvh;
  max-width: 102.4rem;
  margin: 0 auto;
}
.main .main-service-title {
  width: 100%;
  padding: 0 1.6rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
}
.main .main-service-title h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #001F3F;
  text-transform: uppercase;
}
.main .main-service-title p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #555555;
  max-width: 50rem;
  line-height: 2.4rem;
}
.main .main-service-cards {
  width: 100%;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: max-content max-content;
  gap: 3.2rem;
  place-items: center;
}
@media screen and (max-width: 76.8rem) {
  .main .main-service-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
  }
}
@media screen and (max-width: 99.2rem) {
  .main .main-service-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.main .main-service-cards-itens {
  border: 0.1rem solid #001F3F;
  border-radius: 0.4rem;
  width: 29.866rem;
  height: 24.866rem;
  padding: 1.6rem;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 76.8rem) {
  .main .main-service-cards-itens {
    width: 36rem;
    height: 36rem;
  }
}
@media screen and (max-width: 99.2rem) {
  .main .main-service-cards-itens {
    margin: 0 auto;
  }
}
.main .main-service-cards-itens-title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 76.8rem) {
  .main .main-service-cards-itens-title {
    gap: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.main .main-service-cards-itens-title h3 {
  font-size: 2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 76.8rem) {
  .main .main-service-cards-itens-title h3 {
    font-size: 2.4rem;
  }
}
.main .main-service-cards-itens .detalhes {
  color: #847F90;
  text-transform: uppercase;
}
.main .main-service-cards-itens .datalhes-text {
  margin-top: 0.6rem;
  line-height: 1.5rem;
  font-size: 1.1rem;
  color: #847F90;
}
.main .main-service-cards-itens ul {
  list-style: decimal-leading-zero;
  padding: 0 1.6rem;
  line-height: 1.6rem;
}
@media screen and (max-width: 76.8rem) {
  .main .main-service-cards-itens ul {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 99.2rem) {
  .main .main-service-cards-itens ul {
    margin-top: 0.4rem;
  }
}
.main .main-service-cards-itens ul li {
  color: #555555;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 76.8rem) {
  .main .main-service-cards-itens ul li {
    margin-bottom: 0.6rem;
  }
}
.main .main-formation {
  padding-top: 8rem;
  min-height: 100dvh;
  max-width: 102.4rem;
  max-width: 102.4rem;
  margin: 0 auto;
}
.main .main-formation-title {
  width: 100%;
  padding: 0 1.6rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
}
.main .main-formation-title h2 {
  font-size: 3.2rem;
  font-weight: 800;
  color: #001F3F;
  text-transform: uppercase;
}
.main .main-formation-title p {
  font-size: 1.6rem;
  font-weight: 600;
  color: #555555;
  max-width: 50rem;
  line-height: 2.4rem;
}
.main .main-formation-cards {
  width: 100%;
  padding: 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: max-content max-content;
  gap: 3.2rem;
  place-items: center;
}
@media screen and (max-width: 76.8rem) {
  .main .main-formation-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3.2rem;
  }
}
@media screen and (max-width: 99.2rem) {
  .main .main-formation-cards {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
.main .main-formation-cards-itens {
  border: 0.1rem solid #001F3F;
  border-radius: 0.4rem;
  width: 29.866rem;
  height: 24.866rem;
  padding: 1.6rem;
  -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 76.8rem) {
  .main .main-formation-cards-itens {
    width: 36rem;
    height: 36rem;
  }
}
@media screen and (max-width: 99.2rem) {
  .main .main-formation-cards-itens {
    margin: 0 auto;
  }
}
.main .main-formation-cards-itens-title {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 76.8rem) {
  .main .main-formation-cards-itens-title {
    gap: 2.4rem;
    margin-bottom: 1.6rem;
  }
}
.main .main-formation-cards-itens-title h3 {
  font-size: 2rem;
  text-transform: uppercase;
}
@media screen and (max-width: 76.8rem) {
  .main .main-formation-cards-itens-title h3 {
    font-size: 2.4rem;
  }
}
.main .main-formation-cards-itens .detalhes {
  color: #847F90;
  text-transform: uppercase;
}
.main .main-formation-cards-itens ul {
  list-style: decimal-leading-zero;
  padding: 0 1.6rem;
  line-height: 1.6rem;
}
@media screen and (max-width: 76.8rem) {
  .main .main-formation-cards-itens ul {
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 99.2rem) {
  .main .main-formation-cards-itens ul {
    margin-top: 0.4rem;
  }
}
.main .main-formation-cards-itens ul li {
  color: #555555;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 76.8rem) {
  .main .main-formation-cards-itens ul li {
    margin-bottom: 0.6rem;
  }
}

.footer {
  width: 100%;
  background-color: #171717;
}
@media screen and (max-width: 76.8rem) {
  .footer {
    margin-top: 2.4rem;
  }
}
.footer-container {
  padding-top: 8rem;
  min-height: 50dvh;
  max-width: 102.4rem;
  max-width: 102.4rem;
  margin: 0 auto;
}
.footer-container-containers {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 1.6rem;
  gap: 3.2rem;
}
@media screen and (max-width: 76.8rem) {
  .footer-container-containers {
    flex-direction: column;
  }
}
@media screen and (max-width: 99.2rem) {
  .footer-container-containers {
    align-items: center;
  }
}
.footer-container-containers-item {
  width: 100%;
  align-self: start;
}
.footer-container-containers-item iframe {
  border-radius: 0.4rem;
  width: 100%;
  height: 30rem;
}
@media screen and (max-width: 76.8rem) {
  .footer-container-containers-item iframe {
    width: 46.2rem;
  }
}
@media screen and (max-width: 99.2rem) {
  .footer-container-containers-item iframe {
    width: 100%;
  }
}
.footer-container-containers-item-geral {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9.6rem;
}
@media screen and (max-width: 76.8rem) {
  .footer-container-containers-item-geral {
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 6.4rem;
    justify-content: space-around;
  }
}
@media screen and (max-width: 99.2rem) {
  .footer-container-containers-item-geral {
    max-width: 60rem;
  }
}
.footer-container-containers-item-geral-itens {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: space-between;
}
@media screen and (max-width: 76.8rem) {
  .footer-container-containers-item-geral-itens {
    width: 100%;
    margin-bottom: none;
    justify-content: space-between;
  }
}
.footer-container-containers-item-geral-itens-redes {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer-container-containers-item-geral-itens-redes h5 {
  color: #FAFAFA;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-container-containers-item-geral-itens-redes ul li {
  margin-bottom: 0.8rem;
}
.footer-container-containers-item-geral-itens-redes ul li a {
  color: #e4e9ed;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.footer-container-containers-item-geral-itens-redes ul li a:hover {
  color: #555555;
}
.footer-container-containers-item-geral-itens-others {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer-container-containers-item-geral-itens-others h5 {
  color: #FAFAFA;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-container-containers-item-geral-itens-others ul li {
  margin-bottom: 0.8rem;
}
.footer-container-containers-item-geral-itens-others ul li a {
  color: #e4e9ed;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.footer-container-containers-item-geral-itens-others ul li a:hover {
  color: #555555;
}
.footer-container-containers-item-geral .contactos {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.footer-container-containers-item-geral .contactos h5 {
  color: #FAFAFA;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.footer-container-containers-item-geral .contactos ul li {
  margin-bottom: 0.8rem;
}
.footer-container-containers-item-geral .contactos ul li a {
  color: #e4e9ed;
  font-size: 1.2rem;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.footer-container-containers-item-geral .contactos ul li a:hover {
  color: #555555;
}
.footer-container-containers-item-geral-bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-container-containers-item-geral-bottom p {
  color: #FAFAFA;
  font-size: 1.4rem;
}
.footer-container-containers-item-geral-bottom p span {
  font-weight: 600;
}
.footer-container-containers-item-geral-bottom img {
  border-radius: 0.8rem;
  height: 4.8rem;
  width: 4.8rem;
  cursor: pointer;
}

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