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

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

ol, ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

section {
  padding: 6rem 0 0 0;
}

.btn {
  display: flex;
}

.contact .container .sides .r-side form .btn, .cta .side-wrapper .btn, .services .side-wrapper .btn, .media .container .btn, .banner .container .content .text .btn-wrapper .btn {
  cursor: pointer;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  border: none;
  font-weight: 400;
  transition: all ease 0.2s;
  border-radius: 50px;
  display: flex;
  width: -moz-max-content;
  width: max-content;
}
@media only screen and (max-width: 375px) {
  .contact .container .sides .r-side form .btn, .cta .side-wrapper .btn, .services .side-wrapper .btn, .media .container .btn, .banner .container .content .text .btn-wrapper .btn {
    font-size: 0.9rem;
  }
}

header {
  position: fixed;
  background: #fff;
  width: 100%;
  z-index: 999;
  top: 0;
}
header .container {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 1640px) {
  header .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1280px) {
  header .container {
    width: 95vw;
  }
}
header .container #logo img {
  width: 260px;
}
@media only screen and (max-width: 1280px) {
  header .container #logo img {
    width: 220px;
  }
}
header .container .nav-wrapper {
  display: flex;
  align-items: center;
  gap: 8rem;
}
@media only screen and (max-width: 1440px) {
  header .container .nav-wrapper {
    gap: 2rem;
  }
}
header .container .nav-wrapper #menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 9999;
  margin: 0 0 0.6rem 0;
}
@media only screen and (max-width: 992px) {
  header .container .nav-wrapper #menu-toggle {
    display: block;
  }
}
header .container .nav-wrapper #menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #312783;
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .container .nav-wrapper #menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
header .container .nav-wrapper #menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
header .container .nav-wrapper #menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
header .container .nav-wrapper #navbar {
  display: flex;
  align-items: center;
  gap: 3rem;
  color: #212529;
}
@media only screen and (max-width: 1440px) {
  header .container .nav-wrapper #navbar {
    gap: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  header .container .nav-wrapper #navbar {
    position: absolute;
    top: 100%;
    left: 0;
    flex-direction: column;
    background: #fff;
    width: 100%;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    gap: 1rem;
    z-index: 998;
    transition: all 0.3s ease;
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    display: flex;
  }
  header .container .nav-wrapper #navbar.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}
header .container .nav-wrapper #navbar a {
  white-space: nowrap;
  transition: all 0.2s ease;
  font-weight: 600;
  color: #312783;
}
@media only screen and (max-width: 1280px) {
  header .container .nav-wrapper #navbar a {
    font-size: 1rem;
  }
}
header .container .nav-wrapper #navbar a:hover {
  color: #a4c516;
}
header .container .nav-wrapper #social img {
  width: 52px;
}
@media only screen and (max-width: 1280px) {
  header .container .nav-wrapper #social img {
    width: 42px;
  }
}

footer {
  background: #312783;
  padding: 2rem 0;
}
@media only screen and (max-width: 375px) {
  footer {
    padding: 0 0 2rem 0;
  }
}
footer .container {
  width: 40vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1440px) {
  footer .container {
    width: 70vw;
  }
}
@media only screen and (max-width: 1280px) {
  footer .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 375px) {
  footer .container {
    flex-direction: column;
  }
}
footer .container #jazzz {
  display: flex;
  justify-content: right;
  align-items: center;
  width: 100%;
  gap: 1rem;
  color: #fff;
  font-weight: 300;
}
@media only screen and (max-width: 375px) {
  footer .container #jazzz {
    justify-content: center;
  }
}
footer .container #prop {
  position: absolute;
  bottom: -2rem;
  left: 0;
}
@media only screen and (max-width: 375px) {
  footer .container #prop {
    position: relative;
    bottom: 2rem;
  }
}

.banner {
  background: url(../assets/images/banner.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: 60%;
  height: 960px;
  display: flex;
  align-items: center;
  position: relative;
}
@media only screen and (max-width: 1640px) {
  .banner {
    height: 800px;
  }
}
@media only screen and (max-width: 1280px) {
  .banner {
    height: 640px;
  }
}
@media only screen and (max-width: 992px) {
  .banner {
    background-size: cover;
  }
}
@media only screen and (max-width: 576px) {
  .banner {
    height: 100vh;
  }
}
.banner .container {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .banner .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1280px) {
  .banner .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 576px) {
  .banner .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.banner .container .content {
  background: #fff;
  width: 42%;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0px 0px 40px 5px rgba(51, 51, 51, 0.2509803922);
}
@media only screen and (max-width: 1440px) {
  .banner .container .content {
    margin: 1.5rem 0 0 0;
  }
}
@media only screen and (max-width: 1280px) {
  .banner .container .content {
    margin: 2.3rem 0 0 0;
    width: 70%;
  }
}
@media only screen and (max-width: 992px) {
  .banner .container .content {
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .banner .container .content {
    width: 95%;
    margin: auto;
    text-align: center;
    padding: 2rem;
  }
}
.banner .container .content #sub-title {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 576px) {
  .banner .container .content #sub-title {
    flex-direction: column-reverse;
    text-align: center;
    gap: 1rem;
  }
}
.banner .container .content #sub-title .divisor {
  width: 200px;
  height: 3px;
  width: 80px;
  height: 1px;
  background: #a4c516;
  margin: 0 1rem 0 0;
}
@media only screen and (max-width: 375px) {
  .banner .container .content #sub-title .divisor {
    width: 100px;
    height: 2px;
  }
}
@media only screen and (max-width: 375px) {
  .banner .container .content #sub-title .divisor {
    margin: 1rem 0;
  }
}
.banner .container .content #sub-title p {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-size: 1rem;
  color: #312783;
}
.banner .container .content .text h1 {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  font-size: 2rem;
  color: #312783;
  line-height: 1.2;
  margin: 2rem 0 1.5rem 0;
}
@media only screen and (max-width: 375px) {
  .banner .container .content .text h1 {
    margin: 0;
    font-size: 1.8rem;
  }
}
.banner .container .content .text p {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-size: 1rem;
  color: #312783;
}
@media only screen and (max-width: 375px) {
  .banner .container .content .text p {
    margin: 1rem 0 0 0;
  }
}
.banner .container .content .text .btn-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
}
.banner .container .content .text .btn-wrapper .btn {
  margin: 3rem 0 0 0;
  background-color: #312783;
  color: #fff;
}
.banner .container .content .text .btn-wrapper .btn:hover {
  background-color: #4033aa;
}
.banner #banner-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.products {
  padding: 0;
}
.products .container .items {
  display: flex;
}
@media only screen and (max-width: 576px) {
  .products .container .items {
    flex-wrap: wrap;
  }
}
.products .container .items .item {
  width: 25%;
  height: 500px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1640px) {
  .products .container .items .item {
    height: 340px;
  }
}
@media only screen and (max-width: 1440px) {
  .products .container .items .item {
    height: 280px;
  }
}
@media only screen and (max-width: 1280px) {
  .products .container .items .item {
    height: 250px;
  }
}
@media only screen and (max-width: 992px) {
  .products .container .items .item {
    height: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .products .container .items .item {
    width: 50%;
  }
}
@media only screen and (max-width: 375px) {
  .products .container .items .item {
    height: 150px;
  }
}
.products .container .items .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all ease 1s;
}
.products .container .items .item::after {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(164, 197, 22, 0.4);
  position: absolute;
  top: 0;
  right: 0;
  transition: all ease 0.2s;
}
.products .container .items .item:hover::after {
  background: rgba(164, 197, 22, 0);
}
.products .container .items .item:hover img {
  transform: scale(1.05);
}

.media .container {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .media .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1280px) {
  .media .container {
    width: 95vw;
  }
}
.media .container .header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.media .container .header h2 {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #312783;
  font-size: 3rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
}
@media only screen and (max-width: 1280px) {
  .media .container .header h2 {
    font-size: 2.5rem;
  }
}
@media only screen and (max-width: 576px) {
  .media .container .header h2 {
    font-size: 2.25rem;
  }
}
@media only screen and (max-width: 375px) {
  .media .container .header h2 {
    font-size: 1.8rem;
  }
}
.media .container .header h2 span {
  font-weight: 600;
}
.media .container .header .divisor {
  width: 200px;
  height: 3px;
  background: #a4c516;
  margin: 2rem 0 0 0;
}
@media only screen and (max-width: 375px) {
  .media .container .header .divisor {
    width: 100px;
    height: 2px;
  }
}
.media .container .header img {
  margin: 3rem 0 0 0;
}
@media only screen and (max-width: 768px) {
  .media .container .header img {
    width: 100%;
  }
}
.media .container .btn {
  background-color: #312783;
  color: #fff;
  margin: 4rem auto 0 auto;
  justify-content: center;
}
.media .container .btn:hover {
  background-color: #4033aa;
}

.clientes {
  padding: 8rem 0;
}
@media only screen and (max-width: 375px) {
  .clientes {
    padding: 6rem 0;
  }
}
.clientes .container {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media only screen and (max-width: 1640px) {
  .clientes .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1280px) {
  .clientes .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 1280px) {
  .clientes .container {
    flex-direction: column;
    gap: 0;
  }
}
.clientes .container .header {
  display: flex;
  align-items: baseline;
  width: 20%;
  gap: 1rem;
}
@media only screen and (max-width: 1280px) {
  .clientes .container .header {
    width: 50%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .clientes .container .header {
    width: 80%;
  }
}
@media only screen and (max-width: 375px) {
  .clientes .container .header {
    width: 100%;
  }
}
.clientes .container .header h2 {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #312783;
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.2;
  text-align: right;
}
@media only screen and (max-width: 1440px) {
  .clientes .container .header h2 {
    font-size: 1rem;
  }
}
@media only screen and (max-width: 1280px) {
  .clientes .container .header h2 {
    font-size: 1.4rem;
    text-align: center;
  }
}
@media only screen and (max-width: 576px) {
  .clientes .container .header h2 {
    font-size: 1.2rem;
  }
}
.clientes .container .header .divisor {
  width: 200px;
  height: 3px;
  background: #a4c516;
  position: relative;
  top: -5px;
}
@media only screen and (max-width: 375px) {
  .clientes .container .header .divisor {
    width: 100px;
    height: 2px;
  }
}
.clientes .container .items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 80%;
}
@media only screen and (max-width: 1280px) {
  .clientes .container .items {
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .clientes .container .items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }
}
@media only screen and (max-width: 576px) {
  .clientes .container .items {
    margin: 2rem 0 0 0;
  }
}

.services {
  background: #b7cad8;
  display: flex;
  align-items: center;
  padding: 0;
}
@media only screen and (max-width: 992px) {
  .services {
    flex-direction: column-reverse;
  }
}
.services #service-img {
  width: 50%;
  height: 920px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 1440px) {
  .services #service-img {
    height: 820px;
  }
}
@media only screen and (max-width: 992px) {
  .services #service-img {
    width: 100%;
    height: 600px;
  }
}
@media only screen and (max-width: 768px) {
  .services #service-img {
    height: 500px;
  }
}
.services .side-wrapper {
  width: 50%;
  padding: 0 8rem;
}
@media only screen and (max-width: 1440px) {
  .services .side-wrapper {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .services .side-wrapper {
    padding: 4rem 2rem;
    width: 100%;
  }
}
@media only screen and (max-width: 375px) {
  .services .side-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.services .side-wrapper .title {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #312783;
  width: 700px;
}
@media only screen and (max-width: 1640px) {
  .services .side-wrapper .title {
    width: auto;
  }
}
@media only screen and (max-width: 1440px) {
  .services .side-wrapper .title {
    font-size: 2.25rem;
  }
}
.services .side-wrapper #divisor {
  width: 200px;
  height: 3px;
  background: #312783;
  margin: 2rem 0;
}
@media only screen and (max-width: 375px) {
  .services .side-wrapper #divisor {
    width: 100px;
    height: 2px;
  }
}
.services .side-wrapper .items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.services .side-wrapper .items .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.services .side-wrapper .items .item p {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #312783;
  font-weight: 600;
  font-style: italic;
}
@media only screen and (max-width: 1440px) {
  .services .side-wrapper .items .item p {
    font-size: 1.1rem;
  }
}
.services .side-wrapper .btn {
  background-color: #312783;
  color: #fff;
  margin: 3rem 0;
}
.services .side-wrapper .btn:hover {
  background-color: #4033aa;
}

.cta {
  display: flex;
  padding: 0;
}
.cta .side-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(to right, #312783 40%, #a4c516);
  width: 50%;
  padding: 0 23rem;
}
@media only screen and (max-width: 1640px) {
  .cta .side-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (max-width: 1280px) {
  .cta .side-wrapper {
    padding: 0 3rem;
  }
}
@media only screen and (max-width: 992px) {
  .cta .side-wrapper {
    width: 100%;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (max-width: 375px) {
  .cta .side-wrapper {
    padding: 0;
  }
}
.cta .side-wrapper #divisor {
  width: 200px;
  height: 3px;
  background: #fff;
  margin: 2rem 0;
  width: 80px;
}
@media only screen and (max-width: 375px) {
  .cta .side-wrapper #divisor {
    width: 100px;
    height: 2px;
  }
}
.cta .side-wrapper h2 {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 400;
  font-size: 2.25rem;
}
@media only screen and (max-width: 1440px) {
  .cta .side-wrapper h2 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 375px) {
  .cta .side-wrapper h2 {
    font-size: 1.6rem;
  }
}
.cta .side-wrapper .btn {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  margin: 2rem 0;
}
.cta .side-wrapper #social {
  display: flex;
  gap: 1.5rem;
  margin: 2rem 0 0 0;
}
.cta .side-wrapper #social img {
  width: 28px;
  filter: brightness(500);
  transition: all ease 0.2s;
}
.cta .side-wrapper #social img:hover {
  filter: brightness(1);
}
.cta #cta-img {
  width: 50%;
}
@media only screen and (max-width: 1440px) {
  .cta #cta-img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media only screen and (max-width: 992px) {
  .cta #cta-img {
    display: none;
  }
}

.testimonials {
  background: #fff;
  padding: 8rem 0;
}
@media only screen and (max-width: 375px) {
  .testimonials {
    padding: 6rem 0;
  }
}
.testimonials .container {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  align-items: baseline;
  gap: 6rem;
}
@media only screen and (max-width: 1640px) {
  .testimonials .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1280px) {
  .testimonials .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 1640px) {
  .testimonials .container {
    gap: 2rem;
  }
}
@media only screen and (max-width: 1280px) {
  .testimonials .container {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 1280px) {
  .testimonials .container .text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }
}
.testimonials .container .text-wrapper .title {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  text-transform: none;
  color: #312783;
  font-size: 2.5rem;
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper .title {
    font-size: 2.25rem;
  }
}
.testimonials .container .text-wrapper .divisor {
  width: 200px;
  height: 3px;
  background: #a4c516;
  width: 6rem;
  margin: 1.5rem 0;
}
@media only screen and (max-width: 375px) {
  .testimonials .container .text-wrapper .divisor {
    width: 100px;
    height: 2px;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper .divisor {
    margin: 1rem 0;
  }
}
.testimonials .container .text-wrapper .text {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #312783;
  text-transform: uppercase;
}
@media only screen and (max-width: 576px) {
  .testimonials .container .text-wrapper .text {
    font-size: 1.1rem;
  }
}
.testimonials .carrossel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials .carrossel .carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.testimonials .carrossel .carousel-container .carousel {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonials .carrossel .carousel-container .carousel-item {
  flex: 0 0 50%; /* 2 slides */
  padding: 2rem;
  font-size: 1.5rem;
  border-radius: 4px;
}
@media only screen and (max-width: 1440px) {
  .testimonials .carrossel .carousel-container .carousel-item {
    padding: 1rem;
  }
}
@media only screen and (max-width: 576px) {
  .testimonials .carrossel .carousel-container .carousel-item {
    flex: 0 0 100%; /* 1 slide */
  }
}
@media only screen and (max-width: 375px) {
  .testimonials .carrossel .carousel-container .carousel-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}
.testimonials .carrossel .carousel-container .carousel-item .title {
  font-size: 1.3rem;
  color: #212529;
}
.testimonials .carrossel .carousel-container .carousel-item .company {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #212529;
  margin: 0.2rem 0 0 0;
}
@media only screen and (max-width: 375px) {
  .testimonials .carrossel .carousel-container .carousel-item .company {
    flex-direction: column;
    gap: 0;
    margin: 1rem 0 0 0;
  }
}
.testimonials .carrossel .carousel-container .carousel-item .company span {
  font-size: 0.9rem;
}
.testimonials .carrossel .carousel-container .carousel-item .company img {
  width: 80px;
}
.testimonials .carrossel .carousel-container .carousel-item .text {
  margin: 1rem 0 0 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #212529;
}
.testimonials .carrossel .carousel-container .carousel-item .profile {
  margin: 1.5rem 0 0 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #212529;
}
@media only screen and (max-width: 375px) {
  .testimonials .carrossel .carousel-container .carousel-item .profile {
    flex-direction: column;
  }
}
.testimonials .carrossel .carousel-container .carousel-item .profile img {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .carrossel .carousel-container .carousel-item .profile .text-wrapper p {
  font-size: 1rem;
  font-weight: 700;
  line-height: 0.5;
  margin: 0.6rem 0 0 0;
}
.testimonials .carrossel .carousel-container .carousel-item .profile .text-wrapper span {
  font-size: 0.9rem;
}
.testimonials .carrossel .carousel-container .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  color: #212529;
  padding: 0.8rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1;
  background: transparent;
}
.testimonials .carrossel .controls {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.testimonials .carrossel .controls button {
  border: none;
  cursor: pointer;
}
.testimonials .carrossel .controls button img {
  width: 32px;
}
.testimonials .carrossel .controls .prev, .testimonials .carrossel .controls .next {
  background: transparent;
}
.testimonials .carrossel .controls .prev {
  transform: rotate(180deg);
}
.testimonials .carrossel .controls .next {
  margin: 0.4rem 0 0 0;
}

.call {
  background: #312783;
  padding: 0;
  position: relative;
}
.call .container {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
  display: flex;
  justify-content: right;
}
@media only screen and (max-width: 1640px) {
  .call .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1280px) {
  .call .container {
    width: 95vw;
  }
}
@media only screen and (max-width: 1640px) {
  .call .container {
    margin: 0 0 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .call .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
  }
}
.call .container .content {
  background: #312783;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 22%;
}
@media only screen and (max-width: 768px) {
  .call .container .content {
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem 0;
  }
}
.call .container .content h2 {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #fff;
}
@media only screen and (max-width: 1640px) {
  .call .container .content h2 {
    z-index: 9;
    width: 410px;
  }
}
@media only screen and (max-width: 1440px) {
  .call .container .content h2 {
    font-size: 2rem;
    width: 310px;
  }
}
@media only screen and (max-width: 992px) {
  .call .container .content h2 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .call .container .content h2 {
    filter: drop-shadow(0px 0px 1px #312783);
  }
}
.call .container .content .divisor {
  width: 200px;
  height: 3px;
  background: #a4c516;
  margin: 2rem 0;
  width: 60px;
}
@media only screen and (max-width: 375px) {
  .call .container .content .divisor {
    width: 100px;
    height: 2px;
  }
}
@media only screen and (max-width: 992px) {
  .call .container .content .divisor {
    margin: 1.5rem 0;
  }
}
.call .container .content a {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 600;
  font-size: 2.25rem;
  white-space: nowrap;
  z-index: 9;
}
@media only screen and (max-width: 1440px) {
  .call .container .content a {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 992px) {
  .call .container .content a {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .call .container .content a {
    filter: drop-shadow(0px 0px 1px #312783);
  }
}
.call .container img {
  width: 78%;
}
@media only screen and (max-width: 768px) {
  .call .container img {
    width: 100%;
    position: absolute;
    filter: brightness(0.5);
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.contact {
  background: url("../assets/images/contact-bg.png"), #221b5c;
  background-repeat: no-repeat;
  background-position: right center;
  padding: 6rem 0 10rem 0;
}
@media only screen and (max-width: 768px) {
  .contact {
    padding: 6rem 0 16rem 0;
  }
}
@media only screen and (max-width: 375px) {
  .contact {
    padding: 6rem 0;
  }
}
.contact .container {
  width: 70vw;
  margin: 0 auto;
  transition: 0.2s;
}
@media only screen and (max-width: 1640px) {
  .contact .container {
    width: 90vw;
  }
}
@media only screen and (max-width: 1280px) {
  .contact .container {
    width: 95vw;
  }
}
.contact .container .sides {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .contact .container .sides {
    flex-direction: column-reverse;
    gap: 4rem;
  }
}
.contact .container .sides .l-side {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 768px) {
  .contact .container .sides .l-side {
    width: 90%;
  }
}
@media only screen and (max-width: 375px) {
  .contact .container .sides .l-side {
    width: 95%;
    text-align: center;
  }
}
.contact .container .sides .l-side #email p, .contact .container .sides .l-side #endereco p, .contact .container .sides .l-side #social p {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  font-weight: 600;
  font-size: 1.25rem;
}
.contact .container .sides .l-side #email a, .contact .container .sides .l-side #endereco a, .contact .container .sides .l-side #social a {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 1.2rem;
  line-height: 1.5;
  font-style: italic;
  font-weight: 500;
  color: #fff;
}
.contact .container .sides .l-side #email a {
  color: #a4c516;
}
.contact .container .sides .l-side #social div {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0 0 0;
}
.contact .container .sides .l-side #social div img {
  width: 28px;
}
.contact .container .sides .r-side {
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .contact .container .sides .r-side {
    width: 90%;
  }
}
@media only screen and (max-width: 375px) {
  .contact .container .sides .r-side {
    width: 95%;
  }
}
.contact .container .sides .r-side #subtitle {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 375px) {
  .contact .container .sides .r-side #subtitle {
    flex-direction: column-reverse;
    gap: 1rem;
  }
}
.contact .container .sides .r-side #subtitle .divisor {
  width: 200px;
  height: 3px;
  background: #a4c516;
  width: 60px;
  height: 2px;
  margin: 0 1rem 0 0;
}
@media only screen and (max-width: 375px) {
  .contact .container .sides .r-side #subtitle .divisor {
    width: 100px;
    height: 2px;
  }
}
@media only screen and (max-width: 375px) {
  .contact .container .sides .r-side #subtitle .divisor {
    margin: 0;
  }
}
.contact .container .sides .r-side #subtitle h2 {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 4px;
}
.contact .container .sides .r-side .title {
  font-family: "Poppins", sans-serif;
  color: #212529;
  font-size: 2.5rem;
  color: #fff;
  font-size: 2.25rem;
  margin: 1rem 0 1.5rem 0;
}
@media only screen and (max-width: 375px) {
  .contact .container .sides .r-side .title {
    text-align: center;
  }
}
.contact .container .sides .r-side form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact .container .sides .r-side form input {
  width: 100%;
  border: none;
  padding: 1rem;
  border-radius: 5px;
  font-size: 1rem;
}
.contact .container .sides .r-side form .btn {
  background-color: #312783;
  color: #fff;
  width: 100%;
  justify-content: center;
  border-radius: 5px;
  background: #4739be;
}
.contact .container .sides .r-side form .btn:hover {
  background-color: #4033aa;
}/*# sourceMappingURL=main.css.map */