:root {
  --primary: #006AED;
  --primary-700: #0355C8;
  --primary-50: #EAF3FF;
  --secondary: #00A7E1;
  --accent: #12B981;
  --warning: #FFB020;
  --danger: #EF4444;
  --ink: #0F172A;
  --muted: #64748B;
  --muted-2: #94A3B8;
  --line: #E2E8F0;
  --surface: #FFFFFF;
  --surface-soft: #F7FAFF;
  --surface-blue: #F0F7FF;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, .08);
  --shadow: 0 20px 60px rgba(15, 23, 42, .12);
  --shadow-blue: 0 18px 50px rgba(0, 106, 237, .22);
  --container: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--surface);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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


.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, .75);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand img {
  width: 188px;
  min-width: 166px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: width .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  padding: 9px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  margin: 5px 0;
  transition: .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

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

.btn-primary {
  color: #fff;
  background: var(--primary);
  box-shadow: 0 10px 26px rgba(0, 106, 237, .22);
}

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

.btn-secondary {
  color: var(--primary-700);
  background: var(--primary-50);
  border-color: rgba(0, 106, 237, .14);
}

.btn-ghost {
  color: var(--primary-700);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 6px 18px rgba(15, 23, 42, .05);
}

.btn-outline {
  color: var(--primary-700);
  border-color: rgba(0, 106, 237, .28);
  background: #fff;
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .08);
}

.btn-lg {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 15px;
}

.section {
  padding: 82px 0;
}

.section-soft {
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 106, 237, .12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(0, 167, 225, .14), transparent 26%),
    linear-gradient(180deg, #F8FBFF 0%, #FFFFFF 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(520px, 1.05fr);
  align-items: center;
  gap: 44px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-700);
  background: rgba(0, 106, 237, .09);
  border: 1px solid rgba(0, 106, 237, .12);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(18, 185, 129, .12);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -.045em;
}

h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(36px, 4.15vw, 52px);
}

.hero-copy>h1:first-child {
  margin-top: 0;
}

.hero-title-accent {
  color: var(--primary);
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
}

h3 {
  font-size: 20px;
  letter-spacing: -.03em;
}

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

.hero-lead {
  max-width: 690px;
  margin-top: 20px;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 640px;
  margin-top: 22px;
}

.proof-avatars {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.proof-avatars span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 10px 20px rgba(0, 106, 237, .18);
}

.proof-avatars span:first-child {
  margin-left: 0;
}

.social-proof strong,
.social-proof small {
  display: block;
}

.social-proof strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.social-proof small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 540px;
  margin-top: 18px;
}

.trust-list span {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0 10px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .035);
}

.trust-icon {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary);
  background: rgba(0, 106, 237, .09);
}

.trust-icon svg {
  width: 18px;
  height: 18px;
}

.trust-list b,
.trust-list small {
  display: block;
  line-height: 1.2;
}

.trust-list b {
  color: #1E293B;
  font-size: 13px;
}

.trust-list small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.hero-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-img {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  filter: none;
}

.hero-media.reveal.visible {
  transform: none;
}

.hero-glow {  position: absolute;
  inset: 9% 1% 7% 5%;
  z-index: 1;
  background: linear-gradient(135deg, rgba(0, 106, 237, .18), rgba(0, 167, 225, .18));
  border-radius: 42px;
  filter: blur(22px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 190px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(226, 232, 240, .92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card strong {
  color: var(--ink);
  font-size: 15px;
}

.floating-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.card-balance {
  left: 30px;
  bottom: 435px;
}

.card-sync {
  right: -25px;
  top: 315px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.hero-metrics article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  box-shadow: var(--shadow-sm);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--primary-700);
  font-size: 20px;
  letter-spacing: -.03em;
}

.hero-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.split-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.resources-copy h2,
.app-copy h2,
.faq-copy h2,
.pricing-top h2,
.highlight-card h2,
.cta-card h2 {
  margin-top: 16px;
}

.section-copy p,
.section-heading p,
.resources-copy p,
.app-copy p,
.faq-copy p,
.pricing-top p,
.highlight-card p,
.cta-card p {
  margin-top: 16px;
  font-size: 17px;
}

.pain-cards {
  display: grid;
  gap: 16px;
}

.pain-cards article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pain-cards span {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
}

.pain-cards strong {
  font-size: 20px;
  letter-spacing: -.03em;
}

.sheet-section {
  padding-top: 0;
}

.comparison-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 30px;
  align-items: stretch;
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(135deg, #F8FBFF 0%, #FFFFFF 58%, #EEF6FF 100%);
  border: 1px solid rgba(0, 106, 237, .12);
  box-shadow: var(--shadow-sm);
}

.comparison-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.comparison-copy h2 {
  margin-top: 16px;
}

.comparison-copy p {
  margin: 16px 0 22px;
  font-size: 17px;
}

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

.comparison-list {
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.comparison-list h3 {
  margin-bottom: 16px;
}

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

.comparison-list li {
  position: relative;
  padding-left: 26px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}

.comparison-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
}

.problem-list li::before {
  content: "×";
  color: var(--danger);
}

.solution-list {
  border-color: rgba(0, 106, 237, .26);
}

.comparison-product-preview {
  display: block;
  width: 100%;
  max-height: 118px;
  margin: -8px 0 18px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 24px rgba(15, 23, 42, .12));
}

.comparison-sheet-preview {
  height: 112px;
  max-height: 112px;
  border-radius: 14px;
  object-fit: cover;
  padding: 0;
}


.solution-list li::before {
  content: "✓";
  color: var(--accent);
}

.integration {
  background: linear-gradient(135deg, #071B3B 0%, #062F68 54%, #006AED 100%);
  color: #fff;
  overflow: hidden;
}

.integration p {
  color: rgba(255, 255, 255, .78);
}

.integration .section-kicker {
  color: #DFF0FF;
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
}

.feature-highlight {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.highlight-card {
  padding: 44px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18);
}

.highlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

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

.integration-grid article {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
}

.integration-grid h3 {
  margin-top: 16px;
}

.integration-grid p {
  margin-top: 10px;
}

.icon-circle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  color: var(--primary);
}

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

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 26px;
  min-height: 272px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.benefit-card:hover,
.resources-grid article:hover,
.testimonial-card:hover,
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 106, 237, .25);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--primary-50);
  color: var(--primary);
}

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

.benefit-card h3 {
  margin-top: 22px;
}

.benefit-card p {
  margin-top: 12px;
}

.resources-layout {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 36px;
  align-items: start;
}

.resources-copy {
  position: sticky;
  top: 106px;
}

.resources-copy .btn {
  margin-top: 24px;
}

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

.resources-grid article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 24%, rgba(var(--resource-rgb, 0, 106, 237), .08), transparent 44%),
    #fff;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
}

.resources-grid article::after {
  content: "";
  position: absolute;
  inset: auto 0 0 36%;
  z-index: 1;
  height: 58%;
  background: linear-gradient(135deg, transparent, rgba(255, 255, 255, .86) 72%);
  pointer-events: none;
}

.resources-grid article:nth-child(2),
.resources-grid article:nth-child(8),
.resources-grid article:nth-child(14),
.resources-grid article:nth-child(16) {
  --resource-rgb: 18, 185, 129;
}

.resources-grid article:nth-child(3),
.resources-grid article:nth-child(6),
.resources-grid article:nth-child(13),
.resources-grid article:nth-child(17) {
  --resource-rgb: 0, 167, 225;
}

.resources-grid article:nth-child(4),
.resources-grid article:nth-child(10),
.resources-grid article:nth-child(15),
.resources-grid article:nth-child(18) {
  --resource-rgb: 99, 102, 241;
}

.resources-grid article:nth-child(5),
.resources-grid article:nth-child(11),
.resources-grid article:nth-child(12) {
  --resource-rgb: 14, 165, 233;
}

.resources-grid span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: var(--surface-blue);
  color: var(--primary);
}

.resources-grid .resource-bg {
  position: absolute;
  right: -18px;
  bottom: -22px;
  z-index: 0;
  width: 148px;
  height: 148px;
  color: rgb(var(--resource-rgb, 0, 106, 237));
  opacity: .075;
  stroke-width: 1.35;
  transform: rotate(-8deg);
  pointer-events: none;
}

.resources-grid .feature-icon svg {
  width: 22px;
  height: 22px;
}

.resources-grid h3 {
  position: relative;
  z-index: 2;
  margin-top: 14px;
  font-size: 18px;
}

.resources-grid p {
  position: relative;
  z-index: 2;
  margin-top: 8px;
  font-size: 14px;
}

.app-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.app-media {
  position: relative;
  border-radius: var(--radius-lg);
  background: transparent;
  padding: 0;
}

.app-media img {
  filter: drop-shadow(0 24px 42px rgba(15, 23, 42, .15));
}

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

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #334155;
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--accent);
  font-size: 12px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.store-btn {
  min-width: 178px;
  display: grid;
  grid-template-columns: 32px 1fr;
  grid-template-areas: "icon small" "icon strong";
  align-items: center;
  gap: 0 10px;
  padding: 12px 16px;
  color: #fff;
  background: #0F172A;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.store-icon {
  grid-area: icon;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, .10);
}

.store-icon svg {
  width: 22px;
  height: 22px;
}

.store-btn small {
  grid-area: small;
  color: rgba(255, 255, 255, .75);
  font-size: 11px;
  line-height: 1;
}

.store-btn strong {
  grid-area: strong;
  font-size: 17px;
  line-height: 1.1;
}

.testimonials {
  background: #fff;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
}

.stars {
  color: #FFB020;
  letter-spacing: 2px;
  font-size: 16px;
}

.testimonial-card p {
  margin-top: 18px;
  color: #334155;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.person img {
  border-radius: 50%;
  border: 3px solid var(--primary-50);
}

.person strong,
.person span {
  display: block;
}

.person span {
  color: var(--muted);
  font-size: 13px;
}

.pricing-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.pricing-top>div:first-child {
  max-width: 720px;
}

.pricing-top code {
  color: var(--primary-700);
  background: var(--primary-50);
  padding: 2px 6px;
  border-radius: 8px;
}

.billing-toggle {
  flex: 0 0 auto;
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.billing-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  cursor: pointer;
}

.billing-toggle button.active {
  background: var(--primary);
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: .2s ease;
  overflow: hidden;
}

.pricing-card.popular {
  border-color: rgba(0, 106, 237, .55);
  box-shadow: var(--shadow-blue);
}

.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  color: var(--primary-700);
  background: var(--primary-50);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pricing-name {
  padding-right: 78px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -.03em;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-top: 18px;
  color: var(--ink);
}

.price small {
  color: var(--muted);
  font-weight: 800;
}

.price strong {
  font-size: 40px;
  letter-spacing: -.06em;
}

.pricing-description {
  margin-top: 10px;
  font-size: 14px;
}

.pricing-features {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 20px 0 24px;
  list-style: none;
}

.pricing-features li {
  display: flex;
  gap: 9px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.pricing-note {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(0, 106, 237, .16);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-note strong,
.pricing-note span {
  display: block;
}

.pricing-note strong {
  color: var(--ink);
  letter-spacing: -.02em;
}

.pricing-note span {
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 70px 0;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 46px;
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, #063B88, #006AED 58%, #00A7E1);
  box-shadow: var(--shadow-blue);
}

.cta-card p,
.cta-card .section-kicker {
  color: rgba(255, 255, 255, .84);
}

.cta-card .section-kicker {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .18);
}

.cta-card>div:first-child {
  max-width: 720px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 106px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 54px 20px 22px;
  position: relative;
  font-weight: 900;
  letter-spacing: -.02em;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--primary);
  background: var(--primary-50);
}

details[open] summary::after {
  content: "−";
}

details p {
  padding: 0 22px 22px;
}

.site-footer {
  padding: 58px 0 24px;
  color: #CBD5E1;
  background: #07111F;
  overflow-x: hidden;
}

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

.footer-grid > *,
.footer-brand,
.footer-support {
  min-width: 0;
}

.footer-logo {
  width: 190px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
}

.footer-brand p {
  max-width: 460px;
  margin-top: 18px;
  color: #CBD5E1;
  overflow-wrap: anywhere;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin-top: 9px;
  color: #CBD5E1;
  overflow-wrap: anywhere;
  transition: color .18s ease;
}

.site-footer a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.social-links a {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 14px;
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
  padding: 30px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-trust-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  align-items: center;
  justify-items: center;
  min-width: 0;
  color: #EAF2FF;
  text-align: center;
}

.footer-trust-item svg {
  width: 28px;
  height: 56px;
  color: rgba(203, 213, 225, .58);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-trust-item span {
  min-width: 0;
  padding: 0 8px;
}

.footer-trust-item strong,
.footer-trust-item small {
  display: block;
  line-height: 1.15;
}

.footer-trust-item strong {
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.footer-trust-item small {
  margin-top: 4px;
  color: #CBD5E1;
  font-size: 9px;
  font-weight: 700;
}

.footer-legal {
  padding-top: 28px;
}

.footer-legal p {
  max-width: 1180px;
  color: #A8B6CC;
  font-size: 12px;
  line-height: 1.7;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 900;
  color: #fff;
  cursor: pointer;
  transition: opacity .18s ease, transform .18s ease;
}

.back-top:hover {
  opacity: .82;
  transform: translateY(-1px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .08s;
}

.delay-2 {
  transition-delay: .16s;
}

.delay-3 {
  transition-delay: .24s;
}


@media (max-width: 1400px) and (min-width: 921px) {
  .container {
    width: min(100% - 96px, var(--container));
  }

  .hero-grid {
    gap: 32px;
  }
}

@media (max-width: 1120px) {
  .main-nav {
    gap: 14px;
    font-size: 13px;
  }

  .header-actions .btn-ghost {
    display: none;
  }

  .hero-grid,
  .feature-highlight,
  .app-grid,
  .comparison-card {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 500px;
  }

  .hero-img {
    width: min(760px, 100%);
  }

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

@media (max-width: 920px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-actions {
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    inset: 76px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 13px 12px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: var(--primary-50);
  }

  .main-nav a::after {
    display: none;
  }

  .section,
  .hero {
    padding: 64px 0;
  }

  .hero-grid {
    gap: 16px;
  }

  .hero-media {
    min-height: auto;
  }

  .floating-card {
    display: none;
  }

  .hero-metrics,
  .benefits-grid,
  .resources-grid,
  .testimonial-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-grid,
  .resources-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .resources-copy,
  .faq-copy {
    position: static;
  }

  .pricing-top,
  .pricing-note,
  .cta-card,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 640px) {
  .header-inner {
    min-height: 70px;
  }

  .brand img {
    width: 160px;
    min-width: 146px;
  }

  .header-actions .btn-primary {
    display: none;
  }

  h1 {
    font-size: clamp(34px, 10vw, 44px);
  }

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

  .comparison-card {
    padding: 24px;
    border-radius: 24px;
  }

  .hero-lead,
  .section-copy p,
  .section-heading p,
  .resources-copy p,
  .app-copy p,
  .faq-copy p,
  .pricing-top p,
  .highlight-card p,
  .cta-card p {
    font-size: 16px;
  }

  .hero-actions .btn,
  .highlight-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

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

  .social-proof {
    align-items: flex-start;
  }

  .hero-metrics,
  .benefits-grid,
  .resources-grid,
  .testimonial-grid,
  .pricing-grid,
  .integration-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .pain-cards article {
    grid-template-columns: 1fr;
  }

  .highlight-card,
  .cta-card {
    padding: 28px;
    border-radius: 24px;
  }

  .store-actions,
  .store-btn {
    width: 100%;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    width: 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

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

/* Ajuste dos botões das lojas, rodapé, selos e certificados */
.store-brand-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  stroke: none;
}

.store-brand-icon path {
  fill: currentColor;
  stroke: none;
}

.footer-certifications {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.ra-seal-wrap {
  width: 164px;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

#ra-verified-seal,
#ra-verified-seal a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 142px !important;
  min-width: 142px !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
}

#ra-verified-seal svg,
#ra-verified-seal img,
#ra-verified-seal iframe {
  width: 142px !important;
  max-width: none !important;
  height: 52px !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  fill: initial;
  stroke: initial;
  overflow: visible !important;
}

.aws-certification {
  width: 102px;
  height: 36px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.footer-subtitle {
  margin-top: 26px;
}

.footer-link-icon {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 10px !important;
  color: #CBD5E1;
}

.footer-link-icon svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #9DB5FF;
  stroke-width: 1.9;
}

.footer-link-icon span {
  display: inline-block;
}

.footer-link-icon:hover svg {
  color: #fff;
}

.footer-partner-link svg {
  width: 19px;
  height: 19px;
}

/* Layout compartilhado, selos do rodapé e página de política */
.site-footer .footer-logo {
  width: 190px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
}

.footer-certifications {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.trust-seal-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-height: 82px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .06);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .16);
  overflow: visible;
}

.seal-label {
  display: block;
  color: #E2E8F0;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.01em;
}

.trust-seal-card-ra {
  width: 188px;
}

.ra-seal-frame {
  width: 166px;
  height: 60px;
  display: block;
  border: 0;
  background: transparent;
  overflow: visible;
}

.trust-seal-card-aws {
  width: 150px;
}

.footer-brand .aws-certification,
.aws-certification {
  width: 108px !important;
  max-width: 108px !important;
  height: auto !important;
  display: block !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  object-fit: contain;
  opacity: 1;
}

.footer-support .footer-subtitle {
  margin-top: 26px;
}

.footer-link-icon {
  display: flex !important;
  align-items: center;
  gap: 10px;
  margin-top: 10px !important;
  color: #CBD5E1;
}

.footer-link-icon svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: #9DB5FF;
  stroke-width: 1.9;
}

.footer-link-icon span {
  display: inline-block;
}

.footer-link-icon:hover svg {
  color: #fff;
}

.privacy-page {
  background: #fff;
}

.privacy-hero {
  padding: 74px 0 72px;
  overflow: hidden;
}

.privacy-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 44px;
}

.privacy-hero h1 {
  margin-top: 20px;
  font-size: clamp(38px, 4vw, 58px);
}

.privacy-hero-card {
  padding: 28px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}

.privacy-hero-card strong,
.privacy-hero-card span {
  display: block;
}

.privacy-hero-card strong {
  color: var(--ink);
  font-size: 20px;
  letter-spacing: -.03em;
}

.privacy-hero-card span {
  margin-top: 8px;
  color: var(--muted);
}

.privacy-hero-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.privacy-hero-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #334155;
  font-weight: 800;
  font-size: 14px;
}

.privacy-hero-card li svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.privacy-content-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FBFF 100%);
}

.privacy-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.privacy-aside {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 14px;
}

.privacy-summary-card,
.privacy-anchor-card,
.privacy-help-card,
.privacy-block {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.privacy-summary-card,
.privacy-help-card {
  padding: 24px;
}

.privacy-summary-icon,
.privacy-block-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 17px;
  color: var(--primary);
  background: var(--primary-50);
}

.privacy-summary-icon svg,
.privacy-block-icon svg {
  width: 24px;
  height: 24px;
}

.privacy-summary-card h2 {
  margin-top: 16px;
  font-size: 22px;
}

.privacy-summary-card p,
.privacy-help-card p {
  margin-top: 10px;
  font-size: 14px;
}

.privacy-anchor-card {
  display: grid;
  padding: 10px;
}

.privacy-anchor-card a {
  padding: 11px 12px;
  border-radius: 14px;
  color: #334155;
  font-weight: 800;
  font-size: 14px;
  transition: background .18s ease, color .18s ease;
}

.privacy-anchor-card a:hover {
  color: var(--primary-700);
  background: var(--primary-50);
}

.privacy-help-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -.03em;
}

.privacy-help-card .btn {
  width: 100%;
  margin-top: 18px;
}

.privacy-article {
  display: grid;
  gap: 16px;
}

.privacy-block {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 28px;
  scroll-margin-top: 110px;
}

.privacy-block-highlight {
  border-color: rgba(0, 106, 237, .22);
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

.privacy-block h2 {
  font-size: 24px;
}

.privacy-block p {
  margin-top: 12px;
  color: #475569;
  font-size: 16px;
}

@media (max-width: 920px) {

  .privacy-hero-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-aside {
    position: static;
  }

  .privacy-anchor-card {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .privacy-hero {
    padding: 58px 0;
  }

  .privacy-hero-card,
  .privacy-summary-card,
  .privacy-help-card,
  .privacy-block {
    border-radius: 20px;
  }

  .privacy-block {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .privacy-anchor-card {
    grid-template-columns: 1fr;
  }

  .trust-seal-card,
  .trust-seal-card-ra,
  .trust-seal-card-aws {
    width: 100%;
    max-width: 240px;
  }
}

/* Ajustes v8: selos do rodapé e página de Termos de Uso */
.footer-certifications {
  align-items: center;
  gap: 10px;
}

.trust-seal-card {
  min-height: 58px;
  padding: 8px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.trust-seal-card-ra {
  width: 172px;
  min-width: 172px;
  overflow: visible;
}

.trust-seal-card-aws {
  width: 126px;
  min-width: 126px;
  align-items: center;
}

.ra-official-seal,
#ra-verified-seal {
  width: 150px !important;
  min-width: 150px !important;
  min-height: 54px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  background: transparent !important;
}

#ra-verified-seal a,
#ra-verified-seal div,
#ra-verified-seal img,
#ra-verified-seal svg,
#ra-verified-seal iframe {
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  overflow: visible !important;
}

#ra-verified-seal svg {
  fill: initial !important;
  stroke: initial !important;
  stroke-width: initial !important;
  stroke-linecap: initial !important;
  stroke-linejoin: initial !important;
}

.footer-brand .aws-certification,
.aws-certification {
  width: 98px !important;
  max-width: 98px !important;
  height: auto !important;
  opacity: 1 !important;
  filter: none !important;
}

.terms-page .privacy-hero h1 {
  max-width: 760px;
}

.terms-page .privacy-hero-card {
  background: rgba(255, 255, 255, .9);
}

.legal-clause-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 9px;
  padding: 6px 10px;
  color: var(--primary-700);
  background: var(--primary-50);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.terms-article .privacy-block {
  scroll-margin-top: 112px;
}

.terms-article .privacy-block h2 {
  margin-top: 0;
}

.legal-list {
  display: grid;
  gap: 11px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.legal-list li {
  position: relative;
  padding-left: 26px;
  color: #475569;
  font-size: 15px;
  line-height: 1.62;
}

.legal-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.legal-date-card {
  border-color: rgba(0, 106, 237, .22);
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F7FF 100%);
}

@media (max-width: 640px) {

  .trust-seal-card-ra,
  .trust-seal-card-aws {
    width: auto;
    min-width: 0;
    max-width: none;
  }
}


/* Ajustes v9: botões mais retos, topo das páginas legais e novos assets */
.btn {
  border-radius: 10px;
}

.btn-lg {
  border-radius: 11px;
}

.nav-toggle,
.store-btn {
  border-radius: 12px;
}

.billing-toggle {
  border-radius: 12px;
}

.billing-toggle button {
  border-radius: 8px;
}

.privacy-hero {
  padding: 48px 0 42px;
}

.privacy-content-section.section {
  padding-top: 48px;
}

.privacy-hero h1 {
  font-size: clamp(34px, 3.4vw, 50px);
}

.site-footer .footer-logo,
.footer-logo {
  width: 198px;
  max-width: 198px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.footer-certifications {
  align-items: center;
  gap: 12px;
}

.trust-seal-card {
  min-height: 74px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, .18);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}

.trust-seal-card-ra {
  width: 196px;
  min-width: 196px;
  align-items: center;
  overflow: visible;
}

.ra-official-seal,
#ra-verified-seal {
  width: 172px !important;
  min-width: 172px !important;
  min-height: 58px !important;
  justify-content: center !important;
  overflow: visible !important;
}

.trust-seal-card-aws {
  width: 134px;
  min-width: 134px;
  align-items: center;
}

.footer-brand .aws-certification,
.aws-certification {
  width: 106px !important;
  max-width: 106px !important;
}

@media (max-width: 640px) {
  .privacy-hero {
    padding: 42px 0 34px;
  }

  .privacy-content-section.section {
    padding-top: 40px;
  }

  .btn,
  .btn-lg {
    border-radius: 10px;
  }
}

/* Ajustes v13: cliente InPeace no topo e página Integração Bancária */
.proof-copy {
  display: grid;
  gap: 4px;
}

.client-proof {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 106, 237, .12);
  border-radius: 12px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
}

.client-proof span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.client-proof img {
  width: auto;
  max-width: 104px;
  height: 30px;
  object-fit: contain;
}

.banking-page {
  background: #fff;
}

.banking-hero {
  padding: 78px 0 70px;
  overflow: hidden;
}

.banking-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 48px;
}

.banking-hero-copy h1 {
  max-width: 760px;
  margin-top: 22px;
  font-size: clamp(38px, 4.3vw, 58px);
}

.banking-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.banking-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 12px;
  color: #1E293B;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
  font-size: 13px;
  font-weight: 900;
}

.banking-trust-list svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.banking-visual {
  position: relative;
}

.banking-visual::before {
  content: "";
  position: absolute;
  inset: -26px -18px;
  z-index: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 106, 237, .18), transparent 38%), radial-gradient(circle at 85% 70%, rgba(0, 167, 225, .18), transparent 36%);
  filter: blur(8px);
}

.banking-visual-photo {
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.banking-visual-photo::before {
  inset: 34px 44px 20px;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(226, 246, 238, .92), rgba(225, 243, 255, .94)),
    radial-gradient(circle at 50% 42%, rgba(0, 106, 237, .22), transparent 34%);
  filter: none;
  box-shadow: inset 0 0 0 1px rgba(0, 106, 237, .13), 0 30px 80px rgba(0, 106, 237, .12);
}

.banking-visual-photo::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: min(480px, 78%);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 46%, rgba(0, 106, 237, .18) 47%, transparent 48%),
    radial-gradient(circle, transparent 63%, rgba(8, 127, 91, .15) 64%, transparent 65%),
    radial-gradient(circle, transparent 78%, rgba(0, 167, 225, .14) 79%, transparent 80%);
  opacity: .8;
  animation: banking-orbit-pulse 8s ease-in-out infinite;
}

.banking-visual-card {
  position: relative;
  z-index: 1;
  padding: 34px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.banking-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.banking-icon-main {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow-blue);
}

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

.banking-phone {
  position: relative;
  z-index: 2;
  width: min(330px, 58%);
  min-height: 440px;
  padding: 24px 22px;
  border: 1px solid rgba(0, 106, 237, .16);
  border-radius: 34px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 34px 80px rgba(15, 23, 42, .2);
  backdrop-filter: blur(16px);
  animation: banking-float 7s ease-in-out infinite;
}

.banking-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 116px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(15, 23, 42, .12);
  filter: blur(10px);
}

.banking-phone-bar {
  width: 72px;
  height: 6px;
  margin: 0 auto 24px;
  border-radius: 999px;
  background: #cbd5e1;
}

.banking-app-header,
.banking-sync-row,
.banking-floating-card {
  display: flex;
  align-items: center;
}

.banking-app-header {
  gap: 12px;
}

.banking-app-header strong,
.banking-app-header small,
.banking-balance-card strong,
.banking-balance-card small,
.banking-sync-row strong,
.banking-sync-row small {
  display: block;
}

.banking-app-header strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -.03em;
}

.banking-app-header small,
.banking-balance-card small,
.banking-sync-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.banking-balance-card {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0053c2, #08a7e1);
  box-shadow: var(--shadow-blue);
}

.banking-balance-card::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .34) 48%, transparent 72%);
  animation: banking-balance-shine 6s ease-in-out infinite;
}

.banking-balance-card small {
  color: rgba(255, 255, 255, .82);
}

.banking-balance-card strong {
  margin-top: 8px;
  font-size: 32px;
  letter-spacing: -.05em;
}

.banking-bank-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}

.banking-bank-row span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--primary-700);
  background: #fff;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  font-size: 13px;
  font-weight: 900;
  animation: banking-bank-pulse 5s ease-in-out infinite;
}

.banking-bank-row span:nth-child(2) {
  animation-delay: .4s;
}

.banking-bank-row span:nth-child(3) {
  animation-delay: .8s;
}

.banking-bank-row span:nth-child(4) {
  animation-delay: 1.2s;
}

.banking-bank-row span:nth-child(5) {
  animation-delay: 1.6s;
}

.banking-sync-row {
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(13, 148, 136, .18);
  border-radius: 20px;
  background: rgba(240, 253, 250, .9);
}

.banking-sync-row span,
.banking-floating-card>span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: #087f5b;
}

.banking-sync-row span {
  width: 42px;
  height: 42px;
}

.banking-sync-row svg,
.banking-floating-card svg {
  width: 22px;
  height: 22px;
}

.banking-sync-row svg {
  animation: banking-sync-spin 6s linear infinite;
  transform-origin: center;
}

.banking-sync-row strong {
  color: var(--ink);
  font-size: 14px;
}

.banking-floating-card {
  position: absolute;
  z-index: 3;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 56px rgba(15, 23, 42, .14);
  backdrop-filter: blur(16px);
  animation: banking-card-float 6.5s ease-in-out infinite;
}

.banking-floating-card strong,
.banking-floating-card small {
  display: block;
}

.banking-floating-card strong {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -.02em;
}

.banking-floating-card small {
  margin-top: 3px;
  color: #087f5b;
  font-size: 13px;
  font-weight: 900;
}

.banking-floating-card>span {
  width: 48px;
  height: 48px;
}

.banking-open-card {
  top: 72px;
  left: 0;
}

.banking-safe-card {
  top: 36px;
  right: 48px;
  flex-direction: column;
  align-items: center;
  padding: 14px;
  text-align: center;
  animation-delay: .7s;
}

.banking-safe-card span {
  background: linear-gradient(135deg, #0f7b4f, #22c55e);
}

.banking-chart-card {
  left: 10px;
  bottom: 40px;
  display: grid;
  grid-template-columns: 86px 1fr;
  min-width: 270px;
  align-items: center;
  animation-delay: 1.1s;
}

.banking-chart-card strong {
  grid-column: 1 / -1;
}

.banking-chart-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  list-style: none;
}

.banking-chart-card li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.banking-chart-card li span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
}

.banking-chart-card li:nth-child(1) span {
  background: #087f5b;
}

.banking-chart-card li:nth-child(2) span {
  background: #84cc16;
}

.banking-chart-card li:nth-child(3) span {
  background: #facc15;
}

.banking-donut {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: conic-gradient(#087f5b 0 45%, #84cc16 45% 65%, #facc15 65% 80%, #7c3aed 80% 92%, #cbd5e1 92% 100%);
  box-shadow: inset 0 0 0 18px #fff;
  animation: banking-donut-turn 14s linear infinite;
}

@keyframes banking-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes banking-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes banking-bank-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 22px rgba(15, 23, 42, .06);
  }

  45% {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 106, 237, .14);
  }
}

@keyframes banking-sync-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes banking-balance-shine {
  0%,
  45% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes banking-orbit-pulse {
  0%,
  100% {
    transform: scale(.96);
    opacity: .5;
  }

  50% {
    transform: scale(1.04);
    opacity: .9;
  }
}

@keyframes banking-donut-turn {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .banking-visual-photo::after,
  .banking-phone,
  .banking-bank-row span,
  .banking-sync-row svg,
  .banking-floating-card,
  .banking-balance-card::after,
  .banking-donut {
    animation: none;
  }
}

.banking-card-header strong,
.banking-card-header small {
  display: block;
}

.banking-card-header strong {
  color: var(--ink);
  font-size: 24px;
  letter-spacing: -.04em;
}

.banking-card-header small {
  margin-top: 2px;
  color: var(--muted);
  font-weight: 700;
}

.banking-flow {
  display: grid;
  grid-template-columns: 1fr 38px 1fr 38px 1fr;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.banking-flow span {
  display: grid;
  place-items: center;
  min-height: 54px;
  padding: 12px;
  border-radius: 16px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-weight: 900;
}

.banking-flow i {
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 106, 237, .15), rgba(0, 106, 237, .65));
  border-radius: 999px;
}

.bank-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding: 18px;
  border: 1px dashed rgba(0, 106, 237, .28);
  border-radius: 22px;
  background: #F8FBFF;
}

.bank-pills span {
  min-width: 58px;
  display: inline-flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  color: #0F2A55;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .05);
  font-size: 13px;
  font-weight: 900;
}

.banking-mini-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.banking-mini-dashboard article {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.banking-mini-dashboard strong,
.banking-mini-dashboard span {
  display: block;
}

.banking-mini-dashboard strong {
  color: var(--ink);
  font-size: 14px;
  letter-spacing: -.02em;
}

.banking-mini-dashboard span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.banking-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.banking-feature-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.banking-feature-card:hover,
.usecase-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 106, 237, .25);
  box-shadow: var(--shadow);
}

.banking-feature-card>span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: var(--primary-50);
}

.banking-feature-card>span svg {
  width: 25px;
  height: 25px;
}

.banking-feature-card h3 {
  margin-top: 22px;
}

.banking-feature-card p {
  margin-top: 12px;
}

.banking-process-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: center;
}

.banking-process-grid .section-copy .btn {
  margin-top: 24px;
}

.banking-process-photo {
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(15, 23, 42, .12);
}

.banking-process-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  object-position: center 46%;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.process-list article>span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
}

.process-list article>span svg {
  width: 25px;
  height: 25px;
}

.process-list h3 {
  margin-top: 2px;
}

.process-list p {
  margin-top: 8px;
}

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

.usecase-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.usecase-card svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.usecase-card strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.usecase-card span {
  color: var(--muted);
  font-size: 14px;
}

.banking-cta-section {
  padding-top: 30px;
}

@media (max-width: 1120px) {

  .banking-hero-grid,
  .banking-process-grid {
    grid-template-columns: 1fr;
  }

  .banking-feature-grid,
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .client-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .banking-hero {
    padding: 58px 0 52px;
  }

  .banking-visual-card {
    padding: 24px;
    border-radius: 24px;
  }

  .banking-visual-photo {
    min-height: 520px;
  }

  .banking-phone {
    width: min(330px, 86%);
  }

  .banking-open-card,
  .banking-safe-card,
  .banking-chart-card {
    position: relative;
    inset: auto;
    width: min(330px, 86%);
    margin-top: 12px;
  }

  .banking-chart-card {
    justify-self: center;
  }

  .banking-flow,
  .banking-mini-dashboard,
  .banking-feature-grid,
  .usecase-grid {
    grid-template-columns: 1fr;
  }

  .banking-flow i {
    width: 2px;
    height: 24px;
    justify-self: center;
    background: linear-gradient(180deg, rgba(0, 106, 237, .15), rgba(0, 106, 237, .65));
  }

  .process-list article {
    grid-template-columns: 1fr;
  }

  .banking-process-photo {
    margin-top: 28px;
    border-radius: 22px;
  }
}


/* Ajustes finais: InPeace na prova social e selo oficial do Reclame Aqui */
.proof-avatars span.proof-logo {
  padding: 0 !important;
  background: #fff !important;
  color: var(--primary) !important;
  overflow: hidden !important;
}

.proof-avatars span.proof-logo img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 999px !important;
}

.client-proof {
  display: none !important;
}

.site-footer .footer-certifications {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

.site-footer .trust-seal-card-ra {
  width: 142px !important;
  min-width: 142px !important;
  max-width: 142px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-footer #ra-verified-seal,
.site-footer .ra-official-seal,
.site-footer #ra-verified-seal #ra-widget-verified {
  width: 142px !important;
  min-width: 142px !important;
  max-width: 142px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 7px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-footer #ra-verified-seal a.ra-widget-verified-wrapper,
.site-footer #ra-verified-seal .ra-widget-verified-wrapper {
  width: 142px !important;
  min-width: 142px !important;
  max-width: 142px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  display: block !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
  overflow: visible !important;
}

.site-footer #ra-verified-seal .ra-widget-verified-content,
.site-footer #ra-verified-seal .ra-widget-verified-content.horizontal,
.site-footer #ra-verified-seal .ra-widget-verified-content.ra-model-1,
.site-footer #ra-verified-seal .ra-widget-verified-content.ra-verified-loaded {
  visibility: visible !important;
  opacity: 1 !important;
  width: 142px !important;
  min-width: 142px !important;
  max-width: 142px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  padding: 0 10px !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  border: 1px solid #3159ff !important;
  border-radius: 7px !important;
  background: #fff !important;
  box-shadow: none !important;
  overflow: hidden !important;
  font-family: "Open Sans", Arial, sans-serif !important;
}

.site-footer #ra-verified-seal .ra-widget-wrapper {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  gap: 2px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.site-footer #ra-verified-seal img,
.site-footer #ra-verified-seal svg,
.site-footer #ra-verified-seal iframe {
  display: block !important;
  flex: 0 0 auto !important;
  max-width: none !important;
  max-height: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
  fill: initial !important;
  stroke: initial !important;
}

.site-footer #ra-verified-seal img[src*="verified.svg"] {
  width: 24px !important;
  height: 24px !important;
}

.site-footer #ra-verified-seal img[src*="ra-logo.svg"] {
  width: 92px !important;
  height: 16px !important;
}

.site-footer #ra-verified-seal .ra-widget-verified-text {
  display: block !important;
  color: #23304A !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  opacity: 1 !important;
  visibility: visible !important;
  padding: 0 !important;
  margin: 0 !important;
}

.site-footer .trust-seal-card-aws {
  width: 126px;
  min-height: 62px;
  padding: 12px 14px;
}

.site-footer .aws-certification {
  width: 102px;
  height: auto;
}

@media (max-width: 640px) {
  .site-footer .trust-seal-card-ra {
    width: 142px !important;
    min-width: 142px !important;
    max-width: 142px !important;
  }
}

/* Ajustes finais: prova social com logos reais, imagem da solução e remoção do selo AWS */
.pain-visual {
  margin: 24px 0 0;
  border: 1px solid rgba(0, 106, 237, .08);
  border-radius: 24px;
  background: #F6F4F8;
  box-shadow: none;
  overflow: hidden;
}

.pain-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.proof-avatars span.proof-logo {
  background: #fff !important;
  box-shadow: 0 10px 24px rgba(0, 106, 237, .16) !important;
}

.proof-avatars span.proof-logo img {
  object-fit: cover !important;
}

.site-footer .trust-seal-card-aws,
.site-footer .aws-certification {
  display: none !important;
}

@media (max-width: 640px) {
  .pain-visual {
    margin-top: 18px;
    border-radius: 18px;
  }
}



/* Cadastro rápido e integração bancária na Home */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.quick-signup {
  width: min(100%, 680px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  padding: 8px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 14px 36px rgba(0, 106, 237, .10);
  backdrop-filter: blur(12px);
}

.quick-signup input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 0;
  outline: 0;
  border-radius: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-weight: 700;
}

.quick-signup input::placeholder {
  color: var(--muted-2);
  font-weight: 600;
}

.quick-signup .btn {
  min-height: 48px;
  padding-inline: 22px;
}


.home-banking-section {
  padding-top: 18px;
}

.home-banking-card {
  display: grid;
  grid-template-columns: minmax(440px, 1.05fr) minmax(0, .95fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 28px;
  background:
    radial-gradient(circle at 15% 12%, rgba(0, 167, 225, .14), transparent 34%),
    linear-gradient(90deg, #ECF6FF 0%, #FFFFFF 48%, #F7FAFF 100%);
  box-shadow: var(--shadow-sm);
}

.home-banking-copy {
  order: 2;
}

.home-banking-copy h2 {
  margin-top: 16px;
  max-width: 650px;
}

.home-banking-copy p {
  margin-top: 16px;
  max-width: 680px;
  font-size: 17px;
}

.home-banking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-banking-video-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  order: 1;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 22px);
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.home-banking-video-card::before {
  content: "";
  position: absolute;
  inset: 32px 64px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(circle at 26% 22%, rgba(0, 106, 237, .10), transparent 34%),
    radial-gradient(circle at 80% 70%, rgba(18, 185, 129, .12), transparent 36%);
}

.home-banking-video {
  position: relative;
  z-index: 2;
  width: min(250px, 48%);
  aspect-ratio: 9 / 16;
  display: block;
  border: 0;
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
  transform: none;
  transform-origin: center;
  clip-path: inset(0 6px 4px 0 round 18px);
  filter: drop-shadow(0 22px 34px rgba(15, 23, 42, .12));
}

.home-banking-logo {
  position: absolute;
  z-index: 3;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, .10);
}

.home-banking-logo img {
  width: 42px;
  height: 32px;
  object-fit: contain;
}

.home-banking-logo strong {
  display: block;
  color: #fff;
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -.02em;
}

.home-banking-logo-nubank img,
.home-banking-logo-bb img {
  filter: brightness(0) invert(1);
}

.home-banking-logo-nubank {
  top: 62px;
  left: 88px;
  background: #8A05BE;
}

.home-banking-logo-bb {
  left: 42px;
  top: 158px;
  background: #0B57D0;
}

.home-banking-logo-xp {
  left: 108px;
  bottom: 58px;
  background: #FFF200;
}

.home-banking-logo-inter {
  right: 70px;
  bottom: 74px;
  background: #EA7100;
}

.home-banking-logo-sicredi {
  right: 62px;
  top: 72px;
  background: #64C832;
}

.home-banking-logo-itau {
  right: 24px;
  top: 188px;
  background: #EA7100;
}

.home-banking-logo-c6 {
  right: 112px;
  top: 282px;
  background: #1F2937;
}

.home-banking-logo-caixa {
  left: 34px;
  bottom: 142px;
  background: #005CA9;
}

.home-banking-logo-caixa strong {
  font-size: 13px;
  letter-spacing: 0;
}

/* Blog */
.blog-hero {
  padding: 78px 0 44px;
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 106, 237, .12), transparent 28%),
    linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 100%);
}

.blog-hero-inner {
  max-width: 840px;
}

.blog-hero h1 {
  margin-top: 16px;
  max-width: 760px;
  font-size: clamp(36px, 5vw, 60px);
  line-height: .98;
}

.blog-hero p {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}

.blog-list-section {
  padding-top: 40px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.blog-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 106, 237, .28);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .12);
}

.blog-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--primary-50);
}

.blog-card-body {
  display: flex;
  flex: 1;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 24px;
}

.blog-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--primary-50);
  color: var(--primary);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h3 {
  margin-top: 16px;
  font-size: 23px;
}

.blog-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.blog-card a {
  margin-top: auto;
  color: var(--primary);
  font-weight: 900;
}

@media (max-width: 1120px) {
  .home-banking-card {
    grid-template-columns: 1fr;
  }

  .home-banking-copy,
  .home-banking-video-card {
    order: initial;
  }
}

@media (max-width: 640px) {
  .quick-signup {
    grid-template-columns: 1fr;
  }

  .quick-signup .btn,
  .quick-signup button {
    width: 100%;
  }

  .home-banking-card {
    padding: 24px;
    border-radius: 22px;
  }

  .home-banking-video-card {
    min-height: 360px;
    padding: 12px 8px;
    border-radius: 20px;
  }

  .home-banking-video {
    width: min(210px, 60%);
    border-radius: 15px;
    clip-path: inset(0 3px 1px 0 round 15px);
  }

  .home-banking-logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .home-banking-logo img {
    width: 28px;
    height: 22px;
  }

  .home-banking-logo strong {
    font-size: 14px;
  }

  .home-banking-logo-nubank {
    top: 44px;
    left: 10px;
  }

  .home-banking-logo-bb {
    left: 10px;
    top: 118px;
  }

  .home-banking-logo-xp {
    left: 10px;
    top: 266px;
  }

  .home-banking-logo-sicredi {
    right: 10px;
    top: 52px;
  }

  .home-banking-logo-itau {
    right: 10px;
    top: 136px;
  }

  .home-banking-logo-inter {
    right: 10px;
    top: 282px;
  }

  .home-banking-logo-c6 {
    right: 10px;
    top: 220px;
  }

  .home-banking-logo-caixa {
    left: 10px;
    top: 192px;
  }

  .home-banking-logo-caixa strong {
    font-size: 11px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-card {
    width: 100%;
    min-height: auto;
  }

  .blog-page .section-heading,
  .blog-page .blog-hero-inner {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-page .section-heading h2,
  .blog-page .blog-hero h1,
  .blog-card h3,
  .blog-card p {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .blog-card-body {
    padding: 20px 22px 22px;
  }
}

/* Página Substituir Planilha Financeira */
.sheet-teaser-section {
  padding: 46px 0 64px;
}

.sheet-teaser-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 24px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F7FAFF 100%);
  box-shadow: var(--shadow-sm);
}

.sheet-teaser-card>div {
  max-width: 820px;
}

.sheet-teaser-card h2 {
  margin-top: 14px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.sheet-teaser-card p {
  margin-top: 12px;
  font-size: 16px;
}

.sheet-teaser-card .btn {
  flex: 0 0 auto;
}

.sheet-page {
  background: #fff;
}

.sheet-hero {
  padding: 76px 0 70px;
  overflow: hidden;
}

.sheet-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
  align-items: center;
  gap: 52px;
}

.sheet-hero h1 {
  max-width: 780px;
  margin-top: 22px;
  font-size: clamp(38px, 4vw, 58px);
}

.sheet-hero-card {
  padding: 20px;
  border: 1px solid rgba(0, 106, 237, .12);
  border-radius: 28px;
  background: #F6F4F8;
  overflow: hidden;
}

.sheet-hero-card img {
  border-radius: 20px;
}

.sheet-problem-section {
  padding-top: 70px;
}

.sheet-problem-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 44px;
  align-items: start;
}

.sheet-problem-grid .section-copy {
  position: sticky;
  top: 106px;
}

.sheet-solution-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.sheet-solution-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-weight: 800;
}

.sheet-solution-list svg {
  width: 21px;
  height: 21px;
  color: var(--accent);
}

.sheet-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.sheet-feature-strip article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.sheet-feature-strip span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--primary);
  background: var(--primary-50);
}

.sheet-feature-strip svg {
  width: 22px;
  height: 22px;
}

.sheet-feature-strip h3 {
  margin-top: 16px;
}

.sheet-feature-strip p {
  margin-top: 8px;
  font-size: 14px;
}

.sheet-faq-section {
  padding-top: 30px;
}

@media (max-width: 1120px) {

  .sheet-hero-grid,
  .sheet-problem-grid {
    grid-template-columns: 1fr;
  }

  .sheet-problem-grid .section-copy {
    position: static;
  }

  .sheet-feature-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .sheet-teaser-card {
    align-items: flex-start;
    flex-direction: column;
    padding: 24px;
  }

  .sheet-teaser-card .btn {
    width: 100%;
  }

  .sheet-hero {
    padding: 58px 0 52px;
  }

  .sheet-hero-card {
    padding: 12px;
    border-radius: 22px;
  }

  .sheet-feature-strip {
    grid-template-columns: 1fr;
  }
}
/* Página de Planos e Preços */
.plans-page-hero {
  padding: 76px 0 54px;
}

.plans-page-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.plans-page-hero-inner h1 {
  max-width: none;
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 58px);
}

.plans-page-hero-inner p {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 18px;
}

.plans-page-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 30px;
  padding: 6px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-sm);
}

.plans-page-toggle button {
  border: 0;
  border-radius: 12px;
  padding: 11px 18px;
  background: transparent;
  color: #334155;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.plans-page-toggle button:hover {
  transform: translateY(-1px);
}

.plans-page-toggle button.active {
  color: #fff;
  background: var(--primary);
}

.plans-page-toggle span {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(18, 185, 129, .14);
  color: #047857;
  font-size: 11px;
  text-transform: uppercase;
}

.plans-page-toggle button.active span {
  background: rgba(255, 255, 255, .18);
  color: #fff;
}

.plans-page-section {
  padding-top: 54px;
}

.plans-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.plans-page-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.plans-page-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 106, 237, .25);
  box-shadow: var(--shadow);
}

.plans-page-card.popular {
  border-color: rgba(0, 106, 237, .65);
  box-shadow: var(--shadow-blue);
}

.plans-page-badge {
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.plans-page-card h3 {
  margin-top: 16px;
  font-size: 24px;
}

.plans-page-description {
  min-height: 68px;
  margin-top: 10px;
  font-size: 14px;
}

.plans-page-price {
  display: grid;
  grid-template-columns: max-content auto;
  align-items: baseline;
  column-gap: 3px;
  row-gap: 4px;
  margin-top: 18px;
}

.plans-page-price strong {
  color: var(--ink);
  font-size: 38px;
  line-height: 1;
  letter-spacing: -.06em;
}

.plans-page-price small,
.plans-page-annual-total,
.plans-page-period {
  color: var(--muted);
  font-weight: 800;
}

.plans-page-annual-total {
  grid-column: 1 / -1;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
}

.plans-page-period {
  margin-top: 6px;
  font-size: 13px;
}

.plans-page-cta {
  width: 100%;
  margin-top: 18px;
}

.plans-page-features {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.plans-page-features li {
  display: flex;
  gap: 9px;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.plans-page-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
}

.compare-section {
  padding-top: 72px;
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.compare-table {
  width: 100%;
  min-width: 1040px;
  border-collapse: collapse;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #EDF2F7;
  text-align: center;
  vertical-align: middle;
}

.compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  font-weight: 900;
}

.compare-table th:first-child,
.compare-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  width: 250px;
  text-align: left;
  background: #fff;
  box-shadow: 12px 0 18px rgba(15, 23, 42, .035);
}

.compare-table thead th:first-child {
  z-index: 3;
}

.compare-table tbody tr:nth-child(even):not(.compare-group) td,
.compare-table tbody tr:nth-child(even):not(.compare-group) th:first-child {
  background: #FAFCFF;
}

.compare-table .compare-group th {
  padding-top: 24px;
  color: var(--primary-700);
  background: #F3F8FF !important;
  font-size: 12px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.compare-check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff;
  background: var(--primary);
  font-weight: 900;
}

.compare-dash {
  color: #94A3B8;
  font-weight: 900;
}

@media (max-width: 920px) {
  .plans-page-hero {
    padding: 56px 0 42px;
  }

  .plans-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .plans-page-toggle {
    width: 100%;
  }

  .plans-page-toggle button {
    width: 50%;
  }
}

/* Ajuste v51: grid comparativa de planos com cabeçalho fixo durante o scroll */
.plans-page-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.compare-billing-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: -16px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.compare-page-toggle {
  margin-top: 0;
}

.compare-nfse-note {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 0;
  padding: 14px 18px;
  border: 1px solid rgba(0, 106, 237, .18);
  border-radius: 16px;
  color: var(--muted);
  background: #fff;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  line-height: 1.45;
}

.compare-nfse-note strong {
  flex: 0 0 auto;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.compare-nfse-cell {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 44px;
  padding: 7px 10px;
  border: 1px solid #D9E6F7;
  border-radius: 12px;
  color: var(--primary-700);
  background: #F7FBFF;
  line-height: 1.15;
}

.compare-nfse-cell.included {
  border-color: rgba(0, 106, 237, .24);
  color: var(--primary);
  background: #EEF6FF;
}

.compare-nfse-cell strong {
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.compare-nfse-cell small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.compare-table .compare-price-row th {
  position: sticky;
  top: 53px;
  z-index: 2;
  background: #fff;
  padding-top: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.compare-table .compare-price-row th:first-child {
  z-index: 4;
  color: var(--muted);
  font-size: 13px;
}

.compare-table-price {
  display: inline-grid;
  grid-template-columns: max-content auto;
  align-items: baseline;
  justify-content: center;
  column-gap: 2px;
  row-gap: 3px;
}

.compare-table-price strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1;
  letter-spacing: -.04em;
}

.compare-table-price small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.compare-table-annual-total {
  grid-column: 1 / -1;
  justify-self: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.compare-table tfoot th,
.compare-table tfoot td {
  padding: 18px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: #fff;
}

.compare-table tfoot th:first-child {
  color: var(--ink);
  font-weight: 900;
}

.compare-table-cta {
  width: 100%;
  min-height: 40px;
  padding: 10px 12px;
  font-size: 13px;
  white-space: nowrap;
}

:root {
  --compare-sticky-top: 76px;
  --compare-price-row-offset: 53px;
}

.compare-section,
.compare-table-wrap {
  overflow: visible;
}

.compare-table thead th {
  position: sticky;
  top: var(--compare-sticky-top);
  z-index: 20;
  background: #fff;
  box-shadow: 0 1px 0 #EDF2F7;
}

.compare-table .compare-price-row th {
  position: sticky;
  top: calc(var(--compare-sticky-top) + var(--compare-price-row-offset));
  z-index: 21;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}

.compare-table thead th:first-child {
  z-index: 24;
}

.compare-table .compare-price-row th:first-child {
  z-index: 25;
}

@media (min-width: 1121px) {
  .compare-section,
  .compare-section .container,
  .compare-table-wrap {
    overflow: visible !important;
  }

  .compare-table-wrap.reveal,
  .compare-table-wrap.reveal.visible {
    transform: none !important;
  }

  .compare-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .compare-table thead th {
    position: sticky !important;
    top: var(--compare-sticky-top) !important;
    z-index: 60;
    background: #fff;
    box-shadow: 0 1px 0 #EDF2F7, 0 8px 18px rgba(15, 23, 42, .04);
  }

  .compare-table thead tr.compare-price-row th {
    position: sticky !important;
    top: calc(var(--compare-sticky-top) + var(--compare-price-row-offset)) !important;
    z-index: 61;
    background: #fff;
    box-shadow: 0 1px 0 var(--line), 0 8px 18px rgba(15, 23, 42, .04);
  }

  .compare-table thead th:first-child {
    z-index: 64;
  }

  .compare-table thead tr.compare-price-row th:first-child {
    z-index: 65;
  }
}

@media (max-width: 1120px) {
  .plans-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compare-table-wrap {
    overflow-x: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --compare-sticky-top: 70px;
  }

  .plans-page-grid {
    grid-template-columns: 1fr;
  }

  .compare-billing-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .compare-nfse-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* Página: alternativa ao QuickBooks */
.quickbooks-page .quickbooks-hero {
  padding: 70px 0 66px;
}

.quickbooks-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  align-items: center;
  gap: 54px;
}

.quickbooks-hero-copy .hero-lead {
  max-width: 660px;
}

.quickbooks-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.quickbooks-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  color: #1E293B;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(226, 232, 240, .88);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .045);
}

.quickbooks-trust-list svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
  flex: 0 0 auto;
}

.quickbooks-hero-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(0, 106, 237, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.quickbooks-hero-card::before {
  content: "";
  position: absolute;
  inset: -20% -12% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(0, 167, 225, .16);
  filter: blur(30px);
}

.quickbooks-hero-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 22px;
}

.quickbooks-card-top,
.quickbooks-card-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quickbooks-card-top {
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 900;
  font-size: 14px;
}

.quickbooks-card-top i {
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--muted-2), var(--primary));
}

.quickbooks-card-top strong {
  color: var(--primary-700);
}

.quickbooks-card-footer {
  margin-top: 14px;
}

.quickbooks-card-footer span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-700);
  background: rgba(0, 106, 237, .08);
  border: 1px solid rgba(0, 106, 237, .12);
  font-size: 12px;
  font-weight: 900;
}

.quickbooks-alert-card {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  align-items: start;
  padding: 32px;
  border: 1px solid rgba(0, 106, 237, .16);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.quickbooks-alert-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary);
  background: rgba(0, 106, 237, .08);
}

.quickbooks-alert-icon svg {
  width: 30px;
  height: 30px;
}

.quickbooks-alert-card h2,
.quickbooks-steps-section h2,
.quickbooks-why-section h2 {
  margin-top: 12px;
}

.quickbooks-alert-card p,
.quickbooks-steps-section .section-heading p,
.quickbooks-why-section p {
  margin-top: 14px;
}

.quickbooks-step-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

.quickbooks-step-card {
  display: grid;
  grid-template-columns: 72px minmax(0, .88fr) minmax(360px, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
}

.quickbooks-step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  font-weight: 900;
}

.quickbooks-step-card h3 {
  font-size: 23px;
}

.quickbooks-step-card p {
  margin-top: 12px;
}

.quickbooks-check-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.quickbooks-check-list li {
  position: relative;
  padding-left: 24px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
}

.quickbooks-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}

.quickbooks-image-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.quickbooks-image-card img {
  width: 100%;
}

.quickbooks-why-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(520px, 1.2fr);
  gap: 44px;
  align-items: center;
}

.quickbooks-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quickbooks-feature-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .055);
}

.quickbooks-feature-grid svg {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 14px;
  color: var(--primary);
  background: rgba(0, 106, 237, .08);
}

.quickbooks-feature-grid strong {
  color: var(--ink);
  line-height: 1.25;
}

.quickbooks-feature-grid span {
  color: var(--muted);
  font-size: 14px;
}

.quickbooks-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.quickbooks-note-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.quickbooks-note-card > span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-700);
  background: rgba(0, 106, 237, .08);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.quickbooks-note-card h3 {
  margin-top: 14px;
}

.quickbooks-note-card p {
  margin-top: 10px;
}

.quickbooks-cta-section .cta-card {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .quickbooks-hero-grid,
  .quickbooks-why-grid {
    grid-template-columns: 1fr;
  }

  .quickbooks-step-card {
    grid-template-columns: 58px 1fr;
  }

  .quickbooks-image-card {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .quickbooks-page .quickbooks-hero {
    padding-top: 46px;
  }

  .quickbooks-alert-card,
  .quickbooks-step-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .quickbooks-feature-grid,
  .quickbooks-note-grid {
    grid-template-columns: 1fr;
  }

  .quickbooks-trust-list span {
    width: 100%;
  }
}

/* Apps de controle financeiro */
.apps-page .apps-hero {
  padding: 88px 0 76px;
}

.apps-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 62px;
  align-items: center;
}

.apps-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .96;
  letter-spacing: -.055em;
}

.apps-hero-copy .hero-lead {
  max-width: 720px;
}

.apps-hero-card {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: end;
}

.apps-hero-card img {
  width: min(760px, 100%);
  height: auto;
  margin-inline: auto;
  display: block;
}

.apps-choice-card {
  position: absolute;
  top: 6px;
  left: 0;
  width: min(330px, 72%);
  padding: 22px;
  border: 1px solid rgba(0, 106, 237, .18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.apps-choice-card span {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(0, 106, 237, .08);
  color: var(--primary-700);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.apps-choice-card strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.apps-choice-card p {
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.apps-intro-section {
  padding-top: 42px;
}

.apps-intro-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.apps-intro-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.apps-intro-card svg {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 14px;
  color: var(--primary);
  background: rgba(0, 106, 237, .08);
}

.apps-intro-card h2 {
  margin-top: 16px;
  font-size: 22px;
  letter-spacing: -.025em;
}

.apps-intro-card p {
  margin-top: 10px;
  color: var(--muted);
}

.apps-ranking-section {
  padding-top: 84px;
}

.apps-ranking-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.apps-rank-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.apps-rank-card-featured {
  border-color: rgba(0, 106, 237, .35);
  background: linear-gradient(135deg, #fff 0%, #f4f9ff 100%);
  box-shadow: var(--shadow-blue);
}

.apps-rank-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-700));
  color: #fff;
  font-weight: 950;
}

.apps-rank-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.apps-rank-head h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: -.035em;
}

.apps-rank-head span {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 106, 237, .08);
  color: var(--primary-700);
  font-size: 12px;
  font-weight: 900;
}

.apps-rank-content > strong {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 16px;
}

.apps-rank-content p {
  max-width: 920px;
  margin-top: 10px;
  color: var(--muted);
}

.apps-rank-content a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--primary-700);
  font-weight: 900;
}

.apps-compare-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(520px, 1.22fr);
  gap: 44px;
  align-items: center;
}

.apps-table-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.apps-table-card table {
  width: 100%;
  border-collapse: collapse;
}

.apps-table-card th,
.apps-table-card td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.apps-table-card th {
  background: #f4f8ff;
  color: var(--ink);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.apps-table-card td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.apps-table-card td:last-child {
  color: var(--muted);
}

.apps-table-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.apps-table-status::before {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.apps-table-status.yes::before {
  content: "✓";
  background: #16a34a;
  box-shadow: 0 8px 18px rgba(22, 163, 74, .22);
}

.apps-table-status.no::before {
  content: "×";
  background: #dc2626;
  box-shadow: 0 8px 18px rgba(220, 38, 38, .18);
}

.apps-table-card tr:last-child td {
  border-bottom: 0;
}

.apps-falcon-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 36px;
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(0, 106, 237, .18);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffffff 0%, #eef7ff 100%);
  box-shadow: var(--shadow-blue);
}

.apps-falcon-card h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
}

.apps-falcon-card p {
  max-width: 760px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.apps-falcon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.apps-falcon-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.apps-falcon-card li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font-weight: 850;
}

.apps-falcon-card li svg {
  width: 22px;
  height: 22px;
  color: var(--success);
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .apps-hero-grid,
  .apps-compare-grid,
  .apps-falcon-card {
    grid-template-columns: 1fr;
  }

  .apps-intro-grid {
    grid-template-columns: 1fr;
  }

  .apps-hero-card {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .apps-page .apps-hero {
    padding-top: 52px;
  }

  .apps-choice-card {
    position: relative;
    width: 100%;
    margin-bottom: 16px;
  }

  .apps-rank-card {
    grid-template-columns: 1fr;
  }

  .apps-rank-head {
    display: grid;
  }

  .apps-rank-head span {
    width: fit-content;
  }

  .apps-table-card {
    overflow-x: auto;
  }

  .apps-table-card table {
    min-width: 620px;
  }
}

/* Página de segmento: Igrejas e Ministérios */
.footer-grid {
  grid-template-columns: 1.35fr repeat(4, 1fr);
  gap: 28px;
}

.church-hero {
  padding: clamp(58px, 7vw, 96px) 0;
}

.church-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.church-hero-copy h1 {
  max-width: 820px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: .98;
  letter-spacing: -.06em;
}

.church-hero-copy .hero-lead {
  max-width: 760px;
}

.church-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.church-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
}

.church-proof svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
}

.church-hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.church-hero-visual::before {
  content: "";
  position: absolute;
  inset: 36px 18px;
  z-index: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 32% 24%, rgba(18, 185, 129, .16), transparent 36%),
    radial-gradient(circle at 78% 72%, rgba(0, 106, 237, .18), transparent 38%),
    linear-gradient(145deg, rgba(247, 250, 255, .94), rgba(235, 248, 255, .88));
  box-shadow: inset 0 0 0 1px rgba(0, 106, 237, .12), 0 30px 80px rgba(0, 106, 237, .12);
}

.church-visual-rings {
  position: absolute;
  z-index: 1;
  width: min(520px, 82%);
  aspect-ratio: 1;
  border-radius: 999px;
  background:
    radial-gradient(circle, transparent 44%, rgba(0, 106, 237, .18) 45%, transparent 46%),
    radial-gradient(circle, transparent 62%, rgba(18, 185, 129, .16) 63%, transparent 64%),
    radial-gradient(circle, transparent 79%, rgba(0, 167, 225, .14) 80%, transparent 81%);
  animation: church-rings-pulse 8s ease-in-out infinite;
}

.church-dashboard-card {
  position: relative;
  z-index: 2;
  width: min(360px, 70%);
  padding: 24px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 30px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 34px 80px rgba(15, 23, 42, .18);
  backdrop-filter: blur(16px);
  animation: church-dashboard-float 7s ease-in-out infinite;
}

.church-dashboard-header,
.church-dashboard-status,
.church-floating-card {
  display: flex;
  align-items: center;
}

.church-dashboard-header {
  gap: 12px;
}

.church-dashboard-header>span,
.church-dashboard-status>span,
.church-floating-card>span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
}

.church-dashboard-header>span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow-blue);
}

.church-dashboard-header svg,
.church-dashboard-status svg,
.church-floating-card svg {
  width: 23px;
  height: 23px;
}

.church-dashboard-header strong,
.church-dashboard-header small,
.church-dashboard-total strong,
.church-dashboard-total small,
.church-dashboard-status strong,
.church-dashboard-status small,
.church-floating-card strong,
.church-floating-card small {
  display: block;
}

.church-dashboard-header strong {
  color: var(--ink);
  font-size: 18px;
  letter-spacing: -.03em;
}

.church-dashboard-header small,
.church-dashboard-total small,
.church-dashboard-status small,
.church-floating-card small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.church-dashboard-total {
  position: relative;
  margin-top: 28px;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, #0f7b4f, #00a7e1);
  box-shadow: 0 22px 44px rgba(13, 148, 136, .22);
}

.church-dashboard-total::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, .32) 48%, transparent 72%);
  animation: church-total-shine 6s ease-in-out infinite;
}

.church-dashboard-total small {
  color: rgba(255, 255, 255, .82);
}

.church-dashboard-total strong {
  margin-top: 8px;
  font-size: 34px;
  letter-spacing: -.05em;
}

.church-dashboard-bars {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.church-dashboard-bars span {
  height: 10px;
  width: var(--bar-size);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 106, 237, .2), rgba(0, 106, 237, .76));
  transform-origin: left center;
  animation: church-bar-grow 4.8s ease-in-out infinite;
}

.church-dashboard-bars span:nth-child(2) {
  animation-delay: .25s;
}

.church-dashboard-bars span:nth-child(3) {
  animation-delay: .5s;
}

.church-dashboard-bars span:nth-child(4) {
  animation-delay: .75s;
}

.church-dashboard-status {
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid rgba(18, 185, 129, .18);
  border-radius: 20px;
  background: rgba(240, 253, 250, .9);
}

.church-dashboard-status>span {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: #087f5b;
}

.church-dashboard-status strong {
  color: var(--ink);
  font-size: 14px;
}

.church-floating-card {
  position: absolute;
  z-index: 3;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 22px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 24px 56px rgba(15, 23, 42, .14);
  backdrop-filter: blur(16px);
  animation: church-card-float 6.5s ease-in-out infinite;
}

.church-floating-card>span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.church-floating-card strong {
  color: var(--ink);
  font-size: 15px;
  letter-spacing: -.02em;
}

.church-floating-card small {
  margin-top: 3px;
  color: #087f5b;
}

.church-float-departments {
  top: 74px;
  left: 8px;
}

.church-float-income {
  top: 42px;
  right: 20px;
  animation-delay: .65s;
}

.church-float-bills {
  left: 0;
  bottom: 68px;
  animation-delay: 1.1s;
}

.church-float-docs {
  right: 6px;
  bottom: 94px;
  animation-delay: 1.45s;
}

@keyframes church-dashboard-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes church-card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes church-rings-pulse {
  0%,
  100% {
    transform: scale(.96);
    opacity: .55;
  }

  50% {
    transform: scale(1.04);
    opacity: .95;
  }
}

@keyframes church-total-shine {
  0%,
  45% {
    transform: translateX(-120%);
  }

  70%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes church-bar-grow {
  0%,
  100% {
    transform: scaleX(.8);
    opacity: .68;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.church-panel-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(0, 106, 237, .18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .84);
  box-shadow: var(--shadow-blue);
}

.church-panel-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  color: var(--primary);
  background: #EAF3FF;
}

.church-panel-icon svg {
  width: 30px;
  height: 30px;
}

.church-panel-card h2 {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.church-panel-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
}

.church-panel-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.church-panel-list span {
  display: grid;
  gap: 3px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 106, 237, .12);
  border-radius: 16px;
  background: #fff;
}

.church-panel-list strong {
  color: var(--ink);
  font-size: 15px;
}

.church-panel-list small {
  color: var(--muted);
  font-size: 13px;
}

.church-pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.church-pain-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid rgba(0, 106, 237, .12);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.church-pain-card > span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--primary);
  background: #EEF6FF;
  border: 1px solid rgba(0, 106, 237, .14);
  flex: 0 0 auto;
}

.church-pain-card > span svg {
  width: 22px;
  height: 22px;
}

.church-pain-card h3,
.church-video-card h3 {
  font-size: 20px;
  letter-spacing: -.035em;
}

.church-pain-card h3 {
  font-size: 18px;
}

.church-pain-card p,
.church-video-card p {
  margin-top: 8px;
  color: var(--muted);
}

.church-pain-card p {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.55;
}

.church-solutions-grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}

.church-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.church-resource-grid article {
  padding: 22px;
  border: 1px solid rgba(0, 106, 237, .12);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  box-shadow: var(--shadow-sm);
}

.church-resource-grid svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--primary);
}

.church-resource-grid strong,
.church-resource-grid span {
  display: block;
}

.church-resource-grid strong {
  color: var(--ink);
  font-size: 17px;
  letter-spacing: -.025em;
}

.church-resource-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.church-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.church-video-card {
  padding: 16px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.church-video-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #07111F;
  aspect-ratio: 9 / 16;
}

.church-video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.church-video-card h3 {
  margin-top: 16px;
}

.church-comparison-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr);
  gap: 32px;
  align-items: center;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid rgba(0, 106, 237, .16);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.church-comparison-card h2 {
  max-width: 780px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
  letter-spacing: -.05em;
}

.church-comparison-card p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
}

.church-comparison-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.church-comparison-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 106, 237, .12);
  border-radius: 18px;
  background: #F7FAFF;
  color: var(--ink);
  font-weight: 850;
}

.church-comparison-card li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex: 0 0 auto;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .church-hero-grid,
  .church-solutions-grid,
  .church-comparison-card {
    grid-template-columns: 1fr;
  }

  .church-hero-visual {
    max-width: 680px;
    margin: 0 auto;
  }

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }

  .footer-trust {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 0;
  }

  .footer-trust-item {
    grid-template-columns: 24px minmax(0, 1fr) 24px;
    min-height: 64px;
    padding: 6px 8px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    background: rgba(255, 255, 255, .035);
  }

  .footer-trust-item svg {
    width: 24px;
    height: 48px;
  }

  .footer-legal p {
    font-size: 11px;
  }

  .church-pain-grid,
  .church-resource-grid,
  .church-video-grid {
    grid-template-columns: 1fr;
  }

  .church-pain-card {
    grid-template-columns: auto 1fr;
  }

  .church-video-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .church-hero-visual {
    min-height: auto;
    gap: 12px;
    place-items: stretch;
  }

  .church-hero-visual::before,
  .church-visual-rings {
    display: none;
  }

  .church-dashboard-card,
  .church-floating-card {
    position: relative;
    inset: auto;
    width: 100%;
    animation: none;
  }

  .church-dashboard-card {
    padding: 22px;
  }

  .church-floating-card {
    justify-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {

  .church-visual-rings,
  .church-dashboard-card,
  .church-dashboard-total::after,
  .church-dashboard-bars span,
  .church-floating-card {
    animation: none;
  }
}

/* Ajuste v66: estilo limpo apenas nos cards de FAQ */
.faq-list details {
  background: #fff;
  border: 1px solid #DDE7F3;
  border-radius: 16px;
  box-shadow: none;
}

.faq-list summary {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.01em;
}

.faq-list summary::after {
  background: transparent;
  color: var(--primary);
}

.faq-list details[open] {
  box-shadow: none;
}

.faq-list details p {
  font-weight: 400;
}

/* Links internos editoriais */
.useful-links-section {
  background: #fff;
}

.useful-links-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.4fr);
  gap: 34px;
  align-items: start;
}

.useful-links-copy h2 {
  margin: 10px 0 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
}

.useful-links-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.useful-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.useful-links-grid a {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 8px;
  background: #f8fafc;
  color: inherit;
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.useful-links-grid a:hover {
  border-color: rgba(0, 106, 237, .34);
  box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
  transform: translateY(-2px);
}

.useful-links-grid strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.3;
}

.useful-links-grid span {
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .useful-links-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .useful-links-grid {
    grid-template-columns: 1fr;
  }

  .useful-links-grid a {
    min-height: 0;
  }
}

/* Página Planilha de Controle Financeiro */
.download-page {
  background: var(--surface);
}

.download-hero {
  padding-top: 118px;
}

.download-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 54px;
  align-items: center;
}

.download-hero h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: .98;
}

.download-preview {
  position: relative;
}

.download-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 22px;
  max-width: 680px;
}

.download-steps article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0, 106, 237, .14);
  border-radius: 14px;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.download-steps strong {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: var(--primary);
  font-size: .82rem;
}

.download-steps span {
  color: var(--ink);
  font-size: .88rem;
  font-weight: 850;
  line-height: 1.25;
}

.spreadsheet-window {
  overflow: hidden;
  border: 1px solid rgba(0, 106, 237, .16);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .14);
}

.spreadsheet-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  background: #f8fafc;
}

.spreadsheet-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.spreadsheet-title {
  padding: 18px 20px 4px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.spreadsheet-grid {
  display: grid;
  grid-template-columns: .72fr 1.4fr repeat(3, .8fr);
  min-width: 560px;
  padding: 18px 20px 22px;
  color: #334155;
  font-size: .88rem;
}

.spreadsheet-grid>* {
  min-height: 42px;
  padding: 10px 12px;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  background: #fff;
}

.spreadsheet-grid>b {
  color: #0f172a;
  background: #eaf3ff;
}

.spreadsheet-grid strong {
  color: #087f5b;
  font-weight: 800;
}

.spreadsheet-grid em {
  color: #b42318;
  font-style: normal;
  font-weight: 800;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.download-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
}

.download-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
}

.download-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.65;
}

.download-fit {
  margin-top: auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-700);
  background: var(--primary-50);
  font-size: .78rem;
  font-weight: 900;
}

.btn-excel {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  background: #107c41;
  box-shadow: 0 14px 28px rgba(16, 124, 65, .22);
}

.btn-excel:hover,
.btn-excel:focus-visible {
  color: #fff;
  background: #0b6b37;
  box-shadow: 0 18px 34px rgba(16, 124, 65, .28);
}

.btn-excel svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}

.download-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--primary);
  background: rgba(0, 106, 237, .1);
}

.download-icon svg {
  width: 22px;
  height: 22px;
}

@media (max-width: 1024px) {
  .download-hero-grid,
  .download-grid {
    grid-template-columns: 1fr 1fr;
  }

  .download-hero-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .download-hero {
    padding-top: 92px;
  }

  .download-hero-grid,
  .download-grid {
    grid-template-columns: 1fr;
  }

  .download-steps {
    grid-template-columns: 1fr;
  }

  .spreadsheet-window {
    overflow-x: auto;
  }
}
