:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #f8f9fb;
  --text: #2b3243;
  --heading: #2f374a;
  --muted: #7a8192;
  --line: #e6e9f0;
  --primary: #5c2d91;
  --primary-dark: #4b2476;
  --accent: #6e38ab;
  --max: 1160px;
  --radius: 10px;
  --shadow: 0 6px 16px rgba(31, 35, 51, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

h1,
h2,
h3 {
  margin: 0 0 0.7rem;
  line-height: 1.2;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

a {
  color: inherit;
}

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

.container {
  width: min(var(--max), 92%);
  margin: 0 auto;
}

.bg-shape {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-wrap {
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

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

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

.menu {
  display: flex;
  align-items: center;
  gap: 2.6rem;
  margin-left: 1.2rem;
}

.menu a {
  text-decoration: none;
  color: #4a5266;
  font-weight: 400;
  font-size: 0.89rem;
  letter-spacing: 0.01em;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

.menu a:hover,
.menu a[aria-current="page"] {
  border-color: #4a5266;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 1rem;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.header-cta:hover {
  background: var(--primary-dark);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #ffffff;
  color: #2d3347;
  border-radius: 999px;
  min-height: 38px;
  padding: 0 0.75rem;
  font-family: inherit;
  font-weight: 700;
}

.hero-tag {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5c2d91;
  background: #f4effa;
}

.hero-lead {
  color: var(--muted);
  max-width: 58ch;
}

.hero-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
}

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

.btn-secondary {
  border: 1px solid #c2c9dd;
  color: #2d3347;
  background: #ffffff;
}

.btn-link {
  border: 0;
  border-radius: 0;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  padding: 0;
  min-height: 0;
}

.btn-link:hover {
  border-bottom-color: #dbeafe;
  color: #dbeafe;
}

.hero-banner {
  position: relative;
  isolation: isolate;
  padding: 4.2rem 0;
  min-height: 100svh;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-video-bg iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%);
  border: 0;
  pointer-events: none;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(105deg, rgba(16, 23, 44, 0.84), rgba(47, 20, 82, 0.56));
}

.hero-banner-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  min-height: calc(100svh - 8.4rem);
}

.hero-banner-copy {
  color: #ffffff;
  width: min(83.333%, 72rem);
  max-width: none;
  padding: 0;
  transition: background-color 180ms ease, box-shadow 180ms ease, border-radius 180ms ease, padding 180ms ease;
}

.hero-banner-copy > *,
.hero-pricing-inner > *,
.solutions-hero-inner > *,
.contact-hero-inner > * {
  opacity: 0;
  animation: fade-up 700ms ease forwards;
}

.hero-banner-copy > *:nth-child(1),
.hero-pricing-inner > *:nth-child(1),
.solutions-hero-inner > *:nth-child(1),
.contact-hero-inner > *:nth-child(1) {
  animation-delay: 80ms;
}

.hero-banner-copy > *:nth-child(2),
.hero-pricing-inner > *:nth-child(2),
.solutions-hero-inner > *:nth-child(2),
.contact-hero-inner > *:nth-child(2) {
  animation-delay: 170ms;
}

.hero-banner-copy > *:nth-child(3),
.hero-pricing-inner > *:nth-child(3),
.solutions-hero-inner > *:nth-child(3),
.contact-hero-inner > *:nth-child(3) {
  animation-delay: 260ms;
}

.hero-banner-copy > *:nth-child(4),
.hero-pricing-inner > *:nth-child(4),
.solutions-hero-inner > *:nth-child(4),
.contact-hero-inner > *:nth-child(4) {
  animation-delay: 350ms;
}

.hero-banner-copy h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.12;
  max-width: 15ch;
}

.hero-banner .hero-tag {
  background: rgba(255, 255, 255, 0.14);
  color: #f4f6ff;
}

.hero-banner .hero-lead {
  color: #e8eaf6;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  max-width: 58ch;
}

.hero-banner .hero-actions {
  align-items: center;
  gap: 1rem;
}

.hero-banner .hero-actions .btn {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-banner .hero-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(10, 14, 28, 0.25);
}

.hero-pricing-style {
  padding: 5.2rem 0 6.2rem;
  background:
    linear-gradient(180deg, rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.82)),
    url("img/hero-quem-somos.webp")
      center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-pricing-inner {
  text-align: center;
  color: #ffffff;
  max-width: 860px;
}

.hero-pricing-eyebrow {
  font-size: 1.05rem;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

.hero-pricing-inner h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
}

.hero-pricing-inner p {
  margin: 0 auto 1.8rem;
  max-width: 68ch;
  color: #e5e7eb;
}

.hero-pricing-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.solutions-hero {
  padding: 4.6rem 0 5.4rem;
  background-color: #171717;
  background-image: url("img/hero-solucoes-bg.svg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.solutions-hero-inner {
  text-align: center;
  color: #ffffff;
  max-width: 860px;
}

.solutions-hero .kicker {
  color: #e5e7eb;
}

.solutions-hero h1 {
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  max-width: 41rem;
  line-height: 1.15;
}

.solutions-hero p {
  margin: 0 auto;
  max-width: 62ch;
  color: #e5e7eb;
  line-height: 1.75;
}

.contact-hero {
  padding: 5.2rem 0;
  background-image: url("img/hero-contato.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.62), rgba(17, 24, 39, 0.7));
}

.contact-hero-inner {
  position: relative;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
}

.contact-hero .kicker {
  color: #e5e7eb;
}

.contact-hero h1 {
  margin: 0 auto 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 42rem;
  line-height: 1.15;
}

.contact-hero p {
  margin: 0 auto 1.5rem;
  max-width: 66ch;
  color: #e5e7eb;
  line-height: 1.75;
}

.contact-highlights {
  padding-top: 2rem;
}

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

.contact-highlight-card {
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 0 10px 24px rgba(31, 35, 51, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.contact-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(31, 35, 51, 0.11);
}

.contact-highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #efe8fb;
  color: #4b2476;
  margin-bottom: 0.8rem;
}

.contact-highlight-icon svg {
  width: 23px;
  height: 23px;
}

.contact-highlight-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-highlight-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.65;
}

.solutions-page .section {
  margin-top: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-page .section {
  margin-top: 3rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.contact-page {
  background:
    radial-gradient(900px 400px at 85% -10%, rgba(124, 58, 237, 0.12), transparent),
    radial-gradient(700px 320px at 10% 20%, rgba(59, 130, 246, 0.08), transparent),
    #f8f9fc;
}

.services-section .section-head {
  margin-bottom: 2.4rem;
}

.services-section {
  background-color: #e5e2f2;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-radius: 1rem;
  padding: 1.35rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1eafb;
  color: #4b2476;
  transition: background-color 180ms ease, color 180ms ease;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.service-card p {
  margin: 0 0 1rem;
  color: #4b5563;
  line-height: 1.65;
  transition: color 180ms ease;
}

.service-card a {
  margin-top: auto;
  width: max-content;
  text-decoration: none;
  border-bottom: 2px solid #5c2d91;
  color: #3f1e66;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease;
}

.service-card a:hover {
  color: #2e154d;
  border-bottom-color: #2e154d;
}

.service-card:hover {
  transform: translateY(-4px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 22px rgba(31, 35, 51, 0.18);
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.service-card:hover a {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.section {
  padding: 2rem 0;
}

.inner-hero {
  padding: 2.1rem 0 1rem;
}

.inner-title {
  font-size: clamp(1.7rem, 3.8vw, 2.7rem);
  max-width: 18ch;
}

.inner-text {
  max-width: 70ch;
  color: var(--muted);
}

.section-muted {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.workflow-section {
  background-color: #ede8f6;
}

.section-head {
  max-width: 720px;
  margin-bottom: 1.1rem;
}

.kicker {
  margin-bottom: 0.4rem;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.76rem;
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.history-lane {
  background-color: rgba(134, 97, 197, 0.15);
  padding-top: 130px;
  padding-bottom: 130px;
}

.history-lane-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}

.history-lane-text {
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-right: 0;
  border-radius: 24px 0 0 24px;
  padding: 2.6rem;
  display: flex;
  flex-direction: column;
}

.history-lane-text h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  margin-bottom: 1.4rem;
}

.history-lane-text ul {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  color: #4b5563;
}

.history-lane-text p {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}

.history-lane-text p:last-child {
  margin-bottom: 0;
}

.history-lane-image {
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-left: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 24px 24px 0;
}

.history-lane-image img {
  width: min(80%, 360px);
  height: auto;
  min-height: 0;
  object-fit: contain;
  display: block;
}

.about-center-banner {
  padding-top: 2.4rem;
  padding-bottom: 1.4rem;
}

.about-center-banner.section,
.about-content-grid.section,
.about-highlight.section,
.about-faq.section {
  margin-top: 3.2rem;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.about-center-banner .container {
  text-align: center;
  max-width: 860px;
}

.about-center-banner h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}

.about-center-banner p {
  color: #4b5563;
  line-height: 1.75;
}

.about-content-grid {
  padding-top: 1.8rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem;
}

.about-card {
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-radius: 1rem;
  padding: 2rem 1.7rem 1.8rem;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.about-card h3,
.about-card p {
  margin-left: 0;
  margin-right: 0;
}

.about-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  font-size: 1.08rem;
}

.about-card p {
  margin-bottom: 0;
  color: #4b5563;
  line-height: 1.75;
  transition: color 180ms ease;
}

.about-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b2476;
  background: #ece2f8;
  transition: background-color 180ms ease, color 180ms ease;
}

.about-card-icon svg {
  width: 24px;
  height: 24px;
}

.about-card:hover {
  transform: translateY(-4px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 22px rgba(31, 35, 51, 0.18);
}

.about-card:hover h3,
.about-card:hover p {
  color: #ffffff;
}

.about-card:hover .about-card-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.about-highlight {
  padding-top: 1.8rem;
}

.about-highlight-wrap {
  background: linear-gradient(135deg, #f6f9ff 35%, #efe7fb 100%);
  border: 1px solid #dfe5f2;
  border-radius: 1.1rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2.6rem;
}

.about-highlight-wrap h2 {
  font-size: clamp(1.5rem, 2.9vw, 2.1rem);
  margin-bottom: 1rem;
}

.about-highlight-wrap p {
  color: #4b5563;
  margin-bottom: 1.4rem;
  line-height: 1.75;
}

.about-highlight-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0.9rem;
}

.about-faq {
  padding-top: 1.8rem;
}

.about-faq h2 {
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  margin-bottom: 1.2rem;
}

.about-faq details {
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-radius: 0.8rem;
  padding: 1.45rem 1.4rem;
  margin-bottom: 1.35rem;
}

.about-faq summary {
  cursor: pointer;
  font-weight: 700;
}

.about-faq details p {
  margin: 0.7rem 0 0;
  color: #4b5563;
}

.company-history {
  background: #ffffff;
}

.showcase-feature {
  background: #ffffff;
}

.showcase-shell {
  position: relative;
  min-height: 560px;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #dfe5f2;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
}

.showcase-content {
  position: absolute;
  right: 2.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: min(560px, calc(100% - 4.4rem));
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e4e8f2;
  border-radius: 1rem;
  padding: 1.7rem;
  backdrop-filter: blur(2px);
}

.showcase-line {
  display: block;
  width: 72px;
  height: 4px;
  border-radius: 999px;
  background: #2563eb;
  margin-bottom: 1rem;
}

.showcase-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 0.9rem;
}

.showcase-content p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
}

.history-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}

.history-copy {
  background: #ffffff;
  border: 1px solid #e4e8f2;
  border-radius: 1.1rem;
  padding: 1.6rem;
}

.history-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  margin-bottom: 0.9rem;
}

.history-copy p {
  color: #4b5563;
  line-height: 1.7;
}

.history-copy p:last-child {
  margin-bottom: 0;
}

.history-badge {
  border-radius: 1.1rem;
  background: #ffffff;
  color: #111827;
  padding: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #e4e8f2;
}

.history-logo {
  width: min(100%, 260px);
  height: auto;
  display: block;
}

.quick-nav-band {
  background: linear-gradient(133deg, #f4fafd 47%, #f4e6f5 100%);
}

.quick-nav-band.section,
.home-highlights.section,
.platform-band.section {
  margin-top: 3.2rem;
  padding-top: 5.4rem;
  padding-bottom: 5.4rem;
}

.quick-nav-head {
  max-width: 760px;
  margin-bottom: 2.4rem;
}

.quick-nav-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 0.7rem;
}

.quick-nav-head p {
  color: #4b5563;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.quick-nav-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 2rem 1.8rem;
  border-radius: 1.2rem;
  border: 1px solid #e4e8f2;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 24px rgba(31, 35, 51, 0.07);
}

.quick-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ece2f8;
  color: #4b2476;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.quick-nav-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.65rem;
}

.quick-nav-card p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.quick-nav-card a {
  margin-top: auto;
  width: max-content;
  text-decoration: none;
  border-bottom: 2px solid #5c2d91;
  color: #3f1e66;
  font-weight: 700;
}

.quick-nav-card a:hover {
  color: #2e154d;
  border-bottom-color: #2e154d;
}

.home-highlights {
  background: #ffffff;
}

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

.highlight-card {
  background: #ffffff;
  border: 1px solid #e4e8f2;
  border-radius: 1rem;
  padding: 2rem 1.8rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.highlight-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.95rem;
}

.highlight-icon {
  width: 2rem;
  height: 2rem;
  min-width: 2rem;
  border-radius: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4b2476;
  background: #ece2f8;
  transition: background-color 180ms ease, color 180ms ease;
}

.highlight-icon svg {
  width: 1.1rem;
  height: 1.1rem;
}

.highlight-card h3 {
  margin: 0;
  font-size: 1.03rem;
}

.highlight-card p {
  margin: 0;
  color: #4b5563;
  line-height: 1.7;
  transition: color 180ms ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 12px 22px rgba(31, 35, 51, 0.18);
}

.highlight-card:hover h3,
.highlight-card:hover p {
  color: #ffffff;
}

.highlight-card:hover .highlight-icon {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.home-highlights .section-head {
  margin-bottom: 3.4rem;
}

.home-highlights .section-head h2 {
  margin-bottom: 1rem;
}

.home-highlights .section-head p {
  margin-bottom: 0;
}

.platform-band {
  background: linear-gradient(133deg, #f7fbff 47%, #f2ebff 100%);
}

.platform-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1.8rem;
  align-items: stretch;
}

.platform-feature {
  background:
    linear-gradient(180deg, rgba(20, 30, 58, 0.8), rgba(32, 18, 66, 0.85)),
    url("css/img/banner001.png") center / cover no-repeat;
  border-radius: 1rem;
  color: #ffffff;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}

.platform-feature .kicker {
  color: #dbeafe;
}

.platform-feature h3 {
  font-size: 1.5rem;
}

.platform-feature p {
  color: #e5e7eb;
}

.platform-feature a {
  margin-top: auto;
  width: max-content;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 2px solid #ffffff;
  font-weight: 700;
}

.platform-feature a:hover {
  color: #dbeafe;
  border-bottom-color: #dbeafe;
}

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

.platform-mini-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #dee4f3;
  border-radius: 1rem;
  padding: 1.35rem 1.2rem;
}

.platform-mini-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.platform-mini-card p {
  margin: 0;
  color: #4b5563;
}

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

.stack-item,
.solution-card,
.info-card,
.steps li,
.contact-form,
.project-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.stack-item,
.solution-card,
.info-card,
.steps li,
.contact-form {
  box-shadow: none;
}

.stack-item {
  padding: 0.8rem;
  transition: box-shadow 180ms ease;
}

.stack-item img {
  width: 32px;
  height: 32px;
  margin-bottom: 0.6rem;
}

.stack-item:hover {
  box-shadow: 0 10px 18px rgba(31, 35, 51, 0.12);
}

.stack-item h3 {
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
}

.stack-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

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

.solution-card {
  overflow: hidden;
  padding: 1rem;
}

.solution-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1.06rem;
}

.solution-card p {
  color: var(--muted);
}

.solution-card a {
  display: inline-block;
  margin-bottom: 0;
  color: #2d3347;
  font-weight: 700;
  text-decoration: none;
}

.solution-card a:hover {
  text-decoration: underline;
}

.info-card {
  padding: 1rem;
}

.info-card h2 {
  font-size: 1.08rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
}

.method-wrap {
  display: grid;
  gap: 1rem;
}

.workflow-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 3.8rem 0;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dfe5f2;
}

.workflow-card {
  min-height: 100%;
}

.workflow-text {
  padding: 3.2rem 3rem;
  display: flex;
  flex-direction: column;
}

.workflow-text h2 {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  margin-bottom: 1.6rem;
}

.workflow-text ul {
  margin: 0;
  padding-left: 1.35rem;
  color: #4b5563;
}

.workflow-text li {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.workflow-text .btn {
  width: max-content;
  margin-top: auto;
}

.workflow-image {
  background: #eef2fb;
}

.workflow-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.steps li {
  padding: 1rem;
}

.steps span {
  display: inline-flex;
  min-width: 34px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #e8ecff;
  color: #4a51c2;
  font-size: 0.82rem;
  font-weight: 700;
}

.steps h3 {
  margin-top: 0.7rem;
  margin-bottom: 0.45rem;
  font-size: 1.02rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

.project-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
}

.project-large {
  grid-row: span 2;
  min-height: 500px;
}

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

.project-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #ffffff;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(31, 35, 51, 0) 0%, rgba(31, 35, 51, 0.72) 75%);
}

.project-copy p {
  margin: 0;
  color: #e5e7eb;
}

.contact-section {
  padding-bottom: 3.4rem;
}

.contact-grid,
.contact-page-grid {
  display: grid;
  gap: 1rem;
  align-items: start;
}

.contact-grid {
  grid-template-columns: 1fr 1fr;
}

.contact-page-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-page-grid > *:only-child {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 780px;
  justify-self: center;
}

.contact-list {
  margin: 0 0 1rem;
  padding-left: 1rem;
  color: var(--muted);
}

.contact-list li {
  margin-bottom: 0.4rem;
}

.contact-info-card {
  padding: 1.5rem;
  background: linear-gradient(145deg, #ffffff 45%, #f4effc 100%);
  box-shadow: 0 10px 24px rgba(31, 35, 51, 0.07);
}

.contact-info-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.contact-copy p,
.contact-copy a {
  color: var(--muted);
}

.contact-copy a {
  color: #2d3347;
}

.contact-form {
  padding: 1.5rem;
  display: grid;
  gap: 0.55rem;
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-radius: 1rem;
  box-shadow: 0 12px 26px rgba(31, 35, 51, 0.1);
}

.contact-form h2 {
  margin-bottom: 0.2rem;
  font-size: 1.35rem;
}

.contact-form > p {
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.contact-form label {
  font-size: 0.88rem;
  color: #374151;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d0d5dd;
  background: #ffffff;
  color: #111827;
  border-radius: 8px;
  min-height: 42px;
  font: inherit;
  padding: 0.5rem 0.65rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.16);
}

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

.contact-form button {
  margin-top: 0.4rem;
  min-height: 42px;
  width: max-content;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff;
  font: inherit;
  font-weight: 700;
  padding: 0 1rem;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--primary-dark);
}

.form-status {
  margin: 0.45rem 0 0;
  min-height: 1.2rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #991b1b;
}

.contact-next-steps {
  padding-top: 1.8rem;
  padding-bottom: 4.5rem;
}

.contact-next-head {
  margin-bottom: 1.35rem;
}

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

.contact-next-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #dfe5f2;
  border-radius: 1rem;
  padding: 1.35rem 1.1rem 1.1rem;
  box-shadow: 0 10px 24px rgba(31, 35, 51, 0.08);
}

.contact-next-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #ede8f6;
  color: #5c2d91;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.contact-next-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.contact-next-card p {
  margin: 0;
  color: #4b5563;
}

.map-frame {
  border: 1px solid #dfe5f2;
  border-radius: 1rem;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(31, 35, 51, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  background: #ffffff;
  color: #374151;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.footer-wrap h3 {
  margin-bottom: 0.45rem;
  color: #111827;
}

.footer-wrap p {
  margin: 0;
  max-width: 48ch;
  color: var(--muted);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  height: 34px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 0.85rem 0 0.95rem;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Efeito global de entrada para os principais blocos do site */
.section .section-head,
.quick-nav-card,
.highlight-card,
.platform-feature,
.platform-mini-card,
.history-lane-text,
.history-lane-image,
.about-card,
.about-highlight-wrap > *,
.about-faq details,
.stack-item,
.service-card,
.contact-highlight-card,
.contact-info-card,
.contact-next-card,
.footer-wrap > *,
.footer-bottom {
  opacity: 0;
  animation: fade-up 700ms ease forwards;
  animation-delay: var(--reveal-delay, 120ms);
}

/* Escalonamento suave em grades/listas */
.quick-nav-grid > *:nth-child(1),
.highlight-grid > *:nth-child(1),
.platform-grid > *:nth-child(1),
.about-cards > *:nth-child(1),
.stack-grid > *:nth-child(1),
.services-grid > *:nth-child(1),
.contact-highlights-grid > *:nth-child(1),
.contact-next-grid > *:nth-child(1) {
  --reveal-delay: 90ms;
}

.quick-nav-grid > *:nth-child(2),
.highlight-grid > *:nth-child(2),
.platform-grid > *:nth-child(2),
.about-cards > *:nth-child(2),
.stack-grid > *:nth-child(2),
.services-grid > *:nth-child(2),
.contact-highlights-grid > *:nth-child(2),
.contact-next-grid > *:nth-child(2) {
  --reveal-delay: 170ms;
}

.quick-nav-grid > *:nth-child(3),
.highlight-grid > *:nth-child(3),
.platform-grid > *:nth-child(3),
.about-cards > *:nth-child(3),
.stack-grid > *:nth-child(3),
.services-grid > *:nth-child(3),
.contact-highlights-grid > *:nth-child(3),
.contact-next-grid > *:nth-child(3) {
  --reveal-delay: 250ms;
}

.platform-grid > *:nth-child(4),
.stack-grid > *:nth-child(4),
.services-grid > *:nth-child(4) {
  --reveal-delay: 330ms;
}

.platform-grid > *:nth-child(5),
.stack-grid > *:nth-child(5),
.services-grid > *:nth-child(5) {
  --reveal-delay: 410ms;
}

.platform-grid > *:nth-child(6),
.stack-grid > *:nth-child(6),
.services-grid > *:nth-child(6) {
  --reveal-delay: 490ms;
}

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

@media (max-width: 1050px) {
  .hero-banner-grid,
  .quick-nav-grid,
  .history-lane-wrap,
  .about-cards,
  .about-highlight-wrap,
  .history-layout,
  .highlight-grid,
  .platform-layout,
  .platform-grid,
  .workflow-panel,
  .solution-grid,
  .simple-grid,
  .steps,
  .project-grid,
  .contact-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .contact-next-grid {
    grid-template-columns: 1fr;
  }

  .project-large {
    grid-row: auto;
    min-height: 300px;
  }
}

@media (max-width: 760px) {
  .header-wrap {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand toggle"
      "menu menu"
      "cta cta";
  }

  .brand {
    grid-area: brand;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    grid-area: toggle;
  }

  .menu {
    display: none;
    grid-area: menu;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid var(--line);
    margin-top: 0.5rem;
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 0.7rem 0;
  }

  .header-cta {
    grid-area: cta;
    width: 100%;
    margin: 0.6rem 0 0.75rem;
  }

  .brand img {
    height: 38px;
  }

  .hero-banner {
    padding: 3.3rem 0;
    min-height: 100svh;
  }

  .hero-banner-grid {
    min-height: calc(100svh - 6.6rem);
  }

  .hero-pricing-style {
    padding: 3.8rem 0 4.2rem;
  }

  .solutions-hero {
    padding: 3.6rem 0 4rem;
  }

  .contact-hero {
    padding: 3.8rem 0;
  }

  .solutions-page .section {
    margin-top: 2rem;
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .contact-page .section {
    margin-top: 2rem;
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .contact-highlights-grid {
    grid-template-columns: 1fr;
  }

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

  .quick-nav-head {
    margin-bottom: 1.2rem;
  }

  .quick-nav-band.section,
  .home-highlights.section,
  .platform-band.section {
    margin-top: 2rem;
    padding-top: 3.8rem;
    padding-bottom: 3.8rem;
  }

  .about-center-banner.section,
  .about-content-grid.section,
  .about-highlight.section,
  .about-faq.section {
    margin-top: 2rem;
    padding-top: 3.3rem;
    padding-bottom: 3.3rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .quick-nav-card {
    min-height: 0;
  }

  .platform-feature h3 {
    font-size: 1.28rem;
  }

  .workflow-panel {
    margin: 2.4rem 0;
  }

  .history-lane-text {
    border-right: 1px solid #dfe5f2;
    border-radius: 24px 24px 0 0;
  }

  .history-lane-image {
    border-radius: 0 0 24px 24px;
  }

  .history-lane-image img {
    min-height: 300px;
  }

  .showcase-shell {
    min-height: 0;
  }

  .showcase-image img {
    min-height: 300px;
  }

  .showcase-content {
    position: static;
    transform: none;
    width: auto;
    margin: 0.9rem;
    background: #ffffff;
    border-radius: 0.9rem;
  }

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

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
