:root {
  color-scheme: light dark;
  --ink: #f5f7f4;
  --muted: #aab8b2;
  --soft: #d5ded8;
  --paper: #dfe9df;
  --paper-2: #d4e0d8;
  --paper-ink: #142523;
  --paper-muted: #52635d;
  --bg: #081820;
  --bg-2: #0e2427;
  --panel: rgba(255, 255, 255, 0.07);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.14);
  --green: #28c99a;
  --green-dark: #13916d;
  --amber: #f5c262;
  --max: 1160px;
  --font-sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --size-eyebrow: 0.78rem;
  --size-body: 1rem;
  --size-body-lg: 1.04rem;
  --size-h1: clamp(2.7rem, 4.4vw, 4.1rem);
  --size-h1-sector: clamp(2.35rem, 3.8vw, 3.55rem);
  --size-h2: clamp(1.95rem, 3vw, 2.85rem);
  --size-h3: 1.02rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #dce6df;
  color: var(--paper-ink);
  font-family: var(--font-sans);
  font-size: var(--size-body);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 72px;
  padding: 0.75rem max(1.5rem, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 20, 29, 0.88);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 168px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.header-cta,
.primary-button,
.secondary-button,
.demo-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 700;
}

.header-cta,
.primary-button,
.demo-form button {
  border: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #062018;
  box-shadow: 0 18px 40px rgba(40, 201, 154, 0.22);
}

.header-cta {
  min-height: 44px;
  padding: 0 1.05rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 4rem;
  align-items: center;
  max-width: var(--max);
  min-height: 680px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(40, 201, 154, 0.12), transparent 32rem),
    linear-gradient(135deg, #071923 0%, #0d252a 56%, #18362d 100%);
  box-shadow: 0 0 0 100vmax #0b2027;
  clip-path: inset(0 -100vmax);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--green);
  font-family: var(--font-sans);
  font-size: var(--size-eyebrow);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: var(--size-h1);
}

h2 {
  max-width: 760px;
  font-size: var(--size-h2);
}

h3 {
  margin: 0;
  font-size: var(--size-h3);
  line-height: 1.25;
}

.hero-lede {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: var(--soft);
  font-size: var(--size-body-lg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.primary-button,
.secondary-button {
  padding: 0 1.25rem;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  max-width: 560px;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.trust-list li::before {
  content: "";
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  margin-right: 0.55rem;
  border-radius: 999px;
  background: var(--green);
}

.product-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.product-screenshot {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.product-screenshot img,
.tour-card img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-screenshot {
  align-self: center;
}

.hero-screenshot figcaption {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 1rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0 1rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
}

.window-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: #ff6058;
}

.window-bar span:nth-child(2) {
  background: #ffc130;
}

.window-bar span:nth-child(3) {
  background: #2bd65a;
}

.window-bar strong {
  margin-left: 0.6rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.preview-header,
.preview-foot {
  display: flex;
  justify-content: space-between;
  padding: 1.4rem 1.5rem 0;
}

.preview-header span {
  font-size: 1.02rem;
  font-weight: 700;
}

.preview-header small,
.preview-foot {
  color: var(--muted);
  font-size: 0.78rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  padding: 1.5rem;
}

.metric-grid article,
.risk-panel article,
.module-grid article,
.trust-cards article,
.demo-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.metric-grid article {
  padding: 1rem;
}

.metric-grid small,
.metric-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.metric-grid strong {
  display: block;
  margin: 0.25rem 0;
  font-size: 1.7rem;
}

.preview-table {
  margin: 0 1.5rem;
  border-top: 1px solid var(--line);
}

.row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.6fr 0.5fr;
  gap: 0.75rem;
  padding: 0.78rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
  font-size: 0.82rem;
}

.row.head {
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.row b,
.row i {
  justify-self: start;
  border-radius: 999px;
  padding: 0.08rem 0.45rem;
  background: rgba(40, 201, 154, 0.16);
  color: var(--green);
  font-style: normal;
}

.row i {
  background: rgba(255, 255, 255, 0.1);
  color: var(--soft);
}

.preview-foot {
  padding: 1rem 1.5rem 1.5rem;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 5.5rem 1.5rem;
  color: var(--paper-ink);
}

.split-section,
.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 3rem;
  align-items: start;
}

.section p {
  color: var(--paper-muted);
}

.split-section {
  background: var(--paper);
  box-shadow: 0 0 0 100vmax var(--paper);
  clip-path: inset(0 -100vmax);
}

.risk-panel,
.module-grid,
.trust-cards {
  display: grid;
  gap: 1rem;
}

.risk-panel article,
.module-grid article,
.trust-cards article {
  padding: 1.35rem;
}

.risk-panel article,
.module-grid article,
.trust-cards article {
  border-color: rgba(20, 37, 35, 0.12);
  background: rgba(244, 248, 243, 0.62);
  box-shadow: 0 12px 30px rgba(23, 49, 43, 0.06);
}

.risk-panel span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2.2rem;
}

.module-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.platform-tour {
  background: #dce6df;
  box-shadow: 0 0 0 100vmax #dce6df;
  clip-path: inset(0 -100vmax);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.data-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: -0.4rem 0 2rem;
}

.data-proof article {
  border: 1px solid rgba(20, 37, 35, 0.12);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(244, 248, 243, 0.68);
  box-shadow: 0 12px 30px rgba(23, 49, 43, 0.05);
}

.data-proof span {
  display: block;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.data-proof strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--paper-ink);
  line-height: 1.25;
}

.data-proof p {
  margin: 0.45rem 0 0;
  font-size: 0.93rem;
}

.tour-card {
  overflow: hidden;
  border: 1px solid rgba(20, 37, 35, 0.12);
  border-radius: 8px;
  background: rgba(244, 248, 243, 0.68);
  box-shadow: 0 12px 30px rgba(23, 49, 43, 0.06);
}

.tour-card-large {
  grid-column: 1 / -1;
}

.tour-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid rgba(20, 37, 35, 0.1);
}

.tour-card div {
  padding: 1.05rem 1.15rem 1.2rem;
}

.tour-card p {
  margin: 0.35rem 0 0;
  color: var(--paper-muted);
}

#plataforma {
  background: var(--paper-2);
  box-shadow: 0 0 0 100vmax var(--paper-2);
  clip-path: inset(0 -100vmax);
}

#actividades {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(40, 201, 154, 0.08), rgba(245, 194, 98, 0.04)),
    #17362f;
  box-shadow: 0 0 0 100vmax #17362f;
  clip-path: inset(0 -100vmax);
}

#confianza {
  background: #dce6df;
  box-shadow: 0 0 0 100vmax #dce6df;
  clip-path: inset(0 -100vmax);
}

#actividades p {
  color: var(--soft);
}

.activity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.activity-list span,
.activity-list a {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.7rem 0.95rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

.split-section .activity-list span,
.section:not(#actividades) .activity-list span,
.section:not(#actividades) .activity-list a {
  border-color: rgba(20, 37, 35, 0.14);
  background: rgba(244, 248, 243, 0.62);
  color: var(--paper-ink);
}

.sector-hero {
  min-height: 640px;
}

.sector-hero h1 {
  max-width: 650px;
  font-size: var(--size-h1-sector);
}

.sector-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.sector-panel ol {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sector-panel li {
  display: grid;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.sector-panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.sector-panel strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.sector-panel span {
  color: var(--soft);
}

.sector-band {
  background: var(--paper-2);
  box-shadow: 0 0 0 100vmax var(--paper-2);
  clip-path: inset(0 -100vmax);
}

.trust-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-cards span {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.assurance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.assurance-strip span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(20, 37, 35, 0.14);
  border-radius: 999px;
  padding: 0 0.9rem;
  background: rgba(244, 248, 243, 0.72);
  color: var(--paper-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.cta-section {
  border-top: 1px solid rgba(20, 37, 35, 0.12);
  background: #e5ede5;
  box-shadow: 0 0 0 100vmax #e5ede5;
  clip-path: inset(0 -100vmax);
}

.cta-copy ul {
  margin: 1.4rem 0 0;
  padding-left: 1.2rem;
  color: var(--paper-muted);
}

.cta-outcomes {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}

.cta-outcomes li {
  border: 1px solid rgba(20, 37, 35, 0.12);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(244, 248, 243, 0.66);
}

.cta-outcomes span {
  display: block;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
}

.cta-outcomes strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--paper-ink);
}

.cta-outcomes p {
  margin: 0.35rem 0 0;
}

.demo-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-color: rgba(20, 37, 35, 0.12);
  background: #f3f7f1;
  box-shadow: 0 16px 42px rgba(23, 49, 43, 0.1);
}

.form-intro {
  border-bottom: 1px solid rgba(20, 37, 35, 0.1);
  padding-bottom: 1rem;
}

.form-intro span {
  display: block;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-intro strong {
  display: block;
  margin-top: 0.25rem;
  color: var(--paper-ink);
  font-size: 1.15rem;
}

.form-intro p {
  margin: 0.35rem 0 0;
  font-size: 0.93rem;
}

.demo-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--paper-ink);
  font-weight: 600;
}

.demo-form input,
.demo-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(20, 37, 35, 0.16);
  border-radius: 8px;
  background: #f7faf6;
  color: var(--paper-ink);
  font: inherit;
  padding: 0 0.9rem;
}

.demo-form button {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
  font: inherit;
}

.response-note {
  margin: -0.25rem 0 0;
  color: var(--paper-ink);
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

.demo-form .honeypot {
  position: absolute;
  width: 1px;
  min-height: 0;
  height: 1px;
  border: 0;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
  pointer-events: none;
}

.form-note {
  margin: 0;
  color: var(--paper-muted);
  font-size: 0.84rem;
}

.form-note a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  border-top: 1px solid rgba(20, 37, 35, 0.12);
  color: var(--paper-muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 30;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-radius: 999px;
  padding: 0 1rem;
  background: #19c371;
  color: #062018;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(25, 195, 113, 0.3);
}

.legal-page {
  background: #081820;
}

.legal-content {
  max-width: 840px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.legal-content h1 {
  font-size: var(--size-h1);
}

.legal-content h2 {
  margin-top: 2.2rem;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  line-height: 1.25;
}

.updated,
.legal-note {
  color: var(--muted);
}

.legal-note {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: var(--panel);
}

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

  .hero,
  .split-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 2rem;
    min-height: 0;
    padding-top: 3rem;
  }

  .product-preview {
    max-width: 620px;
  }

  .module-grid,
  .trust-cards,
  .tour-grid,
  .data-proof {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 64px;
    padding: 0.55rem 1rem;
  }

  .brand img {
    width: 142px;
  }

  .header-cta {
    min-height: 44px;
    max-width: 136px;
    text-align: center;
    font-size: 0.88rem;
    line-height: 1.15;
  }

  .hero {
    padding: 2.4rem 1rem 3rem;
  }

  h1 {
    font-size: clamp(2.4rem, 10vw, 3.15rem);
  }

  h2 {
    font-size: clamp(1.95rem, 8vw, 2.45rem);
  }

  .hero-actions,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .product-preview,
  .hero-screenshot {
    display: none;
  }

  .sector-panel {
    padding: 1rem;
  }

  .section {
    padding: 4rem 1rem;
  }

  .metric-grid,
  .row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 1rem;
    bottom: 1rem;
    min-height: 44px;
    padding: 0 0.85rem;
    font-size: 0.9rem;
  }
}
