@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/assets/fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 8px;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--navy);
  color: #ffffff;
  font-size: var(--fs-sm);
  font-weight: 600;
  border-radius: 0 0 var(--r-md) var(--r-md);
  text-decoration: none;
  white-space: nowrap;
  outline: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid #068176;
  outline-offset: 2px;
}
:root {

  --teal:            #068176;
  --teal-hover:      #00665d;
  --teal-bright:     #0a9e8f;
  --navy:            #15282f;

  --surface:         #f8fafb;
  --surface-low:     #f0f4f2;
  --surface-mid:     #eaefed;
  --surface-high:    #e5e9e7;
  --white:           #ffffff;

  --on-surface:      #181d1c;
  --on-surface-var:  #3e4947;
  --on-navy:         #f8fafb;
  --on-teal:         #e6fffa;

  --border:          #e2e8ed;
  --border-strong:   #bdc9c6;

  --shadow-ring:     0 0 0 1px rgba(24,29,28,0.10);
  --shadow-card:     0 8px 24px rgba(21,40,47,0.08);
  --shadow-overlay:  0 18px 48px rgba(21,40,47,0.18);
  --shadow-focus:    0 0 0 3px rgba(10,158,143,0.24);

  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   8px;
  --r-lg:   10px;
  --r-xl:   14px;
  --r-2xl:  18px;
  --r-3xl:  22px;
  --r-4xl:  26px;
  --r-pill: 9999px;

  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  --verdict-accent:  #10b981;
  --verdict-icon:    #059669;
  --verdict-label:   #047857;
  --verdict-no:      #475569;

  --max-w: 1200px;
  --gutter-mobile: 16px;
  --gutter: 24px;

  --fs-xs:   12px;
  --fs-sm:   14px;
  --fs-base: 16px;
  --fs-lg:   18px;
  --fs-xl:   20px;
  --fs-2xl:  24px;
  --fs-3xl:  28px;
  --fs-4xl:  32px;
  --fs-5xl:  36px;
  --fs-6xl:  48px;

  --dur-fast:   100ms;
  --dur-base:   150ms;
  --dur-slow:   200ms;
  --ease:       cubic-bezier(0.2, 0, 0, 1);
  --ease-enter: cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: var(--fs-base);
  line-height: 1.5;
  color: var(--on-surface);
  background-color: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img, svg {
  display: block;
  max-width: 100%;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

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

ul, ol {
  list-style: none;
}

.text-teal     { color: var(--teal); }
.text-navy     { color: var(--navy); }
.text-muted    { color: var(--on-surface-var); }
.text-sm       { font-size: var(--fs-sm); }
.text-xs       { font-size: var(--fs-xs); }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }
.tnum          { font-variant-numeric: tabular-nums; }
.tracking-tight { letter-spacing: -0.02em; }
.tracking-caps  { letter-spacing: 0.12em; }
.uppercase      { text-transform: uppercase; }

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

@media (min-width: 768px) {
  .container { padding-inline: var(--gutter); }
}

.section-pad {
  padding-block: 80px;
}

@media (min-width: 768px) {
  .section-pad { padding-block: 112px; }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 4px 12px;
  line-height: 1;
}

.pill-teal {
  background-color: rgba(6,129,118,0.10);
  color: #005a52;
  border: 1px solid rgba(6,129,118,0.20);
}

.pill-teal .pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-lg);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background-color var(--dur-base) var(--ease),
              box-shadow var(--dur-base) var(--ease),
              color var(--dur-base) var(--ease);
  min-height: 44px;
  padding: 12px 24px;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid #068176;
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--teal);
  color: var(--on-teal);
}

.btn-primary:hover {
  background-color: var(--teal-hover);
}

.btn-primary-teal {
  background-color: var(--teal);
  color: var(--on-teal);
}

.btn-primary-teal:hover {
  background-color: var(--teal-hover);
}

.btn-ghost {
  background-color: var(--surface-mid);
  color: var(--on-surface);
  border: 1px solid var(--border-strong);
}

.btn-ghost:hover {
  background-color: var(--surface-high);
}

.btn-ghost-white {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.30);
}

.btn-ghost-white:hover {
  background-color: rgba(255,255,255,0.08);
}

.btn-lg {
  font-size: var(--fs-base);
  min-height: 52px;
  padding: 14px 32px;
}

.btn-sm {
  min-height: 36px;
  padding: 8px 16px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background-color: rgba(248,250,251,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter-mobile);
}

@media (min-width: 768px) {
  .nav-inner { padding-inline: var(--gutter); }
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--navy);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo {
  height: 32px;
  width: auto;
  color: var(--teal-bright);
}

.nav-descriptor {
  font-size: 11px;
  font-weight: 500;
  color: var(--on-surface-var);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-pill);
  padding: 2px 8px;
  letter-spacing: 0.04em;
  display: none;
}

@media (min-width: 900px) {
  .nav-descriptor { display: inline; }
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--on-surface-var);
  transition: color var(--dur-base) var(--ease);
}

.nav-links a:hover { color: var(--teal); }
.nav-links a:focus-visible { outline: 3px solid #068176; outline-offset: 2px; border-radius: var(--r-sm); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav-enter {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--on-surface);
  transition: color var(--dur-base) var(--ease);
  display: none;
  padding: 8px 4px;
  min-height: 44px;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-enter { display: inline-flex; }
}

.nav-enter:hover { color: var(--teal); }
.nav-enter:focus-visible { outline: 3px solid #068176; outline-offset: 2px; border-radius: var(--r-sm); }

.nav-mobile-toggle {
  display: flex;
  align-items: center;
}

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

.nav-mobile-toggle summary {
  list-style: none;
  cursor: pointer;
  padding: 10px;
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--on-surface);
  border-radius: var(--r-md);
}

.nav-mobile-toggle summary:focus-visible {
  outline: 3px solid #068176;
  outline-offset: 2px;
}

.nav-mobile-toggle summary::-webkit-details-marker { display: none; }

.nav-mobile-panel {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: var(--sp-4) var(--gutter-mobile);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  z-index: 99;
  box-shadow: var(--shadow-overlay);
}

.nav-mobile-panel a {
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--on-surface);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-mobile-panel a:last-child { border-bottom: none; }
.nav-mobile-panel a:hover { color: var(--teal); }

.beam-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-beam {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 600px;
  background: radial-gradient(ellipse 240px 480px at 50% 10%,
    rgba(10,158,143,0.09) 0%,
    rgba(6,129,118,0.04) 45%,
    transparent 70%);
  pointer-events: none;
}

.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--border) 20%,
    rgba(6,129,118,0.25) 50%,
    var(--border) 80%,
    transparent 100%);
  border: none;
}

.hero {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero { padding-top: 120px; padding-bottom: 96px; }
}

@media (min-width: 768px) {
  .hero-block {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
  }
  .hero {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 40px;
  }
  .hero-block .stats-bar {
    flex-shrink: 0;
  }
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

@media (min-width: 1024px) {
  .hero-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 64px;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 580px;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero-copy {
    text-align: left;
    flex: 1;
    padding-top: 16px;
  }
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-subhead {
  font-size: var(--fs-lg);
  line-height: 1.6;
  color: var(--on-surface-var);
  margin-bottom: 32px;
  max-width: 52ch;
}

@media (min-width: 1024px) {
  .hero-subhead { max-width: 48ch; }
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .hero-ctas { justify-content: flex-start; }
}

.hero-reassurance {
  font-size: var(--fs-sm);
  color: var(--on-surface-var);
}

.hero-card-panel {
  display: none;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
}

@media (min-width: 1024px) {
  .hero-card-panel { display: block; width: 420px; }
}

.hero-card-bg {
  position: relative;
}

.hero-card-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-xl);
}

.stats-bar {
  background: var(--white);
  border-block: 1px solid var(--border);
  padding-block: 40px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 0;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-inline: 16px;
}

@media (min-width: 768px) {
  .stat-item + .stat-item {
    border-left: 1px solid var(--border);
  }
}

.stat-value {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-value-product {
  color: var(--teal);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 700;
}

.stat-label {
  font-size: var(--fs-sm);
  color: var(--on-surface-var);
  line-height: 1.4;
  max-width: 18ch;
}

.stat-year {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--teal);
  margin-top: 4px;
}

.problem-section {
  background: var(--surface);
}

.problem-header {
  text-align: center;
  max-width: 70ch;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section-headline {
  font-size: clamp(var(--fs-4xl), 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-subhead {
  font-size: var(--fs-lg);
  color: var(--on-surface-var);
  line-height: 1.6;
  max-width: 65ch;
  margin-inline: auto;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .pain-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .pain-grid { grid-template-columns: repeat(4, 1fr); }
}

.pain-card {
  padding: 24px;
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: var(--shadow-ring);
  transition: box-shadow var(--dur-slow) var(--ease);
}

.pain-card:hover {
  box-shadow: var(--shadow-card);
}

.pain-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.pain-icon-amber { background: rgba(245,158,11,0.10); color: #d97706; }
.pain-icon-red   { background: rgba(239,68,68,0.10);  color: #dc2626; }

.pain-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pain-desc {
  font-size: var(--fs-sm);
  color: var(--on-surface-var);
  line-height: 1.6;
  max-width: 42ch;
}

.diferencial-section {
  background: var(--white);
}

.diferencial-intro {
  max-width: 72ch;
  margin-inline: auto;
  margin-bottom: 48px;
  text-align: center;
}

.section-body {
  font-size: var(--fs-base);
  color: var(--on-surface-var);
  line-height: 1.65;
  max-width: 65ch;
  margin-inline: auto;
  margin-top: 16px;
}

.section-subhead--spaced {
  margin-top: 14px;
}

.col-feature  { width: 34%; }
.col-generic  { width: 22%; }
.col-bots     { width: 22%; }
.col-licitude { width: 22%; }

.td-featured-text {
  font-weight: 600;
  color: var(--navy);
}

.table-wrap {
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table thead tr {
  background: var(--surface-low);
}

.comparison-table th {
  padding: 18px 20px;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table th:not(:first-child) {
  border-left: 1px solid var(--border);
  text-align: center;
}

.th-licitude {
  background-color: var(--navy) !important;
  color: var(--on-navy) !important;
  position: relative;
  overflow: hidden;
}

.th-licitude-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.th-teal-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,158,143,0.30), transparent);
  pointer-events: none;
}

.comparison-table td {
  padding: 14px 20px;
  font-size: var(--fs-sm);
  color: var(--on-surface-var);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  line-height: 1.5;
}

.comparison-table td:not(:first-child) {
  border-left: 1px solid var(--border);
  text-align: center;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.td-licitude {
  background-color: rgba(6,129,118,0.05) !important;
  color: var(--navy) !important;
  font-weight: 600;
  border-left: 1px solid rgba(6,129,118,0.20) !important;
}

.td-licitude-featured {
  background-color: rgba(6,129,118,0.10) !important;
  box-shadow: inset 4px 0 0 0 var(--teal);
  font-size: var(--fs-base) !important;
  font-weight: 700 !important;
  padding-block: 20px;
}

.row-featured {
  background: rgba(6,129,118,0.03);
}

.check-yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.check-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--border-strong);
}

.check-partial {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--on-surface-var);
  background: var(--surface-high);
  border-radius: var(--r-pill);
  padding: 2px 8px;
}

.check-dash {
  color: var(--border-strong);
  font-weight: 600;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-footnote {
  font-size: var(--fs-xs);
  color: var(--on-surface-var);
  margin-top: 16px;
  text-align: center;
  line-height: 1.5;
}

/* Mobile: collapse the 3-way comparison to a clean Licitude capability
   checklist — each feature on one compact row with a teal verdict. The full
   competitor comparison stays on desktop. */
@media (max-width: 767px) {
  .table-scroll { overflow: visible; }

  .comparison-table thead { display: none; }

  .comparison-table tbody { display: block; width: 100%; }

  .comparison-table tr {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 18px;
    border-bottom: 1px solid var(--border);
  }

  .comparison-table tbody tr:last-child {
    border-bottom: none;
  }

  .comparison-table td {
    display: block;
    width: auto;
    border: none;
    padding: 0;
    text-align: left;
    box-shadow: none;
  }

  .comparison-table td:first-child {
    flex: 1;
    font-weight: 600;
    color: var(--navy);
    font-size: var(--fs-sm);
    line-height: 1.4;
  }

  .comparison-table td:nth-child(2),
  .comparison-table td:nth-child(3) {
    display: none;
  }

  .comparison-table td:nth-child(4) {
    flex-shrink: 0;
  }

  .comparison-table .td-licitude {
    background: transparent;
  }

  /* Less text on mobile — hide the secondary paragraphs whose title/visual
     stands on its own (no truncation: show full or hide). The §6 trust-body
     stays fully visible: its titles need context (a bare "risco de automatizar"
     misreads on a tool that uses automation). */
  .section-body,
  .pain-desc,
  .step-body,
  .mobile-hide {
    display: none;
  }
}

.como-funciona {
  background: var(--white);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.step-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .step-row {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .step-row.reverse { flex-direction: row-reverse; }
}

.step-text {
  flex: 1;
  min-width: 0;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--navy);
  color: var(--on-navy);
  border-radius: var(--r-xl);
  font-size: var(--fs-xl);
  font-weight: 800;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.step-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 14px;
}

@media (max-width: 640px) {
  .step-title { font-size: var(--fs-2xl); }
}

.step-body {
  font-size: var(--fs-base);
  color: var(--on-surface-var);
  line-height: 1.7;
  max-width: 52ch;
}

.step-visual {
  flex: 1;
  min-width: 0;
  max-width: 480px;
  width: 100%;
}

@media (max-width: 899px) {
  .step-visual { max-width: 100%; }
}

.browser-frame {
  border-radius: var(--r-2xl);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.browser-header {
  height: 28px;
  background: var(--surface-low);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
  flex-shrink: 0;
}

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

.step-cta-wrap {
  margin-top: 40px;
  text-align: center;
}

.confianca-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.confianca-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.70' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.confianca-shaft {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom,
    rgba(10,158,143,0.70) 0%,
    rgba(6,129,118,0.30) 40%,
    transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.confianca-shaft-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60%;
  background: radial-gradient(ellipse 100px 300px at 50% 0%,
    rgba(10,158,143,0.12) 0%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.confianca-inner {
  position: relative;
  z-index: 1;
}

.confianca-header {
  text-align: center;
  margin-bottom: 56px;
}

.confianca-headline {
  font-size: clamp(var(--fs-4xl), 4vw, 44px);
  font-weight: 800;
  color: var(--on-navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.confianca-subhead {
  font-size: var(--fs-lg);
  color: rgba(248,250,251,0.70);
  line-height: 1.6;
}

.pill-confianca {
  background: rgba(10,158,143,0.15);
  color: #e6fffa;
  border: 1px solid rgba(10,158,143,0.30);
}

.pill-wrap--mb16 {
  margin-bottom: 16px;
}

.pill-wrap--mb14 {
  margin-bottom: 14px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-2xl);
  padding: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trust-icon {
  width: 40px;
  height: 40px;
  color: var(--teal-bright);
  margin-bottom: 14px;
}

.trust-title {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--on-navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.trust-body {
  font-size: var(--fs-sm);
  color: rgba(248,250,251,0.65);
  line-height: 1.6;
}

.trust-body + .trust-body {
  margin-top: 12px;
}

.trust-body strong {
  color: rgba(248,250,251,0.88);
  font-weight: 600;
}

.launch-section {
  background: var(--surface);
}

.launch-card {
  max-width: 560px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 2px solid var(--teal);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-ring);
  position: relative;
}

.launch-selo {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--on-teal);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--r-pill);
}

.launch-headline {
  font-size: clamp(var(--fs-3xl), 3.5vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.launch-subhead {
  font-size: var(--fs-base);
  color: var(--on-surface-var);
  margin-bottom: 28px;
}

.launch-includes {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
}

.include-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--fs-sm);
  color: var(--on-surface);
  line-height: 1.5;
}

.include-row svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.launch-microcopy {
  font-size: var(--fs-xs);
  color: var(--on-surface-var);
  margin-top: 14px;
  line-height: 1.6;
}

.launch-headline--after-selo {
  margin-top: 8px;
}

.btn--launch-cta {
  width: 100%;
  max-width: 320px;
}

.faq-section {
  background: var(--white);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 740px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--navy);
  min-height: 56px;
  transition: background-color var(--dur-base) var(--ease);
  user-select: none;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-item summary:hover { background-color: var(--surface-low); }

.faq-item summary:focus-visible {
  outline: 3px solid #068176;
  outline-offset: 2px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--teal);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 20px 18px;
  font-size: var(--fs-sm);
  color: var(--on-surface-var);
  line-height: 1.7;
  max-width: 65ch;
}

.faq-body strong {
  color: var(--navy);
  font-weight: 600;
}

.final-cta-section {
  background: var(--surface);
  padding-block: 80px;
}

.final-cta-panel {
  max-width: 860px;
  margin-inline: auto;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  border-radius: var(--r-2xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .final-cta-panel { padding: 40px 24px; border-radius: var(--r-2xl); }
}

.final-cta-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(10,158,143,0.35) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-headline {
  font-size: clamp(var(--fs-2xl), 3.5vw, 32px);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 22em;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.final-cta-sub {
  font-size: var(--fs-base);
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 52ch;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.final-cta-micro {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.92);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.site-footer {
  background: var(--navy);
  color: var(--on-navy);
  padding-top: 64px;
  padding-bottom: 40px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    gap: 64px;
  }
  .footer-brand {
    flex: 1;
    max-width: 380px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
  color: #ffffff;
}

.footer-tagline {
  font-size: var(--fs-sm);
  color: rgba(248,250,251,0.55);
  line-height: 1.5;
  max-width: 28ch;
}

.footer-descriptor {
  font-size: var(--fs-xs);
  color: rgba(248,250,251,0.62);
  margin-top: 4px;
}

.footer-col-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,250,251,0.62);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(248,250,251,0.65);
  transition: color var(--dur-base) var(--ease);
  line-height: 1;
}

.footer-links a:hover { color: rgba(248,250,251,0.95); }
.footer-links a:focus-visible { outline: 3px solid #068176; outline-offset: 2px; border-radius: var(--r-xs); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.footer-copy {
  font-size: var(--fs-xs);
  color: rgba(248,250,251,0.65);
}

.footer-compliance {
  font-size: var(--fs-xs);
  color: rgba(248,250,251,0.65);
  line-height: 1.5;
  max-width: 52ch;
  text-align: left;
}

@media (min-width: 640px) {
  .footer-compliance { text-align: right; }
}

.section-intro {
  text-align: center;
  margin-bottom: 48px;
}

.section-intro .section-headline { margin-bottom: 14px; }

:focus-visible {
  outline: 3px solid #068176;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0ms !important;
    transition-duration: 0ms !important;
  }
  html { scroll-behavior: auto; }
}

.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 16px; height: 16px; }
.icon-lg { width: 20px; height: 20px; }
.icon-xl { width: 24px; height: 24px; }

.hamburger-icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding: 2px 0;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  background: var(--on-surface);
  border-radius: 2px;
  transition: transform var(--dur-base) var(--ease);
}
