@font-face {
  font-family: Roboto;
  src: url("../fonts/Roboto-Regular.ttf");
}

@font-face {
  font-family: Roboto-bold;
  src: url("../fonts/Roboto-Bold.ttf");
}

@font-face {
  font-family: Gotham-book;
  src: url("../fonts/gotham-book.otf");
}

@font-face {
  font-family: Raleway;
  src: url("../fonts/Raleway-Medium.ttf");
}

/********************************************************************
*   Global css
********************************************************************/
:root {
  --blue: #0f1049;
  --green: #298425;
  --lightgreen: #7fb835;
  --gray: #808080;
  --lightblue: #002cae;
}

* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body,
html {
  width: 100%;
  font-family: Roboto, sans-serif;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  overflow-x: hidden;
}

header {
  animation: all 0.5s;
  animation-duration: 0.5s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1072;
  background-color: #fff;
  width: 100%;
}

header.scrolled {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.container {
  margin-top: 89px;
}

/********************************************************************
*   Navbar
********************************************************************/

.navbar {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}

.navbar .navbar-logo-container {
  margin-right: auto;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-logo {
  display: flex;
  align-items: center;
  padding-right: 80px;
}
.navbar .navbar-logo img {
  width: 110.88px;
  height: 65.45px;
}
.navbar .collapse-navbar-option {
  display: none;
}
.navbar .navbar-toggler {
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: none;
}
.navbar .navbar-toggler i {
  font-size: 1.8rem;
}

.navbar .navbar-options-container {
  display: flex;
}
.navbar-options {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  align-items: center;
}
.navbar-options .nav-item {
  text-align: -webkit-match-parent;
  display: list-item;
}
.navbar-options .nav-item a {
  display: block;
  padding: 14px 16px;
  text-align: center;
  text-decoration: none;
  position: relative;
  font-size: 18px;
  color: #919599;
  cursor: pointer;
}

.navbar-options .nav-item.active a {
  font-family: Roboto-bold;
  color: var(--green);
}
.navbar-options .nav-item.active a::after {
  content: "";
  width: 25px;
  border-bottom: 2px solid var(--green);
  position: absolute;
  bottom: 10px;
  left: 16px;
}

.navbar-options .nav-item a::after {
  content: "";
  width: 0;
  border-bottom: 2px solid var(--green);
  position: absolute;
  bottom: 10px;
  left: 16px;
  transition: 0.5s;
}
.navbar-options .nav-item a:hover {
  color: var(--green);
}
.navbar-options .nav-item:hover a:hover::after {
  width: calc(100% - 32px);
}

.navbar .client-options {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.navbar .client-options .client-item {
  padding: 0 15px;
  background-color: var(--green);
  margin: 0 5px;
  color: #fff;
  text-decoration: none;
  transition-duration: 0.4s;
  height: 40px;
  vertical-align: middle;
  display: flex;
  align-items: center;
}
.navbar .client-options .client-item ~ .client-item {
  background-color: var(--blue);
}
/* .navbar .client-options .client-item:last-child {
    background-color: transparent;
    border: 2px solid var(--green);
    color: var(--green);
} */

.navbar .client-options .client-item:hover {
  background-color: var(--blue);
}
.navbar .client-options .client-item ~ .client-item:hover {
  background-color: var(--green);
}
/* .navbar .client-options .client-item:last-child:hover {
    color: #FFF;
    border: none;
} */

/********************************************************************
*   Section Home
********************************************************************/
.section-home {
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.section-home .carrossel-imgs-container {
  overflow: hidden;
  width: 100%;
  height: 0vh;
  position: relative;
  transition: height 1s;
}

.carrossel-imgs-container .carrossel-imgs {
  list-style: none;
  display: flex;
  height: 100%;
  position: absolute;
  overflow-y: auto;
}

.carrossel-imgs-container .carrossel-imgs .carrossel-img-item {
  width: 100%;
  height: 100%;
  transition: 0.6s;
  transform: translateX(-100%);
}

.carrossel-imgs-container .carrossel-imgs .carrossel-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/********************************************************************
*   Section Plans
********************************************************************/
.section-plans {
  padding: 100px 10%;
  position: relative;
}

.plans-container {
  display: flex;
  margin-top: 20px;
}

.section-plans-subtitle {
  font-size: 1.8rem;
  flex: 1;
  color: var(--gray);
  font-family: Roboto-bold, sans-serif;
  margin-right: 15px;
  -webkit-font-smoothing: antialiased;
}

.section-plans .plans {
  display: flex;
  flex-wrap: wrap;
  flex: 4;
  margin: 0 -7.5px;
}

.section-plans .plans .plan {
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  margin: 7.5px;
  align-self: stretch;
  width: 280px;
}

.section-plans .plans .plan .plan-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  background-color: var(--green);
  color: #fff;
}
.section-plans .plans .plan .plan-title .plan-mega {
  font-size: 48px;
  font-weight: 500;
}

.section-plans .plans .plan .plan-inner {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-plans .plans .plan .plan-inner .plan-info-list {
  list-style: none;
  padding: 20px 20px;
  width: 100%;
}

.plan-info-list .plan-info-item {
  text-align: center;
  border-bottom: 3px dotted rgba(0, 0, 0, 0.125);
  margin-bottom: 10px;
  padding: 7px;
  font-size: 16px;
}

.section-plans .plans .plan .plan-inner .plan-value-container {
  display: flex;
  justify-content: center;
  color: #fff;
  height: 70px;
  margin: 10px 0 40px 0;
}
.section-plans .plans .plan .plan-inner .plan-value-container .plan-currency {
  display: flex;
  align-items: flex-end;
  font-size: 20px;
  vertical-align: bottom;
  color: #696c7b;
}
.section-plans .plans .plan .plan-inner .plan-value {
  display: flex;
  align-items: center;
}

.section-plans .plans .plan .plan-inner .plan-value h1 {
  font-size: 92px;
  line-height: 0;
  color: var(--green);
  -webkit-font-smoothing: antialiased;
}
.section-plans .plans .plan .plan-inner .plan-cents-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.section-plans .plans .plan .plan-inner .plan-cents {
  color: var(--green);
  font-size: 36px;
  line-height: 0.7;
}
.section-plans .plans .plan .plan-inner .for-month {
  color: #696c7b;
  text-transform: uppercase;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
}

.section-plans .section-plans-title {
  color: var(--green);
  font-size: 2rem;
  padding: 0 0 10px 0;
  font-family: Roboto-bold, sans-serif;
  text-align: center;
  text-transform: uppercase;
}

.section-plans .section-plans-title::before {
  content: "\25A0";
  width: 0.3rem;
  height: 0.3rem;
  color: var(--green);
  margin: 0 5px;
}
.section-plans .section-plans-title::after {
  content: "\25A0";
  width: 10px;
  height: 10px;
  color: var(--green);
  margin: 0 5px;
}

.section-plans .section-plans-effect-line {
  background: repeating-linear-gradient(
    to right,
    #5d9634,
    #5d9634 10px,
    #538c2b 10px,
    #538c2b 20px
  );
  height: 20px;
  opacity: 0.8;
}

.section-plans .bg-pattern {
  background-image: url("../img/MT-pattern-2.png");
  position: absolute;
  bottom: 50px;
  width: 210px;
  height: 252px;
  background-position: 100% 100%;
  z-index: -1;
}

/********************************************************************
*   Section About
********************************************************************/
.section-about {
  display: flex;
  flex-direction: column;
}

.section-about .about-container {
  /* color: #fff; */
  padding: 40px 10%;
  display: flex;
  /* background-color: var(--green); */
}
.about-container .about-inner {
  flex: 1;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-inner .about-title {
  font-size: 30px;
  font-family: Roboto-bold;
  margin-bottom: 15px;
  color: var(--gray);
}

.about-inner .about-text {
  line-height: 30px;
  font-size: 1.2rem;
  color: #575757;
  text-align: justify;
  -webkit-font-smoothing: antialiased;
}
.about-container .about-sede-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}
.about-container .about-sede-img img {
  border-radius: 4px;
  width: 100%;
}

/********************************************************************
*   Section Location
********************************************************************/
.section-location {
  position: relative;
}

.section-location .location-container {
  padding: 100px 10% 40px 10%;
  display: flex;
}

.location-container .location-inner {
  color: #fff;
  margin-left: 40px;
  flex: 2;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.location-container iframe {
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  flex: 8;
}
.location-container .location-inner .location-title {
  font-size: 30px;
  font-family: Roboto-bold;
  margin-bottom: 15px;
  text-align: right;
}

.location-container .location-inner .location-text {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
  flex: 1;
}

.section-location .location-square-top {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: skewY(-1.5deg);
  transform-origin: bottom right;
  background-color: var(--blue);
}

.section-location .location-square {
  width: 0;
  height: 0;
  border-top: 45px solid var(--blue);
  border-right: 100% solid transparent;
  z-index: 1;
}

/********************************************************************
*   Section differentials
********************************************************************/
.section-differentials {
  /* margin-bottom: 20px; */
  /* padding: 40px 10%; */
  padding-top: 25vh;
  background-image: url("../img/pexels-elly-fairytale-4008773.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  height: calc(100vh - 89px);
  display: flex;
  flex-direction: column;
  min-height: 850px;
}

.section-differentials::after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--green);
  opacity: 0.6;
  z-index: 1;
}

.section-differentials .differentials-container {
  position: relative;
  z-index: 2;
}

.section-differentials .differentials-title {
  font-size: 40px;
  font-family: Roboto-bold;
  margin-bottom: 15px;
  color: #fff;
  text-align: center;
}

.section-differentials .differentials-list-container {
  background: rgb(37, 91, 132);
  background: linear-gradient(
    0deg,
    rgba(37, 91, 132, 1) 0%,
    rgba(41, 132, 37, 1) 74%
  );
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}
.section-differentials .differentials-list-container .differentials-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  z-index: 2;
  position: relative;
  margin: 0 auto;
  max-width: 1180px;
  width: 100%;
  padding: 0 20px;
}

.section-differentials .square-differentials {
  display: flex;
  position: relative;
  z-index: 2;
}
.section-differentials .square-differentials::after {
  content: " ";
  width: 0;
  height: 0;
  border-left: 50vw solid transparent;
  border-bottom: 60px solid var(--green);
  display: block;
}
.section-differentials .square-differentials::before {
  content: " ";
  width: 0;
  height: 0;
  border-right: 50vw solid transparent;
  border-bottom: 60px solid var(--green);
  display: block;
}

.differentials-list .differentials-item {
  margin: 15px 0;
  color: #000;
  display: flex;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
}

.differentials-list .differentials-item .diff-icon-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100px;
  font-size: 62px;
  color: #fff;
}

.differentials-list .differentials-item .diff-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  flex: 1;
}
.differentials-list .differentials-item .diff-text-title {
  font-size: 22px;
  color: #fff;
}
.differentials-list .differentials-item .diff-text {
  margin-top: 10px;
  font-size: 18px;
  color: #fff;
  font-family: Gotham-book, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.differentials-list .differentials-item:nth-child(even) {
  flex-direction: row-reverse;
}
.differentials-list .differentials-item:nth-child(even) .diff-text-title {
  text-align: right;
}
.differentials-list .differentials-item:nth-child(even) .diff-text {
  text-align: right;
}
.differentials-list .differentials-item:nth-child(even) .diff-icon-container {
  justify-content: flex-start;
}

/********************************************************************
*   Want be client
********************************************************************/
.section-want-be-client {
  background-image: url("../img/vectors.png");
  background-color: var(--lightgreen);
  padding: 75px 0 30px 30px;
  display: flex;
}

.section-want-be-client .modal-want-be-client-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.modal-want-be-client-container .modal-want-be-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 4px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  background-color: #fff;
  padding: 20px 30px;
}

.modal-want-be-client-container
  .modal-want-be-client
  .modal-want-be-client-title {
  color: var(--green);
  font-family: Roboto-bold, sans-serif;
  line-height: 45px;
  font-size: 2rem;
}
.modal-want-be-client-container
  .modal-want-be-client
  .modal-want-be-client-msg {
  color: #575757;
  text-align: center;
  margin: 20px 0;
}

.modal-want-be-client-container .modal-want-be-client .want-be-client-btn {
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--green);
  padding: 10px 20px;
  border-radius: 4px;
  transition-duration: 0.4s;
}

.modal-want-be-client-container
  .modal-want-be-client
  .want-be-client-btn:hover {
  transform: scale(1.1);
}

.section-want-be-client .want-be-client-img-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.section-want-be-client .want-be-client-img-container img {
  width: 50vw;
  max-width: 800px;
  max-height: 600px;
  object-fit: cover;
}

/********************************************************************
*   Footer
********************************************************************/
.footer {
  background-color: var(--blue);
  display: flex;
  padding: 30px 10%;
  justify-content: center;
}

.footer .footer-title {
  color: #fff;
  font-family: Roboto-bold, sans-serif;
  font-size: 20px;
}

.footer .footer-area {
  margin: 0 40px;
}

.footer .footer-contact-list {
  margin-top: 20px;
}
.footer .footer-contact-list .contact-item {
  padding: 6px 0;
}
.footer .footer-contact-list .contact-item strong {
  color: #fff;
  font-family: Roboto-bold, sans-serif;
  display: block;
  letter-spacing: 0.08rem;
}
.footer .footer-contact-list .contact-item span {
  color: rgba(255, 255, 255, 0.7);
}

.footer .footer-social-networks {
  list-style: none;
  display: flex;
}
.footer .footer-social-networks .social-network {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 4px;
  font-size: 20px;
}
.footer .footer-social-networks .social-network:first-child {
  margin-left: 0;
}
.footer .footer-social-networks .social-network a {
  text-decoration: none;
  color: #fff;
}
.footer .footer-social-networks .social-network:hover {
  background-color: #fff;
  border: 1px solid #fff;
}
.footer .footer-social-networks .social-network:hover a {
  color: var(--blue);
}

.footer .footer-client-options {
  list-style: none;
  margin-top: 20px;
}
.footer .footer-client-options .footer-client-option {
  margin: 10px 0;
}
.footer .footer-client-options .footer-client-option a {
  border-radius: 4px;
  border: 1px solid #fff;
  text-decoration: none;
  color: #fff;
  padding: 5px 14px;
  transition-duration: 0.3s;
  display: block;
  text-align: center;
}
.footer .footer-client-options .footer-client-option a:hover {
  color: var(--blue);
  background-color: #fff;
}

.footer .footer-info-logo img {
  width: 100.8px;
  height: 59.5px;
}
.footer .footer-info-text {
  color: #fff;
  margin: 10px 0;
}

/********************************************************************
*   Responsividade
********************************************************************/
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .navbar {
    width: 1180px;
    margin: 0 auto;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 993px) and (max-width: 1200px) {
  body,
  html {
    font-size: 14px;
  }

  .navbar {
    width: 965px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .section-differentials .differentials-list-container .differentials-list {
    padding: 0 40px;
  }

  .modal-want-be-client-container
    .modal-want-be-client
    .modal-want-be-client-title {
    font-size: 2.8rem;
  }

  .section-plans .section-plans-title {
    font-size: 2.3rem;
  }
}

/* Medium devices (tablets, 992px less than 768px ) */
@media (max-width: 992px) {
  body,
  html {
    font-size: 14px;
  }

  .navbar {
    margin-left: 20px;
    margin-right: 20px;
    flex-direction: column;
  }

  .navbar .navbar-logo-container {
    margin-right: 0;
  }

  .navbar .navbar-options-container {
    display: none;
    padding-bottom: 10px;
  }

  .navbar .client-options {
    display: flex;
    justify-content: center;
  }

  .navbar .navbar-toggler {
    display: block;
  }

  .navbar .collapse-navbar-option:checked ~ .navbar-options-container {
    display: block;
  }

  .navbar .navbar-options {
    display: flex;
    flex-direction: column;
  }

  .navbar-options .nav-item a::after {
    width: 0;
    border: none;
  }
  .navbar-options .nav-item.active a {
    font-family: Roboto-bold, sans-serif;
  }
  .navbar-options .nav-item.active a::after {
    width: 0;
    border: none;
  }

  .section-plans {
    padding-left: 40px;
    padding-right: 40px;
  }
  .section-plans .plans-container {
    flex-direction: column;
  }
  .section-plans .plans-container .section-plans-subtitle {
    margin-bottom: 15px;
  }
  .section-plans .section-plans-title {
    font-size: 2.3rem;
  }
  .section-plans .plans {
    justify-content: center;
  }

  .section-differentials {
    height: auto;
  }
  .section-differentials .differentials-list-container .differentials-list {
    padding: 0 30px;
  }

  .section-want-be-client .want-be-client-img-container img {
    width: 40vw;
  }
  .modal-want-be-client-container
    .modal-want-be-client
    .modal-want-be-client-title {
    font-size: 2.4rem;
  }

  .modal-want-be-client-container
    .modal-want-be-client
    .modal-want-be-client-msg {
    font-size: 1.3rem;
  }

  .section-location .location-container {
    padding-right: 30px;
    padding-left: 30px;
  }

  .section-location .location-container .location-inner {
    margin-left: 20px;
  }

  .footer {
    padding-right: 0;
    padding-left: 0;
  }
}

/* Small devices (landscape phones, 768px less than 576px) */
@media (max-width: 768px) {
  body,
  html {
    font-size: 12px;
  }

  .navbar .navbar-toggler i {
    font-size: 2rem;
  }

  .navbar .client-options a {
    font-size: 1.4rem;
  }

  .section-home {
    /* height: 480px; */
    background-size: cover;
    background-position: center;
  }

  .section-plans {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 50px;
  }
  .section-plans .plans-container .plans {
    justify-content: center;
  }

  .section-plans .plans .plan:nth-child(odd) {
    margin-left: 0;
  }

  .section-differentials .differentials-list-container .differentials-list {
    padding: 0 50px;
  }
  .differentials-list-container .differentials-list .differentials-item {
    flex-direction: column;
  }
  .differentials-list .differentials-item .diff-icon-container {
    justify-content: center !important;
  }
  .differentials-list .differentials-item .diff-text-container {
    align-items: center;
  }
  .differentials-list .differentials-item .diff-text,
  .differentials-list .differentials-item .diff-text-title {
    text-align: center !important;
  }

  .section-about .about-container {
    flex-direction: column;
  }
  .section-about .about-container .about-inner {
    padding-right: 0;
    margin-bottom: 15px;
  }
  .section-about .about-container .about-inner .about-text {
    font-size: 1.4rem;
  }

  .section-want-be-client {
    padding-right: 30px;
  }
  .section-want-be-client .want-be-client-img-container {
    display: none;
  }

  .section-want-be-client .modal-want-be-client-container {
    margin: 70px 0;
  }
  .modal-want-be-client-container
    .modal-want-be-client
    .modal-want-be-client-title {
    font-size: 2.8rem;
  }

  .section-location .location-container {
    flex-direction: column-reverse;
  }
  .section-location .location-container .location-inner {
    margin-left: 0;
  }
  .location-container .location-inner .location-title {
    margin-bottom: 0;
    text-align: left;
  }
  .location-container .location-inner .location-text {
    text-align: left;
    margin: 15px 0 25px 0;
  }

  .footer {
    flex-wrap: wrap;
  }
  .footer .footer-area {
    flex: 1;
    min-width: 200px;
  }
}

/*  Extra small devices (portrait phones, less than 576px) */
@media (max-width: 576px) {
  body,
  html {
    font-size: 11px;
  }

  .navbar .navbar-toggler i {
    font-size: 2.4rem;
  }

  .navbar .client-options a {
    font-size: 1.6rem;
  }

  .section-home {
    /* height: 300px; */
  }

  .section-about .about-container .about-inner .about-text {
    font-size: 1.3rem;
  }

  .section-want-be-client .modal-want-be-client-container {
    text-align: center;
  }
  .modal-want-be-client-container .modal-want-be-client .want-be-client-btn {
    font-size: 1.2rem;
  }

  .footer .footer-area {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

@media (max-width: 428px) {
  .navbar .client-options {
    flex-direction: column;
    margin-left: 0;
  }
  .navbar .client-options a {
    margin: 7px auto !important;
  }

  .section-plans .plans .plan {
    margin-left: 0 !important;
  }
}
