@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* =========================================================
   VARIÁVEIS
========================================================= */

:root {
  --bg: #191919;
  --panel: #202020;
  --panel2: #242424;
  --green: #79f33f;
  --green2: #a3ff75;
  --white: #f5f7f3;
  --muted: #9ba49b;
  --line: #222a22;
  --max: 1180px;
}


/* =========================================================
   RESET / BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px
    );

  background-size: 42px 42px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  height: 88px;
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: relative;
  z-index: 5;
}

.brand img {
  width: 70px;
  height: auto;
  display: block;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a,
.text-link {
  color: #c5ccc5;
  text-decoration: none;
  font-size: 14px;
}

.site-header nav a:hover,
.text-link:hover {
  color: var(--green);
}

.article a.btn {
  color: #071007;
  text-decoration: none;
}

.article a.btn:hover {
  color: #071007;
}


/* =========================================================
   BOTÕES
========================================================= */

.btn {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;

  background: var(--green);
  color: #071007;
  text-decoration: none;

  padding: 17px 23px;
  border-radius: 7px;

  font-weight: 700;

  box-shadow: 0 0 30px rgba(121, 243, 63, 0.08);

  transition: 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--green2);
  box-shadow: 0 10px 40px rgba(121, 243, 63, 0.15);
}

.btn-small {
  padding: 12px 17px;
  font-size: 13px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  min-height: 690px;
  max-width: var(--max);
  margin: auto;

  padding: 70px 24px 80px;

  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  align-items: center;

  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  letter-spacing: 0.17em;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 25px;
  height: 1px;
  background: var(--green);
  vertical-align: middle;
  margin-right: 9px;
}

.hero h1,
.section h2,
.cta h2 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.055em;
  margin: 16px 0 22px;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(58px, 7vw, 94px);
}

h1 em,
h2 span {
  color: var(--green);
  font-style: normal;
}

.lead {
  max-width: 650px;
  color: #b4bcb4;
  font-size: 19px;
  line-height: 1.65;
}

.lead strong {
  color: #fff;
}


/* =========================================================
   HERO - AÇÕES
========================================================= */

.actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 34px;
}

.trust {
  display: flex;
  gap: 48px;

  margin-top: 62px;
  padding-top: 22px;

  border-top: 1px solid var(--line);

  max-width: 620px;
}

.trust div {
  display: flex;
  flex-direction: column;
}

.trust b {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
}

.trust small {
  color: #747d74;
  margin-top: 4px;
}


/* =========================================================
   HERO - ASTRONAUTA
========================================================= */

.hero-art {
  height: 560px;
  position: relative;

  display: grid;
  place-items: center;
}

.hero-art img {
  position: relative;
  z-index: 2;

  width: min(78%, 360px);
  height: auto;

  filter: drop-shadow(
    0 20px 60px rgba(121, 243, 63, 0.13)
  );

  animation: float 5s ease-in-out infinite;
}

.glow {
  position: absolute;

  width: 520px;
  height: 520px;

  right: 0;
  top: 100px;

  background: radial-gradient(
    circle,
    rgba(102, 255, 56, 0.10),
    transparent 67%
  );

  filter: blur(10px);
}

.orbit {
  position: absolute;

  border: 1px solid rgba(121, 243, 63, 0.2);
  border-radius: 50%;

  transform: rotate(-24deg);
}

.orbit-a {
  width: 490px;
  height: 250px;
}

.orbit-b {
  width: 370px;
  height: 520px;
  transform: rotate(35deg);
}

.star {
  position: absolute;
  color: var(--green);
  opacity: 0.7;
}

.s1 {
  top: 50px;
  right: 35px;
}

.s2 {
  bottom: 70px;
  left: 40px;
  font-size: 24px;
}

.s3 {
  top: 160px;
  left: 15px;
  font-size: 10px;
}

@keyframes float {
  50% {
    transform: translateY(-15px) rotate(1deg);
  }
}


/* =========================================================
   TICKER
========================================================= */

.ticker {
  border-block: 1px solid var(--line);

  background: #1d1d1d;

  padding: 16px 20px;

  display: flex;
  gap: 22px;
  justify-content: center;
  align-items: center;

  white-space: nowrap;
  overflow: hidden;

  font: 600 11px 'Space Grotesk', sans-serif;
  letter-spacing: 0.08em;

  color: #aab2aa;
}

.ticker i {
  color: var(--green);
  font-style: normal;
}


/* =========================================================
   SEÇÕES
========================================================= */

.section {
  max-width: var(--max);
  margin: auto;
  padding: 115px 24px;
}

.intro {
  text-align: center;
  max-width: 1000px;
}

.intro h2,
.section h2,
.cta h2 {
  font-size: clamp(40px, 5vw, 66px);
}

.intro > p:last-child {
  max-width: 780px;
  margin: 30px auto 0;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.75;
}

.section-head {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;

  gap: 80px;
  align-items: end;

  margin-bottom: 48px;
}

.section-head > p,
.seo > p {
  color: var(--muted);
  line-height: 1.7;
}


/* =========================================================
   CARDS
========================================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/*
   Cards clicáveis da Home.
   Mantém aparência normal mesmo sendo <a>.
*/

.service-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.service-card:visited,
.service-card:hover,
.service-card:active,
.service-card:focus {
  color: inherit;
  text-decoration: none;
}

.cards article {
  min-height: 270px;

  background: linear-gradient(
    145deg,
    var(--panel),
    #1d1d1d
  );

  border: 1px solid var(--line);
  border-radius: 12px;

  padding: 27px;

  position: relative;

  transition: 0.3s;
}

.cards article:hover {
  border-color: #3d5a35;

  transform: translateY(-4px);

  background: #101610;
}

.cards b {
  color: var(--green);
  font-size: 11px;
}

.cards h3 {
  font: 600 23px 'Space Grotesk', sans-serif;
  margin-top: 55px;
}

.cards p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.cards article > span {
  position: absolute;

  right: 25px;
  top: 24px;

  color: #596159;
}


/* =========================================================
   MÉTODO
========================================================= */

.method {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 90px;
  align-items: center;
}

.method-copy > p:not(.section-kicker) {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.path {
  border-left: 1px solid #33402f;
  padding-left: 35px;
}

.path div {
  padding: 23px 0;

  border-bottom: 1px solid var(--line);

  color: var(--green);
  font-size: 12px;
}

.path strong {
  display: block;

  color: #fff;

  font: 600 25px 'Space Grotesk', sans-serif;

  margin: 5px 0;
}

.path small {
  color: var(--muted);
}


/* =========================================================
   SEO
========================================================= */

.seo {
  border-block: 1px solid var(--line);

  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  gap: 80px;
  align-items: center;
}


/* =========================================================
   CTA
========================================================= */

.cta {
  max-width: var(--max);

  margin: 80px auto 100px;

  border: 1px solid #263323;
  border-radius: 18px;

  min-height: 470px;

  padding: 55px 70px;

  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: center;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(121, 243, 63, 0.1),
      transparent 35%
    ),
    var(--panel);
}

.cta img {
  width: 250px;
  height: auto;

  filter: drop-shadow(
    0 20px 50px rgba(121, 243, 63, 0.13)
  );
}

.cta p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
}

.cta small {
  display: block;
  color: #7d867d;
  margin-top: 18px;
}

.cta .btn {
  margin-top: 15px;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
  max-width: var(--max);

  margin: auto;

  border-top: 1px solid var(--line);

  padding: 45px 24px 55px;

  display: grid;
  grid-template-columns: auto 1fr auto;

  gap: 35px;
  align-items: center;

  color: #737b73;
  font-size: 12px;
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.floating-wa {
  display: none;

  position: fixed;

  right: 18px;
  bottom: 18px;

  width: 54px;
  height: 54px;

  border-radius: 50%;

  background: var(--green);
  color: #061006;

  text-decoration: none;
  font-weight: 800;

  align-items: center;
  justify-content: center;

  z-index: 10;

  box-shadow: 0 10px 30px #000;
}


/* =========================================================
   RESPONSIVO - TABLET / MOBILE
========================================================= */

@media (max-width: 850px) {

  .site-header nav {
    display: none;
  }

  .site-header {
    height: 72px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }

  .hero-art {
    height: 440px;
    grid-row: 1;
  }

  .hero-art img {
    width: 245px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust {
    gap: 20px;
    justify-content: space-between;
  }

  .section {
    padding: 80px 22px;
  }

  .section-head,
  .method,
  .seo {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .cards article {
    min-height: 220px;
  }

  .cta {
    margin: 40px 16px 70px;
    padding: 45px 28px;

    grid-template-columns: 1fr;

    text-align: center;
  }

  .cta img {
    width: 160px;
    margin: auto;
  }

  .cta .btn {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .ticker {
    justify-content: flex-start;
  }

  .floating-wa {
    display: flex;
  }
}


/* =========================================================
   RESPONSIVO - CELULAR
========================================================= */

@media (max-width: 520px) {

  .site-header > .btn {
    font-size: 0;
    gap: 0;
  }

  .site-header > .btn::after {
    content: 'WhatsApp';
    font-size: 12px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-art {
    height: 360px;
  }

  .hero h1 {
    font-size: 49px;
  }

  .lead {
    font-size: 17px;
  }

  .trust {
    font-size: 12px;
  }

  .section h2,
  .cta h2 {
    font-size: 42px;
  }

  .section-head {
    margin-bottom: 28px;
  }
}