﻿:root {
  --animation-duration: 1.5s;
  --color1: #444;
  --color2: #999999;
  --bg-color1: #f9f9f9;
  --bg-color2: #fff;
  --border: 1px solid #ddd;
  --border2: 1px solid #fff;
}

*, ::before, ::after {
  box-sizing: border-box;
}

/*---- Scrollbar Custom ----*/
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #efefef;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: #aaa;
  }
/*---- Scrollbar Custom ----*/

* {
  transition-delay: 0s;
  transition-duration: 0.2s;
  transition-property: all;
  transition-timing-function: linear;
  font-family: 'Hind';
}

/*---- Layout Grid ----*/
.db-row {
  display: flex;
}
.db-row[class*="center"] {
  justify-content: center;
}
.db-row[class*="wrap"] {
  flex-wrap: wrap;
}

.db-col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  width: 0px;
}

.db-col-width {
  flex-grow: 0;
  flex-shrink: 0;
  width: 0px;
  /*
   OBS: Devem ser inserido no style do elemento
   flex-basis: width;
   max-width: width;
  */
}
/*---- Layout Grid ----*/

html, body {
  padding: 0;
  margin: 0;
  font-family: 'Hind';
  color: var(--color1);
  position: relative;
  background-color: var(--bg-color1);
  scroll-behavior: smooth;
}
body {
  height: calc(var(--vh, 1vh) * 100);
}
header {
  height: 70px;
  background-color: var(--bg-color1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
}
main {
  margin-top: 70px;
}
section {
  min-height: 300px;
  border-top: var(--border);
}


#btnWhatsApp {
  background-image: url(../icons/whatsapp-original.svg);
  background-size: 45px;
  background-repeat: no-repeat;
  position: fixed;
  bottom: 15px;
  right: 15px;
  height: 70px;
  width: 70px;
  background-color: #fff;
  background-position: center;
  border-radius: 50%;
  border: var(--border);
  border-width: 2px;
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  justify-content:center;
  align-items:center;
  display:none;
}
.modal-show {
  display: flex;
}
.modal-body {
  width: 500px;
  margin: 20px;
  max-width: 100%;
  background-color: var(--bg-color1);
  border: var(--border2);
  padding: 30px;
  border-radius: 10px;
  margin-top: -150px;
}
.modal-body button {
  text-decoration: none;
  border: none;
  text-transform: uppercase;
  color: #fff;
  width: 140px;
  background-image: url(../icons/whatsapp-white.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 8px center;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-indent: 18px;
  background-color: #000;
  cursor: pointer;
  border-radius: 5px;
}
.modal-body button:hover {
  transform: scale(1.05);
}
.modal-body input {
  width: 100%;
  height: 54px;
  background-color: transparent;
  border: var(--border);
  color: inherit;
  padding: 13px 20px;
  margin-bottom: 10px;
}

.toast {
  width: fit-content;
  white-space: nowrap;
  background-color: #000;
  padding: 10px;
  border-radius: 10px;
  position: absolute;
  top: -60px;
  z-index: 1000;
  color: #fff;
  border: 1px solid #fff;
  left: 0px;
  transform: scale(0);
}
.toast-show {
  transform: scale(1);
}
/*------Menu------*/
.logo {
  width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo > a {
  display: block;
  text-decoration: none;
  color: #000;
  letter-spacing: 5px;
  font-size: 28px;
  text-transform: uppercase;
}
.menu-trigger-container {
  display: none;
  justify-content: right;
  align-items: center;
}
.menu-trigger {
  height: 45px;
  width: 35px;
  margin-right: 14px;
}
.menu {
  padding: 0;
  margin: 0;
}
.menu > li {
  width: fit-content;
  padding: 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.menu > li > a {
  display: block;
  text-decoration: none;
  color: var(--color1);
  letter-spacing: 3px;
  font-size: 14px;
  text-transform: uppercase;
}

.hamburguer-trigger { }
.hamburguer-trigger-active .hamburguer-line {
  transform: rotate(45deg);
  margin: 8px 0px;
}
.hamburguer-line {
  border: 2px solid #000;
  margin: 6px 0px;
  border-radius: 2px
}

header.scroll {
  height: 50px;
  background-color: #000;
}
header.scroll a {
  color: #fff !important;
}

/*------Home------*/
.home {
  height: calc(calc(var(--vh, 1vh) * 100) - 70px);
  min-height: 400px;
  background-color: var(--bg-color1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.home h1 {
  animation-duration: 3s;
  animation-name: home-title;
  text-align: center;
  font-weight: normal;
  font-size: 100px;
  letter-spacing: 16px;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  transform: rotateY(0deg);
}
.home h6 {
  animation-duration: var(--animation-duration);
  animation-name: home-text;
  text-align: center;
  font-size: 20px;
  color: var(--color2);
  font-weight: normal;
  padding: 0;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.home-container {
  margin-top: -240px;
  z-index: 1;
}
.home-container-img {
  display: contents;
}
.home-container-img > [data-img] {
  position: absolute;
  background-repeat:no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
}
.home-container-img > [data-img*="paperclip"] {
  height: 100px;
  width: 50px;
  background-image: url(../imgs/paperclip.png);
}
.home-container-img > [data-img="paperclip1"] {
  left: 36px;
  bottom: 310px;
  transform: rotate(-57deg);
}
.home-container-img > [data-img="paperclip2"] {
  left: 80px;
  bottom: 270px;
  transform: rotate(0deg);
}
.home-container-img > [data-img="book"] {
  height: 380px;
  width: 330px;
  background-image: url(../imgs/book.png);
  left: 5px;
  bottom: -60px
}
.home-container-img > [data-img="oculos"] {
  height: 250px;
  width: 290px;
  background-image: url(../imgs/oculos.png);
  left: 150px;
  bottom: 52px;
}
.home-container-img > [data-img="pen"] {
  height: 300px;
  width: 160px;
  background-image: url(../imgs/pen.png);
  right: 240px;
  bottom: 52px;
}
.home-container-img > [data-img="tablet"] {
  height: 460px;
  width: 640px;
  background-image: url(../imgs/tablet.png);
  right: -300px;
  bottom: -105px;
}

@keyframes home-title {
  0% {
    transform: rotateY(0deg);
  }
  50% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
@keyframes home-text {
  0% {
    transform: scale(0);
  }

  100% {
    transform: scale(1);
  }
}
/*------Features------*/
.features {
  background-color: var(--bg-color2);
  padding: 50px 20px;
}
.features > h1 {
  font-size: 45px;
  padding: 0;
  margin: 0;
  text-align:center;
  font-weight: normal;
}
.features h6 {
  text-align: center;
  font-size: 20px;
  color: var(--color1);
  font-weight: normal;
  padding: 30px 0px;
  margin: 0;
  max-width: 1000px;
}
.features-cards {
  margin: 40px 0px 40px 0px;
}
.features-card {
  background-color: var(--bg-color1);
  width: 350px;
  padding: 20px 25px 20px 60px;
  margin: 0px 20px 20px 20px;
  border-radius: 10px;
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: 12px 22px;
  border: var(--border);
}
.features-card[data-type="schedule"]{
  background-image: url(../icons/calendar.svg);
}
.features-card[data-type="whatsapp"]{
  background-image: url(../icons/whatsapp.svg);
}
.features-card[data-type="recurring-schedule"]{
  background-image: url(../icons/recurring-schedule.svg);
}
.features-card[data-type="orders"] {
  background-image: url(../icons/orders.svg);
}
.features-card[data-type="report"] {
  background-image: url(../icons/report.svg);
}
.features-card > h3 {
  font-size: 20px;
  padding: 0;
  margin: 0;
  padding-bottom: 10px;
  color: #000;
}
.features-card > p {
  font-size: 18px;
  padding: 0;
  margin: 0;
}

/*------Planos------*/
.plans {
  background-color: var(--bg-color1);
  padding: 50px 20px;
}
.plans h1 {
  font-size: 45px;
  padding: 0;
  margin: 0;
  text-align: center;
  font-weight: normal;
}
.plans-cards {
  margin: 40px 0px 40px 0px;
}
.plans-card {
  background-color: var(--bg-color2);
  width: 350px;
  padding: 20px 25px 20px 60px;
  margin: 0px 20px 20px 20px;
  border-radius: 10px;
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: 12px 22px;
  border: var(--border);
}
.plans-card button{
  background-color: #000;
  color: var(--bg-color2);
  height: 40px;
  width: 120px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}
.plans-card button:hover{
  transform: scale(1.05);
}

/*------Comprar------*/
.buy {
  padding: 150px 20px;
  background-color: #000;
  text-align: center;
  color: #f0f0f0;
}
.buy h1 {
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin: 0;
  padding: 10px 0px;
}
.buy p, .buy label {
  font-size: 15px;
  color: #cecece;
  text-align: center;
  margin: 0;
  padding: 30px 0px;
}
.buy button {
  border: var(--border2);
  text-transform: uppercase;
  color: inherit;
  width: 140px;
  background-image: url(../icons/whatsapp-white.svg);
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: 8px center;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-indent: 18px;
  background-color: transparent;
  cursor: pointer;
}
.buy button:hover{
  background-color: var(--bg-color1);
  color: var(--color1);
  background-image: url(../icons/whatsapp.svg);
}
.buy-form {
  width: 700px;
  max-width: 100%;
  text-align: left;
}
.buy-form input, .buy-form textarea {
  width: 100%;
  height: 54px;
  background-color: transparent;
  border: var(--border);
  color: inherit;
  padding: 13px 20px;
  margin-bottom: 20px;
}
.buy-form textarea {
  height: 150px;
}


@media screen and (max-width: 799px) {
  /*------Menu------*/
  nav {
    display: none !important;
  }
  nav.active {
    animation-duration: 0.5s;
    animation-name: menu;
    display: block !important;
    position: fixed;
    left: 0px;
    width: 100% !important;
    height: 100%;
    z-index: 100;
    background-color: rgba(0,0,0,0.000001);
  }
  .menu-trigger-container{
    display:flex;
  }
  .menu {
    display: block;
    width: 70%;
    background-color: var(--bg-color2);
    height: 110%;
    border-right: var(--border);
  }
  .menu > li {
    width: 100%;
    padding: 8.5px 25px;
    display: block;
    border-bottom: var(--border);
  }
  .menu > li > a {
    font-size: 20px;
  }
  header.scroll {
    border-bottom: var(--border2);
    box-shadow: 0px 0px 4px #555;
  }
  header.scroll .menu {
    background-color: #000;
    border-right: var(--border2);
    box-shadow: 0px 0px 4px #555;
  }
  header.scroll .hamburguer-line {
    border: var(--border2);
    border-width: 2px;
  }

  @keyframes menu {
    0% {
      left: -100%;
    }

    100% {
      left: 0px;
    }
  }

  /*------Home------*/
  .home-container {
    margin-top: -270px;
  }
  .home h1 {
    font-size: 65px;
  }
  .home-container-img > [data-img="paperclip1"] {
    left: 21px;
    bottom: 225px;
    transform: rotate(-118deg);
  }
  .home-container-img > [data-img="paperclip2"] {
    left: 71px;
    bottom: 197px;
    transform: rotate(0deg);
  }
  .home-container-img > [data-img="book"] {
    left: -160px;
    bottom: -120px;
  }
  .home-container-img > [data-img="oculos"] {
    left: -60px;
    bottom: -8px;
  }
  .home-container-img > [data-img="pen"] {
    right: 88px;
    bottom: 40px;
    display: none;
  }
  .home-container-img > [data-img="tablet"] {
    right: -430px;
    bottom: -170px;
  }

  /*------Features------*/
  .features-cards {
    margin: 0px;
  }

  /*------Planos------*/
  .plans-cards {
    margin: 20px 0px 0px 0px;
  }

  /*------Comprar------*/
  .buy {
    padding: 70px 10px;
  }
  .buy p {
    font-size: 12px;
  }
}