* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

html {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
}

body {
  width: 100%;
  height: 100%;
}

a {
  text-decoration: none;
  color: #000;
}

button {
  border-radius: 0.8rem;
  border: none;
}

@-webkit-keyframes zoom-out {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05, 1.1);
    opacity: 0;
  }
}
@-webkit-keyframes fade-in {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
@-webkit-keyframes fade-out {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes grow {
  from {
    width: 0%;
    opacity: 1;
  }
  to {
    width: 70%;
    opacity: 0;
  }
}
@-webkit-keyframes moverDiagonal {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 100% 100%;
  }
}
@-webkit-keyframes gangle {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade-up {
  from {
    margin-top: 3rem;
    opacity: 0;
  }
  to {
    padding-top: 0;
    opacity: 1;
  }
}
.header {
  width: 100%;
  height: 100%;
  background-color: #311d3f;
}
.header__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  flex-direction: column;
}
.header__content .row {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  margin-top: 0.5rem;
  color: #e6e6e6;
  overflow-y: hidden;
}
@media (max-width: 900px) {
  .header__content .row {
    justify-content: center;
  }
}
.header__content .row .logo {
  width: 180px;
  animation: fade-up 1s ease-in-out forwards;
}
.header__content .row p {
  font-weight: bold;
  animation: fade-up 1s ease-in-out forwards;
  animation-duration: 2s;
  color: #e6e6e6;
}
@media (max-width: 900px) {
  .header__content .row p {
    display: none;
  }
}
.header__content .row p i {
  margin-right: 0.5rem;
  font-size: 1.5rem;
  color: #673d85;
}
.header__nav {
  width: 80%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #673d85;
  color: #e6e6e6;
  margin-top: 1rem;
  border-style: outset;
  position: relative;
}
.header__nav input {
  display: none;
}
.header__nav .container-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
}
@media (max-width: 900px) {
  .header__nav .container-list {
    display: none;
  }
}
.header__nav .container-list li a {
  color: #e6e6e6;
  font-weight: bold;
  animation: fade-up 1s ease-in-out forwards;
  animation-duration: 3s;
}
.header__nav .container-list li a:hover {
  color: #160d1c;
}

.about {
  width: 100%;
  height: 100%;
  background-color: #160d1c;
  text-align: center;
}
.about__content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: columns;
  height: 100%;
  color: #e6e6e6;
  padding-bottom: 2rem;
  flex-direction: column;
}
.about__content h2 {
  text-transform: uppercase;
  margin: 3rem 0 1rem 0;
  font-size: 2rem;
}
.about__content .logo {
  margin: 2rem 0;
  width: 200px;
  animation: pulse 1.5s linear infinite;
}
.about__content p {
  max-width: 900px;
  margin: 1.5rem auto;
  font-size: 1.2rem;
}
@media (max-width: 900px) {
  .about__content p {
    width: 90%;
  }
}
.about__content button {
  width: 250px;
  height: 35px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 900;
  background-color: transparent;
  border: solid 0.1rem #673d85;
}
.about__content button a {
  width: 100%;
  color: #e6e6e6;
}

.banner {
  width: 400px;
}

.carousel {
  width: 100%;
  height: 75vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .carousel {
    height: 25vh;
  }
}
.carousel__content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, #000000, #673d85);
  padding-top: 3rem;
}
.carousel__content .slider-container {
  width: 100%;
  min-height: 100%;
}
@media (max-width: 900px) {
  .carousel__content .slider-container {
    margin-top: 2rem;
    height: 100%;
  }
}
.carousel__content .slider-container .slider-box {
  width: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
}
.carousel__content .slider-container .slider-box img {
  width: 100%;
  max-height: 100%;
}
.carousel__content .slider-container .slider-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.carousel__content .setas {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding-inline: 1rem;
}
.carousel__content .setas button {
  background-color: transparent;
}
.carousel__content .setas .back, .carousel__content .setas .next {
  font-weight: bold;
  font-size: 3rem;
  background-color: #673d85;
  cursor: pointer;
  border: none;
  border-radius: 1rem;
  color: #e6e6e6;
  opacity: 0;
}
.carousel__content .bnt-nav-box {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 2rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.carousel__content .bnt-nav-box .btn-nav {
  width: 2rem;
  height: 0.6rem;
  border: solid 0.1rem #673d85;
  border-radius: 0.2rem;
  cursor: pointer;
  transition: background 0.2s linear;
}
.carousel__content .bnt-nav-box .btn-nav:hover {
  background-color: #673d85;
}
.carousel__content .bnt-nav-box .btn-nav.active {
  background-color: #673d85;
}

.services {
  width: 100%;
  height: 100%;
  text-align: center;
  color: #e6e6e6;
  background-color: #4c2d62;
}
.services__title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 3rem;
  margin: 0 auto;
  padding-top: 2rem;
  color: #e6e6e6;
}
@media (max-width: 900px) {
  .services__title {
    font-size: 2rem;
  }
}
.services__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-block: 2rem;
  border-radius: 1rem;
}
.services__content .service {
  width: 350px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e6e6e6;
  border-radius: 1rem;
  cursor: pointer;
}
.services__content .service__title {
  width: 100%;
  font-weight: bold;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.5px rgb(255, 255, 255);
  align-self: end;
  font-size: 2rem;
  transition: align-self 1s linear;
  padding-bottom: 0.5rem;
}
.services__content .service__1 {
  width: 60%;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.1098039216)), url("https://lh3.googleusercontent.com/pw/AP1GczOsOhAxfAN24IWxpgQ0K6bV_Av_ZVglpZIyK3w-QU8h95G8x1hk-rH9kt4468OgBJZg_UlczZBVv6OOZbUQempr3YPuLd4QzMkFfM-MCT3FAQs2CUQd6zXY3N8zKloxG-Wr2vC35VbGXKU0OTfgptrnmw=w1200-h450-s-no-gm?authuser=0");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: background-size 1s linear;
  animation: moverDiagonal 20s linear infinite;
}
.services__content .service__1:hover {
  filter: grayscale(0%);
}
@media (max-width: 900px) {
  .services__content .service__1 {
    width: 90%;
  }
}
.services__content .service__2 {
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.1098039216)), url("https://lh3.googleusercontent.com/pw/AP1GczM1Q85xyMBJ4Q07189EzgGOMq_PBE9izFrPvlYpTQxhLu5melPzfZUyY7hz9fZCWzIT6hyEb20hrXra_1X_2njqRXLcw3-a-uqRPeqHRhB-SfHyK5C224dxGMIvFk9Ga5Ex4hq483-qPmYZsgWU3IlsXQ=w500-h500-s-no-gm?authuser=0");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: background-size 1s linear;
  animation: moverDiagonal 20s linear infinite;
}
.services__content .service__2:hover {
  filter: grayscale(0%);
}
.services__content .service__3 {
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.1098039216)), url("https://lh3.googleusercontent.com/pw/AP1GczMj3no6u0zyDtZkiqOm8S1eCtxFUxlQWv0y72evS_BmolE8kUblj9B2A05Nqu2deKPnjuoAEiTnvKAsqFrhBRozr_NqqtqUJcocL4ZNeh4hQMQnuYZMHgenHOBdv4lv9PpxY1kxV0RWlaK93HrmDvYqtg=w500-h500-s-no-gm?authuser=0");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: background-size 1s linear;
  animation: moverDiagonal 20s linear infinite;
}
.services__content .service__3:hover {
  filter: grayscale(0%);
}
.services__content .service__4 {
  width: 60%;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.1098039216)), url("https://lh3.googleusercontent.com/pw/AP1GczM0X25vjGuCgZDw4LgxrVsZ2N5fee8liWr6E0lFeF8Gd8BKgvjaLVZ8sqfgx08Ei5sgYKF7W2YToNExZPodpxRK4rNU5I6N0WXUnFfUC_9dis4jKXJF8dLog5U-eDNPt3etM4Dl8sb8Gx9MBkg_CYcRJA=w1200-h450-s-no-gm?authuser=0");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: background-size 1s linear;
  animation: moverDiagonal 20s linear infinite;
}
.services__content .service__4:hover {
  filter: grayscale(0%);
}
.services__content .service__5 {
  width: 60%;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.1098039216)), url("https://lh3.googleusercontent.com/pw/AP1GczOWw4tiqXniC8dHsgnj_vs1DvbVMY2vaxjq12JF3aD6RgbOiQnjzYrA9mhjmElLs0ddEdkjx1INUHL-eP5fbvJFGKf7HmlQB7mlCiYSKB8xRl3B38Y7lAxdRRPODF0iG_CB5TyaOKBsO-_ES3mU6o3dVQ=w1200-h450-s-no-gm?authuser=0");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: background-size 1s linear;
  animation: moverDiagonal 20s linear infinite;
}
.services__content .service__5:hover {
  filter: grayscale(0%);
}
.services__content .service__6 {
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.1098039216)), url("https://lh3.googleusercontent.com/pw/AP1GczORzva9rboctm6QFPKhv1kTP8_H0xxQ5ZXRQfriyMGzFhSdz9CJe6sPrSQZYxCZytCVCoP6ZD9vDJmw2nCPd6-TujLB5VtbW_Y3MesmMk7vT9I6QTh_TjwP5JrSK_gzSeaoZ5BhrMnVm3wuWGIL2SkwXA=w500-h500-s-no-gm?authuser=0");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%);
  transition: background-size 1s linear;
  animation: moverDiagonal 20s linear infinite;
}
.services__content .service__6:hover {
  filter: grayscale(0%);
}
@media (max-width: 900px) {
  .services__content .service {
    width: 90%;
  }
}

.testimonials {
  width: 100%;
  height: 100%;
  background-color: #160d1c;
  text-align: center;
  padding-bottom: 3rem;
}
.testimonials__title {
  color: #e6e6e6;
  font-size: 3rem;
  position: relative;
  padding-top: 3rem;
  text-transform: capitalize;
}
@media (max-width: 900px) {
  .testimonials__title {
    font-size: 1.5rem;
    padding-inline: 0.1rem;
  }
}
.testimonials__title::before {
  content: "";
  position: absolute;
  display: block;
  width: 5%;
  height: 5px;
  top: 30%;
  background-color: #673d85;
  border-radius: 1dvw;
  left: 50%;
  transform: translateX(-50%);
  animation: grow 3s linear infinite;
}
.testimonials__title::after {
  content: "";
  display: block;
  position: absolute;
  width: 5%;
  height: 5px;
  background-color: #673d85;
  border-radius: 1dvw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
}
.testimonials__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 2rem;
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.testimonials__content .container {
  width: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: solid 0.1rem #673d85;
  padding: 0.5rem;
  border-radius: 1rem;
}
.testimonials__content .container__logo {
  width: 150px;
  background-color: #673d85;
  border-radius: 50%;
  padding: 0.2rem;
  mix-blend-mode: screen;
}
.testimonials__content .container__name {
  color: #e6e6e6;
  font-size: 1.5rem;
  position: relative;
}
.testimonials__content .container__name::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #673d85;
  border-radius: 1dvw;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  animation: grow 2s linear infinite;
}
.testimonials__content .container__description {
  width: 100%;
  color: #e6e6e6;
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  .testimonials__content .container__description {
    font-size: 1.2rem;
  }
}
.testimonials__content .container__description .up, .testimonials__content .container__description .down {
  font-size: 3rem;
  display: inline-block;
}
.testimonials__content .container__description .up {
  transform: rotateX(180deg);
}
.testimonials__content .container__description .down {
  transform: rotate(-180deg);
}

.contact {
  background-color: #311d3f;
}
.contact__title {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  color: #673d85;
  text-align: center;
  font-size: 3rem;
  padding-top: 2rem;
  position: relative;
}
@media (max-width: 900px) {
  .contact__title {
    font-size: 2.5rem;
  }
}
.contact__title::after {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  background-color: #673d85;
  border-radius: 1rem;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 0.5rem;
  animation: grow 2s linear infinite;
}
.contact__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-block: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1rem;
}
@media (max-width: 900px) {
  .contact__content {
    display: block;
  }
}
.contact__content .form {
  width: 100%;
  height: 100%;
}
.contact__content .form input[type=text],
.contact__content .form input[type=tel],
.contact__content .form input[type=email] {
  border-radius: 1rem;
  width: 70%;
  height: 30px;
  padding: 1rem;
  margin: 0.5rem 0;
}
@media (max-width: 900px) {
  .contact__content .form input[type=text],
  .contact__content .form input[type=tel],
  .contact__content .form input[type=email] {
    width: 95%;
  }
}
.contact__content .form input[type=date] {
  margin: 0.5rem 0;
  width: 180px;
  padding: 0.4rem;
  border-radius: 1rem;
}
.contact__content .form textarea {
  max-width: 95%;
}
.contact__content .form label {
  color: #673d85;
  font-weight: 700;
  font-size: 1.2rem;
}
.contact__content .form a button {
  display: block;
  width: 7rem;
  height: 2rem;
  margin-top: 1rem;
  border-radius: 1rem;
  border: none;
  font-weight: 900;
  cursor: pointer;
  position: relative;
}
@media (max-width: 900px) {
  .contact__content .form a button {
    margin: 2rem 0 1.5rem 0;
    width: 50%;
  }
}
.contact__content .form a button::before, .contact__content .form a button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #673d85;
  border-radius: 1rem;
  opacity: 1;
  z-index: -1;
}
.contact__content .form a button:hover::before {
  animation: pulse 2s ease-in infinite;
}
.contact__content .form a button:hover::after {
  animation: pulse 2s 1s ease-in infinite;
}
.contact__content .location {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
}
.contact__content .location__title {
  width: 100%;
  color: #e6e6e6;
  font-size: 2.5rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 900px) {
  .contact__content .location__title {
    font-size: 2rem;
  }
}
.contact__content .location__title i {
  display: block;
  animation: gangle 1s alternate infinite;
}
.contact__content .location iframe {
  border-radius: 1rem;
}
@media (max-width: 900px) {
  .contact__content .location iframe {
    max-width: 100%;
  }
}
.contact__content .location .social {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: end;
}
@media (max-width: 900px) {
  .contact__content .location .social {
    justify-content: center;
    gap: 1rem;
    height: 32px;
    margin-top: 1.2rem;
  }
}
.contact__content .location .social i {
  display: block;
  width: 100%;
  align-items: end;
  font-size: 3rem;
  color: #673d85;
  padding: 0 1.46rem;
  transition: transform 0.3s;
  position: relative;
  border: solid 0.2rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 900px) {
  .contact__content .location .social i {
    font-size: 1.5rem;
    padding: 0 0.5rem;
  }
}
.contact__content .location .social i:hover {
  color: #e6e6e6;
  transform: translateY(-10px);
}
.contact__content .location .social i::after {
  content: "";
  display: none;
  background-color: #fff;
  width: 100%;
  height: 0.2rem;
  margin-top: 0.5rem;
}
.contact__content .location .social i:hover::after {
  color: #e6e6e6;
  transform: translateY(-10px);
  margin-top: 0.5rem;
  display: block;
  animation: fade-in 1s;
}

.footer {
  width: 100%;
  height: 100%;
  background-color: #673d85;
}
.footer__content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: normal;
  gap: 1rem;
  padding-top: 3rem;
}
@media (max-width: 900px) {
  .footer__content {
    flex-direction: column;
    height: auto;
  }
}
.footer__content .abouts {
  width: 280px;
  height: 100%;
}
@media (max-width: 900px) {
  .footer__content .abouts {
    margin: 0 auto;
  }
}
.footer__content .abouts .title {
  margin-bottom: 1rem;
  color: #e6e6e6;
}
.footer__content .abouts p {
  color: #e6e6e6;
}
.footer__content .menus {
  width: 280px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .footer__content .menus {
    margin: 0 auto;
  }
}
.footer__content .menus__title {
  margin-bottom: 1rem;
  color: #e6e6e6;
}
.footer__content .menus__links {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__content .menus__links li a {
  text-transform: capitalize;
  font-size: 1.2rem;
  color: #e6e6e6;
}
.footer__content .menus__links li a:hover {
  color: #160d1c;
  font-weight: 900;
}
.footer__content .contact-us {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 900px) {
  .footer__content .contact-us {
    margin: 0 auto;
  }
}
.footer__content .contact-us__title {
  align-self: baseline;
  color: #e6e6e6;
}
.footer__content .contact-us p {
  color: #e6e6e6;
}
.footer__content .contact-us p i {
  align-self: flex-end;
  margin-right: 0.5rem;
  font-size: 1.5rem;
}
.footer__content .contact-us p:hover {
  color: #160d1c;
  font-weight: 900;
}
.footer .roda-pe {
  text-align: center;
  font-size: 1.3rem;
  padding-bottom: 0.5rem;
  color: #e6e6e6;
}
@media (max-width: 900px) {
  .footer .roda-pe {
    margin-top: 12%;
  }
}

@media (max-width: 900px) {
  .header__nav {
    display: block;
    position: relative;
  }
  .header__nav .menu {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    flex-direction: column;
    width: 2rem;
    margin: 0 auto;
    height: 25px;
  }
  .header__nav .menu .hamburguer {
    background-color: #e6e6e6;
    height: 3px;
    width: 100%;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
  }
  .header__nav input[type=checkbox] {
    display: none;
  }
  .header__nav input[type=checkbox]:checked + label .menu .hamburguer:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  .header__nav input[type=checkbox]:checked + label .menu .hamburguer:nth-child(2) {
    opacity: 0;
  }
  .header__nav input[type=checkbox]:checked + label .menu .hamburguer:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }
  .header__nav .container-list {
    display: none;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: #e6e6e6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    z-index: 2;
  }
  .header__nav .container-list li {
    border-bottom: 0.1px solid #160d1c;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
  }
  .header__nav .container-list li:hover {
    background-color: #e6e6e6;
  }
  .header__nav .container-list li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #160d1c;
    font-size: 1rem;
    text-align: center;
    margin: 1rem 0;
    animation-duration: 0.5s;
  }
  .header__nav input[type=checkbox]:checked ~ .container-list {
    display: block;
  }
}

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