@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #1e307e;
  --second-color: #071138;
  --third-color: #000000;
  --fourth-color: #f3f5fa;
  --fifth-color: #6cd2fa;
  --sixth-color: #ffffff;
  --seventh-color: #092b4c;
  --whats-color: #00804b;
  --danger-color: #ff0000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 100%
  );
}

header {
  position: fixed;
  display: flex;
  width: 100%;
  height: 100px;
  z-index: 1000;
  padding: 0 8%;
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 100%
  );
  justify-content: center;
}

a {
  color: var(--fourth-color);
}

.logo img {
  width: 60px;
  height: 60px;
}

.playtore-icon {
  width: 150px;
  height: 39.5px;
  background-color: white;
  border-radius: 5px;
}
.appstore-icon {
  width: 150px;
  height: 50x;
  background-color: white;
  border-radius: 5px;
}

.navbar {
  display: flex;
  width: 100%;
  height: 100px;
  align-items: center;
  justify-content: space-between;
}

.navbar ul {
  display: flex;
  justify-content: space-between;
}

.navbar li {
  /* padding: 40px; */
  margin-right: 50px;
}

.navbar a {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--fourth-color);
}

.navbar li a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--fourth-color);
  margin: auto;
  transition: width 0.3s;
  margin-top: 3px;
}

.navbar li a:hover::after {
  width: 100%;
}

#menu-icon {
  font-size: 30px;
  color: var(--fourth-color);
  z-index: 10001;
  cursor: pointer;
  display: none;
}

.a-client-btn {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  border: 2px solid var(--fourth-color);
  padding: 10px 20px;
  border-radius: 50px;
  background-color: transparent;
  color: var(--fourth-color);
  transition: 0.4s;
}

.a-client-btn:hover {
  background-color: var(--fourth-color);
  color: var(--second-color);
}

section {
  width: 100%;
  height: 85vh;
  padding: 0 12%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.right {
  width: 100%;
  height: 100vh;
  background-image: url(../assets/img/tela.png);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  align-items: center;
  justify-content: space-between;
  background-repeat: no-repeat;
  background-size: 80%;
  background-position: center;
}

.left h4 {
  color: var(--fourth-color);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  margin-bottom: 15px;
}

.left h1 {
  color: var(--fourth-color);
  font-size: 38px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.left p {
  color: var(--fourth-color);
  font-size: 18px;
  font-weight: 400;
  text-transform: none;
  max-width: 520px;
  line-height: 28px;
  margin-bottom: 30px;
}

.btn {
  color: var(--second-color);
  background-color: var(--fourth-color);
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--fourth-color);
  border-radius: 50px;
  padding: 10px 20px;
  user-select: none;
  transition: 0.4s;
}

.btn:hover {
  user-select: none;
  color: var(--fourth-color);
  background-color: var(--second-color);
}

.socials {
  position: absolute;
  top: 23%;
  padding: 0 5%;
  right: 10px;
  justify-content: center;
}

.socials i {
  display: block;
  margin: 28px 0;
  font-size: 25px;

  transition: 0.4s;
  padding: 8px;
  color: var(--second-color);
  background: var(--fourth-color);
  border-radius: 50%;
}

.socials i:hover {
  background: transparent;
  color: var(--sixth-color);
  border: 1px solid var(--fourth-color);
}

.socials .icon-play {
  width: 43px;
  height: 42px;
  display: block;
  margin: 28px 0;

  transition: 0.4s;
  padding: 10px;
  color: var(--second-color);
  background: var(--fourth-color);
  border-radius: 50%;
}

/* SECTION OPERATORS */
.operators {
  width: 100%;
  height: 100px;
  min-height: 100px;
  background: var(--second-color);
}

.conatiner-operators {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100px;
}

.conatiner-operators img {
  width: 100%;
  max-width: 500px;
  max-height: 80px;
}

/* SECTION BENEFITS */

.benefits {
  background: var(--fourth-color);
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 50%);
}

.container-benefits {
  width: 100%;
  margin-top: 10%;
  padding-bottom: 5%;
  /* height: calc(100vh - 5%); */
}

.container-benefits h2 {
  text-transform: uppercase;
  margin-top: 1%;
  font-size: 28px;
  color: var(--second-color);
}

.container-benefits h4 {
  text-transform: uppercase;
  margin-top: 35px;
  font-size: 28px;
  color: var(--second-color);
}

.container-benefits h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: var(--primary-color);
}

.benefits-details {
  min-width: 300px;
  max-width: 300px;
  min-height: 300px;
  max-height: 350px;
  padding: 40px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  background: var(--sixth-color);
  box-shadow: 0px 5px 90px 0px rgb(110 123 131 / 5%);
  margin: 2%;
}

.benefits-details:hover {
  transition: all 0.3s;
  transform: scale(1.03);
}

.benefits-details img {
  width: 100%;
  max-width: 300px;
  padding-top: 20px;
}

.container-benefits-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 30px;
  color: var(--fourth-color);
}

.benefits-details h4 {
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  color: var(--second-color);
}

.benefits-details-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}

.benefits-details i {
  font-size: 60px;
  color: var(--primary-color);
}

.benefits-details i:hover {
  transition: all 0.3s;
  transform: rotate(10deg);
  width: 70px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--second-color);
  color: var(--sixth-color);
}

.benefits-details p {
  padding: 5px 5px;
  margin-bottom: 10%;
  text-align: center;
  line-height: 30px;
  font-weight: normal;
  color: var(--second-color);
}

.plans {
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.container-plans {
  width: 100%;
  margin-top: 10%;
  padding-bottom: 5%;
}

.container-plans h2 {
  text-transform: uppercase;
  margin-top: 1%;
  font-size: 28px;
  color: var(--sixth-color);
}

.container-plans h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 10px;
  background: var(--sixth-color);
}

.container-plans h4,
h5 {
  text-transform: uppercase;
  padding-bottom: 20px;
  font-size: 35px;
  color: var(--second-color);
}

.container-plans span {
  padding-bottom: 20px;
  padding-left: 5px;
  text-transform: lowercase;
  font-size: 20px;
  font-weight: 300;
  color: var(--second-color);
}

.plans-details {
  min-width: 300px;
  max-width: 300px;
  height: 100%;
  min-height: 500px;
  padding: 48px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
  background: var(--sixth-color);
  box-shadow: 0px 5px 90px 0px rgb(110 123 131 / 5%);
  margin: 2%;
}

.plans-details .button-cta {
  padding: 10px 60px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: var(--second-color);
  color: var(--sixth-color);
  border-radius: 5px;
  margin-top: 15%;
  transition: all 0.3s;
}

.plans-details .button-cta:hover {
  padding: 10px 60px;
  font-size: 18px;
  text-transform: uppercase;
  background-color: transparent;
  color: var(--second-color);
  border-radius: 5px;
  border: 1px solid var(--second-color);
  transition: all 0.3s;
}

.plans-details:nth-child(2) {
  border-top: 10px solid var(--second-color);
  min-width: 300px;
  max-width: 300px;
  height: 100%;
  min-height: 500px;
  padding: 40px 20px 50px 20px;
  display: flex;
  flex-direction: column;
  background: var(--fifth-color);
  box-shadow: 0px 5px 90px 0px rgb(110 123 131 / 5%);
  margin: 2%;
  transform: scale(1.05);
}

.plans-details:nth-child(2):hover {
  transition: all 0.3s;
  transform: scale(1.1);
}

.plans-details:nth-child(2) .benefits-details-icon i {
  font-size: 60px;
  color: var(--primary-color);
}

.plans-details:nth-child(2) .benefits-details-icon i:hover {
  transition: all 0.3s;
  transform: rotate(10deg);
  width: 70px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--second-color);
  color: var(--sixth-color);
}

.plans-details:hover {
  transition: all 0.3s;
  transform: scale(1.03);
}

.plans-details ul li {
  display: flex;
  flex-direction: row;

  align-items: center;
  color: var(--second-color);
}

.plans-details ul li > i {
  font-size: 35px;
  color: var(--whats-color);
}

.plans-details ul .minus i {
  font-size: 35px;
  color: var(--danger-color);
}

.plans-details img {
  width: 100%;
  max-width: 300px;
  padding-top: 20px;
}

.container-plans-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 30px;
  color: var(--fourth-color);
}

.plans-details h4 {
  text-align: center;
  font-size: 19px;
  font-weight: 600;
  color: var(--second-color);
}

.plans-details-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
}

.plans-details-icon i {
  font-size: 60px;
  color: var(--primary-color);
}

.plans-details-icon i:hover {
  transition: all 0.3s;
  transform: rotate(10deg);
  width: 70px;
  height: 80px;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--second-color);
  color: var(--sixth-color);
}

.plans-details p {
  padding: 5px 5px;
  margin-bottom: 10%;
  text-align: center;
  line-height: 30px;
  font-weight: normal;
  color: var(--second-color);
}

footer {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(9, 9, 121, 1) 100%
  );
  color: var(--fourth-color);
  height: 100%;
  min-height: 200px;
}

.contato {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 330px;
  padding-top: 30px;
  padding-bottom: 30px;
  background: var(--fourth-color);
}

.container-contato {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.container-contato h2 {
  text-transform: uppercase;
  font-size: 28px;
  color: var(--second-color);
}

.container-contato h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 20px;
  background: var(--second-color);
}

.contato-info {
  display: flex;
  justify-content: space-around;
  padding-top: 50px;
}

.contato-info i {
  display: flex;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--sixth-color);
  transition: all 0.3s;
}

.contato-details {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 300px;
  padding: 10px;
}

.contato-details-icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 60px;
  height: 60px;
}

.contato-details h5,
p,
i {
  color: var(--primary-color);
}

.contato-details h5 {
  font-size: 22px;
  padding-bottom: 10px;
}

.contato-details p {
  font-size: 16px;
  padding-bottom: 5px;
  line-height: 24px;
}

.content-4 {
  padding: 1% 10%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.content-4 .copyright {
  padding-top: 5px;
  display: flex;
  justify-content: center;
  align-self: center;
  text-align: center;
  font-size: 16px;
}

.copyright p {
  color: var(--fourth-color);
}

.content-4 .footer-socials {
  display: flex;
  justify-content: space-between;
  align-self: center;
  margin: 10px 8px;
  font-size: 25px;
  transition: 0.4s;
  /* background-color: red; */
}

.content-4 .footer-socials i {
  padding: 8px;
  margin-left: 20px;
  color: var(--second-color);
  background: var(--fourth-color);
  border-radius: 50%;
}

.content-4 .footer-socials i:hover {
  background: transparent;
  color: var(--sixth-color);
  border: 1px solid var(--fourth-color);
}

.content-4 .footer-socials .icon-play {
  width: 43px;
  height: 42px;
  display: block;
  margin-left: 25px;
  transition: 0.4s;
  padding: 10px;
  color: var(--second-color);
  background: var(--fourth-color);
  border-radius: 50%;
}

@media (max-width: 1080px) {
  .playtore-icon {
    display: none;
  }
  .appstore-icon {
    display: none;
  }
}

@media (max-width: 950px) {
  header {
    transition: 0.3s;
  }

  #menu-icon {
    display: block;
  }

  .navbar.active ul {
    top: 100%;
  }

  .navbar ul {
    display: flex;
    position: absolute;
    flex-direction: column;
    top: -600px;
    left: 0;
    right: 0;
    background: rgb(2, 0, 36);
    background: linear-gradient(
      90deg,
      rgba(2, 0, 36, 1) 0%,
      rgba(9, 9, 121, 1) 100%
    );
    transition: all 0.5s;
  }

  .navbar ul li a {
    display: block;
    padding: 30px;
    margin: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--fourth-color);
    border-left: 2px solid var(--fourth-color);
  }

  .a-client-btn {
    font-size: 16px;
    font-weight: 500;
  }
}

@media (max-width: 860px) {
  .main-text h4 {
    font-size: 18px;
    transition: 0.3s;
  }

  .main-text h1 {
    font-size: 28px;
    transition: 0.3s;
  }

  .a-client-btn {
    font-size: 16px;
    font-weight: 500;
  }

  .benefits-details {
    width: 100%;
    min-width: 650px;
  }

  .container-benefits h2 {
    margin-top: 12%;
  }

  .container-contato h2 {
    margin-top: 2%;
  }

  .contato-details p {
    font-size: 16px;
  }
}

@media (max-width: 750px) {
  header {
    transition: 0.3s;
  }

  .right {
    background-image: none;
    transition: 0.3s;
  }

  .a-client-btn {
    font-size: 16px;
    font-weight: 500;
  }

  .left h1 {
    color: var(--fourth-color);
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 12px;
  }

  .contato-info {
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
  }

  .content-4 .footer-socials {
    flex: 1;
  }

  .content-4 .footer-socials i {
    margin-right: 10px;
  }

  .content-4 .copyright {
    padding-top: 5px;
    display: flex;
    justify-content: center;
    align-self: center;
    text-align: center;
    letter-spacing: 1px;
    line-height: 28px;
    font-size: 16px;
    color: var(--fourth-color);
  }

  .benefits-details {
    width: 100%;
    min-width: 450px;
  }

  .container-benefits h2 {
    margin-top: 15%;
  }

  .container-contato h2 {
    margin-top: 20%;
  }
}

@media (max-width: 650px) {
  .container-benefits h2 {
    margin-top: 18%;
  }

  .container-contato h2 {
    margin-top: 25%;
  }

  .contato-details p {
    font-size: 16px;
  }
}

@media (max-width: 520px) {
  header {
    transition: 0.3s;
  }

  .left h1 {
    color: var(--fourth-color);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 12px;
  }

  .logo img {
    width: 50px;
    height: 50px;
  }

  .a-client-btn {
    display: inline-block;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    border: 2px solid var(--fourth-color);
    padding: 10px 20px;
    border-radius: 50px;
    background-color: transparent;
    color: var(--fourth-color);
    transition: 0.4s;
  }

  .benefits-details {
    width: 100%;
    min-width: 350px;
  }

  .contato-info {
    display: flex;
    flex-direction: column;
  }

  .container-benefits h2 {
    margin-top: 24%;
  }

  .container-contato h2 {
    margin-top: 26%;
  }

  .contato-details p {
    font-size: 16px;
  }
}

@media (max-width: 414px) {
  .container-plans {
    width: 100%;
    height: 100%;
    padding-top: 40px;
  }

  .plans-details {
    margin-bottom: 10%;
  }

  .plans-details:nth-child(2) {
    margin-bottom: 10%;
    transform: scale(1);
  }

  .container-plans h2 {
    margin-top: 28%;
    font-size: 22px;
  }

  .benefits-details {
    width: 100%;
    min-width: 300px;
  }

  .container-benefits h2 {
    margin-top: 30%;
    font-size: 22px;
  }

  .container-contato h2 {
    margin-top: 30%;
    font-size: 22px;
  }

  .content-4 .footer-socials i {
    margin-right: 20px;
  }

  .contato-details p {
    font-size: 16px;
  }
}

@media (max-width: 375px) {
  header {
    transition: 0.3s;
  }

  .a-client-btn {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    border: 2px solid var(--fourth-color);
    padding: 10px 20px;
    border-radius: 50px;
    background-color: transparent;
    color: var(--fourth-color);
    transition: 0.4s;
  }

  .left h1 {
    color: var(--fourth-color);
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: -2px;
    margin-bottom: 12px;
  }

  .container-benefits h2 {
    margin-top: 35%;
  }

  .container-contato h2 {
    margin-top: 35%;
  }

  .contato-details p {
    font-size: 16px;
  }
}

.buttom-whats a {
  background-color: var(--whats-color);
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding: 10px;
  right: 3%;
  bottom: 120px;
  position: fixed;
  z-index: 200;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--sixth-color);
  border: none;
  outline: none;
  transition: all 0.3s;
  opacity: 0.9;
}

.buttom-whats a:hover {
  opacity: 1;
  transform: scale(1.1);
}

.buttom-whats i {
  color: var(--sixth-color);
  font-size: 30px;
}

.buttom-to-top a {
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 10px 10px;
  right: 3%;
  bottom: 20px;
  position: fixed;
  z-index: 200;
  border-radius: 10%;
  font-size: 1.5rem;
  border: 1px solid var(--second-color);
  background-color: var(--fourth-color);
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}

.sticky.buttom-to-top a {
  visibility: visible;
  opacity: 0.9;
}

.buttom-to-top a:hover {
  transition: all 0.3s;
  opacity: 1;
  transform: scale(1.1);
}

.buttom-to-top i {
  font-size: 28px;
  color: var(--second-color);
}
