@import url("./variables.css");

/* ==========================================================
   iBen Site
   Arquivo: style.css
   Base global + componentes iniciais
   ========================================================== */

/* Reset */

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

/* Layout */

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-xxl);
}

.section--dark {
  background: var(--bg-body);
  color: var(--text-primary);
}

.section--navy {
  background: var(--color-navy);
  color: var(--text-primary);
}

.section--light {
  background: var(--color-light);
  color: var(--text-dark);
}

/* Tipografia */

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  font-size: var(--h1);
  font-weight: 800;
}

h2 {
  font-size: var(--h2);
  font-weight: 800;
}

h3 {
  font-size: var(--h3);
  font-weight: 700;
}

p {
  color: var(--text-soft);
}

.text-accent {
  color: var(--color-green);
}

/* Componentes base */

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-lg);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-green);
}

/* Botões */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform var(--transition-default),
    background var(--transition-default),
    border-color var(--transition-default),
    color var(--transition-default),
    box-shadow var(--transition-default);
}

.button--primary {
  background: var(--color-green);
  color: var(--color-black);
  box-shadow: 0 18px 45px rgba(0, 214, 49, 0.2);
}

.button--primary:hover {
  background: var(--color-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 214, 49, 0.26);
}

.button--secondary {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.button--secondary:hover {
  border-color: var(--border-green);
  color: var(--color-green);
  transform: translateY(-3px);
}

/* Cards base */

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.card-hover {
  transition: transform var(--transition-default),
    border-color var(--transition-default),
    box-shadow var(--transition-default);
}

.card-hover:hover {
  transform: translateY(-8px);
  border-color: var(--border-green);
  box-shadow: var(--shadow-card);
}

/* Utilitários */

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ==========================================================
   Header
   ========================================================== */

   .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(7, 26, 43, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
  }
  
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  
  .site-header__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  
  .site-header__logo {
    width: 118px;
    height: auto;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  
  .site-nav a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: width var(--transition-default);
  }
  
  .site-nav a:hover {
    color: var(--color-white);
  }
  
  .site-nav a:hover::after {
    width: 100%;
  }
  
  .site-header__cta {
    min-height: 44px;
    padding-inline: 22px;
    font-size: 0.86rem;
  }
  
  .mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  
  .mobile-menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 10px;
    background: var(--color-white);
  }
  
  .mobile-menu {
    display: none;
  }
  
  /* ==========================================================
     Hero
     ========================================================== */
  
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 118px 0 84px;
    background: var(--bg-body);
  }
  
  .hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65% center;
    opacity: 0.72;
  }
  
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(7, 26, 43, 0.98) 0%, rgba(7, 26, 43, 0.78) 38%, rgba(7, 26, 43, 0.24) 100%),
      linear-gradient(180deg, rgba(7, 26, 43, 0.25) 0%, rgba(7, 26, 43, 0.94) 100%);
  }
  
  .hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    align-items: end;
    gap: 64px;
  }
  
  .hero__content {
    max-width: 690px;
    padding-top: 30px;
  }
  
  .hero__content h1 {
    margin-bottom: 26px;
    max-width: 760px;
  }
  
  .hero__content h1 span {
    display: block;
  }
  
  .hero__content p {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.84);
  }
  
  .hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .hero__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .hero-choice {
    padding: 30px;
  }
  
  .hero-choice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 999px;
    border: 1px solid var(--border-green);
    color: var(--color-green);
    font-size: 1.55rem;
  }
  
  .hero-choice h2 {
    margin-bottom: 12px;
    font-size: 1.28rem;
    letter-spacing: -0.03em;
  }
  
  .hero-choice p {
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 0.98rem;
  }
  
  .hero-choice a {
    color: var(--color-green);
    font-weight: 800;
    font-size: 0.94rem;
  }
  
  /* ==========================================================
     Diferenciais
     ========================================================== */
  
  .differentials {
    position: relative;
    padding-top: 96px;
    padding-bottom: 72px;
  }
  
  .differentials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  
  .differential {
    padding: 38px 32px;
    text-align: center;
    border-right: 1px solid var(--border-light);
  }
  
  .differential:last-child {
    border-right: 0;
  }
  
  .differential__icon {
    margin-bottom: 18px;
    color: var(--color-green);
    font-size: 2.7rem;
    line-height: 1;
  }
  
  .differential h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
  }
  
  .differential p {
    max-width: 240px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.94rem;
  }
  
  /* ==========================================================
     Sobre
     ========================================================== */
  
  .about {
    padding-top: 72px;
  }
  
  .about__grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 64px;
    align-items: center;
  }
  
  .about__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
  }
  
  .about__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 26, 43, 0.18) 100%);
  }
  
  .about__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
  }
  
  .about__content h2 {
    margin-bottom: 24px;
  }
  
  .about__content p {
    max-width: 560px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--text-lg);
  }
  
  .about__content .button {
    margin-top: 14px;
  }
  
  /* ==========================================================
     CTA
     ========================================================== */
  
  .contact-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  
  .contact-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 44px;
  }
  
  .contact-cta__box > div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
    align-items: center;
  }
  
  .contact-cta__icon {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid var(--border-green);
    border-radius: var(--radius-md);
    color: var(--color-green);
    font-size: 2rem;
  }
  
  .contact-cta h2 {
    margin-bottom: 4px;
    font-size: 1.45rem;
  }
  
  .contact-cta p {
    color: var(--text-muted);
  }
  
  /* ==========================================================
     Footer
     ========================================================== */
  
  .footer {
    padding: 54px 0 28px;
    background: var(--color-navy-dark);
    border-top: 1px solid var(--border-light);
  }
  
  .footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 54px;
  }
  
  .footer__logo {
    width: 150px;
    margin-bottom: 18px;
  }
  
  .footer__brand p {
    max-width: 330px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  .footer__social a {
    color: var(--color-green);
    font-weight: 800;
  }
  
  .footer__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer__column h3 {
    margin-bottom: 10px;
    color: var(--color-white);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .footer__column a,
  .footer__column span {
    color: var(--text-muted);
    font-size: 0.92rem;
  }
  
  .footer__column a:hover {
    color: var(--color-green);
  }
  
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
  }
  
  .footer__bottom p,
  .footer__bottom a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
  }
  
  .footer__bottom div {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .footer__bottom a:hover {
    color: var(--color-green);
  }

  /* ==========================================================
   Header states
   ========================================================== */

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 26, 43, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.mobile-menu-button.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-button span {
  transition: transform var(--transition-default), opacity var(--transition-default);
}

/* ==========================================================
   Refinamento visual - Primeira dobra
   ========================================================== */

   .site-header__logo {
    width: 100px;
  }
  
  .hero {
    padding: 104px 0 64px;
  }
  
  .hero__inner {
    gap: 48px;
    align-items: center;
  }
  
  .hero__content {
    padding-top: 0;
  }
  
  .hero__content h1 {
    font-size: clamp(3.2rem, 5.2vw, 5.8rem);
    line-height: 1.05;
    margin-bottom: 22px;
  }
  
  .hero__content p {
    max-width: 620px;
    margin-bottom: 26px;
    font-size: 1.05rem;
  }
  
  .hero__actions {
    margin-top: 4px;
  }
  
  .hero-choice {
    padding: 24px 28px;
  }
  
  .hero-choice__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    font-size: 1.25rem;
  }
  
  .hero-choice h2 {
    font-size: 1.16rem;
  }
  
  .hero-choice p {
    margin-bottom: 14px;
    font-size: 0.94rem;
  }
  
  .hero__cards {
    gap: 14px;
  }
  
  .site-header.is-scrolled .site-header__logo {
    width: 92px;
  }

  /* ==========================================================
   Refinamento final - Hero desktop
   ========================================================== */

.hero {
  min-height: calc(100vh - 0px);
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
}

.hero__content h1 {
  max-width: 720px;
}

.hero-choice {
  min-height: 210px;
}

.hero-choice h2 {
  max-width: 440px;
}

.hero-choice p {
  max-width: 500px;
}

.hero__background img {
  filter: saturate(0.82) contrast(1.04);
}

/* ==========================================================
   Landing page expandida - iBen
   ========================================================== */

   body {
    font-family: var(--font-body);
  }
  
  h1,
  h2,
  h3,
  h4,
  .site-nav a,
  .button {
    font-family: var(--font-title);
  }
  
  /* Redução geral para deixar o site menos agressivo */
  
  .hero__content h1 {
    font-size: clamp(2.65rem, 4.4vw, 4.95rem);
    line-height: 1.06;
    letter-spacing: -0.055em;
  }
  
  .hero__content p {
    max-width: 660px;
    font-size: 1rem;
    line-height: 1.75;
  }
  
  .hero-choice h2 {
    font-size: 1.05rem;
  }
  
  .hero-choice p {
    font-size: 0.9rem;
  }
  
  .section-heading h2,
  .statement h2 {
    font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  }
  
  .section-heading p,
  .statement p {
    max-width: 720px;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-soft);
  }
  
  /* Statement */
  
  .statement {
    padding-top: 84px;
    padding-bottom: 66px;
  }
  
  .statement__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 68px;
    align-items: center;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--border-light);
  }
  
  .statement h2 span {
    display: block;
  }
  
  .statement p {
    margin: 0;
    border-left: 1px solid var(--border-light);
    padding-left: 34px;
  }
  
  /* Paths */
  
  .paths {
    padding-top: 68px;
  }
  
  .paths__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .path-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 0;
    background: var(--bg-body);
  }
  
  .path-card + .path-card {
    border-left: 1px solid var(--border-light);
  }
  
  .path-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .path-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.08);
    opacity: 0.36;
  }
  
  .path-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.48),
      rgba(7, 26, 43, 0.96)
    );
  }
  
  .path-card__content {
    position: relative;
    z-index: 2;
    max-width: 430px;
    padding: 42px;
  }
  
  .path-card__content span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--color-green);
    font-weight: 800;
    font-size: 0.86rem;
  }
  
  .path-card__content h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
  }
  
  .path-card__content p {
    margin-bottom: 22px;
    color: var(--text-soft);
    font-size: 0.95rem;
  }
  
  .path-card__content a {
    color: var(--color-green);
    font-weight: 800;
  }
  
  /* Metrics */
  
  .metrics {
    padding-top: 0;
    padding-bottom: 72px;
  }
  
  .metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
  }
  
  .metrics__grid article {
    padding: 30px 26px;
    text-align: center;
    border-right: 1px solid var(--border-light);
  }
  
  .metrics__grid article:last-child {
    border-right: 0;
  }
  
  .metrics__grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-white);
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
  }
  
  .metrics__grid p {
    max-width: 220px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.88rem;
  }
  
  /* Methodology */
  
  .methodology__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .methodology__grid article {
    padding: 32px 26px;
    background: var(--bg-body);
  }
  
  .methodology__grid span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-green);
    font-weight: 800;
  }
  
  .methodology__grid h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }
  
  .methodology__grid p {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  /* Solutions */
  
  .solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .solution-card {
    padding: 28px;
  }
  
  .solution-card h3 {
    margin-bottom: 12px;
    font-size: 1.08rem;
  }
  
  .solution-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  /* Final CTA */
  
  .final-cta {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy-dark);
  }
  
  .final-cta__background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .final-cta__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% top;
    filter: saturate(0.92) contrast(1.05);
  }
  
  .final-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        90deg,
        rgba(7, 26, 43, 0.95),
        rgba(7, 26, 43, 0.52),
        rgba(7, 26, 43, 0.78)
      ),
      linear-gradient(
        180deg,
        rgba(7, 26, 43, 0.12),
        rgba(7, 26, 43, 0.88)
      );
  }
  
  .final-cta__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    padding: 76px 0;
  }
  
  .final-cta h2 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.4vw, 3.65rem);
  }
  
  .final-cta p {
    max-width: 580px;
    color: var(--text-soft);
    font-size: 1.05rem;
  }
  
  .final-cta__action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  
  .final-cta__action span {
    color: var(--text-soft);
    font-size: 0.9rem;
  }
  
  /* Footer legal */
  
  .footer__bottom p {
    max-width: 780px;
  }

  /* ==========================================================
   Correção de espaçamentos e CTA final
   ========================================================== */

/* Reduz excesso de espaço entre seções */
.statement {
  padding-top: 72px;
  padding-bottom: 40px;
}

.statement__grid {
  padding-bottom: 42px;
}

.paths {
  padding-top: 34px;
  padding-bottom: 64px;
}

.metrics {
  padding-top: 0;
  padding-bottom: 54px;
}

.differentials,
.methodology,
.solutions,
.about {
  padding-top: 76px;
  padding-bottom: 76px;
}

/* Mantém títulos grandes, mas menos agressivos */
.statement h2,
.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2,
.about__content h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

/* Ajuste dos cards de caminhos */
.path-card {
  min-height: 320px;
}

.path-card__content {
  padding: 38px;
}

.path-card__content h3 {
  font-size: 1.35rem;
}

.path-card__content p {
  font-size: 0.92rem;
}

/* Ajuste das métricas */
.metrics__grid article {
  padding: 26px 22px;
}

.metrics__grid span {
  font-size: 1.8rem;
}

/* CTA final corrigido */
.final-cta {
  min-height: 420px;
  margin-top: 24px;
}

.final-cta__background img {
  object-position: center center;
  opacity: 0.88;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.96) 0%,
      rgba(7, 26, 43, 0.78) 42%,
      rgba(7, 26, 43, 0.55) 68%,
      rgba(7, 26, 43, 0.82) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.18) 0%,
      rgba(7, 26, 43, 0.86) 100%
    );
}

.final-cta__content {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  padding: 86px 0;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.final-cta p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

.final-cta__action {
  min-width: 280px;
}

.final-cta__action .button {
  min-width: 270px;
}

.final-cta__action span {
  max-width: 270px;
}

/* Evita aparência de texto duplicado no CTA */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Footer mais compacto e alinhado */
.footer {
  padding-top: 46px;
}

.footer__logo {
  width: 120px;
}

/* ==========================================================
   Refinamento premium - tipografia, imagens e movimento
   ========================================================== */

/* Tipografia menos agressiva */

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

.hero__content h1 {
  font-size: clamp(2.25rem, 3.75vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero__content p {
  max-width: 660px;
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 400;
}

.section-heading h2,
.statement h2 {
  font-size: clamp(1.75rem, 2.65vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2,
.about__content h2,
.final-cta h2 {
  font-size: clamp(1.9rem, 2.85vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 700;
}

.site-nav a,
.button {
  font-weight: 700;
}

p,
.hero-choice p,
.path-card__content p,
.solution-card p,
.methodology__grid p,
.differential p,
.about__content p {
  font-weight: 400;
}

/* Imagens mais vivas, sem comprometer leitura */

.hero__background img {
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
}

.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.92) 0%,
      rgba(7, 26, 43, 0.78) 42%,
      rgba(7, 26, 43, 0.56) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.18) 0%,
      rgba(7, 26, 43, 0.72) 100%
    );
}

.path-card__image img {
  opacity: 0.52;
  filter: saturate(1.05) contrast(1.05);
}

.path-card::after {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 43, 0.42),
    rgba(7, 26, 43, 0.88)
  );
}

.about__image img {
  filter: saturate(1.02) contrast(1.03);
}

.final-cta__background img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.03);
  object-position: center right;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.95) 0%,
      rgba(7, 26, 43, 0.78) 42%,
      rgba(7, 26, 43, 0.46) 70%,
      rgba(7, 26, 43, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.08) 0%,
      rgba(7, 26, 43, 0.78) 100%
    );
}

/* Movimento premium */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Hover mais sofisticado */

.card-hover,
.solution-item,
.differential,
.methodology__grid article,
.metrics__grid article {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.card-hover:hover,
.solution-item:hover,
.differential:hover,
.methodology__grid article:hover,
.metrics__grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 214, 49, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.button {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary:hover {
  box-shadow: 0 18px 45px rgba(0, 214, 49, 0.22);
}

/* Zoom sutil nas imagens de fundo */

.hero__background img,
.final-cta__background img {
  transform: scale(1.02);
  transition: transform 8s ease, filter 0.4s ease;
}

.hero:hover .hero__background img,
.final-cta:hover .final-cta__background img {
  transform: scale(1.055);
}

/* Métricas com visual menos bruto */

.metrics__grid span {
  font-weight: 700;
  letter-spacing: -0.035em;
}

/* ==========================================================
   Refinamento de peso visual - tipografia, header e footer
   ========================================================== */

/* Tipografia geral mais leve */

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

.hero__content h1 {
  font-weight: 600;
  font-size: clamp(2.15rem, 3.45vw, 3.95rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.hero__content .text-accent {
  font-weight: 600;
}

.section-heading h2,
.statement h2,
.about__content h2,
.final-cta h2 {
  font-weight: 600;
  letter-spacing: -0.035em;
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2 {
  font-weight: 600;
}

.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 600;
}

p,
.hero-choice p,
.path-card__content p,
.solution-card p,
.methodology__grid p,
.differential p,
.about__content p,
.footer p,
.footer a,
.footer span {
  font-weight: 400;
}

/* Header mais leve */

.site-header {
  background: rgba(7, 26, 43, 0.88);
  backdrop-filter: blur(18px);
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.site-header__cta {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
}

/* Botões menos agressivos */

.button {
  font-size: 0.9rem;
  font-weight: 600;
}

.button--primary {
  box-shadow: none;
}

/* Cards com títulos menos pesados */

.hero-choice h2 {
  font-size: 1rem;
}

.hero-choice p {
  font-size: 0.88rem;
}

.path-card__content h3 {
  font-size: 1.25rem;
}

.solution-card h3 {
  font-size: 1rem;
}

/* Footer mais discreto e institucional */

.footer {
  background: #061827;
  padding-top: 34px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  gap: 48px;
  padding-bottom: 28px;
}

.footer__logo {
  width: 92px;
  margin-bottom: 16px;
}

.footer__brand p {
  max-width: 280px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(225, 234, 242, 0.62);
}

.footer__column h3 {
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.footer__column a,
.footer__column span,
.footer__social a {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(225, 234, 242, 0.58);
}

.footer__column a:hover,
.footer__social a:hover {
  color: var(--color-green);
}

.footer__bottom {
  min-height: 42px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.footer__bottom p,
.footer__bottom a {
  font-size: 0.68rem;
  color: rgba(225, 234, 242, 0.46);
}

.footer__bottom div {
  gap: 18px;
}

/* ==========================================================
   Ajuste fino premium - fontes mais leves e footer discreto
   ========================================================== */

/* Peso geral mais leve */
h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.hero__content h1,
.section-heading h2,
.statement h2,
.about__content h2,
.final-cta h2,
.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2 {
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* Hero menos agressivo */
.hero__content h1 {
  font-size: clamp(2rem, 3.1vw, 3.55rem);
  line-height: 1.16;
}

.hero__content .text-accent {
  font-weight: 500;
}

.hero__content p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 620px;
}

/* Títulos internos mais elegantes */
.section-heading h2,
.statement h2 {
  font-size: clamp(1.6rem, 2.35vw, 2.45rem);
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2,
.about__content h2,
.final-cta h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.7rem);
}

/* Cards mais leves */
.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 500;
}

.hero-choice h2 {
  font-size: 0.95rem;
}

.hero-choice p {
  font-size: 0.84rem;
  line-height: 1.65;
}

.path-card__content h3 {
  font-size: 1.15rem;
}

.path-card__content p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-size: 0.96rem;
}

/* Menu superior mais normal */
.site-nav a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.site-header__cta {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.78rem 1.18rem;
}

/* Botões mais elegantes */
.button {
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.9rem 1.25rem;
}

/* CTA final mais controlado */
.final-cta {
  min-height: 360px;
}

.final-cta__content {
  padding: 64px 0;
}

.final-cta h2 {
  max-width: 670px;
  font-size: clamp(1.75rem, 2.65vw, 2.9rem);
  line-height: 1.12;
}

.final-cta p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Footer mais escuro, menor e menos chamativo */
.footer {
  background: #041321;
  padding-top: 26px;
}

.footer__grid {
  padding-bottom: 22px;
  gap: 40px;
}

.footer__logo {
  width: 78px;
  margin-bottom: 12px;
}

.footer__brand p {
  max-width: 260px;
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(225, 234, 242, 0.46);
}

.footer__column h3 {
  margin-bottom: 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.62);
}

.footer__column a,
.footer__column span,
.footer__social a {
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(225, 234, 242, 0.42);
}

.footer__social a {
  font-weight: 500;
}

.footer__bottom {
  min-height: 34px;
  padding: 9px 0;
  background: #030f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.footer__bottom p,
.footer__bottom a {
  font-size: 0.6rem;
  color: rgba(225, 234, 242, 0.36);
}

.footer__bottom div {
  gap: 14px;
}

/* ==========================================================
   Ajuste definitivo - tipografia leve, header e footer discreto
   ========================================================== */

/* Tipografia principal mais sofisticada */
.hero__content h1 {
  font-size: clamp(1.95rem, 2.85vw, 3.35rem) !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.025em !important;
}

.hero__content .text-accent {
  font-weight: 400 !important;
}

.hero__content p {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
  max-width: 620px !important;
}

/* Títulos internos menos agressivos */
.section-heading h2,
.statement h2,
.about__content h2,
.final-cta h2,
.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.4rem) !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
}

/* Subtítulos e cards */
.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 500 !important;
}

.hero-choice h2 {
  font-size: 0.98rem !important;
}

.hero-choice p {
  font-size: 0.84rem !important;
  line-height: 1.65 !important;
}

.path-card__content h3 {
  font-size: 1.08rem !important;
}

.path-card__content p {
  font-size: 0.84rem !important;
  line-height: 1.62 !important;
}

.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-size: 0.95rem !important;
}

.solution-card p,
.methodology__grid p,
.differential p {
  font-size: 0.82rem !important;
  line-height: 1.62 !important;
}

/* Header superior mais leve */
.site-header {
  background: rgba(7, 26, 43, 0.9) !important;
}

.site-nav a {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  opacity: 0.84 !important;
}

.site-nav a:hover {
  opacity: 1 !important;
}

.site-header__cta {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  padding: 0.78rem 1.18rem !important;
}

/* Botões menos pesados */
.button {
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  padding: 0.88rem 1.25rem !important;
}

.button--primary {
  box-shadow: none !important;
}

/* CTA final mais controlado */
.final-cta {
  min-height: 340px !important;
}

.final-cta__content {
  padding: 58px 0 !important;
}

.final-cta h2 {
  max-width: 650px !important;
  font-size: clamp(1.6rem, 2.35vw, 2.6rem) !important;
  font-weight: 400 !important;
}

.final-cta p {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

/* Footer mais discreto */
.footer {
  background: #020b13 !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.footer__grid {
  gap: 32px !important;
  padding-bottom: 16px !important;
}

.footer__logo {
  width: 72px !important;
  margin-bottom: 10px !important;
}

.footer__brand p {
  max-width: 250px !important;
  font-size: 0.62rem !important;
  line-height: 1.45 !important;
  color: rgba(225, 234, 242, 0.38) !important;
}

.footer__column h3 {
  margin-bottom: 8px !important;
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.13em !important;
  color: rgba(255, 255, 255, 0.52) !important;
}

.footer__column a,
.footer__column span,
.footer__social a {
  font-size: 0.62rem !important;
  line-height: 1.48 !important;
  font-weight: 400 !important;
  color: rgba(225, 234, 242, 0.38) !important;
}

.footer__social a {
  color: rgba(0, 214, 49, 0.78) !important;
  font-weight: 500 !important;
}

.footer__bottom {
  min-height: 28px !important;
  padding: 6px 0 !important;
  background: #01070d !important;
  border-top: 1px solid rgba(255, 255, 255, 0.035) !important;
}

.footer__bottom p,
.footer__bottom a {
  font-size: 0.56rem !important;
  color: rgba(225, 234, 242, 0.3) !important;
}

.footer__bottom div {
  gap: 14px !important;
}

/* ==========================================================
   Ajuste fino - CTA final e footer legível
   ========================================================== */

   .final-cta {
    min-height: 300px !important;
  }
  
  .final-cta__content {
    padding: 46px 0 !important;
  }
  
  .final-cta h2 {
    max-width: 620px !important;
    font-size: clamp(1.5rem, 2.15vw, 2.35rem) !important;
    line-height: 1.14 !important;
  }
  
  .final-cta p {
    font-size: 0.84rem !important;
  }
  
  .final-cta .button {
    padding: 0.82rem 1.2rem !important;
    font-size: 0.82rem !important;
  }
  
  .footer {
    padding-top: 18px !important;
  }
  
  .footer__grid {
    padding-bottom: 14px !important;
    gap: 28px !important;
  }
  
  .footer__brand p {
    font-size: 0.64rem !important;
    color: rgba(225, 234, 242, 0.48) !important;
  }
  
  .footer__column h3 {
    font-size: 0.61rem !important;
    color: rgba(255, 255, 255, 0.66) !important;
  }
  
  .footer__column a,
  .footer__column span,
  .footer__social a {
    font-size: 0.64rem !important;
    color: rgba(225, 234, 242, 0.52) !important;
  }
  
  .footer__bottom p,
  .footer__bottom a {
    font-size: 0.56rem !important;
    color: rgba(225, 234, 242, 0.42) !important;
  }

/* ==========================================================
   Landing v2 — header, hero, paths, métricas, soluções, CTA
   ========================================================== */

/* Logo header +25% */
.site-header__logo {
  width: 125px !important;
  transition: width var(--transition-default);
}

.site-header.is-scrolled .site-header__logo {
  width: 115px !important;
}

.site-header {
  padding: 12px 0 !important;
}

.site-header.is-scrolled {
  padding: 10px 0 !important;
}

/* Hero — selo/assinatura discreto */
.section-tag--seal {
  margin-bottom: 14px;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(0, 214, 49, 0.82);
  opacity: 0.88;
}

.section-tag--seal::before {
  width: 18px;
  height: 1px;
}

/* Paths — cards grandes com imagem presente */
.paths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border: none;
  border-radius: 0;
}

.path-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px !important;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.path-card + .path-card {
  border-left: none;
}

.path-card__image img {
  opacity: 0.62 !important;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.04);
}

.path-card::after {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 43, 0.35) 0%,
    rgba(7, 26, 43, 0.72) 45%,
    rgba(7, 26, 43, 0.94) 100%
  ) !important;
}

.path-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  max-width: none;
  padding: 44px 40px !important;
}

.path-card__content h3 {
  margin-bottom: 16px;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem) !important;
  font-weight: 500 !important;
  line-height: 1.22;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.path-card__content h3 span {
  display: block;
}

.path-card__content p {
  max-width: 380px;
  margin-bottom: 24px;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.78);
}

.path-card__content a {
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

/* Métricas — bloco escuro horizontal */
.metrics {
  padding-bottom: 48px !important;
}

.metrics__grid {
  background: rgba(4, 15, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.metrics__grid article {
  padding: 32px 24px !important;
}

.metrics__grid span {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.metrics__grid p {
  max-width: 200px;
  font-size: 0.78rem !important;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
  text-transform: lowercase;
}

.metrics__grid p::first-letter {
  text-transform: uppercase;
}

/* Soluções — duas vertentes */
.solutions__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solutions-block {
  padding: 32px 28px;
  background: rgba(4, 19, 33, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.solutions-block__title {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.solutions-block__items {
  display: grid;
  gap: 14px;
}

.solution-item {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.solution-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 214, 49, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.solution-item h4 {
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.solution-item p {
  font-size: 0.8rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.58);
}

/* CTA final — enquadramento do executivo */
.final-cta {
  min-height: 280px !important;
  margin-top: 0;
}

.final-cta__background img {
  object-fit: cover;
  object-position: 68% 22% !important;
  opacity: 1;
}

.final-cta__content {
  padding: 48px 0 !important;
  gap: 40px !important;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.96) 0%,
      rgba(7, 26, 43, 0.82) 38%,
      rgba(7, 26, 43, 0.42) 62%,
      rgba(7, 26, 43, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.05) 0%,
      rgba(7, 26, 43, 0.55) 100%
    ) !important;
}

/* Hover paths — zoom sutil na imagem */
.path-card:hover .path-card__image img {
  transform: scale(1.08);
  transition: transform 6s ease;
}

.path-card__image img {
  transition: transform 6s ease, opacity 0.4s ease;
}

/* ==========================================================
   Refinamento v3 — CTA executivo e títulos dos path cards
   ========================================================== */

/* CTA final — imagem aberta, executivo e cidade visíveis */
.final-cta {
  min-height: 420px !important;
  overflow: hidden;
}

.final-cta__background {
  inset: 0;
}

.final-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center !important;
  transform: none !important;
  filter: saturate(1.04) contrast(1.02);
  opacity: 1;
}

.final-cta:hover .final-cta__background img {
  transform: none !important;
}

.final-cta__content {
  padding: 56px 0 !important;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.97) 0%,
      rgba(7, 26, 43, 0.88) 32%,
      rgba(7, 26, 43, 0.52) 52%,
      rgba(7, 26, 43, 0.18) 72%,
      rgba(7, 26, 43, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.12) 0%,
      rgba(7, 26, 43, 0.42) 100%
    ) !important;
}

/* Path cards — títulos uniformes e posicionados acima */
.path-card {
  justify-content: stretch;
}

.path-card__content {
  flex: 1;
  justify-content: flex-start;
  padding: 44px 40px 40px !important;
}

.path-card__content h3,
.path-card__content h3 span {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.42vw, 1.34rem) !important;
  font-weight: 500 !important;
  line-height: 1.26 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}

.path-card__content h3 {
  margin: 0 0 0;
  max-width: 340px;
}

.path-card__content h3 span {
  display: block;
  margin-top: 0.14em;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.path-card__content p {
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 24px;
  max-width: 360px;
}

.path-card__content a {
  margin-top: 0;
}

@import url("./variables.css");

/* ==========================================================
   iBen Site
   Arquivo: style.css
   Base global + componentes iniciais
   ========================================================== */

/* Reset */

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

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

body {
  font-family: var(--font-body);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: transparent;
}

ul,
ol {
  list-style: none;
}

/* Layout */

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-xxl);
}

.section--dark {
  background: var(--bg-body);
  color: var(--text-primary);
}

.section--navy {
  background: var(--color-navy);
  color: var(--text-primary);
}

.section--light {
  background: var(--color-light);
  color: var(--text-dark);
}

/* Tipografia */

h1,
h2,
h3,
h4 {
  font-family: var(--font-title);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

h1 {
  font-size: var(--h1);
  font-weight: 800;
}

h2 {
  font-size: var(--h2);
  font-weight: 800;
}

h3 {
  font-size: var(--h3);
  font-weight: 700;
}

p {
  color: var(--text-soft);
}

.text-accent {
  color: var(--color-green);
}

/* Componentes base */

.section-heading {
  max-width: 760px;
  margin-bottom: var(--space-lg);
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--space-sm);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green);
}

.section-tag::before {
  content: "";
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-green);
}

/* Botões */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform var(--transition-default),
    background var(--transition-default),
    border-color var(--transition-default),
    color var(--transition-default),
    box-shadow var(--transition-default);
}

.button--primary {
  background: var(--color-green);
  color: var(--color-black);
  box-shadow: 0 18px 45px rgba(0, 214, 49, 0.2);
}

.button--primary:hover {
  background: var(--color-green-hover);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0, 214, 49, 0.26);
}

.button--secondary {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
}

.button--secondary:hover {
  border-color: var(--border-green);
  color: var(--color-green);
  transform: translateY(-3px);
}

/* Cards base */

.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.card-hover {
  transition: transform var(--transition-default),
    border-color var(--transition-default),
    box-shadow var(--transition-default);
}

.card-hover:hover {
  transform: translateY(-8px);
  border-color: var(--border-green);
  box-shadow: var(--shadow-card);
}

/* Utilitários */

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

/* ==========================================================
   Header
   ========================================================== */

   .site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(7, 26, 43, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
  }
  
  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
  }
  
  .site-header__brand {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
  }
  
  .site-header__logo {
    width: 118px;
    height: auto;
  }
  
  .site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
  }
  
  .site-nav a {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.82);
  }
  
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 2px;
    background: var(--color-green);
    transition: width var(--transition-default);
  }
  
  .site-nav a:hover {
    color: var(--color-white);
  }
  
  .site-nav a:hover::after {
    width: 100%;
  }
  
  .site-header__cta {
    min-height: 44px;
    padding-inline: 22px;
    font-size: 0.86rem;
  }
  
  .mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-light);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  
  .mobile-menu-button span {
    width: 19px;
    height: 2px;
    border-radius: 10px;
    background: var(--color-white);
  }
  
  .mobile-menu {
    display: none;
  }
  
  /* ==========================================================
     Hero
     ========================================================== */
  
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 118px 0 84px;
    background: var(--bg-body);
  }
  
  .hero__background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.72;
  }
  
  .hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(7, 26, 43, 0.98) 0%, rgba(7, 26, 43, 0.78) 38%, rgba(7, 26, 43, 0.24) 100%),
      linear-gradient(180deg, rgba(7, 26, 43, 0.25) 0%, rgba(7, 26, 43, 0.94) 100%);
  }
  
  .hero__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    align-items: end;
    gap: 64px;
  }
  
  .hero__content {
    max-width: 690px;
    padding-top: 30px;
  }
  
  .hero__content h1 {
    margin-bottom: 26px;
    max-width: 760px;
  }
  
  .hero__content h1 span {
    display: block;
  }
  
  .hero__content p {
    max-width: 620px;
    margin-bottom: 34px;
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.84);
  }
  
  .hero__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
  }
  
  .hero__cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  
  .hero-choice {
    padding: 30px;
  }
  
  .hero-choice__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 20px;
    border-radius: 999px;
    border: 1px solid var(--border-green);
    color: var(--color-green);
    font-size: 1.55rem;
  }
  
  .hero-choice h2 {
    margin-bottom: 12px;
    font-size: 1.28rem;
    letter-spacing: -0.03em;
  }
  
  .hero-choice p {
    margin-bottom: 18px;
    color: var(--text-soft);
    font-size: 0.98rem;
  }
  
  .hero-choice a {
    color: var(--color-green);
    font-weight: 800;
    font-size: 0.94rem;
  }
  
  /* ==========================================================
     Diferenciais
     ========================================================== */
  
  .differentials {
    position: relative;
    padding-top: 96px;
    padding-bottom: 72px;
  }
  
  .differentials__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
  }
  
  .differential {
    padding: 38px 32px;
    text-align: center;
    border-right: 1px solid var(--border-light);
  }
  
  .differential:last-child {
    border-right: 0;
  }
  
  .differential__icon {
    margin-bottom: 18px;
    color: var(--color-green);
    font-size: 2.7rem;
    line-height: 1;
  }
  
  .differential h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
  }
  
  .differential p {
    max-width: 240px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.94rem;
  }
  
  /* ==========================================================
     Sobre
     ========================================================== */
  
  .about {
    padding-top: 72px;
  }
  
  .about__grid {
    display: grid;
    grid-template-columns: 1.04fr 0.96fr;
    gap: 64px;
    align-items: center;
  }
  
  .about__image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-card);
  }
  
  .about__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(7, 26, 43, 0.18) 100%);
  }
  
  .about__image img {
    width: 100%;
    height: 460px;
    object-fit: cover;
  }
  
  .about__content h2 {
    margin-bottom: 24px;
  }
  
  .about__content p {
    max-width: 560px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: var(--text-lg);
  }
  
  .about__content .button {
    margin-top: 14px;
  }
  
  /* ==========================================================
     CTA
     ========================================================== */
  
  .contact-cta {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  
  .contact-cta__box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 34px 44px;
  }
  
  .contact-cta__box > div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 22px;
    align-items: center;
  }
  
  .contact-cta__icon {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid var(--border-green);
    border-radius: var(--radius-md);
    color: var(--color-green);
    font-size: 2rem;
  }
  
  .contact-cta h2 {
    margin-bottom: 4px;
    font-size: 1.45rem;
  }
  
  .contact-cta p {
    color: var(--text-muted);
  }
  
  /* ==========================================================
     Footer
     ========================================================== */
  
  .footer {
    padding: 54px 0 28px;
    background: var(--color-navy-dark);
    border-top: 1px solid var(--border-light);
  }
  
  .footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
    gap: 54px;
  }
  
  .footer__logo {
    width: 150px;
    margin-bottom: 18px;
  }
  
  .footer__brand p {
    max-width: 330px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  .footer__social a {
    color: var(--color-green);
    font-weight: 800;
  }
  
  .footer__column {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .footer__column h3 {
    margin-bottom: 10px;
    color: var(--color-white);
    font-size: 0.88rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .footer__column a,
  .footer__column span {
    color: var(--text-muted);
    font-size: 0.92rem;
  }
  
  .footer__column a:hover {
    color: var(--color-green);
  }
  
  .footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
  }
  
  .footer__bottom p,
  .footer__bottom a {
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.84rem;
  }
  
  .footer__bottom div {
    display: flex;
    align-items: center;
    gap: 24px;
  }
  
  .footer__bottom a:hover {
    color: var(--color-green);
  }

  /* ==========================================================
   Header states
   ========================================================== */

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 26, 43, 0.88);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.mobile-menu-button.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-button span {
  transition: transform var(--transition-default), opacity var(--transition-default);
}

/* ==========================================================
   Refinamento visual - Primeira dobra
   ========================================================== */

   .site-header__logo {
    width: 100px;
  }
  
  .hero {
    padding: 104px 0 64px;
  }
  
  .hero__inner {
    gap: 48px;
    align-items: center;
  }
  
  .hero__content {
    padding-top: 0;
  }
  
  .hero__content h1 {
    font-size: clamp(3.2rem, 5.2vw, 5.8rem);
    line-height: 1.05;
    margin-bottom: 22px;
  }
  
  .hero__content p {
    max-width: 620px;
    margin-bottom: 26px;
    font-size: 1.05rem;
  }
  
  .hero__actions {
    margin-top: 4px;
  }
  
  .hero-choice {
    padding: 24px 28px;
  }
  
  .hero-choice__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 16px;
    font-size: 1.25rem;
  }
  
  .hero-choice h2 {
    font-size: 1.16rem;
  }
  
  .hero-choice p {
    margin-bottom: 14px;
    font-size: 0.94rem;
  }
  
  .hero__cards {
    gap: 14px;
  }
  
  .site-header.is-scrolled .site-header__logo {
    width: 92px;
  }

  /* ==========================================================
   Refinamento final - Hero desktop
   ========================================================== */

.hero {
  min-height: calc(100vh - 0px);
}

.hero__inner {
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
}

.hero__content h1 {
  max-width: 720px;
}

.hero-choice {
  min-height: 210px;
}

.hero-choice h2 {
  max-width: 440px;
}

.hero-choice p {
  max-width: 500px;
}

.hero__background img {
  filter: saturate(0.82) contrast(1.04);
}

/* ==========================================================
   Landing page expandida - iBen
   ========================================================== */

   body {
    font-family: var(--font-body);
  }
  
  h1,
  h2,
  h3,
  h4,
  .site-nav a,
  .button {
    font-family: var(--font-title);
  }
  
  /* Redução geral para deixar o site menos agressivo */
  
  .hero__content h1 {
    font-size: clamp(2.65rem, 4.4vw, 4.95rem);
    line-height: 1.06;
    letter-spacing: -0.055em;
  }
  
  .hero__content p {
    max-width: 660px;
    font-size: 1rem;
    line-height: 1.75;
  }
  
  .hero-choice h2 {
    font-size: 1.05rem;
  }
  
  .hero-choice p {
    font-size: 0.9rem;
  }
  
  .section-heading h2,
  .statement h2 {
    font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  }
  
  .section-heading p,
  .statement p {
    max-width: 720px;
    margin-inline: auto;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-soft);
  }
  
  /* Statement */
  
  .statement {
    padding-top: 84px;
    padding-bottom: 66px;
  }
  
  .statement__grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 68px;
    align-items: center;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--border-light);
  }
  
  .statement h2 span {
    display: block;
  }
  
  .statement p {
    margin: 0;
    border-left: 1px solid var(--border-light);
    padding-left: 34px;
  }
  
  /* Paths */
  
  .paths {
    padding-top: 68px;
  }
  
  .paths__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .path-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 0;
    background: var(--bg-body);
  }
  
  .path-card + .path-card {
    border-left: 1px solid var(--border-light);
  }
  
  .path-card__image {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .path-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.08);
    opacity: 0.36;
  }
  
  .path-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.48),
      rgba(7, 26, 43, 0.96)
    );
  }
  
  .path-card__content {
    position: relative;
    z-index: 2;
    max-width: 430px;
    padding: 42px;
  }
  
  .path-card__content span {
    display: inline-flex;
    margin-bottom: 16px;
    color: var(--color-green);
    font-weight: 800;
    font-size: 0.86rem;
  }
  
  .path-card__content h3 {
    margin-bottom: 14px;
    font-size: 1.45rem;
  }
  
  .path-card__content p {
    margin-bottom: 22px;
    color: var(--text-soft);
    font-size: 0.95rem;
  }
  
  .path-card__content a {
    color: var(--color-green);
    font-weight: 800;
  }
  
  /* Metrics */
  
  .metrics {
    padding-top: 0;
    padding-bottom: 72px;
  }
  
  .metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
  }
  
  .metrics__grid article {
    padding: 30px 26px;
    text-align: center;
    border-right: 1px solid var(--border-light);
  }
  
  .metrics__grid article:last-child {
    border-right: 0;
  }
  
  .metrics__grid span {
    display: block;
    margin-bottom: 10px;
    color: var(--color-white);
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
  }
  
  .metrics__grid p {
    max-width: 220px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: 0.88rem;
  }
  
  /* Methodology */
  
  .methodology__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  
  .methodology__grid article {
    padding: 32px 26px;
    background: var(--bg-body);
  }
  
  .methodology__grid span {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--color-green);
    font-weight: 800;
  }
  
  .methodology__grid h3 {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }
  
  .methodology__grid p {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  /* Solutions */
  
  .solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  
  .solution-card {
    padding: 28px;
  }
  
  .solution-card h3 {
    margin-bottom: 12px;
    font-size: 1.08rem;
  }
  
  .solution-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
  }
  
  /* Final CTA */
  
  .final-cta {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy-dark);
  }
  
  .final-cta__background {
    position: absolute;
    inset: 0;
    z-index: 0;
  }
  
  .final-cta__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.05);
  }
  
  .final-cta__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(
        90deg,
        rgba(7, 26, 43, 0.95),
        rgba(7, 26, 43, 0.52),
        rgba(7, 26, 43, 0.78)
      ),
      linear-gradient(
        180deg,
        rgba(7, 26, 43, 0.12),
        rgba(7, 26, 43, 0.88)
      );
  }
  
  .final-cta__content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: center;
    padding: 76px 0;
  }
  
  .final-cta h2 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.4vw, 3.65rem);
  }
  
  .final-cta p {
    max-width: 580px;
    color: var(--text-soft);
    font-size: 1.05rem;
  }
  
  .final-cta__action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  
  .final-cta__action span {
    color: var(--text-soft);
    font-size: 0.9rem;
  }
  
  /* Footer legal */
  
  .footer__bottom p {
    max-width: 780px;
  }

  /* ==========================================================
   Correção de espaçamentos e CTA final
   ========================================================== */

/* Reduz excesso de espaço entre seções */
.statement {
  padding-top: 72px;
  padding-bottom: 40px;
}

.statement__grid {
  padding-bottom: 42px;
}

.paths {
  padding-top: 34px;
  padding-bottom: 64px;
}

.metrics {
  padding-top: 0;
  padding-bottom: 54px;
}

.differentials,
.methodology,
.solutions,
.about {
  padding-top: 76px;
  padding-bottom: 76px;
}

/* Mantém títulos grandes, mas menos agressivos */
.statement h2,
.section-heading h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.1;
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2,
.about__content h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

/* Ajuste dos cards de caminhos */
.path-card {
  min-height: 320px;
}

.path-card__content {
  padding: 38px;
}

.path-card__content h3 {
  font-size: 1.35rem;
}

.path-card__content p {
  font-size: 0.92rem;
}

/* Ajuste das métricas */
.metrics__grid article {
  padding: 26px 22px;
}

.metrics__grid span {
  font-size: 1.8rem;
}

/* CTA final corrigido */
.final-cta {
  min-height: 420px;
  margin-top: 24px;
}

.final-cta__background img {
  object-position: center center;
  opacity: 0.88;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.96) 0%,
      rgba(7, 26, 43, 0.78) 42%,
      rgba(7, 26, 43, 0.55) 68%,
      rgba(7, 26, 43, 0.82) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.18) 0%,
      rgba(7, 26, 43, 0.86) 100%
    );
}

.final-cta__content {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 54px;
  padding: 86px 0;
}

.final-cta h2 {
  max-width: 760px;
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.final-cta p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.7;
}

.final-cta__action {
  min-width: 280px;
}

.final-cta__action .button {
  min-width: 270px;
}

.final-cta__action span {
  max-width: 270px;
}

/* Evita aparência de texto duplicado no CTA */
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Footer mais compacto e alinhado */
.footer {
  padding-top: 46px;
}

.footer__logo {
  width: 120px;
}

/* ==========================================================
   Refinamento premium - tipografia, imagens e movimento
   ========================================================== */

/* Tipografia menos agressiva */

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

.hero__content h1 {
  font-size: clamp(2.25rem, 3.75vw, 4.25rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.hero__content p {
  max-width: 660px;
  font-size: 0.96rem;
  line-height: 1.75;
  font-weight: 400;
}

.section-heading h2,
.statement h2 {
  font-size: clamp(1.75rem, 2.65vw, 2.75rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2,
.about__content h2,
.final-cta h2 {
  font-size: clamp(1.9rem, 2.85vw, 3rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 700;
}

.site-nav a,
.button {
  font-weight: 700;
}

p,
.hero-choice p,
.path-card__content p,
.solution-card p,
.methodology__grid p,
.differential p,
.about__content p {
  font-weight: 400;
}

/* Imagens mais vivas, sem comprometer leitura */

.hero__background img {
  opacity: 1;
  filter: saturate(1.04) contrast(1.02);
}

.hero__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.92) 0%,
      rgba(7, 26, 43, 0.78) 42%,
      rgba(7, 26, 43, 0.56) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.18) 0%,
      rgba(7, 26, 43, 0.72) 100%
    );
}

.path-card__image img {
  opacity: 0.52;
  filter: saturate(1.05) contrast(1.05);
}

.path-card::after {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 43, 0.42),
    rgba(7, 26, 43, 0.88)
  );
}

.about__image img {
  filter: saturate(1.02) contrast(1.03);
}

.final-cta__background img {
  opacity: 1;
  filter: saturate(1.08) contrast(1.03);
  object-position: center right;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.95) 0%,
      rgba(7, 26, 43, 0.78) 42%,
      rgba(7, 26, 43, 0.46) 70%,
      rgba(7, 26, 43, 0.34) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.08) 0%,
      rgba(7, 26, 43, 0.78) 100%
    );
}

/* Movimento premium */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

/* Hover mais sofisticado */

.card-hover,
.solution-item,
.differential,
.methodology__grid article,
.metrics__grid article {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease;
}

.card-hover:hover,
.solution-item:hover,
.differential:hover,
.methodology__grid article:hover,
.metrics__grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 214, 49, 0.34);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.button {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary:hover {
  box-shadow: 0 18px 45px rgba(0, 214, 49, 0.22);
}

/* Zoom sutil nas imagens de fundo */

.hero__background img,
.final-cta__background img {
  transform: scale(1.02);
  transition: transform 8s ease, filter 0.4s ease;
}

.hero:hover .hero__background img,
.final-cta:hover .final-cta__background img {
  transform: scale(1.055);
}

/* Métricas com visual menos bruto */

.metrics__grid span {
  font-weight: 700;
  letter-spacing: -0.035em;
}

/* ==========================================================
   Refinamento de peso visual - tipografia, header e footer
   ========================================================== */

/* Tipografia geral mais leve */

h1,
h2,
h3,
h4 {
  font-weight: 600;
}

.hero__content h1 {
  font-weight: 600;
  font-size: clamp(2.15rem, 3.45vw, 3.95rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
}

.hero__content .text-accent {
  font-weight: 600;
}

.section-heading h2,
.statement h2,
.about__content h2,
.final-cta h2 {
  font-weight: 600;
  letter-spacing: -0.035em;
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2 {
  font-weight: 600;
}

.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 600;
}

p,
.hero-choice p,
.path-card__content p,
.solution-card p,
.methodology__grid p,
.differential p,
.about__content p,
.footer p,
.footer a,
.footer span {
  font-weight: 400;
}

/* Header mais leve */

.site-header {
  background: rgba(7, 26, 43, 0.88);
  backdrop-filter: blur(18px);
}

.site-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.site-header__cta {
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
}

/* Botões menos agressivos */

.button {
  font-size: 0.9rem;
  font-weight: 600;
}

.button--primary {
  box-shadow: none;
}

/* Cards com títulos menos pesados */

.hero-choice h2 {
  font-size: 1rem;
}

.hero-choice p {
  font-size: 0.88rem;
}

.path-card__content h3 {
  font-size: 1.25rem;
}

.solution-card h3 {
  font-size: 1rem;
}

/* Footer mais discreto e institucional */

.footer {
  background: #061827;
  padding-top: 34px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  gap: 48px;
  padding-bottom: 28px;
}

.footer__logo {
  width: 92px;
  margin-bottom: 16px;
}

.footer__brand p {
  max-width: 280px;
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(225, 234, 242, 0.62);
}

.footer__column h3 {
  margin-bottom: 14px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.footer__column a,
.footer__column span,
.footer__social a {
  font-size: 0.78rem;
  line-height: 1.65;
  color: rgba(225, 234, 242, 0.58);
}

.footer__column a:hover,
.footer__social a:hover {
  color: var(--color-green);
}

.footer__bottom {
  min-height: 42px;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.footer__bottom p,
.footer__bottom a {
  font-size: 0.68rem;
  color: rgba(225, 234, 242, 0.46);
}

.footer__bottom div {
  gap: 18px;
}

/* ==========================================================
   Ajuste fino premium - fontes mais leves e footer discreto
   ========================================================== */

/* Peso geral mais leve */
h1,
h2,
h3,
h4 {
  font-weight: 500;
}

.hero__content h1,
.section-heading h2,
.statement h2,
.about__content h2,
.final-cta h2,
.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2 {
  font-weight: 500;
  letter-spacing: -0.03em;
}

/* Hero menos agressivo */
.hero__content h1 {
  font-size: clamp(2rem, 3.1vw, 3.55rem);
  line-height: 1.16;
}

.hero__content .text-accent {
  font-weight: 500;
}

.hero__content p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 620px;
}

/* Títulos internos mais elegantes */
.section-heading h2,
.statement h2 {
  font-size: clamp(1.6rem, 2.35vw, 2.45rem);
}

.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2,
.about__content h2,
.final-cta h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.7rem);
}

/* Cards mais leves */
.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 500;
}

.hero-choice h2 {
  font-size: 0.95rem;
}

.hero-choice p {
  font-size: 0.84rem;
  line-height: 1.65;
}

.path-card__content h3 {
  font-size: 1.15rem;
}

.path-card__content p {
  font-size: 0.86rem;
  line-height: 1.65;
}

.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-size: 0.96rem;
}

/* Menu superior mais normal */
.site-nav a {
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.88;
}

.site-nav a:hover {
  opacity: 1;
}

.site-header__cta {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.78rem 1.18rem;
}

/* Botões mais elegantes */
.button {
  font-size: 0.84rem;
  font-weight: 500;
  padding: 0.9rem 1.25rem;
}

/* CTA final mais controlado */
.final-cta {
  min-height: 360px;
}

.final-cta__content {
  padding: 64px 0;
}

.final-cta h2 {
  max-width: 670px;
  font-size: clamp(1.75rem, 2.65vw, 2.9rem);
  line-height: 1.12;
}

.final-cta p {
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Footer mais escuro, menor e menos chamativo */
.footer {
  background: #041321;
  padding-top: 26px;
}

.footer__grid {
  padding-bottom: 22px;
  gap: 40px;
}

.footer__logo {
  width: 78px;
  margin-bottom: 12px;
}

.footer__brand p {
  max-width: 260px;
  font-size: 0.68rem;
  line-height: 1.5;
  color: rgba(225, 234, 242, 0.46);
}

.footer__column h3 {
  margin-bottom: 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.62);
}

.footer__column a,
.footer__column span,
.footer__social a {
  font-size: 0.68rem;
  line-height: 1.55;
  color: rgba(225, 234, 242, 0.42);
}

.footer__social a {
  font-weight: 500;
}

.footer__bottom {
  min-height: 34px;
  padding: 9px 0;
  background: #030f1a;
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}

.footer__bottom p,
.footer__bottom a {
  font-size: 0.6rem;
  color: rgba(225, 234, 242, 0.36);
}

.footer__bottom div {
  gap: 14px;
}

/* ==========================================================
   Ajuste definitivo - tipografia leve, header e footer discreto
   ========================================================== */

/* Tipografia principal mais sofisticada */
.hero__content h1 {
  font-size: clamp(1.95rem, 2.85vw, 3.35rem) !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.025em !important;
}

.hero__content .text-accent {
  font-weight: 400 !important;
}

.hero__content p {
  font-size: 0.9rem !important;
  font-weight: 400 !important;
  line-height: 1.72 !important;
  max-width: 620px !important;
}

/* Títulos internos menos agressivos */
.section-heading h2,
.statement h2,
.about__content h2,
.final-cta h2,
.differentials .section-heading h2,
.methodology .section-heading h2,
.solutions .section-heading h2 {
  font-size: clamp(1.55rem, 2.2vw, 2.4rem) !important;
  font-weight: 400 !important;
  line-height: 1.18 !important;
  letter-spacing: -0.02em !important;
}

/* Subtítulos e cards */
.hero-choice h2,
.path-card__content h3,
.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-weight: 500 !important;
}

.hero-choice h2 {
  font-size: 0.98rem !important;
}

.hero-choice p {
  font-size: 0.84rem !important;
  line-height: 1.65 !important;
}

.path-card__content h3 {
  font-size: 1.08rem !important;
}

.path-card__content p {
  font-size: 0.84rem !important;
  line-height: 1.62 !important;
}

.solution-card h3,
.methodology__grid h3,
.differential h3 {
  font-size: 0.95rem !important;
}

.solution-card p,
.methodology__grid p,
.differential p {
  font-size: 0.82rem !important;
  line-height: 1.62 !important;
}

/* Header superior mais leve */
.site-header {
  background: rgba(7, 26, 43, 0.9) !important;
}

.site-nav a {
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  opacity: 0.84 !important;
}

.site-nav a:hover {
  opacity: 1 !important;
}

.site-header__cta {
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  padding: 0.78rem 1.18rem !important;
}

/* Botões menos pesados */
.button {
  font-size: 0.84rem !important;
  font-weight: 500 !important;
  padding: 0.88rem 1.25rem !important;
}

.button--primary {
  box-shadow: none !important;
}

/* CTA final mais controlado */
.final-cta {
  min-height: 340px !important;
}

.final-cta__content {
  padding: 58px 0 !important;
}

.final-cta h2 {
  max-width: 650px !important;
  font-size: clamp(1.6rem, 2.35vw, 2.6rem) !important;
  font-weight: 400 !important;
}

.final-cta p {
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
}

/* Footer mais discreto */
.footer {
  background: #020b13 !important;
  padding-top: 20px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
}

.footer__grid {
  gap: 32px !important;
  padding-bottom: 16px !important;
}

.footer__logo {
  width: 72px !important;
  margin-bottom: 10px !important;
}

.footer__brand p {
  max-width: 250px !important;
  font-size: 0.62rem !important;
  line-height: 1.45 !important;
  color: rgba(225, 234, 242, 0.38) !important;
}

.footer__column h3 {
  margin-bottom: 8px !important;
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.13em !important;
  color: rgba(255, 255, 255, 0.52) !important;
}

.footer__column a,
.footer__column span,
.footer__social a {
  font-size: 0.62rem !important;
  line-height: 1.48 !important;
  font-weight: 400 !important;
  color: rgba(225, 234, 242, 0.38) !important;
}

.footer__social a {
  color: rgba(0, 214, 49, 0.78) !important;
  font-weight: 500 !important;
}

.footer__bottom {
  min-height: 28px !important;
  padding: 6px 0 !important;
  background: #01070d !important;
  border-top: 1px solid rgba(255, 255, 255, 0.035) !important;
}

.footer__bottom p,
.footer__bottom a {
  font-size: 0.56rem !important;
  color: rgba(225, 234, 242, 0.3) !important;
}

.footer__bottom div {
  gap: 14px !important;
}

/* ==========================================================
   Ajuste fino - CTA final e footer legível
   ========================================================== */

   .final-cta {
    min-height: 300px !important;
  }
  
  .final-cta__content {
    padding: 46px 0 !important;
  }
  
  .final-cta h2 {
    max-width: 620px !important;
    font-size: clamp(1.5rem, 2.15vw, 2.35rem) !important;
    line-height: 1.14 !important;
  }
  
  .final-cta p {
    font-size: 0.84rem !important;
  }
  
  .final-cta .button {
    padding: 0.82rem 1.2rem !important;
    font-size: 0.82rem !important;
  }
  
  .footer {
    padding-top: 18px !important;
  }
  
  .footer__grid {
    padding-bottom: 14px !important;
    gap: 28px !important;
  }
  
  .footer__brand p {
    font-size: 0.64rem !important;
    color: rgba(225, 234, 242, 0.48) !important;
  }
  
  .footer__column h3 {
    font-size: 0.61rem !important;
    color: rgba(255, 255, 255, 0.66) !important;
  }
  
  .footer__column a,
  .footer__column span,
  .footer__social a {
    font-size: 0.64rem !important;
    color: rgba(225, 234, 242, 0.52) !important;
  }
  
  .footer__bottom p,
  .footer__bottom a {
    font-size: 0.56rem !important;
    color: rgba(225, 234, 242, 0.42) !important;
  }

/* ==========================================================
   Landing v2 — header, hero, paths, métricas, soluções, CTA
   ========================================================== */

/* Logo header +25% */
.site-header__logo {
  width: 125px !important;
  transition: width var(--transition-default);
}

.site-header.is-scrolled .site-header__logo {
  width: 115px !important;
}

.site-header {
  padding: 12px 0 !important;
}

.site-header.is-scrolled {
  padding: 10px 0 !important;
}

/* Hero — selo/assinatura discreto */
.section-tag--seal {
  margin-bottom: 14px;
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(0, 214, 49, 0.82);
  opacity: 0.88;
}

.section-tag--seal::before {
  width: 18px;
  height: 1px;
}

/* Paths — cards grandes com imagem presente */
.paths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border: none;
  border-radius: 0;
}

.path-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 440px !important;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.path-card + .path-card {
  border-left: none;
}

.path-card__image img {
  opacity: 0.62 !important;
  filter: saturate(1.08) contrast(1.06);
  transform: scale(1.04);
}

.path-card::after {
  background: linear-gradient(
    180deg,
    rgba(7, 26, 43, 0.35) 0%,
    rgba(7, 26, 43, 0.72) 45%,
    rgba(7, 26, 43, 0.94) 100%
  ) !important;
}

.path-card__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  max-width: none;
  padding: 44px 40px !important;
}

.path-card__content h3 {
  margin-bottom: 16px;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem) !important;
  font-weight: 500 !important;
  line-height: 1.22;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-white);
}

.path-card__content h3 span {
  display: block;
}

.path-card__content p {
  max-width: 380px;
  margin-bottom: 24px;
  font-size: 0.88rem !important;
  line-height: 1.65 !important;
  color: rgba(255, 255, 255, 0.78);
}

.path-card__content a {
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

/* Métricas — bloco escuro horizontal */
.metrics {
  padding-bottom: 48px !important;
}

.metrics__grid {
  background: rgba(4, 15, 26, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.metrics__grid article {
  padding: 32px 24px !important;
}

.metrics__grid span {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 2.2vw, 2.15rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.03em;
  color: var(--color-white);
}

.metrics__grid p {
  max-width: 200px;
  font-size: 0.78rem !important;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.52);
  text-transform: lowercase;
}

.metrics__grid p::first-letter {
  text-transform: uppercase;
}

/* Soluções — duas vertentes */
.solutions__blocks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.solutions-block {
  padding: 32px 28px;
  background: rgba(4, 19, 33, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}

.solutions-block__title {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-title);
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-white);
}

.solutions-block__items {
  display: grid;
  gap: 14px;
}

.solution-item {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}

.solution-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 214, 49, 0.28);
  background: rgba(255, 255, 255, 0.05);
}

.solution-item h4 {
  margin-bottom: 6px;
  font-family: var(--font-title);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--color-white);
}

.solution-item p {
  font-size: 0.8rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.58);
}

/* CTA final — enquadramento do executivo */
.final-cta {
  min-height: 280px !important;
  margin-top: 0;
}

.final-cta__background img {
  object-fit: cover;
  object-position: 68% 22% !important;
  opacity: 1;
}

.final-cta__content {
  padding: 48px 0 !important;
  gap: 40px !important;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.96) 0%,
      rgba(7, 26, 43, 0.82) 38%,
      rgba(7, 26, 43, 0.42) 62%,
      rgba(7, 26, 43, 0.28) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.05) 0%,
      rgba(7, 26, 43, 0.55) 100%
    ) !important;
}

/* Hover paths — zoom sutil na imagem */
.path-card:hover .path-card__image img {
  transform: scale(1.08);
  transition: transform 6s ease;
}

.path-card__image img {
  transition: transform 6s ease, opacity 0.4s ease;
}

/* ==========================================================
   Refinamento v3 — CTA executivo e títulos dos path cards
   ========================================================== */

/* CTA final — imagem aberta, executivo e cidade visíveis */
.final-cta {
  min-height: 420px !important;
  overflow: hidden;
}

.final-cta__background {
  inset: 0;
}

.final-cta__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center !important;
  transform: none !important;
  filter: saturate(1.04) contrast(1.02);
  opacity: 1;
}

.final-cta:hover .final-cta__background img {
  transform: none !important;
}

.final-cta__content {
  padding: 56px 0 !important;
}

.final-cta__overlay {
  background:
    linear-gradient(
      90deg,
      rgba(7, 26, 43, 0.97) 0%,
      rgba(7, 26, 43, 0.88) 32%,
      rgba(7, 26, 43, 0.52) 52%,
      rgba(7, 26, 43, 0.18) 72%,
      rgba(7, 26, 43, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 26, 43, 0.12) 0%,
      rgba(7, 26, 43, 0.42) 100%
    ) !important;
}

/* Path cards — títulos uniformes e posicionados acima */
.path-card {
  justify-content: stretch;
}

.path-card__content {
  flex: 1;
  justify-content: flex-start;
  padding: 44px 40px 40px !important;
}

.path-card__content h3,
.path-card__content h3 span {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 1.42vw, 1.34rem) !important;
  font-weight: 500 !important;
  line-height: 1.26 !important;
  letter-spacing: 0.05em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
}

.path-card__content h3 {
  margin: 0 0 0;
  max-width: 340px;
}

.path-card__content h3 span {
  display: block;
  margin-top: 0.14em;
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.path-card__content p {
  margin-top: auto;
  margin-bottom: 18px;
  padding-top: 24px;
  max-width: 360px;
}

.path-card__content a {
  margin-top: 0;
}

/* Pain Section */
.pain-section {
  background: linear-gradient(180deg, #f7f9fb 0%, #ffffff 100%);
  color: #0f2b46;
  padding: 110px 0;
  position: relative;
}

.pain-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 214, 49, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(15, 43, 70, 0.06), transparent 30%);
  pointer-events: none;
}

.pain-section .container {
  position: relative;
  z-index: 1;
}

.section-heading--light {
  max-width: 820px;
  margin-bottom: 48px;
}

.section-heading--light .section-tag {
  color: #00d631;
}

.section-heading--light h2 {
  color: #0f2b46;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 14px 0 18px;
}

.section-heading--light p {
  color: #4d5b68;
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 720px;
}

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

.pain-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 43, 70, 0.1);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 50px rgba(15, 43, 70, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 214, 49, 0.35);
  box-shadow: 0 24px 70px rgba(15, 43, 70, 0.12);
}

.pain-card h3 {
  color: #0f2b46;
  font-size: 1.25rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.pain-card p {
  color: #5b6670;
  line-height: 1.65;
  font-size: 0.98rem;
}

/* Ajuste definitivo - imagem do CTA final */
.final-cta__background img {
  object-position: 80% 0% !important;
}

/* Ajuste definitivo - imagem do CTA final */
.final-cta__background img {
  object-position: 76% 26% !important;
}

.final-cta {
  min-height: 420px !important;
}

/* Ajuste fino - CTA final */
.final-cta .btn,
.final-cta a.btn,
.final-cta__content .btn,
.final-cta__action .btn,
.final-cta__actions .btn {
  width: auto !important;
  min-width: 230px !important;
  max-width: 280px !important;
  padding: 16px 28px !important;
  border-radius: 16px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.final-cta__action,
.final-cta__actions,
.final-cta__content {
  align-items: center;
}

.final-cta .final-cta__note,
.final-cta__action p,
.final-cta__actions p,
.final-cta__content > p:last-child {
  margin-top: 10px !important;
  font-size: 0.82rem !important;
  line-height: 1.4 !important;
  color: rgba(255, 255, 255, 0.72) !important;
  text-align: center !important;
  max-width: 280px !important;
}

/* Ajuste fino definitivo - botão e ressalva do CTA final */
.final-cta__action {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}

.final-cta__action .button.button--primary {
  width: 238px !important;
  min-width: 238px !important;
  max-width: 238px !important;
  min-height: 48px !important;
  padding: 0 22px !important;
  border-radius: 14px !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: -0.01em !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.final-cta__action span {
  display: block !important;
  margin-top: 2px !important;
  max-width: 230px !important;
  font-size: 0.74rem !important;
  line-height: 1.35 !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.64) !important;
  text-align: center !important;
  letter-spacing: 0.01em !important;
}

/* Hero editorial - primeira dobra premium */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(3, 20, 34, 0.42) !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  z-index: 1000;
}

.site-header .container,
.site-header__inner,
.header__inner {
  min-height: 76px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.site-header img,
.site-header .logo img,
.site-header__logo img {
  max-height: 54px !important;
}

.site-header nav a,
.site-header .nav a,
.site-header__nav a {
  font-size: 0.9rem !important;
  font-weight: 600 !important;
}

.site-header .button,
.site-header .button--primary,
.site-header a[href*="wa.me"] {
  min-height: 44px !important;
  padding: 0 24px !important;
  border-radius: 14px !important;
  font-size: 0.86rem !important;
}

.hero--editorial .hero__cards,
.hero--editorial .hero-card,
.hero--editorial .hero__paths {
  display: none !important;
}

/* =========================================================
   CLEAN HEADER + PREMIUM HERO
   Refatoração da primeira dobra
========================================================= */

.site-header.site-header--clean {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.site-header__inner-clean {
  min-height: 98px !important;
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 32px !important;
}

.site-header__brand-clean {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
}

.site-header__brand-clean img {
  display: block !important;
  width: auto !important;
  height: 66px !important;
  max-height: none !important;
}

.site-header__nav-clean {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 36px !important;
}

.site-header__nav-clean a {
  color: rgba(255, 255, 255, 0.78) !important;
  text-decoration: none !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  letter-spacing: -0.01em !important;
  transition: color 0.2s ease !important;
}

.site-header__nav-clean a:hover {
  color: #ffffff !important;
}

.site-header__cta-clean {
  min-height: 42px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border: 1px solid rgba(0, 214, 49, 0.7) !important;
  border-radius: 999px !important;
  background: rgba(0, 214, 49, 0.08) !important;
  color: #d8ffe1 !important;
  text-decoration: none !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em !important;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.site-header__cta-clean:hover {
  background: #00d631 !important;
  border-color: #00d631 !important;
  color: #031422 !important;
}

/* Hero principal */
.premium-hero {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background: #031422 !important;
  color: #ffffff !important;
}

.premium-hero__image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.premium-hero__image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: 58% center !important;
  filter: saturate(1.18) contrast(1.04) brightness(1.14) !important;
}

.premium-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(
      90deg,
      rgba(3, 20, 34, 0.88) 0%,
      rgba(3, 20, 34, 0.74) 28%,
      rgba(3, 20, 34, 0.42) 58%,
      rgba(3, 20, 34, 0.18) 100%
    ),
    linear-gradient(
      180deg,
      rgba(3, 20, 34, 0.22) 0%,
      rgba(3, 20, 34, 0.04) 44%,
      rgba(3, 20, 34, 0.66) 100%
    ) !important;
}

.premium-hero__content {
  position: relative !important;
  z-index: 2 !important;
  padding-top: 92px !important;
  padding-bottom: 86px !important;
  max-width: 1240px !important;
}

.premium-hero__content > * {
  max-width: 760px !important;
}

.premium-hero__eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 20px !important;
  color: #00d631 !important;
  font-size: 0.68rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

.premium-hero__eyebrow::before {
  content: "" !important;
  width: 26px !important;
  height: 2px !important;
  background: #00d631 !important;
  display: inline-block !important;
}

.premium-hero h1 {
  margin: 0 0 26px !important;
  color: #ffffff !important;
  font-size: clamp(2.8rem, 4.35vw, 4.75rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.06em !important;
  font-weight: 500 !important;
}

.premium-hero p {
  margin: 0 0 32px !important;
  color: rgba(255, 255, 255, 0.84) !important;
  font-size: 0.92rem !important;
  line-height: 1.68 !important;
  font-weight: 400 !important;
  max-width: 760px !important;
}

.premium-hero__actions {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
}

.premium-hero__button {
  min-height: 42px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border-radius: 3px !important;
  text-decoration: none !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease !important;
}

.premium-hero__button:hover {
  transform: translateY(-2px) !important;
}

.premium-hero__button--primary {
  background: #00d631 !important;
  color: #031422 !important;
  border: 1px solid #00d631 !important;
  box-shadow: 0 18px 40px rgba(0, 214, 49, 0.22) !important;
}

.premium-hero__button--secondary {
  background: rgba(255, 255, 255, 0.035) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.48) !important;
}

.premium-hero__button--secondary:hover {
  color: #00d631 !important;
  border-color: #00d631 !important;
}

.premium-hero__scroll {
  position: absolute !important;
  left: 50% !important;
  bottom: 24px !important;
  z-index: 3 !important;
  transform: translateX(-50%) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: rgba(255, 255, 255, 0.68) !important;
  text-decoration: none !important;
  font-size: 0.52rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.09em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  color: rgba(255, 255, 255, 0.58) !important;
  backdrop-filter: blur(6px) !important;
}

.premium-hero__scroll-icon {
  width: 16px !important;
  height: 26px !important;
  border: 1px solid rgba(255, 255, 255, 0.46) !important;
  border-radius: 999px !important;
  position: relative !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.premium-hero__scroll-icon::before {
  content: "" !important;
  position: absolute !important;
  top: 6px !important;
  left: 50% !important;
  width: 3px !important;
  height: 5px !important;
  border-radius: 999px !important;
  background: #00d631 !important;
  transform: translateX(-50%) !important;
}

/* Menu mobile/tablet - glass compacto */
.site-header--clean .menu-toggle {
  display: none !important;
  width: 38px !important;
  height: 38px !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 5px !important;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.035) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
}

.site-header--clean .menu-toggle span {
  display: block !important;
  width: 16px !important;
  height: 1.5px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.86) !important;
  transition: transform 0.2s ease, opacity 0.2s ease !important;
}

.site-header--clean .menu-toggle.is-active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg) !important;
}

.site-header--clean .menu-toggle.is-active span:nth-child(2) {
  opacity: 0 !important;
}

.site-header--clean .menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg) !important;
}

.site-header--clean .mobile-menu {
  position: absolute !important;
  top: 78px !important;
  left: auto !important;
  right: 18px !important;
  z-index: 1001 !important;
  display: flex !important;
  width: min(250px, calc(100vw - 36px)) !important;
  padding: 10px !important;
  flex-direction: column !important;
  gap: 1px !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  background: rgba(3, 20, 34, 0.62) !important;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(18px) saturate(1.15) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.15) !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-8px) !important;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease !important;
}

.site-header--clean .mobile-menu.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.site-header--clean .mobile-menu a {
  display: flex !important;
  min-height: 32px !important;
  padding: 0 10px !important;
  align-items: center !important;
  justify-content: space-between !important;
  border-radius: 9px !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 0.74rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.01em !important;
  text-decoration: none !important;
}

.site-header--clean .mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.055) !important;
  color: #ffffff !important;
}

.site-header--clean .mobile-menu a:last-child {
  min-height: 34px !important;
  margin-top: 6px !important;
  padding: 0 12px !important;
  justify-content: center !important;
  border-radius: 10px !important;
  background: rgba(0, 214, 49, 0.88) !important;
  box-shadow: 0 10px 24px rgba(0, 214, 49, 0.14) !important;
  color: #031422 !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.01em !important;
}

.site-header--clean .mobile-menu a:last-child:hover {
  background: #00d631 !important;
  color: #031422 !important;
}

@media (max-width: 980px) {
  .site-header--clean .menu-toggle {
    display: inline-flex !important;
  }
}

@media (min-width: 981px) {
  .site-header--clean .menu-toggle,
  .site-header--clean .mobile-menu {
    display: none !important;
  }
}

/* Cards-botão premium - seção Duas Frentes */
.path-card,
.solution-path,
.choice-card,
.solutions-card,
.paths-card {
  cursor: pointer;
}

/* Regra principal para os cards da seção de caminhos */
.paths .path-card,
.paths-grid .path-card,
.solutions-paths .path-card,
.section-paths .path-card,
.choice-grid .choice-card,
.solutions-grid .solution-path {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    filter 0.28s ease !important;
}

/* Seta circular no canto superior direito */
.paths .path-card::after,
.paths-grid .path-card::after,
.solutions-paths .path-card::after,
.section-paths .path-card::after,
.choice-grid .choice-card::after,
.solutions-grid .solution-path::after {
  content: "↗" !important;
  position: absolute !important;
  top: 22px !important;
  right: 22px !important;
  width: 38px !important;
  height: 38px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0, 214, 49, 0.38) !important;
  background: rgba(0, 214, 49, 0.06) !important;
  color: #00d631 !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  opacity: 0.9 !important;
  transition:
    transform 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease !important;
  z-index: 3 !important;
}

/* Link interno vira botão */
.paths .path-card a,
.paths-grid .path-card a,
.solutions-paths .path-card a,
.section-paths .path-card a,
.choice-grid .choice-card a,
.solutions-grid .solution-path a {
  width: fit-content !important;
  min-height: 42px !important;
  padding: 0 18px !important;
  margin-top: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 214, 49, 0.42) !important;
  background: rgba(0, 214, 49, 0.075) !important;
  color: #00d631 !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.02em !important;
  text-decoration: none !important;
  transition:
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease !important;
}

/* Hover premium */
.paths .path-card:hover,
.paths-grid .path-card:hover,
.solutions-paths .path-card:hover,
.section-paths .path-card:hover,
.choice-grid .choice-card:hover,
.solutions-grid .solution-path:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(0, 214, 49, 0.45) !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26) !important;
}

.paths .path-card:hover::after,
.paths-grid .path-card:hover::after,
.solutions-paths .path-card:hover::after,
.section-paths .path-card:hover::after,
.choice-grid .choice-card:hover::after,
.solutions-grid .solution-path:hover::after {
  transform: translate(4px, -4px) !important;
  background: #00d631 !important;
  border-color: #00d631 !important;
  color: #031422 !important;
}

.paths .path-card:hover a,
.paths-grid .path-card:hover a,
.solutions-paths .path-card:hover a,
.section-paths .path-card:hover a,
.choice-grid .choice-card:hover a,
.solutions-grid .solution-path:hover a {
  background: #00d631 !important;
  border-color: #00d631 !important;
  color: #031422 !important;
  transform: translateX(2px) !important;
}

/* Melhora leitura do texto dentro dos cards */
.paths .path-card p,
.paths-grid .path-card p,
.solutions-paths .path-card p,
.section-paths .path-card p,
.choice-grid .choice-card p,
.solutions-grid .solution-path p {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Correção segura - borda premium dos cards sem quebrar layout */
.paths .path-card,
.paths-grid .path-card,
.solutions-paths .path-card,
.section-paths .path-card,
.choice-grid .choice-card,
.solutions-grid .solution-path {
  outline: 1px solid rgba(0, 214, 49, 0.24) !important;
  outline-offset: -1px !important;
}

.paths .path-card:hover,
.paths-grid .path-card:hover,
.solutions-paths .path-card:hover,
.section-paths .path-card:hover,
.choice-grid .choice-card:hover,
.solutions-grid .solution-path:hover {
  outline: 1px solid rgba(0, 214, 49, 0.52) !important;
  outline-offset: -1px !important;
}

/* Correção definitiva - contorno externo dos cards-botão */
.paths .path-card,
.paths-grid .path-card,
.solutions-paths .path-card,
.section-paths .path-card,
.choice-grid .choice-card,
.solutions-grid .solution-path {
  border-color: transparent !important;
  box-shadow: 0 0 0 1px rgba(0, 214, 49, 0.28) !important;
}

.paths .path-card:hover,
.paths-grid .path-card:hover,
.solutions-paths .path-card:hover,
.section-paths .path-card:hover,
.choice-grid .choice-card:hover,
.solutions-grid .solution-path:hover {
  border-color: transparent !important;
  box-shadow:
    0 0 0 1px rgba(0, 214, 49, 0.58),
    0 28px 80px rgba(0, 0, 0, 0.26) !important;
}

/* Ajuste fino - reduzir cards da seção Duas Frentes */
@media (min-width: 981px) {
  .paths-grid,
  .paths__grid,
  .choice-grid,
  .solutions-grid,
  .section-paths .container > div,
  .solutions-paths .container > div {
    max-width: 1060px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 22px !important;
  }

  .paths .path-card,
  .paths-grid .path-card,
  .solutions-paths .path-card,
  .section-paths .path-card,
  .choice-grid .choice-card,
  .solutions-grid .solution-path {
    min-height: 360px !important;
    padding: 34px 34px !important;
    border-radius: 20px !important;
  }

  .paths .path-card h3,
  .paths .path-card h4,
  .paths-grid .path-card h3,
  .paths-grid .path-card h4,
  .choice-grid .choice-card h3,
  .choice-grid .choice-card h4,
  .solutions-grid .solution-path h3,
  .solutions-grid .solution-path h4 {
    font-size: 1.35rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.04em !important;
  }

  .paths .path-card p,
  .paths-grid .path-card p,
  .choice-grid .choice-card p,
  .solutions-grid .solution-path p {
    max-width: 420px !important;
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  .paths .path-card a,
  .paths-grid .path-card a,
  .choice-grid .choice-card a,
  .solutions-grid .solution-path a {
    min-height: 38px !important;
    padding: 0 16px !important;
    margin-top: 16px !important;
    font-size: 0.72rem !important;
    border-radius: 10px !important;
  }

  .paths .path-card::after,
  .paths-grid .path-card::after,
  .choice-grid .choice-card::after,
  .solutions-grid .solution-path::after {
    top: 18px !important;
    right: 18px !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 0.88rem !important;
  }

  .paths .path-card:hover,
  .paths-grid .path-card:hover,
  .choice-grid .choice-card:hover,
  .solutions-grid .solution-path:hover {
    transform: translateY(-6px) !important;
  }
}
/* Ajuste seguro - cards Duas Frentes horizontalizados sem quebrar imagem/texto */
@media (min-width: 981px) {
  .paths-grid,
  .paths__grid,
  .choice-grid,
  .solutions-grid,
  .section-paths .container > div,
  .solutions-paths .container > div {
    max-width: 1240px !important;
    width: calc(100% - 48px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    gap: 24px !important;
  }

  .paths .path-card,
  .paths-grid .path-card,
  .solutions-paths .path-card,
  .section-paths .path-card,
  .choice-grid .choice-card,
  .solutions-grid .solution-path {
    min-height: 330px !important;
    max-height: 360px !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 0 0 1px rgba(0, 214, 49, 0.28) !important;
  }

  .paths .path-card:hover,
  .paths-grid .path-card:hover,
  .solutions-paths .path-card:hover,
  .section-paths .path-card:hover,
  .choice-grid .choice-card:hover,
  .solutions-grid .solution-path:hover {
    transform: translateY(-6px) !important;
    box-shadow:
      0 0 0 1px rgba(0, 214, 49, 0.58),
      0 28px 80px rgba(0, 0, 0, 0.26) !important;
  }

  /* Move conteúdo levemente para a esquerda sem desmontar o card */
  .paths .path-card h3,
  .paths .path-card h4,
  .paths-grid .path-card h3,
  .paths-grid .path-card h4,
  .choice-grid .choice-card h3,
  .choice-grid .choice-card h4,
  .solutions-grid .solution-path h3,
  .solutions-grid .solution-path h4,
  .paths .path-card p,
  .paths-grid .path-card p,
  .choice-grid .choice-card p,
  .solutions-grid .solution-path p,
  .paths .path-card a,
  .paths-grid .path-card a,
  .choice-grid .choice-card a,
  .solutions-grid .solution-path a {
    position: relative !important;
    left: -18px !important;
  }

  .paths .path-card h3,
  .paths .path-card h4,
  .paths-grid .path-card h3,
  .paths-grid .path-card h4,
  .choice-grid .choice-card h3,
  .choice-grid .choice-card h4,
  .solutions-grid .solution-path h3,
  .solutions-grid .solution-path h4 {
    max-width: 390px !important;
    text-align: left !important;
  }

  .paths .path-card p,
  .paths-grid .path-card p,
  .choice-grid .choice-card p,
  .solutions-grid .solution-path p {
    max-width: 430px !important;
    text-align: left !important;
  }
}
/* Ajuste final - cards Duas Frentes: borda, texto e ícone */
@media (min-width: 981px) {
  /* Garante camada de borda acima da imagem */
  .paths .path-card,
  .paths-grid .path-card,
  .solutions-paths .path-card,
  .section-paths .path-card,
  .choice-grid .choice-card,
  .solutions-grid .solution-path {
    position: relative !important;
    border: 0 !important;
    overflow: hidden !important;
  }

  .paths .path-card::before,
  .paths-grid .path-card::before,
  .solutions-paths .path-card::before,
  .section-paths .path-card::before,
  .choice-grid .choice-card::before,
  .solutions-grid .solution-path::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 9 !important;
    pointer-events: none !important;
    border: 1px solid rgba(0, 214, 49, 0.42) !important;
    border-radius: inherit !important;
    box-shadow: inset 0 0 0 1px rgba(0, 214, 49, 0.12) !important;
  }

  .paths .path-card:hover::before,
  .paths-grid .path-card:hover::before,
  .solutions-paths .path-card:hover::before,
  .section-paths .path-card:hover::before,
  .choice-grid .choice-card:hover::before,
  .solutions-grid .solution-path:hover::before {
    border-color: rgba(0, 214, 49, 0.72) !important;
    box-shadow: inset 0 0 0 1px rgba(0, 214, 49, 0.28) !important;
  }

  /* Move títulos, textos e botões mais para a esquerda */
  .paths .path-card h3,
  .paths .path-card h4,
  .paths-grid .path-card h3,
  .paths-grid .path-card h4,
  .choice-grid .choice-card h3,
  .choice-grid .choice-card h4,
  .solutions-grid .solution-path h3,
  .solutions-grid .solution-path h4,
  .paths .path-card p,
  .paths-grid .path-card p,
  .choice-grid .choice-card p,
  .solutions-grid .solution-path p,
  .paths .path-card a,
  .paths-grid .path-card a,
  .choice-grid .choice-card a,
  .solutions-grid .solution-path a {
    left: -34px !important;
  }

  /* Ícone circular menor e no canto superior direito */
  .paths .path-card::after,
  .paths-grid .path-card::after,
  .choice-grid .choice-card::after,
  .solutions-grid .solution-path::after {
    top: 18px !important;
    right: 18px !important;
    left: auto !important;
    width: 26px !important;
    height: 26px !important;
    font-size: 0.68rem !important;
    border-width: 1px !important;
    z-index: 10 !important;
    background: rgba(0, 214, 49, 0.14) !important;
  }

  .paths .path-card:hover::after,
  .paths-grid .path-card:hover::after,
  .choice-grid .choice-card:hover::after,
  .solutions-grid .solution-path:hover::after {
    transform: translate(3px, -3px) !important;
  }
}
/* Ajuste - texto branco nos botões dos cards ao acionar */
.paths .path-card:hover a,
.paths-grid .path-card:hover a,
.choice-grid .choice-card:hover a,
.solutions-grid .solution-path:hover a,
.paths .path-card a:hover,
.paths-grid .path-card a:hover,
.choice-grid .choice-card a:hover,
.solutions-grid .solution-path a:hover,
.paths .path-card a:focus,
.paths-grid .path-card a:focus,
.choice-grid .choice-card a:focus,
.solutions-grid .solution-path a:focus,
.paths .path-card a:active,
.paths-grid .path-card a:active,
.choice-grid .choice-card a:active,
.solutions-grid .solution-path a:active {
  color: #ffffff !important;
}
/* Ajuste - reduzir peso da fonte dos botões dos cards */
.paths .path-card a,
.paths-grid .path-card a,
.choice-grid .choice-card a,
.solutions-grid .solution-path a {
  font-weight: 600 !important;
}

.paths .path-card:hover a,
.paths-grid .path-card:hover a,
.choice-grid .choice-card:hover a,
.solutions-grid .solution-path:hover a,
.paths .path-card a:hover,
.paths-grid .path-card a:hover,
.choice-grid .choice-card a:hover,
.solutions-grid .solution-path a:hover {
  font-weight: 350 !important;
}