:root {
  --navy-950: #04111f;
  --navy-900: #07172b;
  --navy-850: #0a2037;
  --navy-800: #0d2946;
  --blue-700: #075b91;
  --blue-600: #0879b6;
  --cyan-500: #00aee8;
  --cyan-400: #20c9f4;
  --cyan-100: #dff8ff;
  --ink-900: #102a43;
  --ink-700: #334e68;
  --ink-600: #486581;
  --ink-500: #627d98;
  --white: #ffffff;
  --soft: #f4f8fb;
  --soft-blue: #eef8fc;
  --line: #dbe7ef;
  --danger: #b42318;
  --success: #13795b;
  --shadow-sm: 0 12px 30px rgba(7, 35, 60, 0.08);
  --shadow-md: 0 24px 60px rgba(5, 31, 54, 0.14);
  --shadow-lg: 0 35px 90px rgba(0, 0, 0, 0.24);
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink-700);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }
/* Destinos reais dos sitelinks e compensação do cabeçalho fixo. */
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }
section[id]:focus { outline: none; }

.logo img,
.brand-image img,
.device-mockup img {
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.media-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
}
.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}


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

button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }

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

h1, h2, h3 {
  color: var(--ink-900);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 { font-size: clamp(2.45rem, 11vw, 4.4rem); }
h2 { font-size: clamp(2rem, 8vw, 3.25rem); }
h3 { font-size: 1.15rem; }

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

.section { padding-block: 76px; }
.section-soft { background: var(--soft); }
.section-dark {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 84% 20%, rgba(32, 201, 244, 0.15), transparent 29rem),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 55%, #092944);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 { color: var(--white); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 5000;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 8px;
  font-weight: 800;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--cyan-500);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1200;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(219, 231, 239, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease;
}

.site-header.scrolled { box-shadow: 0 10px 30px rgba(4, 24, 42, 0.09); }

.header-inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  text-decoration: none;
}

.brand picture { display: block; }
.brand img {
  width: auto;
  max-width: min(205px, 62vw);
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

.menu-toggle {
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-content: center;
  gap: 5px;
  color: var(--navy-900);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-toggle span:first-child { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:last-child { transform: translateY(-7px) rotate(-45deg); }

.main-nav {
  position: fixed;
  inset: var(--header-height) 0 auto;
  display: flex;
  max-height: calc(100vh - var(--header-height));
  overflow-y: auto;
  flex-direction: column;
  padding: 12px 20px 22px;
  background: rgba(255, 255, 255, 0.995);
  border-top: 1px solid var(--line);
  box-shadow: 0 24px 50px rgba(3, 27, 49, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-open .main-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.main-nav a {
  min-height: 48px;
  padding: 12px 4px;
  color: var(--ink-700);
  border-bottom: 1px solid #edf2f5;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav .nav-cta {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 11px 18px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border: 0;
  border-radius: 12px;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 6%;
  right: -18%;
  width: 34rem;
  max-width: 80vw;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(0, 174, 232, 0.18), transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  display: grid;
  gap: 50px;
  align-items: center;
  padding-block: 68px 78px;
}

.hero-copy { position: relative; z-index: 2; }

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 0.73rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--cyan-400);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(32, 201, 244, 0.11);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--white);
  font-weight: 820;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 3.9vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--cyan-400), #78e7ff);
  box-shadow: 0 14px 32px rgba(0, 174, 232, 0.24);
}

.button-primary:hover { box-shadow: 0 18px 38px rgba(0, 174, 232, 0.34); }

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.25);
}

.button-ghost:hover { background: rgba(255, 255, 255, 0.1); }

.button-outline {
  color: var(--navy-900);
  background: var(--white);
  border-color: #bdd1df;
}

.button-outline:hover { border-color: var(--blue-600); }

.hero-trust {
  display: grid;
  gap: 9px;
  margin: 28px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 0.88rem;
  list-style: none;
}

.hero-trust li {
  position: relative;
  padding-left: 25px;
}

.hero-trust li::before {
  position: absolute;
  top: 0.24em;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  color: var(--navy-950);
  content: "✓";
  background: var(--cyan-400);
  border-radius: 50%;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
}

.device-stage {
  position: relative;
  width: min(100%, 650px);
  min-height: 360px;
  margin-inline: auto;
  isolation: isolate;
}

.device-orbit {
  position: absolute;
  inset: 2% 6% 12%;
  z-index: -1;
  background: linear-gradient(145deg, rgba(0, 174, 232, 0.21), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 42% 58% 55% 45% / 45% 39% 61% 55%;
  transform: rotate(-4deg);
}

.laptop {
  position: absolute;
  top: 8%;
  right: 1%;
  left: 1%;
}

.laptop-screen {
  overflow: hidden;
  aspect-ratio: 16 / 10;
  padding: 7px;
  background: #0b1825;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px 16px 7px 7px;
  box-shadow: var(--shadow-lg);
}

.demo-browser-bar {
  display: flex;
  height: 24px;
  align-items: center;
  gap: 5px;
  padding-inline: 8px;
  color: #71869a;
  background: #eaf0f4;
  border-radius: 9px 9px 0 0;
}

.demo-browser-bar span {
  width: 6px;
  height: 6px;
  background: #a9bac7;
  border-radius: 50%;
}

.demo-browser-bar i {
  width: 46%;
  margin-inline: auto;
  padding: 2px 8px;
  overflow: hidden;
  color: #71869a;
  background: var(--white);
  border: 1px solid #dbe5ec;
  border-radius: 99px;
  font-size: clamp(0.32rem, 1.45vw, 0.55rem);
  font-style: normal;
  text-align: center;
  white-space: nowrap;
}

.demo-page {
  height: calc(100% - 24px);
  overflow: hidden;
  background: #f7fbfd;
  border-radius: 0 0 4px 4px;
}

.demo-nav {
  display: flex;
  height: 13%;
  align-items: center;
  justify-content: space-between;
  padding-inline: 5.5%;
  background: var(--white);
  border-bottom: 1px solid #e7eff4;
}

.demo-nav b {
  width: 18%;
  height: 28%;
  background: linear-gradient(90deg, var(--blue-700), var(--cyan-500));
  border-radius: 3px;
}

.demo-nav div { display: flex; width: 39%; justify-content: space-between; }
.demo-nav i { width: 18%; height: 3px; background: #91a6b5; border-radius: 99px; }

.demo-hero {
  display: grid;
  height: 60%;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 6%;
  align-items: center;
  padding: 7% 6%;
  background: linear-gradient(135deg, #eef8fc, #f9fcfd);
}

.demo-copy > * { display: block; }
.demo-copy > span { width: 35%; height: 4px; margin-bottom: 8%; background: var(--cyan-500); border-radius: 99px; }
.demo-copy > strong { width: 92%; height: 8px; margin-bottom: 5%; background: var(--navy-800); border-radius: 99px; }
.demo-copy > strong.short { width: 69%; }
.demo-copy > p { width: 86%; height: 4px; margin: 8% 0 0; background: #aabdc9; border-radius: 99px; }
.demo-copy > p.short { width: 58%; margin-top: 4%; }
.demo-copy > .demo-cta { width: 38%; height: 16px; margin-top: 10%; background: var(--cyan-500); border: 0; border-radius: 4px; }

.demo-visual {
  position: relative;
  height: 80%;
  background: linear-gradient(145deg, var(--blue-700), var(--navy-900));
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(8, 71, 110, 0.22);
}

.demo-visual div { position: absolute; background: rgba(255, 255, 255, 0.92); border-radius: 5px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }
.demo-visual div:first-child { inset: 12% 41% 43% 10%; }
.demo-visual div:nth-child(2) { inset: 25% 9% 29% 48%; }
.demo-visual div:last-child { inset: 63% 28% 10% 18%; }

.demo-cards {
  display: grid;
  height: 27%;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
  padding: 4% 6%;
  background: var(--white);
}

.demo-cards article { background: #eaf3f8; border: 1px solid #dbe8ef; border-radius: 6px; }

.laptop-base {
  width: 108%;
  height: 13px;
  margin-left: -4%;
  background: linear-gradient(#b8c7d0, #e7eef2 45%, #8496a2);
  border-radius: 2px 2px 16px 16px;
  box-shadow: 0 18px 25px rgba(0, 0, 0, 0.22);
}

.phone {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: 24%;
  aspect-ratio: 0.52;
  padding: 5px;
  background: #06111c;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.38);
}

.phone-speaker {
  position: absolute;
  top: 7px;
  left: 50%;
  z-index: 2;
  width: 27%;
  height: 4px;
  background: #243847;
  border-radius: 99px;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  padding: 14% 7% 7%;
  background: #f5fafc;
  border-radius: 14px;
}

.mobile-nav { display: flex; align-items: center; justify-content: space-between; }
.mobile-nav b { width: 42%; height: 5px; background: linear-gradient(90deg, var(--blue-700), var(--cyan-500)); border-radius: 99px; }
.mobile-nav i { width: 13%; height: 5px; border-top: 1px solid #597286; border-bottom: 1px solid #597286; }
.mobile-hero { padding-block: 21% 15%; }
.mobile-hero > * { display: block; }
.mobile-hero span { width: 38%; height: 3px; margin-bottom: 13%; background: var(--cyan-500); border-radius: 99px; }
.mobile-hero strong { width: 92%; height: 6px; margin-bottom: 7%; background: var(--navy-800); border-radius: 99px; }
.mobile-hero strong:nth-of-type(2) { width: 71%; }
.mobile-hero p { width: 85%; height: 3px; margin: 14% 0 0; background: #9db0bd; border-radius: 99px; }
.mobile-hero .demo-cta { width: 68%; height: 13px; margin-top: 18%; background: var(--cyan-500); border: 0; border-radius: 4px; }
.mobile-card { height: 14%; margin-top: 9%; background: var(--white); border: 1px solid #dbe8ef; border-radius: 5px; }

.device-badge {
  position: absolute;
  bottom: 2%;
  left: 0;
  z-index: 4;
  display: flex;
  max-width: 75%;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.device-badge > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 9px;
  place-items: center;
  font-weight: 900;
}

.device-badge strong,
.device-badge small { display: block; }
.device-badge strong { color: var(--ink-900); font-size: 0.78rem; line-height: 1.25; }
.device-badge small { margin-top: 2px; color: var(--ink-500); font-size: 0.64rem; line-height: 1.25; }

.confidence-strip {
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy-850);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.confidence-grid { display: grid; }

.confidence-grid > div {
  min-height: 112px;
  padding: 22px 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.confidence-grid > div:last-child { border-bottom: 0; }
.confidence-grid strong, .confidence-grid span { display: block; }
.confidence-grid strong { color: var(--white); font-size: 0.98rem; }
.confidence-grid span { margin-top: 5px; color: rgba(255, 255, 255, 0.62); font-size: 0.86rem; line-height: 1.55; }

.section-heading { max-width: 760px; margin-bottom: 38px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2,
.included-copy h2,
.faq-intro h2,
.contact-copy h2 { margin-bottom: 16px; }
.section-heading p,
.included-copy > p,
.faq-intro > p { max-width: 700px; margin-bottom: 0; color: var(--ink-600); }
.section-heading.light p { color: rgba(255, 255, 255, 0.68); }
.section-heading.light .section-kicker,
.section-kicker.light { color: var(--cyan-400); }

.problem-grid,
.types-grid,
.difference-grid { display: grid; gap: 16px; }

.problem-card,
.type-card,
.difference-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.problem-card::after,
.type-card::after,
.difference-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  content: "";
  background: radial-gradient(circle, rgba(32, 201, 244, 0.13), transparent 70%);
  border-radius: 50%;
}

.problem-card > span,
.difference-card > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-700);
  background: var(--cyan-100);
  border-radius: 10px;
  font-size: 0.73rem;
  font-weight: 900;
}

.problem-card h3,
.type-card h3,
.difference-card h3 { margin-bottom: 10px; }
.problem-card p,
.type-card p,
.difference-card p { margin-bottom: 0; color: var(--ink-600); font-size: 0.93rem; }

.type-card { min-height: 225px; }
.type-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  color: var(--navy-900);
  background: linear-gradient(145deg, var(--cyan-100), #b8efff);
  border: 1px solid #b9e8f5;
  border-radius: 14px;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 900;
}

.included-layout { display: grid; gap: 36px; }
.included-copy { max-width: 560px; }
.scope-note {
  margin-top: 24px;
  padding: 17px 18px;
  color: var(--ink-700);
  background: var(--soft-blue);
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 12px 12px 0;
  font-size: 0.9rem;
}

.check-grid {
  display: grid;
  gap: 10px;
}

.check-grid > div {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 7px 18px rgba(7, 35, 60, 0.045);
  font-size: 0.91rem;
  font-weight: 680;
}

.check-grid span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 8px;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 900;
}

.examples { overflow: hidden; }
.example-grid { display: grid; gap: 20px; }

.example-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.site-preview {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  padding: 7%;
  background: #eef5f9;
  border-bottom: 1px solid var(--line);
}

.preview-top {
  display: flex;
  height: 11%;
  align-items: center;
  justify-content: flex-end;
  gap: 7%;
  margin: -7% -7% 6%;
  padding-inline: 7%;
  background: var(--white);
  border-bottom: 1px solid #dce8ef;
}

.preview-top b { width: 21%; height: 27%; margin-right: auto; background: linear-gradient(90deg, var(--blue-700), var(--cyan-500)); border-radius: 2px; }
.preview-top span { width: 9%; height: 2px; background: #8da3b2; border-radius: 99px; }

.preview-main { display: grid; height: 50%; grid-template-columns: 1fr 0.82fr; gap: 9%; align-items: center; }
.preview-main div > * { display: block; }
.preview-main i,
.landing-focus i,
.services-title i { width: 34%; height: 3px; margin-bottom: 9%; background: var(--cyan-500); border-radius: 99px; }
.preview-main strong,
.landing-focus strong,
.services-title strong { width: 91%; height: 6px; margin-bottom: 6%; background: var(--navy-800); border-radius: 99px; }
.preview-main strong:nth-of-type(2),
.landing-focus strong:nth-of-type(2) { width: 68%; }
.preview-main p,
.landing-focus p,
.services-title p { width: 82%; height: 3px; margin: 11% 0 0; background: #a2b6c3; border-radius: 99px; }
.preview-main .demo-cta,
.landing-focus .demo-cta { width: 40%; height: 12px; margin-top: 12%; background: var(--cyan-500); border: 0; border-radius: 3px; }
.preview-main figure { height: 82%; margin: 0; background: linear-gradient(145deg, var(--blue-600), var(--navy-900)); border-radius: 8px; box-shadow: 0 8px 18px rgba(0, 80, 125, 0.2); }
.preview-row { display: grid; height: 25%; grid-template-columns: repeat(3, 1fr); gap: 4%; margin-top: 7%; }
.preview-row i { background: var(--white); border: 1px solid #d9e7ee; border-radius: 6px; box-shadow: 0 4px 10px rgba(7, 35, 60, 0.05); }

.preview-landing { background: linear-gradient(150deg, #eaf8fd, #f9fcfd); }
.landing-focus { width: 74%; margin: 10% auto 0; text-align: center; }
.landing-focus > * { display: block; margin-inline: auto; }
.landing-focus i { width: 24%; }
.landing-focus p { width: 70%; }
.landing-proof { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3%; margin-top: 14%; }
.landing-proof i { height: 16px; background: var(--white); border: 1px solid #dce8ef; border-radius: 4px; }

.preview-services { background: #f7fbfd; }
.services-title { width: 68%; margin: 1% auto 8%; text-align: center; }
.services-title > * { display: block; margin-inline: auto; }
.services-title i { width: 26%; }
.services-title p { width: 74%; }
.services-cards { display: grid; height: 35%; grid-template-columns: repeat(3, 1fr); gap: 4%; }
.services-cards article { background: var(--white); border: 1px solid #dbe8ef; border-radius: 7px; box-shadow: 0 5px 12px rgba(7, 35, 60, 0.05); }
.services-cta { width: 38%; height: 9px; margin: 8% auto 0; background: var(--cyan-500); border-radius: 99px; }

.example-content { padding: 22px; }
.example-content span { display: block; margin-bottom: 7px; color: var(--blue-600); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.example-content h3 { margin-bottom: 9px; color: var(--ink-900); }
.example-content p { margin-bottom: 0; color: var(--ink-600); font-size: 0.91rem; }

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

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.process-list li > span {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--navy-950);
  background: linear-gradient(145deg, var(--cyan-400), #8aeaff);
  border-radius: 14px;
  place-items: center;
  font-size: 0.78rem;
  font-weight: 900;
}

.process-list h3 { margin: 2px 0 8px; }
.process-list p { margin-bottom: 0; color: var(--ink-600); font-size: 0.92rem; }

.difference-card { min-height: 225px; }

.faq-layout { display: grid; gap: 42px; }
.faq-intro { max-width: 520px; }
.faq-intro .button { margin-top: 25px; }
.faq-list { display: grid; gap: 11px; }

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 7px 20px rgba(7, 35, 60, 0.045);
}

.faq-list summary {
  position: relative;
  min-height: 58px;
  padding: 17px 52px 17px 18px;
  color: var(--ink-900);
  cursor: pointer;
  font-weight: 760;
  line-height: 1.45;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  color: var(--blue-700);
  content: "+";
  background: var(--cyan-100);
  border-radius: 8px;
  place-items: center;
  font-size: 1.1rem;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 18px 18px; color: var(--ink-600); font-size: 0.92rem; }

.contact-section {
  padding-block: 76px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 14% 12%, rgba(0, 174, 232, 0.15), transparent 24rem),
    linear-gradient(145deg, var(--navy-950), #082642);
}

.contact-layout { display: grid; gap: 44px; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { max-width: 610px; }

.contact-steps { display: grid; gap: 14px; margin-top: 30px; }
.contact-steps > div { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.contact-steps span {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 10px;
  place-items: center;
  font-size: 0.73rem;
  font-weight: 900;
}
.contact-steps p { margin: 2px 0 0; font-size: 0.92rem; }
.contact-steps strong { color: var(--white); }

.responsible-card {
  display: flex;
  max-width: 410px;
  align-items: center;
  gap: 13px;
  margin-top: 30px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.responsible-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}
.responsible-card span,
.responsible-card strong,
.responsible-card small { display: block; }
.responsible-card span { color: var(--cyan-400); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.responsible-card strong { color: var(--white); font-size: 1rem; }
.responsible-card small { color: rgba(255, 255, 255, 0.58); }

.lead-form {
  padding: 22px;
  color: var(--ink-700);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.form-heading { margin-bottom: 22px; }
.form-heading span { color: var(--blue-600); font-size: 0.7rem; font-weight: 850; letter-spacing: 0.09em; text-transform: uppercase; }
.form-heading h3 { margin: 4px 0 2px; font-size: 1.45rem; }
.form-heading small { color: var(--ink-500); font-size: 0.78rem; }

.form-status {
  display: none;
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.87rem;
  font-weight: 650;
}

.form-status.show { display: block; }
.form-status.error { color: #8b1f17; background: #fff0ee; border: 1px solid #f1c5bf; }
.form-status.success { color: #0c654c; background: #eaf8f3; border: 1px solid #b7e3d5; }

.form-grid { display: grid; gap: 16px; }
.field-group { min-width: 0; }
.field-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-900);
  font-size: 0.84rem;
  font-weight: 760;
}

input, select, textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid #b9cbd8;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

textarea { min-height: 128px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #8498a8; }
input:focus, select:focus, textarea:focus { border-color: var(--blue-600); box-shadow: 0 0 0 3px rgba(8, 121, 182, 0.14); }
input[aria-invalid="true"], select[aria-invalid="true"], textarea[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.09); }

.field-error {
  display: none;
  margin-top: 5px;
  color: var(--danger);
  font-size: 0.76rem;
  line-height: 1.4;
}
.field-error.show { display: block; }

.consent-field {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
}

.consent-field input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  accent-color: var(--blue-600);
}

.consent-field label { font-size: 0.81rem; line-height: 1.55; }
.consent-field a { color: var(--blue-700); font-weight: 750; }
.consent-error { margin-left: 32px; }
.form-note { margin: 20px 0 11px; color: var(--ink-700); font-size: 0.84rem; font-weight: 680; }
.form-submit { width: 100%; min-height: 54px; border: 0; }
.form-submit:disabled { cursor: wait; opacity: 0.65; transform: none; }
.form-disclaimer { margin: 10px 0 0; color: var(--ink-500); font-size: 0.74rem; text-align: center; }

.site-footer { color: rgba(255, 255, 255, 0.69); background: var(--navy-950); }
.footer-main { display: grid; gap: 35px; padding-block: 54px 42px; }
.footer-brand img { width: auto; max-width: 220px; height: auto; max-height: 66px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.98; }
.footer-brand p { max-width: 420px; margin: 18px 0 8px; }
.footer-brand > span { color: var(--cyan-400); font-size: 0.82rem; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 9px; }
.footer-column strong { margin-bottom: 6px; color: var(--white); }
.footer-column a,
.footer-link { display: inline-flex; min-height: 44px; align-items: center; color: rgba(255, 255, 255, 0.66); background: none; border: 0; padding: 6px 0; font-size: 0.88rem; text-align: left; text-decoration: none; cursor: pointer; }
.footer-column a:hover,
.footer-link:hover { color: var(--cyan-400); text-decoration: underline; text-underline-offset: 3px; }
.footer-column span { font-size: 0.86rem; }

.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.09); }
.footer-bottom .container { display: flex; min-height: 74px; flex-direction: column; justify-content: center; gap: 6px; padding-block: 16px; font-size: 0.8rem; }
.footer-bottom a { color: var(--cyan-400); text-decoration: none; }

.floating-whatsapp {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: #168f5f;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  box-shadow: 0 13px 30px rgba(0, 74, 47, 0.3);
  text-decoration: none;
  transition: bottom 0.25s ease, transform 0.2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
.floating-whatsapp svg { width: 27px; height: 27px; fill: currentColor; }
.floating-whatsapp span { display: none; }
.has-cookie-banner .floating-whatsapp { display: none; }

.cookie-banner {
  position: relative;
  z-index: 1400;
  width: calc(100% - 24px);
  max-height: none;
  margin: 12px;
  overflow-y: auto;
  padding: 18px;
  color: var(--ink-700);
  background: rgba(255, 255, 255, 0.99);
  border: 1px solid #cbdce7;
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(2, 19, 34, 0.28);
}
.cookie-banner[hidden] { display: none; }
.cookie-copy strong { display: block; color: var(--ink-900); font-size: 1rem; }
.cookie-copy p { margin: 7px 0 7px; font-size: 0.83rem; line-height: 1.55; }
.cookie-copy a { color: var(--blue-700); font-size: 0.8rem; font-weight: 750; }
.privacy-status { display: block; min-height: 1.2em; margin-top: 5px; color: var(--success); font-size: 0.76rem; }
.cookie-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: 14px; }
.button-cookie-secondary { color: var(--navy-900); background: var(--white); border-color: #aebfcc; }
.button-cookie-primary { color: var(--navy-950); background: var(--cyan-400); border-color: var(--cyan-400); }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 560px) {
  .hero-actions { flex-direction: row; flex-wrap: wrap; }
  .hero-actions .button { width: auto; }
  .hero-trust { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .device-stage { min-height: 440px; }
  .problem-grid,
  .types-grid,
  .difference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .field-group.full { grid-column: 1 / -1; }
  .footer-bottom .container { flex-direction: row; align-items: center; justify-content: space-between; }

}

@media (min-width: 760px) {
  :root { --header-height: 78px; }
  .container { width: min(calc(100% - 48px), var(--container)); }
  .section,
  .contact-section { padding-block: 96px; }
  .brand img { max-width: 230px; max-height: 55px; }
  .hero-layout { min-height: calc(100vh - var(--header-height)); padding-block: 76px 88px; }
  .confidence-grid { grid-template-columns: repeat(2, 1fr); }
  .confidence-grid > div { padding: 26px 24px; border-right: 1px solid rgba(255, 255, 255, 0.09); }
  .confidence-grid > div:nth-child(2n) { border-right: 0; }
  .confidence-grid > div:nth-last-child(-n + 2) { border-bottom: 0; }
  .section-heading { margin-bottom: 48px; }
  .problem-card,
  .type-card,
  .difference-card { padding: 28px; }
  .example-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .example-card:last-child { grid-column: 1 / -1; width: min(570px, 100%); justify-self: center; }
  .lead-form { padding: 30px; }
  .form-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
  .footer-main { grid-template-columns: 1.35fr 0.8fr 0.95fr; }
  .footer-column:last-child { grid-column: 1 / -1; }
  .floating-whatsapp { right: 20px; bottom: 20px; width: auto; height: 54px; padding: 0 18px; gap: 8px; border-radius: 99px; }
  .floating-whatsapp span { display: inline; font-size: 0.86rem; font-weight: 800; }

}

@media (min-width: 980px) {
  .cookie-banner { position: fixed; right: 18px; bottom: 18px; left: auto; width: min(520px, calc(100% - 36px)); max-height: calc(100vh - 36px); margin: 0; }
  .has-cookie-banner .floating-whatsapp { display: inline-flex; bottom: 250px; right: 20px; }
  .hero-layout { grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr); gap: 58px; }
  .device-stage { min-height: 460px; }
  .confidence-grid { grid-template-columns: repeat(4, 1fr); }
  .confidence-grid > div { border-bottom: 0; }
  .confidence-grid > div:nth-child(2n) { border-right: 1px solid rgba(255, 255, 255, 0.09); }
  .confidence-grid > div:last-child { border-right: 0; }
  .problem-grid,
  .types-grid,
  .difference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .included-layout { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: 70px; align-items: start; }
  .included-copy { position: sticky; top: calc(var(--header-height) + 28px); }
  .example-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .example-card:last-child { grid-column: auto; width: auto; }
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .faq-layout { grid-template-columns: 0.78fr 1.22fr; gap: 74px; align-items: start; }
  .faq-intro { position: sticky; top: calc(var(--header-height) + 28px); }
  .contact-layout { grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr); gap: 70px; align-items: start; }
  .footer-main { grid-template-columns: 1.35fr 0.75fr 0.95fr 1fr; }
  .footer-column:last-child { grid-column: auto; }
}

@media (min-width: 1260px) {
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex;
    max-height: none;
    overflow: visible;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    padding: 0;
    background: none;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .main-nav a { min-height: auto; padding: 8px 0; border: 0; font-size: 0.78rem; white-space: nowrap; }
  .main-nav a:not(.nav-cta) { position: relative; }
  .main-nav a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--cyan-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.2s ease;
  }
  .main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
  .main-nav .nav-cta { min-height: 44px; margin: 0 0 0 4px; padding: 10px 15px; }
}

@media (min-width: 1360px) {
  .main-nav { gap: 21px; }
  .main-nav a { font-size: 0.8rem; }
}

@media (max-width: 380px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .brand img { max-width: 176px; }
  .hero-layout { padding-block: 54px 66px; }
  .device-stage { min-height: 330px; }
  .device-badge { max-width: 84%; }
  .problem-card,
  .type-card,
  .difference-card,
  .lead-form { padding: 20px; }
  .cookie-actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Páginas auxiliares */
.legal-page { background: var(--soft); }
.legal-back {
  min-height: 44px;
  padding: 10px 15px;
  color: var(--navy-900);
  background: var(--cyan-400);
}
.legal-main { padding-block: 52px 80px; }
.legal-container {
  max-width: 920px;
  padding: 28px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
}
.legal-title { padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.legal-title h1 { margin-bottom: 10px; font-size: clamp(2.1rem, 8vw, 3.5rem); }
.legal-title p { margin-bottom: 0; color: var(--ink-500); }
.legal-summary {
  margin: 26px 0;
  padding: 18px;
  background: var(--soft-blue);
  border-left: 4px solid var(--cyan-500);
  border-radius: 0 12px 12px 0;
}
.legal-summary strong { display: block; margin-bottom: 6px; color: var(--ink-900); }
.legal-summary p { margin-bottom: 0; }
.legal-content { display: grid; gap: 30px; }
.legal-content section { scroll-margin-top: calc(var(--header-height) + 18px); }
.legal-content h2 { margin-bottom: 10px; font-size: 1.35rem; letter-spacing: -0.02em; }
.legal-content p { margin-bottom: 10px; }
.legal-content p:last-child { margin-bottom: 0; }
.legal-content code {
  padding: 2px 5px;
  color: #0b4c70;
  background: #eaf6fb;
  border-radius: 5px;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}
.legal-content a { color: var(--blue-700); font-weight: 760; }
.legal-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.compact-footer .legal-footer {
  display: flex;
  min-height: 74px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding-block: 16px;
}

.error-page {
  min-height: 100vh;
  color: rgba(255,255,255,.76);
  background:
    radial-gradient(circle at 20% 15%, rgba(0,174,232,.18), transparent 25rem),
    linear-gradient(145deg, var(--navy-950), var(--navy-900));
}
.error-main {
  display: grid;
  min-height: 100vh;
  padding: 28px 15px;
  place-items: center;
}
.error-card {
  width: min(100%, 660px);
  padding: 30px 22px;
  text-align: center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}
.error-logo { display: inline-block; margin-bottom: 26px; }
.error-logo img { width: min(260px, 72vw); height: auto; max-height: 78px; object-fit: contain; filter: brightness(0) invert(1); }
.error-card > span { display: block; margin-bottom: 8px; color: var(--cyan-400); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.error-card h1 { margin-bottom: 14px; color: var(--white); font-size: clamp(2rem, 9vw, 3.4rem); }
.error-card p { max-width: 520px; margin-inline: auto; }
.error-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.error-privacy { min-height: 44px; margin-top: 22px; padding: 8px; color: rgba(255,255,255,.72); background: transparent; border: 0; cursor: pointer; text-decoration: underline; text-underline-offset: 3px; }

@media (min-width: 560px) {
  .legal-actions,
  .error-actions { flex-direction: row; flex-wrap: wrap; }
  .legal-container { padding: 44px; }
  .compact-footer .legal-footer { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* Ajustes finais da versão exclusiva para criação de sites. */
#diferenciais .difference-card { min-height: 100%; }
#inicio { scroll-margin-top: var(--header-height); }
@media (max-width: 559px) {
  .hero { min-height: auto; }
}
