/* Fonts Download */
@font-face {
  font-family: 'agenda';
  src: url('../fonts/fonnts.com-Agenda.otf');
} @font-face {
  font-family: 'agenda bold';
  src: url('../fonts/fonnts.com-Agenda_Bold.otf');
}

/* Padrão */
* {
  color: var(--color);
  font-family: var(--main-font);
}  * ::selection {
  color: var(--main-color);
  background-color: #343434a7;
  text-shadow: none;
}

html {
  background-color: var(--background-color);
} @media(min-width:0px) and (max-width:400px) {
html {font-size: 4.4vw }
} @media(min-width:401px) and (max-width:600px) { 
html {font-size: 3.6vw}
} @media(min-width:601px) and (max-width:750px) {
html {font-size: 3.3vw}
} @media(min-width:751px) and (max-width:947px) {
html {font-size: 3vw}
} @media(min-width:948px) and (max-width:1050px) {
html {font-size: 2vw}
} @media(min-width:1051px) and (max-width:1200px) {
html {font-size: 1.75vw}
} @media(min-width:1201px) and (max-width:1300px) {
html {font-size: 1.65vw}
} @media(min-width:1301px) and (max-width:1500px) {
html {font-size: 1.5vw}
} @media(min-width:1501px) and (max-width:1700px) {
html {font-size: 1.4vw}
} @media(min-width:1701px) {
html {font-size: 1.3vw }
}

body {
  overflow-x: hidden;
  margin: 0px;
} h1, h2, h3, h4, h5, h6, p, span, strong, textarea, form, input {
  font-size: 1em;
  margin: 0;
} a:link {
  text-decoration: none;
} br, a, button, input, img {
  user-select: none;
}

:root {
  --black-color: #000;
  --white-color: #fff;
  --gray-color: #b2b2b2;
  --dark-gray-color: #7b7b7b;
  
  --main-color: #0ebcc9;
  --dark-main-color: #1697a1;

  --background-color: var(--black-color);
  --color: var(--white-color);

  --main-font: 'Agenda';
}

.centered {
  display: flex;
  justify-content: center;
  align-items: center;
} .column {
  flex-direction: column;
}

.w7 {width: 58.33333333%;}
.w12 {width: 100%;}
.w12-p {width: 84%;padding: 3% 8%;}

.p {
  padding: 5% 8%;
}

body::-webkit-scrollbar {
  width: 15px;
} body::-webkit-scrollbar-track {
  background: var(--gray-color);
} body::-webkit-scrollbar-thumb {
  background: var(--main-color);
} body::-webkit-scrollbar-thumb:hover {
  background: var(--dark-main-color);
}

/* Nav */
nav {
  padding: 15px 8%;
  width: 84%;
  font-size: 1.3em;
  position: fixed;
  z-index: 999;
  display: flex;
  background: #000a;
  justify-content: space-between;
  transition: transform 0.5s ease;
} .links {
  gap: 30px;
  height: 100%;
} .links > * {
  font-family: 'agenda bold';
  cursor: pointer;
  transition: color 0.5s ease;
} .links>:hover {
  color: var(--dark-gray-color);
} .bar > i{
  display: none;
}

nav img {
  cursor: pointer;
}

.shadow {
  display: flex;
  height: 100%;
  width: 70%;
  top: 0;
  left: 0;
  opacity: 0.4;
  position: absolute;
  background: #000;
  z-index: -1;
  filter: blur(100px);
}

/* header */
header {
  background-image: url('../img/main-bg.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;  
  height: 110vh;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 50px;
}

main {
  display: flex;
  align-content: end;
}

/* Títulos */
.titulo {
  font-weight: initial;
  font-size: 2.5em;
  text-align: left;
  justify-content: left;
}

.subtitulo {
  color: var(--main-color);
  font-size: 2.5em;
  font-family: 'agenda bold';
}

b {
  font-family: 'agenda bold';
}

/* Seção 1 - work */
.work {
  padding: 5% 8%;  
}

.work .content {
  z-index:3;
  position: relative;
}

.work .subtitulo:first-child {
  margin: 3% 0 10%;
} .work p {
  width: 55%;
  margin: 0;
  font-size: 1.3em;
}

.servico {
  padding-bottom: 3%;
} .servico p {
  width: 50%;
  font-size: 1.3em;
  padding-top: 30px;
}

.work .amoeba-button {
  margin-left: 25%;
}

.amoeba-button {
  color: var(--white-color);
  border: none;
  background: url(../img/button.png) center center/contain no-repeat;
  margin: 10px;
  font-size: 1.2em;
  font-family: 'agenda bold';
  transition: background 0.3s ease;
  padding: 35px 50px;
  cursor: pointer;
  user-select: none;
  text-shadow: none;
} .amoeba-button:hover {
  background: url(../img/button-hover.png) center center/contain no-repeat;
}

/* trafego */
.trafego {
  padding: 2% 0 0 0;
}
.trafego > * {
  overflow-x: hidden;
}
.platforms {
  overflow-x: hidden;
  position: relative;
  width: 100%;
  margin: 10vh 0;
}
.google {
  position: absolute;
  width: 50%;
  transform: translatex(-100%);
  left: 0;
  transition: 1s transform ease;
} .google.active, .meta.active {
  overflow-x: hidden;
  transform: translate(0);
}

.meta {
  position: absolute;
  width: 53%;
  transform: translatex(100%);
  transition: 1s transform ease;
  overflow-x: hidden;
  right: 0;
}

.google b, .meta b {
  font-size: 1.5em;
  padding: 30px 16%;
  overflow-x: hidden;
  display: block;
}

.meta b {
  overflow-x: hidden;
  text-align: end;
}

.google p {
  background-color: var(--main-color);
  font-size: 1.3em;
  padding: 50px 12% 50px 16%;
  border-radius: 0 50px 50px 0;
}

.meta p {
  font-size: 1.1em;
  background-color: var(--white-color);
  color: var(--black-color);
  padding: 50px 15.094339% 50px 3%;
  text-align: right;
  border-radius: 50px 0 0 50px;
  margin: 0;
}

.trafego > p {
  width: 45%;
  padding: 0 47% 0 8%;
  font-size: 1.3em;
} .trafego > .amoeba-button {
  margin: -15px 0 60px 0;
}

/* lp e sites */
.lp-site {
  padding: 5% 0;
}
.lp-site > * {
  padding: 0 8%;
} .lp-site p {
  font-size: 1.1em;
}

.criacao {
  margin-bottom: 10vh;
}

br.b, br.c, br.d, br.e {
  display: none;
}

br.a {
  display: block;
}
.sites {
  text-align: end;
  width: 52%;
  margin-left: 40%;
  margin-top: 5%;
  z-index: -1;
  padding: 0 8% 0 0;
  position: absolute;
  transition: transform 1s ease;
  transform: translateY(100%);
} .sites p {
  font-size: 1.4em;
  padding-top: 20px;
} .sites.active {
  transform: translateY(0);
  z-index: 2;
}


@media (min-width: 1300px){
  .sites p {
    font-size: 1.5em;
  }
} @media (min-width: 1050px) and (max-width: 1200px){
  br.a, br.c {
    display: none;
  } br.b {
    display: block;
  }
} @media (min-width: 948px) and (max-width: 1050px){
  br.a, br.b {
    display: none;
  } .sites {
    margin-top: -2%;
  } br.c {
    display: block;
  }
  }

.lp {
  margin-top: 93vw;
  width: 55%;
  margin-right:45%;
  transform: translateY(-150%);
  opacity: 0;
  transition: transform 2s ease, opacity 2s ease;
} .lp p {
  font-size: 1.5em;
  padding-top: 20px;
}

.lp.active {
  opacity: 1;
  transform: translateY(0);
}

.lp .amoeba-button {
  margin-left: 70%;
  text-wrap: nowrap;
}

/* Backgrounds */
.s-bg {
  position: absolute;
  left: 0;
  user-select: none;
  z-index: 0;
  width: 100%;
  transform: translateY(-15%);
  pointer-events: none;
  transition-delay: 3s;
}

.bg-falso {
  position: absolute;
  z-index:1;
  left: 0;
  pointer-events: none;    
  transition: width 1.5s ease, opacity 1.5s ease;
  opacity: 0;
  user-select: none;
  width: 0;
} .bg-falso.active {
  opacity: 1;
  width: 90%;
}

.prog {
  position: absolute;
  z-index:-1;
  left: 0;
  width: 100%;
  pointer-events: none;
  user-select: none;
  padding: 0;
}

/* Rodapé */
footer {
  padding: 5%;
}

footer .content {
  margin: 15% 10% 5% 10%;
  width: 30%;
} .whatsapp-btn {
  background: var(--main-color);
  padding: 15px 30px;
  margin: 30px 0;
  display: block;
  width: min-content;
  transition: background 0.5s ease,
} .whatsapp-btn:hover {
  background: var(--dark-main-color);
}

footer form {
  align-items: flex-start;
  gap: 15px;
  display: flex;
  justify-content: center;
  margin: 18% 10% 5% 10%;
  width: 30%;
}

footer input, footer textarea {
  background: var(--gray-color);
  color: var(--black-color);
  margin:0;
  border: 3px solid var(--gray-color);
} footer input {
  width: 75%;
  padding: 10px;
} footer textarea {
  width: 100%;
}
footer input::placeholder {
  color: var(--white-color);
}

footer input:hover, footer textarea:hover {
  border: var(--dark-gray-color) 3px solid;
}

footer form button {
  background-color: var(--main-color);
  padding: 10px 30px;
  border: none;
  font-size: 1.2em;
  margin: auto;
  cursor: pointer;
  transition: background 0.5s ease;
} footer form button:hover {
  background-color: var(--dark-main-color);
}

.midias {
  padding: 0 5%;
  margin-left: 5%;
} .midias p {
  margin: 0;
} .midias i {
  margin: 15px 8px;
  font-size: 1.5em;
}

.box {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
}
.metade {
  width: 50%;
  height: 80vh;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
} .metade img, .box img {
  object-fit: cover;
} .metade img:hover, .box img:hover {
  transform: scale(1.05);
}

.quarter {
  height: 40vh;
}
/* animações */
.translate {
  transform: translateX(-500px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
} .translate.active {
  opacity: 1;
  transform: translateX(0px);
}

.opacity {
  opacity: 0;
  transition: opacity 1s ease;
} .opacity.active {
  opacity: 1;
}


.mortal, .mortal-alt {
  transition: transform 1s ease;
  display: inline-block;
} .mortal.active, .mortal-alt.active {
  transform: rotateX(360deg);
} .mortal-alt {
  transition-delay: 3s;
}

/* ------------- */
@media (max-width: 947px){
  .fix {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 8% 0;
  }

  .fix>* {
    width: 90%;
    padding-inline: 5%;
  }

  .bar {
    position:relative;
    display: flex;
    align-items: center;
  } .links {
    position:fixed;
    width:100vw;
    left: 0;
    top: 0;
    height: auto;
    flex-direction: column;
    background-color: var(--dark-main-color);
    color: #00000048;
    transform: scale(0.5);
    transition: 0.5s ease;
    opacity: 0;
    pointer-events: none;
  } .bar:hover .links{
    transform: scale(1);
    opacity: 1;
    display:flex;
    pointer-events: all;
  } .display-none-cell {
    display: none;
  } .bar i {
    display: flex;
    font-size: 1.5em;
  } .links > * {
    padding: 15px;
  }

  header {
    height: 100vh;
  }

  main.w7 {
    width: 100%;
    margin: 13vh 0 0 0;
  } .titulo {
    font-size: 2em;
  }
  .work {
    height: auto;
    margin-bottom: 10vh;
  }
  .work p, .servico p, .trafego > p {
    width: 90%;
    padding: 30px 0;
  } .work .amoeba-button, .lp .amoeba-button {
    margin: 15px auto;
    display: block;
    text-align: center;
  }
  .shadow {
    width: 100%;
    opacity: 0.5;
  }
   .servico {
    margin-top: 10vh;
   }
  .trafego {
    margin-top: 5vh;
  } .trafego .subtitulo {
    text-align: left;
    width: 84%;
  }

  .platforms {
    flex-direction: column;
    margin: 0;
    position:static;
  }

  .google, .meta {
    width: 100%;
    position: relative;
  }

  .bg-falso {
    height: 100%;
    object-fit: cover;
    object-position: 70% 0;
  } .bg-falso.active {
    width:100%;

  }

  .s-bg {
    height: 130%;
    width: 100%;
    object-fit: cover;
    object-position: 50% 0;
  }

  .google p, .google b {
    margin-right: 5%;
    padding-left: 8%;
  }

  .meta p, .meta b {
    margin-left: 5%;
    padding-right: 8%;
  }

  .trafego > .amoeba-button, .lp .amoeba-button {
    transform: translate(0);
    margin-bottom: 15px;
  }

  .sites {
    width: 90%;
    margin: 0 5% -25% 0;
    padding: 0;
    position: relative;
  } .sites p {
    font-size: 1.25em;
  } .lp {
    width: 90%;
    margin-top: 100vw;
    padding-inline: 5%;
  } .lp p {
    padding-top: 40px;
  } br.a {
    display: none;
  } br.d {
    display: block;
  }
  .lp-site {
    padding: 15% 0 0 0;
  }

  footer .s-bg {
    transform: translate(0);
    z-index: -1;
  } footer .content {
    margin: 0;
    font-size: 1.3em;
    width:90%;
    text-shadow:
    20px 20px 20px #000,
    10px 10px 20px #000,
    0px 0px 20px #000;
  } footer .subtitulo {
      text-align: center;
  } .whatsapp-btn, footer form button {
    text-shadow: none;
    margin: 30px auto;
    box-shadow: #000 10px 10px 20px;
  }
  .midias {
    text-align: center;
  }
  .logo {
    width: 100%;
  }
  .metade {
    width: 100%;
    height: auto;
  }
  .quarter {
    height: auto;
  }
} @media (max-width: 700px){
  .lp  p br.a, .lp  p br.b, .lp  p br.c, .lp  p br.d {
    display: none;
  } .lp p br.e {
    display: block;
  }
}