* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #090909;
  --black2: #111;
  --dark: #181818;
  --lime: #c9ff32;
  --white: #fff;
  --gray: #a8a8a8;
  --light: #f3f3f3;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: #fff;
  color: #151515;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}


/* HEADER */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  transition: 0.3s;
}

.header.scrolled {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.nav {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* LOGO */

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 45px;
  height: 45px;

  display: grid;
  place-items: center;

  background: var(--lime);
  color: #000;

  font-family: Anton;
  font-size: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: Anton;
  font-size: 22px;
  letter-spacing: 0.04em;
}

.brand-text small {
  font-size: 8px;
  letter-spacing: 0.32em;
  color: #bbb;
  margin-top: 5px;
}


/* MENU */

.menu {
  display: flex;
  align-items: center;
  gap: 28px;

  color: #fff;

  font-size: 13px;
  font-weight: 600;
}

.menu-cta {
  background: var(--lime);
  color: #000;
  padding: 12px 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  background: #fff;
  margin: 6px;
}


/* HERO */

.hero {
  min-height: 790px;

  position: relative;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: #fff;

  background:
    linear-gradient(
      120deg,
      #080808,
      #121212 65%,
      #1a1a1a
    );
}

.hero::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.2)
    );
}

.hero-shape {
  position: absolute;

  border: 1px solid rgba(201, 255, 50, 0.18);

  transform: rotate(-18deg);
}

.hero-shape-1 {
  width: 500px;
  height: 700px;

  right: -50px;
  top: 40px;
}

.hero-shape-2 {
  width: 280px;
  height: 500px;

  right: 170px;
  top: 140px;
}

.hero-content {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    1.35fr 0.65fr;

  gap: 80px;

  align-items: end;

  padding-top: 105px;
}


/* TEXTO */

.eyebrow {
  display: inline-flex;

  align-items: center;

  gap: 12px;

  color: var(--lime);

  font-size: 11px;

  letter-spacing: 0.22em;

  font-weight: 700;

  margin-bottom: 20px;
}

.eyebrow::before {
  content: "";

  width: 35px;
  height: 2px;

  background: currentColor;
}

.eyebrow.dark {
  color: #6f8c18;
}

.hero h1,
.section h2,
.cta h2 {
  font-family: Anton, sans-serif;

  font-weight: 400;

  line-height: 0.95;

  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(58px, 7vw, 100px);

  max-width: 850px;
}

.hero-copy > p {
  max-width: 620px;

  color: #c5c5c5;

  font-size: 17px;

  margin-top: 26px;
}


/* BOTÕES */

.hero-actions {
  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  margin-top: 34px;
}

.btn {
  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-height: 52px;

  padding: 0 24px;

  font-size: 13px;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 0.05em;

  transition: 0.25s;
}

.btn-primary {
  background: var(--lime);
  color: #000;
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.33);
}

.btn-outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}


/* NÚMEROS */

.hero-stats {
  display: flex;

  gap: 35px;

  margin-top: 42px;
}

.hero-stats div {
  display: flex;
  flex-direction: column;
}

.hero-stats strong {
  font-family: Anton;

  font-size: 28px;

  color: #fff;
}

.hero-stats span {
  font-size: 10px;

  color: #999;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}


/* CARD */

.hero-card {
  background: var(--lime);

  color: #080808;

  padding: 34px;

  margin-bottom: 12px;
}

.card-kicker {
  font-size: 10px;

  letter-spacing: 0.22em;

  font-weight: 800;
}

.hero-card h2 {
  font-family: Anton;

  font-size: 38px;

  line-height: 1;

  text-transform: uppercase;

  margin: 12px 0;
}

.hero-card p {
  font-size: 13px;

  color: #344000;
}

.hero-card a {
  display: flex;

  justify-content: space-between;

  margin-top: 28px;

  padding-top: 18px;

  border-top:
    1px solid
    rgba(0, 0, 0, 0.2);

  font-size: 12px;

  font-weight: 800;

  text-transform: uppercase;
}


/* BENEFÍCIOS */

.benefits {
  background: #0b0b0b;
  color: #fff;
}

.benefits-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);
}

.benefits-grid > div {
  padding: 28px 24px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.08);
}

.benefits-grid strong {
  display: block;

  font-family: Anton;

  font-size: 20px;

  text-transform: uppercase;
}

.benefits-grid span {
  font-size: 11px;

  color: #8e8e8e;
}


/* SEÇÕES */

.section {
  padding: 110px 0;
}


/* SOBRE */

.about-grid {
  display: grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap: 95px;

  align-items: center;
}

.about-visual {
  height: 470px;

  position: relative;

  background: #111;

  overflow: hidden;
}

.visual-number {
  position: absolute;

  right: 20px;
  top: -35px;

  font-family: Anton;

  font-size: 180px;

  color:
    rgba(201, 255, 50, 0.07);
}

.visual-box {
  position: absolute;

  left: 0;
  bottom: 0;

  width: 72%;

  padding: 45px;

  background: var(--lime);

  color: #000;
}

.visual-box span {
  font-size: 10px;

  letter-spacing: 0.22em;

  font-weight: 800;
}

.visual-box strong {
  display: block;

  font-family: Anton;

  font-size: 34px;

  line-height: 1;

  text-transform: uppercase;

  margin-top: 12px;
}

.section-copy h2,
.section-heading h2 {
  font-size: clamp(46px, 5vw, 66px);
}

.section-copy p {
  color: #666;

  margin-top: 20px;
}

.text-link {
  display: inline-flex;

  gap: 10px;

  margin-top: 26px;

  font-weight: 800;

  text-transform: uppercase;

  font-size: 12px;
}


/* MODALIDADES */

.modalities {
  background: #101010;

  color: #fff;
}

.section-heading {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 50px;

  margin-bottom: 50px;
}

.section-heading > p {
  max-width: 360px;

  color: #888;

  font-size: 14px;
}

.modality-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  border-top:
    1px solid
    rgba(255, 255, 255, 0.09);

  border-left:
    1px solid
    rgba(255, 255, 255, 0.09);
}

.modality-card {
  min-height: 270px;

  padding: 32px;

  border-right:
    1px solid
    rgba(255, 255, 255, 0.09);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.09);

  transition: 0.25s;
}

.modality-card:hover {
  background: #191919;

  transform: translateY(-4px);
}

.modality-card > span {
  color: var(--lime);

  font-size: 11px;

  font-weight: 800;
}

.modality-card h3 {
  font-family: Anton;

  font-size: 34px;

  text-transform: uppercase;

  margin: 48px 0 12px;
}

.modality-card p {
  font-size: 13px;

  color: #8f8f8f;
}


/* CONTATO */

.cta {
  background: var(--lime);

  color: #000;

  padding: 80px 0;
}

.cta-inner {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 50px;
}

.cta .eyebrow {
  color: #000;
}

.cta h2 {
  font-size: 56px;

  max-width: 700px;
}

.cta p {
  margin-top: 15px;
}

.btn-light {
  background: #000;

  color: #fff;
}


/* FOOTER */

.footer {
  background: #070707;

  color: #aaa;

  padding: 65px 0 22px;
}

.footer-grid {
  display: grid;

  grid-template-columns:
    1.4fr 0.6fr 0.9fr;

  gap: 70px;
}

.footer .brand {
  margin-bottom: 20px;
}

.footer p,
.footer a {
  display: block;

  font-size: 12px;

  margin: 8px 0;

  color: #888;
}

.footer h4 {
  color: #fff;

  font-family: Anton;

  font-size: 21px;

  text-transform: uppercase;

  margin-bottom: 14px;
}

.footer-bottom {
  margin-top: 48px;

  padding-top: 20px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.07);

  font-size: 10px;
}


/* DADOS PEQUENOS */

.footer-company {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 3px;
}

.footer-company small {
  display: block;

  font-size: 8px;

  line-height: 1.4;

  color: #666;

  letter-spacing: 0.02em;
}


/* BOTÃO TELEFONE */

.phone-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  z-index: 999;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  display: grid;
  place-items: center;

  background: var(--lime);

  color: #000;

  font-size: 23px;

  font-weight: 800;

  box-shadow:
    0 10px 28px
    rgba(0, 0, 0, 0.35);

  transition: 0.25s;
}

.phone-float:hover {
  transform: scale(1.06);
}


/* TABLET */

@media (max-width: 980px) {

  .menu-toggle {
    display: block;
  }

  .menu {
    position: absolute;

    top: 88px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    padding: 15px 24px 24px;

    background: #080808;
  }

  .menu.open {
    display: flex;
  }

  .menu a {
    padding: 14px 0;

    border-bottom:
      1px solid
      rgba(255, 255, 255, 0.07);
  }

  .hero-content {
    grid-template-columns: 1fr;

    gap: 35px;
  }

  .hero-card {
    max-width: 580px;
  }

  .benefits-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }

  .modality-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .section-heading,
  .cta-inner {
    align-items: flex-start;

    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns:
      1fr 1fr;
  }

}


/* CELULAR */

@media (max-width: 650px) {

  .container {
    width:
      min(
        calc(100% - 32px),
        1180px
      );
  }

  .nav {
    height: 78px;
  }

  .menu {
    top: 78px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .hero {
    min-height: auto;

    padding:
      150px 0 90px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    gap: 18px;

    flex-wrap: wrap;
  }

  .benefits-grid,
  .modality-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 78px 0;
  }

  .about-visual {
    height: 360px;
  }

  .visual-box {
    width: 85%;

    padding: 28px;
  }

  .section-copy h2,
  .section-heading h2,
  .cta h2 {
    font-size: 44px;
  }

}