:root {
  --ink: #050b13;
  --nav: #07111f;
  --panel: #0b1a25;
  --panel-2: #102634;
  --cyan: #0093a8;
  --cyan-2: #3bc7d0;
  --mint: #8ce6cc;
  --green: #39ba86;
  --amber: #f2c85e;
  --rose: #e78383;
  --paper: #f6fbfa;
  --paper-2: #e6f3f1;
  --white: #ffffff;
  --text: #f3fbfb;
  --muted: #a9bec4;
  --dark-text: #10232a;
  --soft-text: #526a70;
  --line: rgba(206, 238, 238, 0.15);
  --line-strong: rgba(206, 238, 238, 0.26);
  --line-dark: rgba(11, 36, 44, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 24px 70px rgba(9, 42, 50, 0.14);
  --radius: 8px;
  --max: 1180px;
  /* tonal bands for section rhythm */
  --surface-b: linear-gradient(180deg, #102a3c 0%, #0c2231 100%);
  --surface-b-line: rgba(120, 200, 215, 0.16);
  --accent-band: linear-gradient(135deg, rgba(0, 147, 168, 0.2), rgba(57, 186, 134, 0.1)), #08222c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(142deg, #050b13 0%, #081c27 52%, #05101a 100%);
  background-size: 52px 52px, 52px 52px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5.4vw, 5.65rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.05rem, 4.2vw, 4.65rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.18;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 11, 19, 0.7);
  backdrop-filter: blur(18px);
  transition: padding 0.2s ease, background 0.2s ease;
}

.site-header.is-compact {
  padding-block: 11px;
  background: rgba(5, 11, 19, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 132px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #bfced3;
  font-size: 0.94rem;
}

.desktop-nav a {
  border-radius: 6px;
  padding: 10px 12px;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: none;
}

.button,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 19px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-portal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--white);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.06);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-portal:hover,
.header-portal:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(140, 230, 204, 0.55);
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.button-primary,
.header-cta {
  color: #fff;
  background: linear-gradient(135deg, #008ba0, #38c5cb);
  box-shadow: 0 16px 36px rgba(0, 147, 168, 0.3);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 147, 168, 0.34);
}

.button-ghost {
  color: var(--white);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
}

.button-ghost:hover {
  border-color: rgba(140, 230, 204, 0.55);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.mobile-nav {
  display: none;
}

/* Inline highlight for key phrases in headings */
.accent {
  color: #2f9bd4;
}

.tone-light .accent,
.tone-light-2 .accent {
  color: #1d77b3;
}

.hero,
.section,
.footer {
  padding-inline: clamp(20px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(28px, 5vw, 76px);
  min-height: 92vh;
  max-width: 1320px;
  margin-inline: auto;
  padding-top: 124px;
  padding-bottom: 64px;
}

.hero-copy {
  padding-bottom: 18px;
  padding-top: 18px;
}

.hero-copy p {
  max-width: 680px;
  margin-bottom: 26px;
  color: #d1e2e5;
  font-size: clamp(1.04rem, 1.6vw, 1.28rem);
}

.eyebrow,
.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(140, 230, 204, 0.34);
  border-radius: 999px;
  padding: 8px 12px;
  color: #cdfdf1;
  background: rgba(140, 230, 204, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 0;
}

.hero-media {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.phone-frame {
  position: relative;
  width: min(300px, 78%);
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 38px;
  background:
    linear-gradient(160deg, rgba(59, 199, 208, 0.16), rgba(57, 186, 134, 0.05)),
    rgba(7, 17, 31, 0.72);
  box-shadow: var(--shadow);
}

.phone-frame img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.hero-phone {
  transform: perspective(1600px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center;
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: -8% -14% -8% -14%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(59, 199, 208, 0.22), transparent 72%);
}

.browser-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: #f8fffe;
  box-shadow: var(--shadow);
}

.browser-frame img {
  width: 100%;
  height: auto;
}

.browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border-bottom: 1px solid rgba(8, 38, 44, 0.1);
  padding: 0 12px;
  color: #4d656b;
  background: #edf7f6;
  font-size: 0.78rem;
}

.browser-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9ababe;
}

.browser-top span:nth-child(2) {
  background: var(--amber);
}

.browser-top span:nth-child(3) {
  background: var(--green);
}

.browser-top strong {
  margin-left: 4px;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Bloco 2 · Frase fundadora */
.founder {
  padding-block: clamp(56px, 8vw, 96px);
  padding-inline: clamp(20px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(0, 147, 168, 0.22), rgba(57, 186, 134, 0.12)),
    #07141f;
  border-block: 1px solid var(--line);
  text-align: center;
}

.founder p {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  line-height: 1.3;
  color: #d8eef0;
}

.founder strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

/* Bloco 3 · Para o colaborador / Para o RH (dentro de "A solução") */
.audience-block {
  max-width: 940px;
  margin: clamp(44px, 6vw, 68px) auto 0;
}

.audience-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 0 22px;
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.audience-title::before,
.audience-title::after {
  content: "";
  height: 1px;
  width: clamp(40px, 12vw, 120px);
  background: linear-gradient(90deg, transparent, rgba(140, 230, 204, 0.5), transparent);
}

.audience-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.audience-col {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(140, 230, 204, 0.2);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  background:
    linear-gradient(155deg, rgba(0, 147, 168, 0.16), rgba(140, 230, 204, 0.04)),
    rgba(8, 24, 32, 0.5);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.2);
}

.audience-col::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
}

.audience-col:last-child::before {
  background: linear-gradient(90deg, var(--green), var(--cyan-2));
}

.audience-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(140, 230, 204, 0.22), rgba(0, 147, 168, 0.18));
  font-size: 1.65rem;
}

.audience-col h3 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 1.5rem;
}

.audience-col ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-col li {
  position: relative;
  padding-left: 30px;
  color: #d6e7e9;
}

.audience-col li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2306222a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12l4 4L19 7'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--mint);
}

.section {
  padding-top: clamp(82px, 9vw, 136px);
  padding-bottom: clamp(82px, 9vw, 136px);
  scroll-margin-top: 82px;
}

.section-heading {
  max-width: 920px;
  margin-bottom: 36px;
}

.section-heading p,
.privacy-card p,
.form-copy p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.center .kicker,
.center p {
  margin-inline: auto;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
}

/* CTA banner — full-width mini section between "A solução" and "Como funciona" */
.cta-banner {
  padding: clamp(36px, 6vw, 64px) clamp(20px, 5vw, 64px);
  color: var(--dark-text);
  background:
    linear-gradient(135deg, rgba(0, 139, 160, 0.1), rgba(56, 197, 203, 0.06)),
    var(--paper-2);
  border-block: 1px solid var(--line-dark);
}

.cta-banner-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 40px);
  max-width: var(--max);
  margin-inline: auto;
}

.cta-banner-copy {
  flex: 1 1 420px;
  min-width: 0;
}

.cta-banner-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.cta-banner-copy p {
  margin: 0;
  max-width: 620px;
  color: var(--soft-text);
}

.cta-banner-button {
  flex: 0 0 auto;
}

/* Tonal bands — alternated section to section for contrast */
.tone-b {
  background: var(--surface-b);
  border-block: 1px solid var(--surface-b-line);
}

.tone-light,
.tone-light-2 {
  color: var(--dark-text);
}

.tone-light {
  background: var(--paper);
}

.tone-light-2 {
  background: var(--paper-2);
  border-top: 1px solid rgba(11, 36, 44, 0.08);
}

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

.problem-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.problem-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid rgba(231, 131, 131, 0.3);
  border-radius: 12px;
  background: rgba(231, 131, 131, 0.1);
  font-size: 1.5rem;
}

.problem-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 18px;
}

.problem-stat,
.problem-nr1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.04);
}

.problem-stat {
  border-color: rgba(231, 131, 131, 0.4);
  background:
    linear-gradient(135deg, rgba(231, 131, 131, 0.18), rgba(231, 131, 131, 0.07)),
    rgba(40, 14, 14, 0.25);
}

.problem-stat strong {
  color: #ffd9d9;
  font-size: 1.9rem;
  line-height: 1.05;
}

.problem-stat-text {
  color: #f0dede;
  font-size: 0.98rem;
}

.problem-stat-text em {
  display: block;
  margin-top: 6px;
  color: rgba(255, 217, 217, 0.7);
  font-size: 0.82rem;
  font-style: normal;
}

.problem-nr1 {
  border-color: rgba(242, 200, 94, 0.32);
  background: rgba(242, 200, 94, 0.08);
}

.problem-nr1 span {
  color: #e8eef0;
  font-size: 1rem;
  line-height: 1.45;
}

.problem-nr1 strong {
  color: var(--amber);
}

.problem-bridge {
  max-width: 920px;
  margin: clamp(30px, 4vw, 44px) auto 0;
  color: #eef6f7;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.32;
  text-align: center;
}

.problem-cards p,
.pillar-card p,
.steps-flow p,
.nr1-explainer p,
.quote-grid figcaption,
details p {
  color: var(--muted);
}

.pillar-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
  margin-inline: auto;
}

.pillar-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.pillar-card.primary {
  color: var(--dark-text);
  background:
    linear-gradient(145deg, rgba(246, 251, 250, 0.95), rgba(213, 242, 238, 0.92)),
    var(--paper);
}

.pillar-card.primary p {
  color: #3e5c62;
}

.pillar-card small {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #d9fff8;
  background: rgba(140, 230, 204, 0.1);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pillar-card.primary small {
  color: #08616d;
  background: rgba(0, 147, 168, 0.1);
}

.pillar-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.steps-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps-flow li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.steps-flow li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50px;
  right: -9px;
  width: 18px;
  height: 1px;
  background: var(--line-strong);
}

.steps-flow span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 12px;
  color: #06222a;
  background: var(--mint);
  font-size: 1.3rem;
  font-weight: 950;
}

.steps-flow strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.steps-flow p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.app-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.app-copy {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
  padding: clamp(26px, 4vw, 42px);
}

.app-copy h2 {
  max-width: 780px;
  font-size: clamp(2.1rem, 3.9vw, 4.2rem);
}

.app-copy p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.06rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.store-badges a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
}

.store-badges img {
  width: auto;
  height: 46px;
}

.app-journey {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.app-journey li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 13px;
  background: rgba(5, 11, 19, 0.34);
}

.app-journey li strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #06222a;
  background: var(--mint);
  font-weight: 900;
}

.app-journey li span {
  color: #d8e9eb;
  font-size: 0.94rem;
}

.app-media {
  display: flex;
  justify-content: center;
}

.portal-showcase,
.faq {
  color: var(--dark-text);
  background: var(--paper);
}

.portal-showcase .section-heading,
.portal-showcase .section-heading p {
  color: var(--dark-text);
}

.portal-showcase .section-heading p,
.faq .section-heading p {
  color: var(--soft-text);
}

.portal-showcase .kicker,
.faq .kicker,
.form-section .kicker {
  color: #08616d;
  border-color: rgba(0, 147, 168, 0.22);
  background: rgba(0, 147, 168, 0.08);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
}

.portal-showcase .browser-frame {
  border-color: var(--line-dark);
  box-shadow: var(--shadow-soft);
}

.portal-showcase .browser-frame figcaption {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--line-dark);
  color: var(--soft-text);
  background: #fff;
  font-size: 0.92rem;
  line-height: 1.4;
}

.showcase-side {
  display: grid;
  gap: 18px;
}

.showcase-side img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
}

.privacy-section {
  background: var(--accent-band);
  border-block: 1px solid var(--surface-b-line);
}

.privacy-card {
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid rgba(140, 230, 204, 0.2);
  border-radius: var(--radius);
  background: rgba(5, 16, 23, 0.32);
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
}

.privacy-card .kicker {
  margin-inline: auto;
}

.privacy-card p {
  margin-inline: auto;
  margin-bottom: 0;
}

.nr1-explainer,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: var(--max);
  margin-inline: auto;
}

.nr1-explainer article,
.quote-grid figure,
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.nr1-explainer article {
  padding: 28px;
}

.nr1-explainer h3 {
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 1.15rem;
}

.nr1-explainer p {
  margin-bottom: 0;
  color: var(--muted);
}

.nr1-explainer strong {
  color: var(--white);
}

.nr1-explainer ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}



.quote-grid figure {
  margin: 0;
  padding: 26px;
}

.quote-grid blockquote {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.5;
}

.quote-grid figcaption {
  font-size: 0.92rem;
}

.quote-grid figcaption strong {
  color: var(--white);
}

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

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.tab {
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--soft-text);
  background: #fff;
  cursor: pointer;
}

.tab.is-active {
  color: #fff;
  border-color: var(--cyan);
  background: var(--cyan);
}

.faq-panel {
  display: none;
  max-width: 900px;
  margin-inline: auto;
}

.faq-panel.is-active {
  display: grid;
  gap: 10px;
}

details {
  overflow: hidden;
  border-color: var(--line-dark);
  background: #fff;
  box-shadow: 0 18px 42px rgba(8, 38, 44, 0.08);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--soft-text);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
}

.form-copy,
.lead-form {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow-soft);
}

.form-copy {
  background: #fff;
}

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

.form-copy ul {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.form-copy li {
  border-left: 3px solid var(--cyan);
  padding-left: 14px;
  color: #25454d;
}

.lead-form {
  display: grid;
  gap: 14px;
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 7px;
  color: #26444c;
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  box-sizing: border-box;
  height: 48px;
  border: 1px solid rgba(16, 35, 42, 0.14);
  border-radius: 6px;
  padding: 0 13px;
  color: var(--dark-text);
  background: #f8fcfb;
  outline: none;
  font: inherit;
  font-weight: 600;
}

select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2326444c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 16px;
}

textarea {
  height: auto;
  padding: 12px 13px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(0, 147, 168, 0.12);
}

textarea {
  resize: vertical;
}

.privacy-note {
  margin: 0;
  color: var(--soft-text);
  font-size: 0.82rem;
}

.success-message {
  display: grid;
  place-items: center;
  min-height: 310px;
  border: 1px solid rgba(0, 147, 168, 0.18);
  border-radius: var(--radius);
  color: var(--dark-text);
  background: #edf9f7;
  text-align: center;
}

.success-message p {
  margin: 8px 0 0;
  color: var(--soft-text);
}

.label-head {
  display: block;
}

.label-optional {
  color: var(--soft-text);
  font-weight: 600;
}

/* Bloco 16 · Linha de colaborador */
.collaborator-strip {
  background: var(--surface-b);
  border-block: 1px solid var(--surface-b-line);
}

.collaborator-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: clamp(30px, 4vw, 44px);
  padding-inline: clamp(20px, 5vw, 40px);
}

.collaborator-text strong {
  color: var(--white);
}

.collaborator-text p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.collaborator-strip .store-badges {
  margin-top: 0;
  flex-shrink: 0;
}

/* Bloco 17 · Rodapé (com credenciamento institucional) */
.footer {
  padding-top: 52px;
  padding-bottom: 48px;
  background: #04090f;
  color: #d9e7ea;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(180px, 1.4fr) 1fr 1fr;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.footer-top div {
  display: grid;
  gap: 9px;
  align-content: start;
  justify-items: start;
}

.footer-brand img {
  width: 132px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.footer span,
.footer .footer-credential,
.footer-disclaimer,
.footer-copyright {
  color: var(--muted);
}

.footer a {
  color: var(--mint);
  text-decoration: underline;
}

.footer-top strong {
  color: #e7f3f4;
  font-size: 0.92rem;
}

.footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-top: 30px;
}

.footer-credential {
  margin: 0 0 14px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-credential strong {
  color: #e7f3f4;
}

.footer-credential a {
  color: var(--mint);
}

.footer-disclaimer {
  margin: 0 0 14px;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-copyright {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-seal {
  width: auto;
  height: clamp(150px, 18vw, 188px);
  max-width: 100%;
  object-fit: contain;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-phone {
    transform: none;
  }

  .showcase-grid,
  .app-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .steps-flow li:not(:last-child)::after {
    display: none;
  }

  .nr1-explainer {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: clamp(2.55rem, 12vw, 4.1rem);
  }

  h2 {
    font-size: clamp(1.9rem, 9vw, 3.2rem);
  }

  .site-header {
    padding: 12px 18px;
  }

  .brand img {
    width: 108px;
    height: 40px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    inset: 65px 14px auto;
    z-index: 39;
    display: none;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 10px;
    background: rgba(5, 11, 19, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .mobile-nav a {
    border-radius: 6px;
    padding: 13px 12px;
    color: #d9e7ea;
  }

  .mobile-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-nav .mobile-portal {
    margin-top: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 850;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav .mobile-portal:hover {
    background: rgba(255, 255, 255, 0.12);
  }

  .mobile-nav .mobile-cta {
    margin-top: 8px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 850;
    background: linear-gradient(135deg, #008ba0, #38c5cb);
    box-shadow: 0 12px 28px rgba(0, 147, 168, 0.3);
  }

  .mobile-nav .mobile-cta:hover {
    background: linear-gradient(135deg, #0a9bb0, #46d2d8);
  }

  .hero {
    padding-top: 92px;
    padding-bottom: 30px;
  }

  .hero-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    margin-bottom: 18px;
  }

  .button {
    width: 100%;
  }

  .audience-split,
  .problem-cards,
  .problem-proof,
  .steps-flow,
  .quote-grid,
  .form-row,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .pillar-showcase {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: auto;
  }

  .showcase-grid {
    gap: 14px;
  }

  .store-badges img {
    height: 42px;
  }

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

@media (min-width: 821px) and (max-height: 760px) {
  h1 {
    font-size: clamp(3rem, 4.8vw, 4.85rem);
  }

  .hero {
    padding-top: 92px;
    gap: 34px;
  }

  .hero-copy p {
    margin-bottom: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-bottom: 16px;
  }
}

/* ===== Opportunities FII · componentes ===== */

/* Light-section kicker recolor */
.tese-section .kicker,
.material-section .kicker {
  color: #08616d;
  border-color: rgba(0, 147, 168, 0.22);
  background: rgba(0, 147, 168, 0.08);
}

.tese-section .section-heading p,
.material-section .section-heading p {
  color: var(--soft-text);
}

/* Imagens do Ocean Front (com fallback gracioso) */
.of-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    radial-gradient(120% 120% at 20% 0%, rgba(59, 199, 208, 0.22), transparent 60%),
    linear-gradient(160deg, #0c2230, #081722);
  box-shadow: var(--shadow);
}

.of-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.of-shot.no-img img {
  display: none;
}

.of-shot.no-img::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  color: rgba(205, 253, 241, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.of-shot.no-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-shot {
  width: min(520px, 100%);
  aspect-ratio: 4 / 3;
}

/* Ocean Front · números */
.badge-inline {
  display: inline-block;
  margin-left: 6px;
  border: 1px solid rgba(140, 230, 204, 0.4);
  border-radius: 999px;
  padding: 4px 12px;
  color: #0a1d16;
  background: var(--mint);
  font-size: clamp(0.7rem, 1.4vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  vertical-align: middle;
}

.of-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

.of-stat {
  border: 1px solid var(--surface-b-line);
  border-radius: var(--radius);
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.04);
}

.of-stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.05;
}

.of-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.of-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: clamp(24px, 4vw, 36px);
}

/* Cards-chave (layout do problem-cards, ícone teal) */
.key-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.key-cards article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.12);
}

.key-cards p {
  color: var(--muted);
  margin-bottom: 0;
}

.key-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid rgba(140, 230, 204, 0.3);
  border-radius: 12px;
  background: rgba(140, 230, 204, 0.1);
  font-size: 1.5rem;
}

.ocean-bridge {
  margin: clamp(28px, 4vw, 40px) 0 0;
  color: #d6e7e9;
  text-align: center;
}

.ocean-bridge a {
  color: var(--mint);
  text-decoration: underline;
}

/* Tese tributária · tabela comparativa */
.compare-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: #fff;
  color: var(--dark-text);
  font-size: 0.96rem;
}

.compare-table th {
  padding: 16px 18px;
  text-align: left;
  color: #fff;
  background: var(--panel-2);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.compare-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--line-dark);
  vertical-align: top;
  color: #2a4a52;
}

.compare-table td strong {
  display: block;
  color: var(--dark-text);
  font-size: 1rem;
}

.compare-table td small {
  display: block;
  margin-top: 3px;
  color: var(--soft-text);
  font-size: 0.8rem;
  font-style: italic;
}

.compare-table tbody tr:nth-child(even) {
  background: #f3f9f8;
}

.compare-table .row-mid {
  background: rgba(0, 147, 168, 0.08) !important;
}

.compare-table .row-best {
  background: rgba(57, 186, 134, 0.14) !important;
}

.compare-table .row-best td strong,
.compare-table .row-mid td strong {
  color: #0a4a3a;
}

.compare-note {
  margin: 14px 0 0;
  color: var(--soft-text);
  font-size: 0.82rem;
}

.tese-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(28px, 4vw, 40px);
}

.tese-stat {
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 24px 26px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.tese-stat strong {
  display: block;
  color: #08616d;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
}

.tese-stat span {
  display: block;
  margin-top: 10px;
  color: var(--soft-text);
  font-size: 0.95rem;
}

/* Incorporadoras */
.incorp-cta {
  margin-top: clamp(28px, 4vw, 40px);
  text-align: center;
}

/* Material · download */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 900px;
  margin-inline: auto;
}

.download-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 32px);
  background: #fff;
  color: var(--dark-text);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 22px 56px rgba(8, 38, 44, 0.16);
}

.download-icon {
  font-size: 1.8rem;
}

.download-card strong {
  font-size: 1.15rem;
}

.download-desc {
  color: var(--soft-text);
  font-size: 0.95rem;
}

.download-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  color: #08616d;
  font-weight: 850;
}

.download-action::after {
  content: "↓";
  font-size: 1.05em;
}

@media (max-width: 1080px) {
  .of-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .of-stats,
  .tese-stats {
    grid-template-columns: 1fr 1fr;
  }

  .of-gallery,
  .key-cards,
  .download-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 460px) {
  .hero,
  .section,
  .founder,
  .footer {
    padding-inline: 16px;
  }

  .eyebrow,
  .kicker {
    font-size: 0.68rem;
  }

  .browser-top {
    min-height: 30px;
  }

  .browser-top strong {
    font-size: 0.68rem;
  }
}
