/* =========================================================
   RESET & VARIABLES
   ========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores de marca */
  /* --azul-ls: #1F3A5F; */
  --azul-ls: #1E3B5F;
  --azul-ls-dark: #16293F;
  --verde-ls: #006C00;
  --verde-ls-dark: #005200;

  /* Neutros */
  --white: #FFFFFF;
  --gray-50: #F4F4F5;
  --gray-100: #E8E8E9;
  --gray-300: #D4D4D6;
  --gray-500: #9CA3AF;
  --gray-700: #4B5563;
  --text-dark: #17212E;

  /* Tipografia */
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  /* Layout */
  --container-width: 1200px;
  --radius-sm: 6px;
  --radius-md: 10px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--azul-ls);
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 1.2rem + 1.2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--azul-ls);
  text-align: left;
  margin-bottom: 2.5rem;
  padding-bottom: 0.85rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--verde-ls);
}

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  cursor: pointer;
}

.btn--sm {
  padding: 0.5rem 1.3rem;
  font-size: 0.875rem;
}

.btn--primary {
  background: var(--verde-ls);
  color: var(--white);
  border-color: var(--verde-ls);
}

.btn--primary:hover {
  background: var(--verde-ls-dark);
  border-color: var(--verde-ls-dark);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* =========================================================
   HEADER
   ========================================================= */
.header {
  /* background: rgba(30, 59, 95, 0.78); */
  /* backdrop-filter: blur(10px); */
  -webkit-backdrop-filter: blur(10px);
  background:rgba(245,246,248,.85);
  backdrop-filter:blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.logo__img {
  height: 32px; /* ajuste conforme o tamanho real do seu logo.png */
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav__links {
  display: flex;
  gap: 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.nav__links a {
  position: relative;
  padding-bottom: 4px;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--verde-ls);
  transition: width 0.2s ease;
}

.nav__links a:hover::after {
  width: 100%;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.nav-burger span {
  width: 22px;
  height: 2px;
  background: var(--azul-ls);
}

.header_cta {
  background: var(--verde-ls);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: 8px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.header_cta:hover {
  background: var(--verde-ls-dark);
  transform: translateY(-1px);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: var(--azul-ls);
  color: var(--white);
  padding: 4rem 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.hero__content h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem); /* responsivo: cresce em telas maiores */
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-50);
  margin-bottom: 1rem;
}

.hero__slogan {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--gray-300);
  line-height: 1.5;
  max-width: 32ch;
  margin-top: 0.5rem;
}

.hero__image-reveal {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px; /* ajusta pro que já tá usando no resto */
}

.hero__image-reveal img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__image-base {
  position: relative;
  z-index: 1;
}

.hero__image-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

/* =========================================================
   PROVA SOCIAL
   ========================================================= */
.social-proof {
  padding: 3.5rem 0;
  background: var(--white);
  text-align: center;
}

.social-proof__claim {
  font-size: 1.1rem;
  color: var(--text-dark);
  max-width: 640px;
  margin: 0 auto 2.75rem;
}

/* .social-proof__claim strong {
  color: var(--azul-ls);
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.4rem;
} */

.social-proof__claim strong {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--azul-ls);
  background: rgba(30, 58, 92, 0.06); /* azul-ls bem suave */
  padding: 1.2rem 3.9rem;
  border-radius: 999px; /* pill shape */
  margin-bottom: 0.9rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.stats__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--azul-ls);
  font-variant-numeric: tabular-nums;
}

.stats__label {
  font-size: 0.9rem;
  color: var(--gray-700);
}

/* =========================================================
   SOLUÇÕES
   ========================================================= */
.solutions {
  position: relative;
  background: var(--white);
  /* altura = nº de painéis * 100vh (ajuste o multiplicador pra controlar a "velocidade" do scroll horizontal) */
  height: 600vh;
}

.solutions__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 5rem; /* respiro abaixo do header fixo */
  padding-left: 4rem;
  padding-right: 4rem;
  overflow: hidden;
  box-sizing: border-box;
}

.section-title {
  flex: 0 0 auto;
  margin-bottom: 3.5rem; /* espaço entre o título e a linha menu+viewport */
}

.solutions__row {
  /* flex: 1; */
  display: flex;
  align-items: center;   /* alinhamento horizontal entre menu e viewport */
  gap: 4rem;
  min-height: 0; /* evita que o flex item estoure o overflow:hidden do pai */
}

.solutions__menu {
  flex: 0 0 260px;
}

.solutions__menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.solutions__menu-item {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--gray-300);
  cursor: pointer;
  padding-left: 1rem;
  border-left: 3px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}

.solutions__menu-item.is-active {
  color: var(--azul-ls);
  border-left-color: var(--azul-ls);
}

.solutions__viewport {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.solutions__track {
  display: flex;
  will-change: transform;
}

.solution-panel {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2.5rem;
  padding-right: 4rem;
  box-sizing: border-box;
}

.solution-panel__text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--azul-ls);
  max-width: 32ch;
}

.solution-panel__media img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* =========================================================
   PARA QUEM É
   ========================================================= */
.audience {
  background: var(--gray-100);
  padding: 4rem 0;
}

.audience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem 3rem;
  max-width: 950px;
  margin: 0 auto;
}

.audience__grid p {
  /* font-size: 0.95rem; */
  font-size: 1.0rem;
  color: var(--text-dark);
}

.audience__grid strong {
  color: var(--azul-ls);
  font-size: 1.2rem;
}

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.how-it-works {
  padding: 4rem 0;
  background: var(--white);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
}

.steps__item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.steps__number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--azul-ls);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__text h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--azul-ls);
  margin-bottom: 0.25rem;
}

.steps__text p {
  font-size: 0.95rem;
  color: var(--gray-700);
}

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  background: var(--azul-ls);
  color: var(--white);
  padding: 4rem 0;
}

.cta-final__inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-final__inner h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.cta-final__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--gray-300);
  padding: 2rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__legal-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin: 0;
}

.footer__legal-info {
  font-size: 0.78rem;
  color: var(--gray-700);
  opacity: 0.75;
  margin: 0.15rem 0 0;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  color: var(--gray-700);
}

.footer__links a:hover {
  color: var(--azul-ls);
}

.footer__social {
  display: flex;
  align-items: center;   /* alinha o texto com o centro dos ícones */
  gap: 0.75rem;
  flex-shrink: 0;
}

.footer__social p {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-700);
  margin: 0;
  margin-right: 0.25rem; /* um respiro extra antes dos ícones */
  padding-right: 0.75rem;
  border-right: 1px solid var(--gray-300);
}

.footer__social a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--azul-ls);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Efeito "stagger": elementos do mesmo grupo aparecem em sequência */
.reveal--stagger.reveal--visible:nth-child(1) { transition-delay: 0s; }
.reveal--stagger.reveal--visible:nth-child(2) { transition-delay: 0.12s; }
.reveal--stagger.reveal--visible:nth-child(3) { transition-delay: 0.24s; }
.reveal--stagger.reveal--visible:nth-child(4) { transition-delay: 0.36s; }

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 860px) {
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gray-50);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    display: none;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-burger {
    display: flex;
  }

  .hero__inner,
  .solution-row,
  .audience__grid {
    grid-template-columns: 1fr;
  }

  .hero__content h1 {
    font-size: 1.6rem;
    max-width: none;
  }

  .stats {
    gap: 2rem 2.5rem;
  }

  .stats__number {
    font-size: 1.75rem;
  }

  .cta-final__actions {
    flex-direction: column;
    align-items: center;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}