/* ==================== GLOBAL ==================== */

@font-face {
  font-family: "p2ALaNy060gO";
  src:
    url("../p2ALaNy060gO/l-i4OBqLY7T641.woff2") format("woff2"),
    url("../p2ALaNy060gO/l-i4OBqLY7T641.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "p2ALaNy060gO";
  src:
    url("../p2ALaNy060gO/r-uGp118yy5Fws.woff2") format("woff2"),
    url("../p2ALaNy060gO/r-uGp118yy5Fws.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "p2ALaNy060gO";
  src:
    url("../p2ALaNy060gO/sb-OrOZax64494W.woff2") format("woff2"),
    url("../p2ALaNy060gO/sb-OrOZax64494W.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "p2ALaNy060gO";
  src:
    url("../p2ALaNy060gO/b-n94v0MS6uGSm.woff2") format("woff2"),
    url("../p2ALaNy060gO/b-n94v0MS6uGSm.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "p2ALaNy060gO";
  src:
    url("../p2ALaNy060gO/h-v9uSQ6X9xMx5.woff2") format("woff2"),
    url("../p2ALaNy060gO/h-v9uSQ6X9xMx5.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #191919;
  --text-primary: #ffffff;
  --text-secondary: #7d7eff;
  --primary: #4648ed;
  --primary-hover: #4a5af0;
  --border-soft: rgba(255, 255, 255, 0.08);
  --container-width: 1440px;
  --green: #18c78c;
  /* --container-width: 1200px; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.3s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "p2ALaNy060gO", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.4;
}

body em {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
  /* padding: 0 24px; */
}

/* FONTS */
.instrument-serif-regular-italic {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  font-style: italic;
}

p {
  font-size: 1rem;
  color: var(--text-primary);
}

p strong {
  font-weight: 600;
}

.strong-hightlight {
  color: var(--green) !important;
}

h1 em,
h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-primary);
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "p2ALaNy060gO", sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
h1 {
  font-size: clamp(2.7rem, 5vw, 6.2rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
}

h3 {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2.6vw, 1.8rem);
}

h5 {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
}

h6 {
  font-size: clamp(0.9rem, 1.8vw, 1.25rem);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  gap: 10px;
}

.btn svg {
  transition: 0.2s;
}

.btn-primary:hover svg,
.btn-link:hover svg {
  transform: translateX(3px);
  transition: 0.2s;
}

.btn__icon {
  display: block;
  flex-shrink: 0;
}
.btn__icon_small {
  width: 14px;
  height: 13px;
}
.btn__icon_long {
  width: 25px;
  height: 15px;
}

.btn-primary,
.btn-outline {
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-primary);
  border-radius: 999px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--primary), var(--primary)) padding-box,
    linear-gradient(
        42deg,
        #7d7eff 0%,
        #7d7eff 22%,
        #4b4c99 50%,
        #7d7eff 78%,
        #7d7eff 100%
      )
      border-box;
}

.btn-primary::before,
.btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover {
  /* box-shadow: 0 0 20px rgba(70, 72, 237, 0.4); */
  background:
    linear-gradient(var(--primary-hover), var(--primary-hover)) padding-box,
    linear-gradient(
        42deg,
        #7d7eff 0%,
        #7d7eff 22%,
        #4b4c99 50%,
        #7d7eff 78%,
        #7d7eff 100%
      )
      border-box;
}

.btn-primary:hover::before,
.btn-outline:hover::before {
  transform: translateX(100%);
}

.btn-outline {
  /* border: 1px solid var(--border-soft); */
  color: var(--text-primary);
  background: transparent;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(
        325deg,
        #ffffff11 0%,
        #ffffff11 22%,
        #ffffffcb 50%,
        #ffffff11 78%,
        #ffffff11 100%
      )
      border-box;
}

.btn-link {
  color: var(--text-primary);
  padding: 0;
  height: auto;
  letter-spacing: 2.5px;
}

/* MENU */
@media (min-width: 769px) {
  #menu {
    display: none !important;
  }
}
.hamburger {
  padding: 0 !important;
  margin-top: -5px !important;
  scale: 0.9 !important;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: #fff !important;
  width: 30px !important;
  height: 3px !important;
}
.js-MenuChef {
  background-color: #252525fc !important;
}
.MenuChefOpen--dir--right,
.MenuChefOpen,
.MenuChef-close {
  right: 0 !important;
}
.MenuChef-close {
  top: 55px !important;
  right: 20px !important;
}
.MenuChefOpen.is-active,
.is-active.MenuChef-close {
  /* position: absolute !important; */
  position: fixed !important;
  top: 55px;
  right: 12px !important;
}
.hamburger-box {
  width: 30px !important;
}
.MenuChef-wrapper {
  vertical-align: top !important;
}
.MenuChef-links {
  padding-top: 110px !important;
  color: var(--text-primary) !important;
}
.MenuChef-links-link {
  color: var(--text-primary) !important;
  font-family: "p2ALaNy060gO", sans-serif !important;
}

/* RESPOSIVE */
@media (max-width: 600px) {
  h1 {
    font-size: clamp(2rem, 6vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }

  h3 {
    font-size: clamp(1.3rem, 4.2vw, 1.8rem);
  }

  h4 {
    font-size: clamp(1.1rem, 3.6vw, 1.5rem);
  }

  h5 {
    font-size: clamp(0.95rem, 3vw, 1.3rem);
  }

  h6 {
    font-size: clamp(0.85rem, 2.6vw, 1.1rem);
  }
}

/* IMG */
.hero-images-bg__img1.img1-book-a-call {
  width: 641px;
  /* bottom: -170px;
  left: -60px; */
  bottom: -95px;
  left: calc(50% - 26.5%);
  transform: rotate(8deg);
}
@media (max-width: 600px) {
  .hero-images-bg__img1.img1-book-a-call {
    width: 80%;
    bottom: -70px;
    left: calc(50% - 40%);
  }
}




/* ==================== CONVERSION ==================== */

.conversion-cta-section {
  padding: 120px 0;
  overflow: hidden;
}

.conversion-cta-container {
  width: min(100%, 1300px);
  margin: 0 auto;
  padding: 0 24px;
}

.conversion-cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}

/* VISUAL */
.conversion-cta-visual {
  position: relative;
  height: 520px;
}

.conversion-cta-image {
  position: absolute;
  overflow: hidden;
}

.conversion-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MAIN */
.conversion-cta-image--main {
  width: 300px;
  height: 480px;
  border-radius: 240px;
  left: 160px;
  top: 20px;
  z-index: 1;
}

/* TOP */
.conversion-cta-image--top {
  width: 125px;
  height: 202px;
  border-radius: 110px;
  right: 40px;
  top: 0;
  z-index: 3;
}

/* LEFT */
.conversion-cta-image--left {
  width: 120px;
  height: 202px;
  border-radius: 110px;
  left: 0;
  top: 110px;
  z-index: 1;
}

/* BOTTOM */
.conversion-cta-image--bottom {
  width: 156px;
  height: 270px;
  border-radius: 140px;
  left: 60px;
  bottom: 0;
  z-index: 1;
}

/* CONTENT */
.conversion-cta-content {
  max-width: 560px;
}

.conversion-cta-title {
  margin: 0 0 24px;
  text-transform: uppercase;
  line-height: 0.95;
}

.conversion-cta-description {
  margin: 0 0 32px;
  line-height: 1.4;
  max-width: 420px;
}

.conversion-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-radius: 999px;
  text-decoration: none;
}

@media (max-width: 767px) {
  .conversion-cta-layout {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }
  .conversion-cta-section {
    padding: 0;
  }
  .conversion-cta-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 100%;
    margin: 0 auto;
  }

  .conversion-cta-image {
    position: relative; /* remove absolute */
  }

  .conversion-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* MAIN (centro) */
  .conversion-cta-image--main {
    width: 200px;
    height: 320px;
    margin-bottom: -200px;
    border-radius: 180px;
    transform: translateX(-100px);
    z-index: 2;
  }

  /* TOP (direita levemente sobreposta) */
  .conversion-cta-image--top {
    width: 90px;
    height: 140px;
    border-radius: 90px;
    transform: translateY(-20px) translateX(-50px);
    z-index: 3;
  }

  /* LEFT (leve overlap lateral) */
  .conversion-cta-image--left {
    margin-top: -120px;
    width: 90px;
    height: 140px;
    border-radius: 90px;
    transform: translateX(-70px) translateY(-40px);
    z-index: 1;
  }

  /* BOTTOM (sobrepondo base da principal) */
  .conversion-cta-image--bottom {
    width: 110px;
    height: 180px;
    border-radius: 100px;
    transform: translateX(-30px);
    z-index: 1;
  }

  /* CONTENT */
  .conversion-cta-content {
    text-align: center;
    max-width: 100%;
  }

  .conversion-cta-description {
    max-width: 100%;
  }

  .conversion-cta-button {
    width: 100%;
    max-width: 320px;
  }
}





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

.site-footer {
  /* padding: 96px 0 64px; */
  /* min-height: 668px; */
  padding: 96px 0;
  border-top: 1px solid #353535;
  /* max-width: var(--container-width); */
  /* margin: 0 auto; */
  /* background-color: #3535352b; */
}

.site-footer .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  text-align: center;
}

.footer-brand {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.footer-brand__logo img {
  width: 200px;
  height: auto;
}

.footer-brand__name {
  margin: 0;
}

.footer-brand__address {
  font-style: normal;
  line-height: 1.5;
  font-size: 0.750rem;
}

.footer-brand__registered,
.footer-brand__copyright {
  font-size: 0.750rem;
  opacity: 0.85;
}

.footer-brand__registered {
    display: flex;
        justify-content: center;
    align-items: center;
}
.footer-brand__registered img {
    width: 20px;
    margin-left: 6px;
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav__list a {
  text-decoration: none;
  white-space: nowrap;
  color: #fff;
}

.footer-nav__list a:hover {
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  justify-content: center;
}

.footer-social__link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-social__link svg {
    fill: #fff;
    width: 22px;
}

.footer-social__link svg:hover {
  fill: var(--text-secondary);
}

.footer-legal {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-legal p {
  font-size: 0.750rem;
}

.footer-legal p a {
  color: var(--text-primary);
}

@media (max-width: 768px) {
  .site-footer {
    padding: 72px 0 128px;
  }

  .footer-nav__list {
    gap: 18px;
  }
}


.icons-svg-site {
  display: none;
}





/* ==================== growth-model ==================== */

.growth-model-section {
  padding: 0px 0;
  overflow: hidden;
}

.growth-model-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 24px;
}

.growth-model-header {
  margin-bottom: 64px;
}

.growth-model-heading {
  margin: 0;
  max-width: 300px;
  text-transform: uppercase;
}

.growth-model-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 76px;
  row-gap: 72px;
  align-items: start;
}

.growth-model-card {
  position: relative;
}

.growth-model-card__inner {
  position: relative;
  width: 100%;
  background-color: #252323;
  background-image: url("../../images/growth/growth-model-step-bg.webp");
  background-size: cover;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 56px 58px 56px 58px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.growth-model-card__content {
  position: relative;
  z-index: 2;
}

.growth-model-card__title {
}

.growth-model-card__description {
  margin: 0;
  max-width: 260px;
}

.growth-model-card__avatar-group {
  position: absolute;
  right: 14px;
  bottom: 6px;
  width: min(100%, 120px);
  height: min(100%, 120px);
  z-index: 3;
}

.growth-model-card__avatar-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.growth-model-card__avatar {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  object-fit: cover;
}

/* Horizontal connectors */
.growth-model-card--1::after,
.growth-model-card--2::after,
.growth-model-card--4::after,
.growth-model-card--5::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -72px;
  width: 68px;
  border-top: 1px dashed;
  opacity: 0.5;
  transform: translateY(-50%);
}

/* Vertical connector between 3 and 6 */
.growth-model-card--3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -60px;
  height: 46px;
  border-left: 1px dashed;
  opacity: 0.5;
  transform: translateX(-50%);
}

.growth-model-card--6::after {
  content: none;
}

.growth-model-footer {
  display: inline-block;
  margin: 64px 0;
}

.growth-model-footer .btn {
  margin: 32px 0;
}

@media (max-width: 1180px) {
  .growth-model-grid {
    column-gap: 40px;
    row-gap: 48px;
  }

  .growth-model-card--1::after,
  .growth-model-card--2::after,
  .growth-model-card--4::after,
  .growth-model-card--5::after {
    right: -28px;
    width: 34px;
  }
}

@media (max-width: 991px) {
  .growth-model-section {
    padding: 80px 0;
  }

  .growth-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 36px;
    row-gap: 40px;
  }

  .growth-model-card__inner {
    max-width: 430px;
    margin: 0 auto;
  }

  .growth-model-card--1::after,
  .growth-model-card--3::after,
  .growth-model-card--5::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    left: auto;
    bottom: auto;
    width: 24px;
    height: auto;
    border-top: 1px dashed;
    border-left: none;
    opacity: 0.5;
    transform: translateY(-50%);
  }

  .growth-model-card--2::after,
  .growth-model-card--4::after,
  .growth-model-card--6::after {
    content: none;
  }
}

@media (max-width: 767px) {
  .growth-model-section {
    padding: 0;
  }

  .growth-model-container {
    padding: 0 20px;
  }

  .growth-model-header {
    margin-bottom: 36px;
  }

  .growth-model-grid {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .growth-model-card__inner {
    max-width: 420px;
    margin: 0 auto;
    padding: 42px;
  }

  .growth-model-card__content {
    max-width: 74%;
  }

  .growth-model-card__avatar-group {
    width: 104px;
    height: 104px;
    right: 14px;
    bottom: 8px;
  }

  .growth-model-card__avatar {
    width: 66px;
    height: 66px;
    right: 9px;
    bottom: 9px;
  }

  .growth-model-card::after {
    content: none !important;
  }
}



/* ==================== HERO ==================== */
.site-header {
  background-color: var(--bg-dark);
  background: url("../../images/growth/bg-hero.webp") no-repeat bottom center;
  background-size: cover;
  padding-top: 40px;
  min-height: 100lvh;
  position: relative;
  overflow: hidden;
}
.site-header .container {
  background: url(../../images/growth/hero-circle.webp) no-repeat center 570px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 5;
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
}

.logo img {
  height: 70px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 42px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-secondary);
}

@media (min-width: 769px) {
  .nav-link-mobile {
    display: none;
  }
}

@media (max-width: 768px) {
  .btn-nav-login,
  .btn-nav-call {
    display: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* HERO SECTION */
.hero {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 0 72px;
  text-align: center;
}

.hero h1 {
  max-width: 1080px;
  margin: 0 auto 28px;
  z-index: 4;
  line-height: 5rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.hero-subtitle {
  max-width: 860px;
  margin: 0 auto 34px;
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.45;
  z-index: 4;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 4;
}

/* FLOATING PEOPLE */
.hero-people {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-person {
  position: absolute;
}

.hero-person__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-person__status {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #18c78c;
  border: 2px solid #111214;
}

/* posições desktop */
.hero-person--top-left {
  top: 72px;
  left: 88px;
  width: 58px;
  height: 58px;
}

.hero-person--top-left .hero-person__image {
  border-radius: 50%;
}

.hero-person--left-mid {
  top: 338px;
  left: 46px;
  width: 44px;
  height: 44px;
}

.hero-person--left-mid .hero-person__image {
  border-radius: 50%;
}

.hero-person--left-bottom {
  top: 438px;
  left: 232px;
  width: 64px;
  height: 64px;
}

.hero-person--left-bottom .hero-person__image {
  border-radius: 50%;
}

.hero-person--top-right {
  top: 132px;
  right: 126px;
  width: 56px;
  height: 56px;
}

.hero-person--top-right .hero-person__image {
  border-radius: 50%;
}

.hero-person--right-mid {
  top: 468px;
  right: 200px;
  width: 64px;
  height: 64px;
}

.hero-person--right-mid .hero-person__image {
  border-radius: 50%;
}

.hero-person--right-bottom {
  top: 610px;
  right: 72px;
  width: 52px;
  height: 52px;
}

.hero-person--right-bottom .hero-person__image {
  border-radius: 50%;
}

/* CIRCLE IMAGE */
.hero-ring-wrap {
  position: absolute;
  left: 50%;
  bottom: -32px;
  transform: translateX(-50%);
  width: min(100%, 880px);
  z-index: 1;
  pointer-events: none;
}

.hero-ring {
  display: block;
  width: 100%;
  height: auto;
}

/* REVENUE CARD */
.client-revenues {
  margin-top: min(12vw, 72px);
  display: flex;
  flex-direction: column;
  text-align: left;
  z-index: 3;
  min-height: 162px;
  /* width: min(100%, 448px); */
  width: min(100%, 360px);
  /* backdrop-filter: blur(10px); */
  /* -webkit-backdrop-filter: blur(10px); */
  flex: 0 1 calc((100% - 36px) / 3);
  position: relative;
  border-radius: 30px;
  padding: 30px;
  gap: 5px;
  overflow: hidden;
  background: url('../../images/growth/bg-box-numbers.webp');
  /* border: 1px solid transparent;
  background:
    url(../../images/growth/bg-glass.webp) no-repeat left bottom,
    linear-gradient(var(--bg-dark), #191919e0) padding-box,
    linear-gradient(325deg, #ffffff11 0%, #ffffff11 22%, #ffffffcb 50%, #ffffff11 78%, #ffffff11 100%) border-box; */
}


.client-revenues1::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -24px;
  width: 180px;
  height: 70px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0.12) 36%,
    transparent 72%
  );
  filter: blur(12px);
  pointer-events: none;
}

.client-revenues-title {
  margin: 0 0 5px;
  line-height: 0.9;
  text-transform: initial;
  font-weight: 700;
}

.client-revenues-description {
  display: block;
  font-size: 1.2rem;
  line-height: 1.18;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero {
    padding-bottom: 310px;
  }

  .hero h1 {
    max-width: 860px;
  }

  .hero-ring-wrap {
    width: min(100%, 760px);
    bottom: -220px;
  }

  .hero-person--top-left {
    left: 30px;
  }

  .hero-person--top-right {
    right: 48px;
  }

  .hero-person--right-mid {
    right: 130px;
  }

  .client-revenues {
    left: 10px;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 56px 0 250px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 7vw, 4.6rem);
  }

  .hero-people {
    display: none;
  }

  .hero-ring-wrap {
    width: min(100%, 640px);
    bottom: -170px;
  }

  .client-revenues {
    position: relative;
    left: auto;
    bottom: auto;
    margin: 42px auto 0;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: initial;
    padding-top: 24px;
  }

  .hero {
    padding: 28px 0 155px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 2.2rem;
    line-height: 0.98;
  }

  .hero-subtitle {
    margin-bottom: 24px;
    padding: 0 10px;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-cta {
    gap: 16px;
  }

  .hero-ring-wrap {
    width: 128%;
    bottom: -108px;
  }

  .client-revenues {
    width: 100%;
    max-width: 270px;
    min-height: auto;
    padding: 24px 22px;
  }

  .client-revenues-description {
    max-width: 100%;
  }
}




/* ==================== MENU ==================== */

.MenuChef-links-link {
  font-weight: 600 !important;
  font-style: normal !important;
  line-height: 1.4 !important;
  text-transform: initial !important;
  font-size: 0.95rem !important;
}

.MenuChef-links-link:nth-last-child(2),
.MenuChef-links-link:nth-last-child(1) {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 999px;
}

.MenuChef-links-link:nth-last-child(2) img,
.MenuChef-links-link:nth-last-child(1) img {
  width: 25px;
  height: 25px;
}

.MenuChef-links-link:nth-last-child(2),
.MenuChef-links-link:nth-last-child(1) {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  padding: 10px 30px;
  position: relative;
  overflow: hidden;
  border: none;
  border-radius: 999px;
}

.MenuChef-links-link:nth-last-child(2) {
  margin-bottom: 10px;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid transparent;
  background:
    linear-gradient(#252525, #252525) padding-box,
    linear-gradient(
        325deg,
        #ffffff11 0%,
        #ffffff11 22%,
        #ffffffcb 50%,
        #ffffff11 78%,
        #ffffff11 100%
      )
      border-box;
}

.MenuChef-links-link:nth-last-child(1) {
  background-color: var(--primary);
  color: var(--text-primary);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--primary), var(--primary)) padding-box,
    linear-gradient(
        42deg,
        #7d7eff 0%,
        #7d7eff 22%,
        #4b4c99 50%,
        #7d7eff 78%,
        #7d7eff 100%
      )
      border-box;
}




/* ==================== PRICING ==================== */

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.pricing {
  padding: 110px 0;
}

.pricing__header {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 52px;
}

.pricing__title {
  margin: 0 0 14px;
  line-height: 1.12;
}

.pricing__subtitle {
  margin: 0 auto;
  max-width: 720px;
}

.pricing__panel {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12); /* optional */
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .pricing__panel {
    max-width: 1125px;
    background: url(../../images/growth/growth/bg-price-top.webp) no-repeat center top;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.pricing__grid.pricing__grid--4columns {
  grid-template-columns: repeat(4, 1fr);
}

/* =========================
   PLAN
   ========================= */
.plan {
  padding: 5px 34px 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 720px;
}

/* NEW PLANS */
.plan-new {
  padding: 5px 20px 20px !important;
  font-size: 0.9rem !important;
}
.plan-new .plan__list--mlnone {
  margin-bottom: 25px;
}
.plan-new .plan__list--mlnone li {
  padding-left: 0px;
  /* font-size: 0.8rem; */
}
.plan-new .plan__list--mlnone li strong {
  font-weight: 600;
}
.plan-new .plan__list,
.plan-new .plan__sublist {
  gap: 8px;
}

.plan-new .plan__view-full-list {
  display: block;
  text-align: center;
  color: var(--text-primary);
  text-decoration: none;
  /* font-weight: 600; */
  padding: 6px 16px 5px 16px;
  border: 1px solid #ffffff3b;
  color: var(--text-primary);
  border-radius: 30px;
  transition: 0.3s;
}
.plan-new .plan__view-full-list:hover {
  border: 1px solid #ffffff87;
  transition: 0.3s;
}

.plan:last-child {
  border-right: 0;
}

@media (max-width: 600px) {
  .plan {
    /* border-bottom: 0 !important; */
  }
  .plan.plan-starter,
  .plan.plan-prodev,
  .plan.plan-video,
  .plan.plan-growth,
  .plan.plan-ads,
  .plan.plan-ecom,
  .plan.plan-mkt,
  .plan.plan-full,
  .plan.plan-custom {
    background: url(../../images/growth/bg-price-top.webp) no-repeat center top;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
  }
  .plan.plan-new {
    padding-bottom: 50px !important;
  }
}

.two-tasks {
  position: relative;
}
.two-tasks:before {
  content: "";
  position: absolute;
  z-index: 99999999;
  top: 0;
  right: -1px;
  width: 125px;
  height: 90px;
  /* content: "★ 2 Active Tasks";
    background: #356668;
    background: linear-gradient(180deg,rgba(53, 102, 104, 1) 0%, rgba(31, 56, 75, 1) 100%);
    background-color: white;
    padding: 9px 0 5px 0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    transform: rotate(45deg);
    outline: 2px solid #191919; */
}
.two-tasks.two-tasks--en:before {
  background: url("../../images/growth/flag-2-active-tasks.webp");
}
.two-tasks.two-tasks--br:before {
  background: url("../../images/growth/flag-2-tarefas-por-vez.webp");
}
.two-tasks.limited-seats--en:before {
  background: url("../../images/growth/flag-limited-seats.webp");
}
.two-tasks.limited-seats--br:before {
  background: url("../../images/growth/flag-vagas-limitadas.webp");
}

.plan__head {
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 72px; */
  min-height: 85px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0 -34px 22px;
  padding: 0 34px;
}

.plan-ads .plan__head,
.plan-ecom .plan__head,
.plan-mkt .plan__head,
.plan-full .plan__head,
.plan-custom .plan__head {
  margin: 0 -20px 20px !important;
}

.plan__name {
  margin: 0;
  letter-spacing: 3px;
  font-size: 0.85rem;
  text-transform: uppercase;
  text-align: center;
}

.plan__price {
  text-align: center;
  padding: 16px 0 18px;
}

.plan__from {
  opacity: 0.75;
  text-decoration: line-through;
  margin-bottom: 8px;
}

.plan__value {
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1;
  font-weight: 600;
}

.plan__cycle {
  margin-top: 6px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.75;
  font-size: 0.85rem;
}

.plan__description {
  margin-top: 25px;
  margin-bottom: -15px;
  font-size: 0.8rem;
  opacity: 0.75;
}

/* =========================
   LISTS
   ========================= */
.plan__list,
.plan__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  padding-top: 10px;
}

.plan__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 22px;
  padding-left: 30px;
}
.plan__item--hightlight {
  color: #17c389;
}

.plan__item::before {
  width: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  justify-content: center;
  font-weight: 700;
  content: "";
  color: var(--green);
  height: 100%;
}

.plan__item--yes::before {
  content: "✓";
}
.plan__item--no::before {
  content: "✕";
}

.plan__item--list {
  list-style: inside;
  list-style-type: none;
  padding: 3px 0;
  font-size: 0.85rem;
}

/* =========================
   TOGGLES (Design / Dev / Video / And More)
   ========================= */
.plan__expand {
  margin-top: 14px;
}

.plan__expand--main {
  margin-top: 22px;
}

.plan__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;

  padding: 0;
  min-height: 22px;

  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;

  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.plan__toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.25);
  outline-offset: 6px;
  border-radius: 10px;
}

.plan__toggleIcon {
  width: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  justify-content: center;
  font-weight: 700;
}

.plan__toggleLabel {
  font-weight: 600;
}

.plan__toggleLabel--dash::before {
  content: "";
  font-weight: 600;
}

/* =========================
   PANELS
   ========================= */
.plan__panelMore {
  /* padding-top: 10px; */
  overflow: hidden;
  max-height: 0;
  opacity: 0;

  transition:
    max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease;

  will-change: max-height, opacity;
}

.plan__panelMore--main {
  /* padding-top: 12px; */
  transition-duration: 0.5s;
}

/* aberto */
.plan__panelMore.is-open {
  opacity: 1;
}
.plan__panelMore.is-open .plan__sublist {
  /* padding-left: 30px; */
}

/* =========================
   CTA
   ========================= */
.plan__cta {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 16px;
  justify-items: center;
}

.plan__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(320px, 100%);
  height: 52px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.18); /* opcional */
  white-space: nowrap;
}

.plan__link {
  text-decoration: none;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-top: 12px;
  margin-bottom: 20px;
  transform: translateY(0);
  transition: transform ease 1s;
}
.plan__link:hover {
  transform: translateY(-4px);
}
/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px) {
  .pricing {
    padding: 88px 0 0 0;
  }

  .pricing__panel {
    /* border-radius: 20px; */
  }

  .pricing__grid,
  .pricing__grid.pricing__grid--4columns {
    grid-template-columns: 1fr;
  }

  .plan {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: unset;
  }

  .plan:last-child {
    border-bottom: 0;
  }

  .plan__head {
    margin: 0 -34px 18px;
  }
}

@media (max-width: 560px) {
  .plan {
    padding: 5px 22px 56px 22px;
  }

  .plan__head {
    margin: 0 -22px 16px;
    padding: 0 22px;
  }

  .plan__btn {
    height: 50px;
  }
}

.pricing__disclaimer {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.pricing__disclaimer > small {
  font-style: italic;
  font-size: 10px;
  width: 60%;
  padding: 20px;
  margin-top: 20px;
  line-height: 18px;
  text-align: center;
}
@media (max-width: 600px) {
  .pricing__disclaimer > small {
    width: 100%;
    padding: 20px 0;
  }

  .plan.plan-new {
    padding-bottom: 0;
  }
}

.plan.plan-growth .plan__description {
  margin-top: -10px;
  opacity: 1;
  font-weight: 600;
  font-size: 1rem;
}
.plan.plan-growth .plan__description2 {
  margin-top: 26px;
}
.plan.plan-growth .plan__price__cta {
  margin-top: 30px;
  margin-bottom: -10px;
}




/* ==================== PROBLEM ==================== */

.growth-system-section {
  padding: 100px 0;
}

.growth-system-container {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: 0 24px;
}

.growth-system-layout {
  display: grid;
  grid-template-columns: 0.6fr 1.2fr;
  gap: 54px;
  align-items: start;
}

.growth-system-column {
  display: flex;
  flex-direction: column;
}

.growth-system-column--left {
  /* width: min(100%, 530px); */
}

.growth-system-column--right {
}

.section-heading-group {
  gap: 10px;
  margin-bottom: 54px;
}

.section-title {
  text-transform: uppercase;
}

.section-description {
  margin: 10px 0 0;
  max-width: 620px;
}

.problem-card-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card,
.solution-card {
  flex: 0 1 calc((100% - 36px) / 3);
  position: relative;
  border-radius: 30px;
  padding: 30px;
  background: url("../../images/growth/bg-glass.webp") no-repeat left bottom;
  /* background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)); */
  /* border: 1px solid rgba(255,255,255,0.10); */
  gap: 20px;
  overflow: hidden;

  background: transparent;
  border: 1px solid transparent;
  background:
    url("../../images/growth/bg-glass.webp") no-repeat left bottom,
    linear-gradient(var(--bg-dark), var(--bg-dark)) padding-box,
    linear-gradient(
        325deg,
        #ffffff11 0%,
        #ffffff11 22%,
        #ffffffcb 50%,
        #ffffff11 78%,
        #ffffff11 100%
      )
      border-box;
}

.problem-card {
  min-height: 100px;
  display: flex;
  align-items: center;
  padding: 24px 36px;
}

.problem-card__label {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  display: inline-block;
  text-transform: uppercase;
}

.result-block__title {
  text-transform: uppercase;
}

.result-block__text {
  margin: 0;
  text-transform: uppercase;
  max-width: 320px;
}

.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.solution-card {
  padding: 54px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.solution-card__number {
  display: inline-block;
  font-weight: 300;
}

.solution-card__title {
  margin: 0;
  max-width: 260px;
  font-weight: 700;
}

.solution-bottom-group {
  display: inline-block;
  margin: 32px 0;
  gap: 32px;
}

.solution-bottom-group .btn {
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .growth-system-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .solution-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .growth-system-section {
    padding: 56px 0;
  }

  .growth-system-container {
    padding: 0 20px;
  }

  .section-description {
    margin: 0;
  }
  .section-heading-group {
    margin-bottom: 16px;
  }
  .problem-card-list {
    margin-bottom: 32px;
  }
  .problem-card {
    min-height: 88px;
    padding: 20px 24px;
  }

  .solution-card-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 180px;
    padding: 24px;
  }
}
