@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap");

:root {
  --bg: #fbfdfe;
  --fg: #17233f;
  --surface: #f4f8f9;
  --card: #ffffff;
  --muted: #647083;
  --border: #dfe8ee;
  --primary: #00d084;
  --primary-dark: #008d59;
  --navy: #0a1a44;
  --shadow-soft: 0 10px 40px -20px rgba(20, 34, 60, 0.15);
  --shadow-elegant: 0 30px 60px -30px rgba(0, 208, 132, 0.35);
  --radius: 12px;
  --btn-radius: 14px;
  --btn-radius-pill: 9999px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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


.section {
  padding: 96px 0;
}

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

.divider-top {
  border-top: 1px solid var(--border);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0, 208, 132, 0.32);
  border-radius: 999px;
  background: rgba(0, 208, 132, 0.08);
  color: var(--primary-dark);
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.pulse-dot,
.static-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(0, 208, 132, 0.85);
}

.pulse-dot {
  position: relative;
}

.pulse-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.font-display,
h1,
h2,
h3,
h4 {
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

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

.text-balance {
  text-wrap: balance;
}

.btn {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 8px;

  border-radius: 10px;
  padding: 8px 16px;
  font-weight: 500;
  line-height: 1;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--navy);
  box-shadow: var(--shadow-elegant);
  font-weight: 600;
}

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

.header-inner .btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--navy);
}

.header-inner .desktop-actions .btn {
  font-size: 13px;
  font-weight: 600;
}

.header-inner .btn-primary:hover {
  opacity: 0.9;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--navy);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}

.btn-outline {
  border-color: rgba(226, 226, 226, 0.35);
  background: transparent;
  color: var(--bg);
  border: 1px solid rgba(123, 118, 118, 0.35);
   font-size: 14px;
    font-weight: 600;
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
}
.btn-ghost:hover {
  background: rgba(226, 226, 226, 0.35);
  color: var(--fg);
  opacity: 0.9;
  font-size: 14px;
  font-weight: 600;
}

.btn-icon {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--fg);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn .icon {
  width: 1.25em;
  height: 1.25em;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  transition:
    background 200ms ease,
    border-color 200ms ease,
    backdrop-filter 200ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(223, 232, 238, 0.8);
  backdrop-filter: blur(16px);
}


.header-inner {
  display: flex;
  height: 64px;
  align-items: center;
  justify-content: space-between;

}

.logo img {
  height: 38px;
  width: auto;
}

.desktop-nav,
.desktop-actions {
  display: flex;
  align-items: center;
}

.desktop-nav {
  gap: 32px;
}

.desktop-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.footer a:hover {
  color: var(--fg);
}

.desktop-actions {
  gap: 10px;
}

.mobile-toggle {
  display: none;
  border: 0;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
}

.mobile-menu a {
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 500;
}

.mobile-menu a:hover {
  background: var(--surface);
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
}

.hero-video {
  position: absolute;
  inset: 0;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  opacity: 0;
  filter: contrast(1.16) saturate(1.1) brightness(1.2);
  transition: opacity 2200ms ease-in-out;
}

.hero-video video.is-active {
  opacity: 1;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(39, 73, 160, 0.18) 0%,
    rgba(39, 73, 160, 0.18) 22%,
    rgba(39, 73, 160, 0.18) 35%,
    transparent 59%
  );
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      ellipse at center,
      transparent 0%,
      rgba(10, 26, 68, 0.1) 58%,
      rgba(10, 26, 68, 0.2) 100%
    ),
    linear-gradient(
      90deg,
      rgba(10, 26, 68, 0.2),
      transparent 28%,
      transparent 72%,
      rgba(10, 26, 68, 0.2)
    ),
    linear-gradient(180deg, rgba(10, 26, 68, 0.14), rgba(10, 26, 68, 0.14));
}

.hero-symbol {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 320px;
  opacity: 0.07;
  mix-blend-mode: screen;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 88vh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 0;
  text-align: center;
}

.hero .eyebrow {
  border-color: rgba(0, 208, 132, 0.42);
  background: rgba(10, 26, 68, 0.7);
  color: var(--primary);
  padding: 6px 16px;
  backdrop-filter: blur(10px);
}

.hero-panel {
  width: min(100%, 880px);
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(10, 26, 68, 0.35);
  padding: 32px 24px;
  box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(14px);
}

.hero h1 {
  margin-bottom: 0;
  color: white;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
  justify-content: center;
}

.hero h1 span,
.green {
  color: var(--primary);
}

.hero p {
  max-width: 690px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

.hero-actions .btn {
  min-height: 40px;
  padding: 0 28px;
  font-size: 16px;
}

.hero-actions .btn-secondary {
  font-weight: 600;
  box-shadow: 0 4px 20px -4px rgba(255, 255, 255, 0.35);
}

.hero-stats {
  position: relative;
  isolation: isolate;
  width: min(100%, 890px);
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(10, 26, 68, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 32px 28px 28px;
  box-shadow: 0 8px 32px -12px rgba(0, 0, 0, 0.35);
}

.hero-stats-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.hero-stats-dots {
  display: none;
}

.stat-k {
  color: var(--primary);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.stat-v {
  margin-top: 6px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.section-heading {
  max-width: 700px;
}

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

.section-heading h2 {
  margin: 10px 0 0;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.section-heading--lg h2 {
  font-size: 36px;
}

.section-solutions {
  background: #f2f2f2;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.solutions-carousel {
  overflow: hidden;
  margin-top: 56px;
}

.carousel-track {
  display: flex;
  transition: transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.carousel-slide {
  flex: 0 0 32%;
  min-width: 0;
  padding: 0 12px;
}

.solution-card {
  position: relative;
  display: block;
  cursor: pointer;
  height: 440px;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 24px;
  box-shadow: var(--shadow-elegant);
  transform: scale(0.95);
  opacity: 0.7;
  transition:
    transform 420ms ease,
    opacity 420ms ease,
    box-shadow 420ms ease,
    border-color 420ms ease;
}

.carousel-slide.is-active .solution-card {
  border-color: var(--primary);
  transform: none;
  height: 462px;
  opacity: 1;
}

.solution-card img.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 26, 68, 0.4),
    rgba(10, 26, 68, 0.55),
    rgba(10, 26, 68, 0.9)
  );
}

.card-symbol {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  width: 34px;
  opacity: 0.44;
  mix-blend-mode: screen;
}

.solution-card-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}

.solution-card h3 {
  margin: 0;
  color: white;
  font-size: 24px;
  line-height: 1.15;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(10, 26, 68, 0.72);
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.solution-card:hover .pill-link {
  background: var(--primary);
  color: var(--navy);
}

.carousel-copy {
  margin-top: 34px;
  text-align: center;
}

.carousel-copy h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}

.carousel-copy p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(10, 26, 68, 0.72);
  line-height: 1.65;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.dots {
  display: flex;
  gap: 8px;
  border-radius: 999px;
  background: rgba(10, 26, 68, 0.06);
  padding: 12px 16px;
}

.dot {
  width: 12px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 26, 68, 0.32);
  padding: 0;
  transition:
    width 220ms ease,
    background 220ms ease;
}

.dot.is-active {
  width: 32px;
  background: var(--navy);
}

.play-toggle {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 26, 68, 0.06);
  color: var(--navy);
}

.about-grid,
.cta-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.about-text p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.725;
}

.about-text p:first-of-type {
  font-size: 18px;
}

.about-text h2 {
  margin: 16px 0 0; 
  font-size: 42px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 24px;
}

@media (min-width: 640px) {
  .about-text h2 {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .about-text h2 {
    font-size: 48px;
  }
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card,
.security-card,
.media-card,
.doc-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.value-card:hover,
.media-card:hover {
  border-color: rgba(0, 208, 132, 0.44);
  box-shadow: var(--shadow-elegant);
  transform: translateY(-4px);
}

.icon-box {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--navy);
}

.value-card h3,
.security-card h3 {
  margin: 18px 0 8px;
  font-weight: 500;   
}

.value-card p,
.security-card p,
.media-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.icon-box svg {
  width: 20px;
  height: 20px;
}

.founders {
  background: #f8fafc;
  color: #1e293b;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: start;
}

.founder-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.founder-photo {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(0, 208, 132, 0.16);
}

.founder-photo img:first-child {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.founder-photo img:last-child {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 24px;
  opacity: 0.65;
}

.founder h3 {
  margin: 16px 0 4px;
  font-size: 16px;
}

.founder p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.founder a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--primary-dark);
  font-weight: 600;
}

.security-section {
  position: relative;
  overflow: hidden;
  background: #0a1a43;
  color: #f8fafc;
}

.security-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background:
    radial-gradient(
      600px circle at 10% 20%,
      rgba(0, 208, 132, 0.22),
      transparent 50%
    ),
    radial-gradient(
      700px circle at 90% 80%,
      rgba(62, 123, 190, 0.22),
      transparent 50%
    );
}

.security-section .container {
  position: relative;
}

.security-section p {
  color: #cbd5e1;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.security-card {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.055);
}

.security-card:hover {
  border-color: rgba(0, 208, 132, 0.45);
}

.security-card .icon-box {
  width: 38px;
  height: 38px;
  background: rgba(0, 208, 132, 0.15);
  color: var(--primary);
}

.security-card h3 {
  color: white;
  font-size: 16px;
}

.ticker-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 56px;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 96px;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.ticker-track {
  display: inline-flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker-x 40s linear infinite;
  will-change: transform;
}

.partner-logo {
  display: flex;
  width: 200px;
  height: 96px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--card);
  padding: 22px 30px;
  box-shadow: var(--shadow-soft);
}

.partner-logo img {
  width: 140px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  filter: grayscale(1);
  opacity: 0.72;
  transition:
    filter 180ms ease,
    opacity 180ms ease;
}

.partner-logo--lg img {
  width: 160px;
  height: 86px;
}

.partner-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.partner-logo--genai img {
  filter: invert(1) grayscale(1);
}

.partner-logo--genai:hover img {
  filter: invert(1);
  opacity: 1;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.media-card {
  display: flex;
  min-height: 276px;
  flex-direction: column;
  justify-content: space-between;
}

.media-card img {
  max-height: 32px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.82;
}

.media-card img[alt="Finsiders Brasil"],
.media-card img[alt="Startupi"] {
  max-height: 64px;
  max-width: 280px;
}

.media-card img[alt="Finsiders Brasil"] {
  display: block;
  object-position: left center;
  margin-left: -20px;
}

.media-card img[alt="InfoMoney"] {
  max-height: 22px;
  max-width: 110px;
}

.media-card h3 {
  margin: 24px 0 12px;
  font-size: 18px;
  line-height: 1.35;
}

.media-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  color: var(--primary-dark);
  font-weight: 600;
}

#contato .container {
  max-width: 1152px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 40px;
  box-shadow: var(--shadow-elegant);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background: radial-gradient(600px circle at 80% 20%, white, transparent 50%);
}

.cta-box > * {
  position: relative;
}

.cta-box h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.cta-box p {
  color: rgba(10, 26, 68, 0.82);
  font-weight: 500;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-box .cta-grid,
.dark-cta .cta-grid {
  align-items: center;
}
.cta-box .cta-actions,
.dark-cta .cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
}
.cta-box .cta-actions .btn,
.dark-cta .cta-actions .btn {
  width: 100%;
  max-width: 420px;   
  justify-content: center;
}

.solution-copy .btn {
  font-size: 16px;
  min-height: 40px;
  padding: 0 28px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 48px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--card);
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  background: transparent;
  color: var(--fg);
  padding: 20px 22px;
  text-align: left;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 16px;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--fg);
  transition: transform 220ms ease;
}

.faq-icon::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-left: -3px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 48px 0 28px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.footer-title {
  font-weight: 600;
}

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

.footer li {
  color: var(--muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom img {
  width: 20px;
  opacity: 0.8;
}


.footer-logo {
  height: 38px;
  width: auto;
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: white;
  padding: 96px 0 112px;
  text-align: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.46;
  background:
    radial-gradient(
      700px circle at 20% 30%,
      rgba(0, 208, 132, 0.22),
      transparent 60%
    ),
    radial-gradient(
      800px circle at 85% 75%,
      rgba(0, 141, 89, 0.22),
      transparent 65%
    );
}

.page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 320px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  background: url("/assets/img/simbolo-pilotin.png") center / contain no-repeat;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}


.page-hero .container {
  position: relative;
}

.page-hero h1 {
  margin: 20px auto 0;
  max-width: 900px;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

.page-hero p {
  max-width: 690px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.7;
}

.sticky-tabs {
  position: sticky;
  top: 64px;
  z-index: 40;
  border-bottom: 1px solid var(--border);
  background: rgba(251, 253, 254, 0.88);
  backdrop-filter: blur(16px);
}

.tabs-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 0;
  scrollbar-width: none;
}

.tabs-scroll::-webkit-scrollbar {
  display: none;
}

.tab-button {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--card);
  color: var(--muted);
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tab-button.is-active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--navy);
  box-shadow: 0 8px 24px -12px var(--primary);
}

.solutions-list {
  display: grid;
  gap: 96px;
  padding: 88px 0;
}

.solution-detail {
  scroll-margin-top: 150px;
}

.solution-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.solution-detail:nth-child(even) .solution-copy {
  order: 2;
}

.solution-index-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.solution-index {
  color: var(--primary-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 600;
}

.solution-line {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(0, 208, 132, 0.6), transparent);
}

.solution-tagline {
  margin-top: 22px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.solution-copy h2 {
  margin: 10px 0 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.solution-copy p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
}

.check-list .check {
  display: inline-grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 208, 132, 0.14);
  color: var(--primary-dark);
  font-weight: 900;
}

.solution-visual {
  position: relative;
}

.solution-visual::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(0, 208, 132, 0.2),
    rgba(10, 26, 68, 0.05),
    rgba(0, 141, 89, 0.2)
  );
  filter: blur(22px);
}

.browser-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--card);
  box-shadow: var(--shadow-elegant);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 248, 249, 0.7);
  padding: 12px 16px;
}

.browser-bar span:not(.browser-url) {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.browser-bar span:nth-child(1) {
  background: #f87171;
}

.browser-bar span:nth-child(2) {
  background: #facc15;
}

.browser-bar span:nth-child(3) {
  background: #4ade80;
}

.browser-url {
  margin-left: 10px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.browser-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dark-cta {
  overflow: hidden;
  border-radius: 24px;
  background: var(--navy);
  color: white;
  padding: 40px;
  box-shadow: var(--shadow-elegant);
}

.dark-cta h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.dark-cta p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.7;
}

.contact-card {
  margin: 104px 0 72px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--card);
  padding: 54px;
 
  box-shadow: var(--shadow-elegant);
}

.contact-card h1 {
  font-size: 44px;   
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-card p {
  font-size: 16px;   
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-benefits {
  display: grid;
  gap: 20px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-benefits li > span:last-child {
  color: var(--fg);
  font-size: 15px;
  line-height: 1.5;
}

.contact-benefit-icon {
  display: inline-flex;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 208, 132, 0.12);
  color: var(--primary-dark);
}

.contact-benefit-icon svg {
  width: 20px;
  height: 20px;
}

.contact-form {
  display: grid;
  gap: 20px;
}

.contact-form-status {
  font-size: 14px;
  line-height: 1.5;
}

.contact-card p.contact-form-status {
  margin-bottom: 0;
}

.contact-form-status[data-type="info"] {
  color: var(--muted, #64748b);
}

.contact-form-status[data-type="success"] {
  color: var(--primary, #00d084);
}

.contact-form-status[data-type="error"] {
  color: #dc2626;
}

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

.contact-form .field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-form .field input,
.contact-form .field textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  color: var(--fg);
  padding: 8px 16px;
  font-size: 14px;
  line-height: 1.4;
  outline: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form .field input::placeholder,
.contact-form .field textarea::placeholder {
  color: #94a3b8;
}

.contact-form .field textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form .field input:focus,
.contact-form .field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 208, 132, 0.14);
}

.contact-form-submit {
  width: 100%;
  min-height: 32px;
  margin-top: 4px;
  padding: 12px 20px;
  border: 0;
  border-radius: 10px;
  background: var(--primary);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

.contact-form-submit:hover {
  background: var(--primary-dark);
  color: #fff;
}

.contact-form-submit .icon {
  width: 18px;
  height: 18px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  max-width: min(360px, calc(100vw - 36px));
  border: 1px solid rgba(0, 208, 132, 0.35);
  border-radius: 12px;
  background: white;
  padding: 16px 18px;
  box-shadow: var(--shadow-elegant);
  transform: translateY(18px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.document-main {
  padding: 64px 0 80px;
}

.document-header {
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}

.document-header h1 {
  margin: 12px 0 0;
  font-size: clamp(36px, 6vw, 52px);
}

.document-header p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.7;
}

.doc-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

.toc {
  position: sticky;
  top: 96px;
  align-self: start;
}

.toc nav {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--card);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}

.toc p {
  margin-bottom: 12px;
  font-weight: 600;
}

.toc ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc a {
  color: var(--muted);
  font-size: 14px;
}

.toc a:hover {
  color: var(--primary-dark);
}

.prose {
  color: rgba(23, 35, 63, 0.92);
}

.prose h2 {
  scroll-margin-top: 96px;
  margin: 0 0 14px;
  font-size: 26px;
}

.prose h3 {
  margin: 28px 0 10px;
}

.prose p,
.prose li {
  line-height: 1.78;
}

.prose a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.prose ul {
  display: grid;
  gap: 8px;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(244, 248, 249, 0.78);
  padding: 24px;
}

.meta-grid p {
  margin: 0;
}

.meta-grid .label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.meta-grid .value {
  margin-top: 6px;
  font-weight: 600;
}

.not-found {
  display: grid;
  min-height: 70vh;
  place-items: center;
  padding: 48px 16px;
  text-align: center;
}

.not-found h1 {
  margin-bottom: 12px;
  font-size: 74px;
}

.fade-up {
  animation: fade-up 700ms ease both;
}

@keyframes ticker-x {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ping {
  75%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}
