/* =============================================
   RESET & CUSTOM PROPERTIES
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red: #D40B3A;
  --red-dark: #a8082d;
  --red-light: #f0244f;
  --dark: #111F24;
  --dark-2: #1a2f36;
  --dark-3: #243840;
  --silver: #BDC3C7;
  --light: #E0E0E0;
  --white: #FFFFFF;
  --text: #111F24;
  --text-light: #4a6572;
  --text-muted: #7a9aaa;
  --success: #1a8a4a;
  --success-bg: #e6f7ed;

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Sora', 'Inter', sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(17,31,36,.08);
  --shadow-lg: 0 12px 48px rgba(17,31,36,.14);

  --nav-h: 72px;
  scroll-behavior: smooth;
}

html { font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; width: 100%; object-fit: cover; }

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

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1rem; font-weight: 600; }

p { line-height: 1.65; }

em { font-style: normal; color: var(--red); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
}

.section-header.light h2,
.section-header.light p { color: var(--white); }

.section-header.light .section-tag {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-light); font-size: 1.05rem; }

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(212,11,58,.07);
  border: 1px solid rgba(212,11,58,.18);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(212,11,58,.35);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: var(--white);
  border-color: rgba(255,255,255,.35);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  width: 100%;
}
.btn-whatsapp:hover {
  background: #1daf52;
  border-color: #1daf52;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
  width: 100%;
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 10px; }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background .3s, box-shadow .3s;
}

#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  text-decoration: none;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: .04em;
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: .1em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: color .2s;
}

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

.nav-links .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: background .2s, transform .2s;
}

.nav-links .nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown-toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform .2s;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--dark);
  border-radius: 12px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .2s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,.3);
  z-index: 100;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu li {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: rgba(255,255,255,.7);
  transition: all .2s;
}

.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,.05);
  color: var(--white);
  padding-left: 20px;
}

.nav-dropdown-menu .nav-premium {
  color: #4ade80;
  font-weight: 600;
}

.nav-dropdown-menu .nav-premium:hover {
  background: rgba(74,222,128,.1);
  color: #4ade80;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.hero-slide.active { opacity: 1; z-index: 1; }

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-slide.active .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,31,36,.85) 0%, rgba(17,31,36,.6) 60%, rgba(212,11,58,.25) 100%);
}

.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  top: var(--nav-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(212,11,58,.2);
  border: 1px solid rgba(212,11,58,.4);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}

.hero-tag-premium {
  color: #4ade80;
  background: rgba(74,222,128,.2);
  border: 1px solid rgba(74,222,128,.4);
}

.lp-hero-badge-premium {
  background: linear-gradient(135deg, #145e35 0%, #1a8a4a 100%);
  color: #4ade80;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  color: #e8ecef;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-controls {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-arrow {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.3);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(255,255,255,.28); }

.hero-dots { display: flex; gap: 8px; }

.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.hero-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}

.scroll-arrow {
  width: 20px; height: 20px;
  border-right: 2px solid rgba(255,255,255,.4);
  border-bottom: 2px solid rgba(255,255,255,.4);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50% { transform: rotate(45deg) translateY(5px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.stat-number-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: var(--red);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  letter-spacing: .02em;
}

/* =============================================
   SERVICES
   ============================================= */
.services { background: var(--white); }

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

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

.service-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}

.service-card-premium {
  background: linear-gradient(135deg, #145e35 0%, #1a8a4a 100%);
  border: none;
}

.service-card-premium .service-pain-text,
.service-card-premium .service-title,
.service-card-premium .service-desc {
  color: var(--white);
}

.service-card-premium .service-pain-badge {
  color: #4ade80;
  background: rgba(74,222,128,.2);
  border-color: rgba(74,222,128,.4);
}

.service-icon-premium {
  background: rgba(74,222,128,.2);
  color: #4ade80;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--silver);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px; height: 52px;
  background: rgba(212,11,58,.08);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.service-icon-wrap svg { width: 26px; height: 26px; }

.service-pain-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(212,11,58,.07);
  padding: 3px 10px;
  border-radius: 100px;
  width: fit-content;
}

.service-pain-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.55;
  padding: 12px 16px;
  background: rgba(17,31,36,.03);
  border-left: 3px solid var(--light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 4px;
}

.service-desc {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.6;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.service-list li {
  font-size: 0.825rem;
  color: var(--text-light);
  padding-left: 16px;
  position: relative;
}
.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

.service-result {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--success);
  background: var(--success-bg);
  padding: 8px 14px;
  border-radius: 8px;
  margin-top: auto;
}

/* =============================================
   SIMULATOR
   ============================================= */
.simulator {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.simulator::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,11,58,.15) 0%, transparent 70%);
  pointer-events: none;
}

.simulator .section-header h2 { color: var(--white); }
.simulator .section-header p { color: rgba(255,255,255,.6); }

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

.sim-group { display: flex; flex-direction: column; gap: 10px; }

.sim-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

.sim-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.sim-input-wrap:focus-within { border-color: var(--red); }

.sim-prefix {
  padding: 0 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  border-right: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  height: 100%;
  display: flex;
  align-items: center;
  align-self: stretch;
}

.sim-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 14px 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-display);
}

.sim-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.15);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}
.sim-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--red);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(212,11,58,.2);
  transition: box-shadow .2s;
}
.sim-range::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 8px rgba(212,11,58,.25);
}

.sim-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,.4);
}

.sim-visual {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sim-bar-wrap { display: flex; flex-direction: column; gap: 6px; }

.sim-bar-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

.sim-bar {
  height: 28px;
  border-radius: 6px;
  background: rgba(189,195,199,.3);
  width: 85%;
  transition: width .4s ease;
  position: relative;
  overflow: hidden;
}
.sim-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.06));
}

.sim-bar-bad { background: rgba(212,11,58,.6); }
.sim-bar-good { background: rgba(26,138,74,.7); }

.sim-right { display: flex; flex-direction: column; gap: 16px; }

.sim-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: border-color .3s;
}
.sim-card.highlight {
  background: rgba(212,11,58,.1);
  border-color: rgba(212,11,58,.3);
}

.sim-card-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.sim-card-value {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
}
.sim-card-value.red { color: #ff6b8a; }
.sim-card-value.green { color: #4ade80; }

.sim-card-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
}

.sim-cta {
  margin-top: 8px;
  display: block;
  text-align: center;
}

/* =============================================
   DOCUMENT DEMO
   ============================================= */
.doc-demo { background: #f9fafb; }

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

.doc-form-side h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: var(--dark);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group textarea {
  border: 1.5px solid var(--light);
  border-radius: 8px;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: var(--dark);
  outline: none;
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(212,11,58,.1);
}

.form-group textarea { resize: none; }

.doc-preview-side { position: sticky; top: calc(var(--nav-h) + 24px); }

.doc-preview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  background: var(--dark);
  border-radius: var(--radius) var(--radius) 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

.doc-live-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--white);
  background: var(--red);
  padding: 3px 8px;
  border-radius: 100px;
  animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .6; }
}

.doc-preview {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 32px 28px;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.doc-preview-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(212,11,58,.04);
  pointer-events: none;
  letter-spacing: .2em;
  font-family: var(--font-display);
  white-space: nowrap;
}

.doc-header-area {
  border-bottom: 2px solid var(--dark);
  padding-bottom: 16px;
  margin-bottom: 20px;
}

.doc-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--dark);
}

.doc-type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 4px;
}

.doc-number {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.doc-row {
  display: flex;
  gap: 8px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dashed var(--light);
}

.doc-lbl {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  min-width: 70px;
}

.doc-val {
  font-size: 0.85rem;
  color: var(--dark);
  font-weight: 500;
  flex: 1;
  word-break: break-word;
  transition: color .2s;
}

.doc-val-highlight {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
}

.doc-row-obs { align-items: flex-start; }

.doc-footer-area {
  margin-top: 28px;
  text-align: center;
}

.doc-sig-line {
  width: 180px;
  height: 1px;
  background: var(--dark);
  margin: 0 auto 8px;
}

.doc-footer-area p {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* =============================================
   SEGMENTS
   ============================================= */
.segments { background: var(--white); }

.seg-btn-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.seg-btn {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--light);
  background: var(--white);
  color: var(--text-light);
  cursor: pointer;
  transition: all .2s;
}
.seg-btn:hover { border-color: var(--silver); color: var(--dark); }
.seg-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

.seg-panel { display: none; }
.seg-panel.active { display: block; animation: fadeIn .4s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.seg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.seg-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-lg);
}
.seg-img-wrap img { height: 100%; }

.seg-content h3 { margin-bottom: 16px; color: var(--dark); }
.seg-content > p { color: var(--text-light); font-size: 0.95rem; line-height: 1.65; margin-bottom: 24px; }

.seg-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.seg-list li {
  font-size: 0.9rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.seg-list li::before {
  content: '✓';
  color: var(--white);
  background: var(--red);
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 1px;
}

/* =============================================
   CASES
   ============================================= */
.cases { background: #f9fafb; }

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

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.case-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.case-seg-badge {
  background: var(--dark);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 20px;
}

.case-block {
  padding: 20px 24px;
  border-bottom: 1px solid var(--light);
}

.case-block h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.case-block.problem h4 { color: var(--red); }
.case-block.solution h4 { color: var(--dark); }

.case-block p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-light);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light);
  margin-top: auto;
}

.case-metric {
  background: var(--white);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.case-metric-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
}

.case-metric-lbl {
  font-size: 0.65rem;
  color: var(--text-muted);
  line-height: 1.3;
}

/* =============================================
   PARTNERS
   ============================================= */
.partners { background: var(--white); overflow: hidden; }

.partners-scroll-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
}

.partners-scroll-wrap::before,
.partners-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-scroll-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.partners-scroll-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

.partners-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
}
.partners-track:hover { animation-play-state: paused; }

@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partner-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 140px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.partner-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(212,11,58,.1);
}

.partner-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
}

.partner-cat {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: #f9fafb; }

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

.contact-left .section-tag { display: block; width: fit-content; margin-bottom: 16px; }
.contact-left h2 { margin-bottom: 16px; }
.contact-left > p { color: var(--text-light); margin-bottom: 28px; font-size: 1.05rem; }

.contact-benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
}

.benefit-check {
  width: 24px; height: 24px;
  min-width: 24px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 220px;
  box-shadow: var(--shadow);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-opt-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-opt-icon svg { width: 24px; height: 24px; }

.contact-opt-wa { background: rgba(37,211,102,.12); color: #25D366; }
.contact-opt-cal { background: rgba(212,11,58,.1); color: var(--red); }

.contact-option h4 { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.contact-option p { font-size: 0.8rem; color: var(--text-light); }

.contact-or {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--silver);
  font-size: 0.8rem;
  font-weight: 500;
  margin: 20px 0;
}
.contact-or::before, .contact-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--light);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 12px; }

.social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--red); color: var(--white); }
.social-link svg { width: 16px; height: 16px; fill: currentColor; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.3);
}

/* =============================================
   FLOATING WHATSAPP
   ============================================= */
.fab-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.fab-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}
.fab-wa svg { width: 28px; height: 28px; }

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.animate-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }

  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--dark);
    padding: 16px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.3);
  }
  .nav-links.open li { border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links.open a {
    display: block;
    padding: 12px 24px;
    font-size: 1rem;
  }
  .nav-links.open .nav-cta {
    margin: 12px 24px;
    text-align: center;
    border-radius: 8px;
  }
  .nav-dropdown-toggle::after {
    position: absolute;
    right: 24px;
  }
  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: rgba(0,0,0,.2);
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    padding: 10px 24px 10px 40px;
    font-size: 0.875rem;
  }
  .nav-toggle { display: flex; }

  .hero-content { max-width: 100%; padding: 0 24px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

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

  .simulator-wrapper { grid-template-columns: 1fr; gap: 32px; }

  .doc-wrapper { grid-template-columns: 1fr; gap: 24px; }
  .doc-preview-side { position: static; }

  .seg-grid { grid-template-columns: 1fr; gap: 24px; }
  .seg-img-wrap { height: 220px; }

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

  .contact-wrapper { grid-template-columns: 1fr; gap: 32px; }
  .contact-img-wrap { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .sim-card-value { font-size: 1.4rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-controls { bottom: 60px; }
  .footer-grid { grid-template-columns: 1fr; }
  .case-metrics { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================
   NAV LOGO — image support
   ============================================= */
.nav-logo { display: flex; align-items: center; gap: 50px; }

.nav-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text { display: flex; flex-direction: column; line-height: 1.1; }

/* =============================================
   CONTRACT DOCUMENT PREVIEW
   ============================================= */
.doc-preview--contract { padding: 24px 22px; }

.doc-brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.doc-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.doc-brand-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: .04em;
}

.doc-contract-num {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--light);
}

.doc-clause {
  margin-bottom: 12px;
  border-radius: 6px;
  overflow: hidden;
}
.doc-clause--highlight { background: rgba(212,11,58,.03); border: 1px solid rgba(212,11,58,.12); }

.doc-clause-title {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  background: rgba(17,31,36,.05);
  padding: 5px 10px;
  margin-bottom: 8px;
}
.doc-clause--highlight .doc-clause-title { background: rgba(212,11,58,.08); color: var(--red); }

.doc-clause-body { padding: 0 10px 8px; }

.doc-party-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 4px 0;
  border-bottom: 1px dashed rgba(0,0,0,.06);
}
.doc-party-row:last-child { border-bottom: none; }

.doc-party-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
  min-width: 86px;
}

.doc-signatures {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--light);
}

.doc-sig-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   RECIBO SAÚDE SECTION
   ============================================= */
.recibo-demo { background: #f0f4f8; }

.recibo-wrapper {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.recibo-steps { display: flex; flex-direction: column; gap: 0; }

.recibo-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.recibo-step:hover { border-color: var(--red); box-shadow: var(--shadow); }

.recibo-step--success { border-color: #1a8a4a; background: #f0faf5; }
.recibo-step--success .recibo-step-num { background: #1a8a4a; }

.recibo-step-num {
  width: 32px; height: 32px;
  min-width: 32px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.recibo-step-info h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--dark); }
.recibo-step-info p { font-size: 0.8rem; color: var(--text-light); line-height: 1.5; }

.recibo-step-arrow {
  text-align: center;
  color: var(--silver);
  font-size: 1.2rem;
  line-height: 1;
  padding: 4px 0;
  margin-left: 16px;
}

/* Government-style Recibo Saúde document */
.recibo-preview-wrap { display: flex; flex-direction: column; gap: 12px; }

.recibo-gov-doc {
  background: var(--white);
  border: 1.5px solid #c8d0d8;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.12);
}

.recibo-gov-header {
  background: linear-gradient(135deg, #1a5f3f 0%, #236b47 100%);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recibo-gov-brasao {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.9);
}

.recibo-brasao-icon { width: 36px; height: 36px; flex-shrink: 0; opacity: .9; }
.recibo-brasao-icon svg { width: 100%; height: 100%; }

.recibo-gov-title-wrap { display: flex; flex-direction: column; gap: 1px; }
.recibo-gov-ministry { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,.75); letter-spacing: .06em; text-transform: uppercase; }
.recibo-gov-organ { font-size: 0.75rem; font-weight: 700; color: var(--white); }

.recibo-gov-doc-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,.15);
  padding: 6px 10px;
  border-radius: 4px;
  text-align: center;
}

.recibo-gov-body { padding: 16px 20px; }

.recibo-gov-section { margin-bottom: 12px; }

.recibo-gov-section-title {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1a5f3f;
  border-bottom: 2px solid #1a5f3f;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

.recibo-gov-row {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.recibo-gov-field { display: flex; flex-direction: column; gap: 3px; flex: 1; min-width: 120px; }
.recibo-gov-field--wide { flex: 2; min-width: 200px; }

.recibo-gov-field label {
  font-size: 0.58rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.recibo-gov-input {
  font-size: 0.8rem;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid #c8d0d8;
  padding: 2px 0 3px;
  min-height: 22px;
}

.recibo-gov-input--value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #1a5f3f;
}

.recibo-gov-footer {
  display: flex;
  gap: 16px;
  align-items: center;
  padding-top: 10px;
  border-top: 1.5px solid var(--light);
  margin-top: 10px;
}

.recibo-qr-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.recibo-qr-mock {
  width: 64px; height: 64px;
  border: 2px solid var(--dark);
  padding: 3px;
  border-radius: 4px;
}

.qr-grid {
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.65) 0px, rgba(0,0,0,.65) 4px, transparent 4px, transparent 8px),
    repeating-linear-gradient(90deg, rgba(0,0,0,.65) 0px, rgba(0,0,0,.65) 4px, transparent 4px, transparent 8px);
  background-size: 8px 8px;
  border-radius: 2px;
  position: relative;
}
.qr-grid::before, .qr-grid::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border: 3px solid var(--dark);
  background: var(--white);
  border-radius: 2px;
}
.qr-grid::before { top: 0; left: 0; }
.qr-grid::after { bottom: 0; left: 0; }

.recibo-qr-label { font-size: 0.55rem; color: var(--text-muted); text-align: center; white-space: nowrap; }

.qr-cell { background: transparent; border-radius: 1px; aspect-ratio: 1; }
.qr-cell.qr-on { background: var(--dark); }

.recibo-auth-area { flex: 1; }

.recibo-auth-badge {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #e8f5ee;
  border: 1.5px solid #1a8a4a;
  border-radius: 6px;
  padding: 8px 12px;
  margin-bottom: 6px;
}

.auth-badge-icon {
  color: #1a8a4a;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.2;
}

.recibo-auth-badge strong {
  display: block;
  font-size: 0.7rem;
  color: #1a5f3f;
  font-weight: 800;
  letter-spacing: .04em;
}

.recibo-auth-badge span {
  font-size: 0.62rem;
  color: #2e7d52;
}

.recibo-hash {
  font-size: 0.6rem;
  font-family: monospace;
  color: var(--text-muted);
  letter-spacing: .04em;
}

.recibo-auto-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a5f3f;
  background: #e8f5ee;
  border: 1.5px solid #a8d5bc;
  border-radius: 8px;
  padding: 10px 16px;
}

.auto-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #1a8a4a;
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* =============================================
   PARTNERS — IMAGE GRID
   ============================================= */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.partner-logo-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 20px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s, transform .2s;
  cursor: default;
}
.partner-logo-card:hover {
  border-color: rgba(212,11,58,.3);
  box-shadow: 0 4px 16px rgba(212,11,58,.08);
  transform: translateY(-2px);
}

.partner-logo-img-wrap {
  width: 100%;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.partner-logo-img {
  max-height: 40px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.partner-logo-img.partner-img-error { display: none; }
.partner-logo-img.partner-img-error + .partner-logo-fallback { display: flex; }

.partner-logo-fallback {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: .02em;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo-img.partner-img-error + .partner-logo-fallback { display: flex; }

.partners-tip {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}
.partners-tip code {
  background: var(--light);
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.72rem;
  color: var(--dark);
}

/* =============================================
   RESPONSIVE — new sections
   ============================================= */
@media (max-width: 1024px) {
  .partners-grid { grid-template-columns: repeat(4, 1fr); }
  .recibo-wrapper { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
  .recibo-gov-row { flex-wrap: wrap; }
  .recibo-gov-field { min-width: 100%; }
  .recibo-gov-field--wide { min-width: 100%; }
}

@media (max-width: 480px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); }
  .doc-signatures { flex-direction: column; gap: 12px; }
}

/* =============================================
   PARTNERS — scrolling track restored with logos
   ============================================= */
.partners-scroll-wrap {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
}
.partners-scroll-wrap::before,
.partners-scroll-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.partners-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.partners-scroll-wrap::after  { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.partners-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: scrollTrack 32s linear infinite;
  padding: 4px 0;
}
.partners-track:hover { animation-play-state: paused; }

.partner-logo-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 16px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 130px;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
  flex-shrink: 0;
}
.partner-logo-card:hover {
  border-color: rgba(212,11,58,.3);
  box-shadow: 0 4px 16px rgba(212,11,58,.08);
}

.partner-logo-img-wrap {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-logo-img {
  max-height: 36px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.partner-logo-img.partner-img-error { display: none; }
.partner-logo-img.partner-img-error + .partner-logo-fallback { display: flex; }
.partner-logo-fallback {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--dark);
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* =============================================
   ASAAS — featured partner highlight
   ============================================= */
/* Asaas brand colors */
:root {
  --asaas-blue: #1e3a5f;
  --asaas-blue-light: #2d5a8a;
  --asaas-blue-dark: #142841;
}

.asaas-featured {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin-bottom: 40px;
  border: 1px solid var(--light);
  box-shadow: var(--shadow);
}

.asaas-featured-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 80px;
}
.asaas-logo-img {
  max-height: 50px;
  max-width: 120px;
  object-fit: contain;
  width: auto;
}
.asaas-logo-img.partner-img-error { display: none; }
.asaas-logo-img.partner-img-error + .asaas-logo-fallback { display: flex; }
.asaas-logo-fallback {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--asaas-blue);
  letter-spacing: .04em;
  display: none;
  align-items: center;
  justify-content: center;
}

.asaas-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--asaas-blue);
  background: rgba(30,58,95,.08);
  border: 1px solid rgba(30,58,95,.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.asaas-featured-content h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.asaas-featured-content p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.asaas-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}
.asaas-features span {
  font-size: 0.78rem;
  color: var(--text);
  font-weight: 500;
}

/* =============================================
   AI AGENT DEMO
   ============================================= */
.ai-agent-demo { background: #f0f4f8; }

.ai-wrapper {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.ai-steps { display: flex; flex-direction: column; gap: 0; }

.ai-email-mock {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1.5px solid var(--light);
}

.ai-email-topbar {
  background: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
}
.ai-topbar-dots { display: flex; gap: 6px; }
.ai-topbar-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}
.ai-topbar-title { font-size: 0.75rem; color: rgba(255,255,255,.6); font-weight: 500; }

.ai-email-list { padding: 8px; border-bottom: 1px solid var(--light); }

.ai-email-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 8px;
  cursor: default;
  transition: background .2s;
}
.ai-email-item--active { background: rgba(212,11,58,.05); border: 1px solid rgba(212,11,58,.15); }

.ai-email-icon {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--white);
  flex-shrink: 0;
}
.ai-email-icon--pdf { background: #e53935; }
.ai-email-icon--xml { background: #1565c0; }
.ai-email-icon--img { background: #2e7d32; }

.ai-email-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ai-email-from { font-size: 0.78rem; font-weight: 600; color: var(--dark); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ai-email-subject { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.ai-email-badge {
  font-size: 0.6rem;
  font-weight: 800;
  background: var(--red);
  color: var(--white);
  border-radius: 4px;
  padding: 3px 6px;
  flex-shrink: 0;
}
.ai-email-badge--done { background: var(--success); }

.ai-processing-box {
  padding: 16px 16px;
}

.ai-processing-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.ai-processing-header strong { font-size: 0.8rem; color: var(--dark); }

.ai-proc-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: livePulse 1.5s ease-in-out infinite;
  flex-shrink: 0;
}

.ai-proc-rows { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.ai-proc-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.78rem;
}
.ai-proc-row--action { margin-top: 4px; padding-top: 8px; border-top: 1px dashed var(--light); }

.ai-proc-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  min-width: 90px;
  white-space: nowrap;
}
.ai-proc-val { color: var(--dark); font-weight: 500; }
.ai-proc-val--highlight {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--red);
  font-size: 0.95rem;
}

.ai-proc-status {
  font-size: 0.72rem;
  font-weight: 600;
  color: #e65100;
  background: rgba(230,81,0,.08);
  padding: 2px 8px;
  border-radius: 4px;
  animation: livePulse 2s ease-in-out infinite;
}

.ai-approve-buttons { display: flex; gap: 8px; }

.ai-btn-approve {
  flex: 1;
  background: var(--success);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .2s, transform .1s;
}
.ai-btn-approve:hover { background: #145e35; transform: scale(1.02); }

.ai-btn-reject {
  background: rgba(17,31,36,.06);
  color: var(--text-muted);
  border: 1.5px solid var(--light);
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: border-color .2s;
}
.ai-btn-reject:hover { border-color: var(--silver); color: var(--dark); }

.ai-approved-state {
  display: none;
  align-items: center;
  gap: 12px;
  background: #e8f5ee;
  border: 1.5px solid #1a8a4a;
  border-radius: 8px;
  padding: 12px 16px;
  margin: 8px 16px 12px;
  animation: fadeIn .4s ease;
}
.ai-approved-state.visible { display: flex; }

.ai-approved-icon {
  width: 32px; height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: #1a8a4a;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.ai-approved-text { display: flex; flex-direction: column; gap: 2px; }
.ai-approved-text strong { font-size: 0.85rem; color: #1a5f3f; }
.ai-approved-text span { font-size: 0.75rem; color: #2e7d52; }

.ai-preview-wrap { display: flex; flex-direction: column; gap: 12px; }
.ai-auto-badge { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; color: #1a5f3f; background: #e8f5ee; border: 1.5px solid #a8d5bc; border-radius: 8px; padding: 10px 16px; }

/* =============================================
   FOOTER — Asaas + 5-column grid
   ============================================= */
.footer-asaas {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.footer-asaas-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f4f8;
  border: 1px solid var(--light);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-height: 60px;
}

.asaas-footer-img {
  max-height: 36px;
  max-width: 120px;
  width: auto;
  object-fit: contain;
}
.asaas-footer-img.partner-img-error { display: none; }
.asaas-footer-img.partner-img-error + .asaas-footer-fallback { display: flex; }
.asaas-footer-fallback {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--asaas-blue);
  display: none;
  align-items: center;
}

.footer-asaas-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--asaas-blue);
  background: rgba(30,58,95,.08);
  border: 1px solid rgba(30,58,95,.2);
  padding: 2px 8px;
  border-radius: 100px;
  margin-bottom: 6px;
}

.footer-asaas-text p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-asaas-text strong { color: var(--dark); }

.footer-asaas-btn {
  white-space: nowrap;
  font-size: 0.82rem;
  padding: 10px 20px;
}

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

/* =============================================
   RESPONSIVE — new sections
   ============================================= */
@media (max-width: 1100px) {
  .asaas-featured { grid-template-columns: 120px 1fr; }
  .asaas-featured > .btn { grid-column: 1 / -1; justify-self: start; }
  .footer-asaas { grid-template-columns: 120px 1fr; }
  .footer-asaas > .btn { grid-column: 1 / -1; justify-self: start; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .ai-wrapper { grid-template-columns: 1fr 300px; }
}

@media (max-width: 768px) {
  .asaas-featured { grid-template-columns: 1fr; gap: 20px; }
  .footer-asaas { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .ai-wrapper { grid-template-columns: 1fr; }
  .ai-steps { margin-top: 24px; }
}

/* =============================================
   NAVBAR SOLID VARIANT
   ============================================= */
.navbar-solid {
  background: var(--dark);
  box-shadow: 0 2px 24px rgba(0,0,0,.3);
}

/* =============================================
   LANDING PAGE HERO
   ============================================= */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,31,36,.92) 0%, rgba(17,31,36,.7) 60%, rgba(212,11,58,.2) 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 80px 0;
}

.lp-hero-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.lp-hero-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.lp-hero-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(212,11,58,.2);
  border: 1px solid rgba(212,11,58,.4);
  padding: 4px 12px;
  border-radius: 100px;
}

.lp-hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
}

.lp-hero-content h1 em {
  color: var(--red-light);
}

.lp-hero-desc {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: rgba(255,255,255,.8);
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.lp-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.lp-hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.lp-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-stat-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}

.lp-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,.5);
  font-weight: 500;
  line-height: 1.3;
}

/* =============================================
   LANDING PAGE SECTIONS
   ============================================= */
.lp-section { padding: 96px 0; }

.lp-section.lp-problem { background: #f9fafb; }
.lp-section.lp-solution { background: var(--dark); }

/* Problem Grid */
.lp-problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.lp-problem-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow .25s, border-color .25s;
}

.lp-problem-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(212,11,58,.3);
}

.lp-problem-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(212,11,58,.1);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
}

.lp-problem-card h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.lp-problem-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Solution Steps */
.lp-solution-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 700px;
  margin: 0 auto;
}

.lp-solution-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s;
}

.lp-solution-step:hover {
  border-color: rgba(212,11,58,.3);
}

.lp-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
}

.lp-step-content h4 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.lp-step-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
}

/* Features Grid */
.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.lp-feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.lp-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: rgba(212,11,58,.08);
  color: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.lp-feature-card h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.lp-feature-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

.lp-feature-with-image {
  padding: 0;
  overflow: hidden;
}

.lp-feature-with-image .lp-feature-image {
  height: 160px;
  overflow: hidden;
}

.lp-feature-with-image .lp-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.lp-feature-with-image:hover .lp-feature-image img {
  transform: scale(1.05);
}

.lp-feature-with-image .lp-feature-icon {
  margin-top: -26px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.lp-feature-with-image h4,
.lp-feature-with-image p {
  padding: 0 20px;
}

.lp-feature-with-image p {
  padding-bottom: 20px;
}

/* Benefits Section */
.lp-benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.lp-benefits-content .section-tag {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
}

.lp-benefits-content h2 {
  margin-bottom: 32px;
}

.lp-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lp-benefits-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.lp-benefit-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.lp-benefits-list strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.lp-benefits-list p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.lp-benefits-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lp-benefits-image img {
  height: 100%;
  object-fit: cover;
}

/* Segments Grid */
.lp-segments-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.lp-segment-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.lp-segment-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.lp-segment-card img {
  height: 120px;
  width: 100%;
  object-fit: cover;
}

.lp-segment-card h4 {
  font-size: 0.95rem;
  color: var(--dark);
  padding: 14px 12px 4px;
}

.lp-segment-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0 12px 14px;
}

/* Pricing Card */
.lp-pricing-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.lp-pricing-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 32px;
  text-align: center;
}

.lp-pricing-header h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.lp-pricing-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lp-price-label { font-size: 0.8rem; color: rgba(255,255,255,.5); }
.lp-price-value { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--red); line-height: 1; }
.lp-price-period { font-size: 0.85rem; color: rgba(255,255,255,.6); }

.lp-pricing-body {
  padding: 32px;
}

.lp-pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.lp-pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lp-pf-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.lp-pricing-feature span:last-child {
  font-size: 0.9rem;
  color: var(--text);
}

.lp-pricing-note {
  background: rgba(17,31,36,.03);
  border-radius: 8px;
  padding: 16px;
}

.lp-pricing-note p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.55;
}

.lp-pricing-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 32px 32px;
}

.lp-pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--success);
  font-weight: 600;
}

.lp-guarantee-icon {
  width: 20px;
  height: 20px;
  background: var(--success-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

/* =============================================
   INTEGRATIONS & PROFESSIONAL CARDS
   ============================================= */
.lp-professionals-grid .lp-feature-card {
  text-align: left;
}

.lp-prof-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,138,74,.08);
  color: var(--success);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.lp-prof-icon svg {
  width: 24px;
  height: 24px;
}

.lp-integrations-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.lp-integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  padding: 24px 32px;
  min-width: 140px;
  transition: box-shadow .25s, transform .25s;
}

.lp-integration-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.lp-integration-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.lp-integration-logo.partner-img-error {
  display: none;
}

.lp-integration-logo.partner-img-error + .lp-integration-fallback {
  display: block;
}

.lp-integration-fallback {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  display: none;
}

.lp-integration-cat {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

.lp-integration-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 24px;
}

.lp-integration-note a {
  color: var(--red);
  font-weight: 600;
}

.lp-benefits-alt .lp-benefits-wrapper {
  direction: rtl;
}

.lp-benefits-alt .lp-benefits-wrapper > * {
  direction: ltr;
}

.recibo-preview-inline {
  max-width: 450px;
  margin: 48px auto 0;
}

.lp-step-success {
  background: rgba(26,138,74,.1);
  border-color: rgba(26,138,74,.3);
}

/* =============================================
   ABOUT PAGE STYLES
   ============================================= */
.about-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.about-hero-content {
  max-width: 700px;
}

.about-hero-content .section-tag {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
}

.about-hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.about-hero-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
}

.about-section {
  padding: 96px 0;
}

.about-section.about-story {
  background: #f9fafb;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.about-story-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-image img {
  height: 100%;
  object-fit: cover;
}

.about-story-content .section-tag {
  display: block;
  width: fit-content;
  margin-bottom: 16px;
}

.about-story-content h2 {
  margin-bottom: 24px;
}

.about-story-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-story-content p:last-of-type {
  font-weight: 500;
  color: var(--text);
}

/* Missao Visao Valores */
.about-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-mvv-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.about-mvv-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.about-mvv-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  background: rgba(212,11,58,.08);
  color: var(--red);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.about-mvv-card h3 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.about-mvv-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.about-mvv-card ul {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-mvv-card li {
  font-size: 0.85rem;
  color: var(--text-light);
}

.about-mvv-card li strong {
  display: block;
  color: var(--dark);
  margin-bottom: 2px;
}

/* Numbers */
.about-numbers {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.about-numbers .section-header {
  margin-bottom: 48px;
}

.about-numbers .section-header h2 {
  color: var(--white);
}

.about-numbers .section-header p {
  color: rgba(255,255,255,.6);
}

.about-numbers .section-tag {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border-color: rgba(255,255,255,.2);
}

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

.about-number-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}

.about-number-value {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

.about-number-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* Team */
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.about-team-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 24px;
  transition: box-shadow .25s, transform .25s;
}

.about-team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.about-team-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-team-card:hover .about-team-photo img {
  transform: none;
}

.about-team-info {
  padding: 0;
  flex: 1;
}

.about-team-info h4 {
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.about-team-role {
  display: block;
  font-size: 0.8rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.about-team-bio {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

.about-team-cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--light);
}

.about-team-cta p {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

/* =============================================
   RESPONSIVE — About Page
   ============================================= */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-image { height: 300px; }
  .about-mvv-grid { grid-template-columns: 1fr; }
  .about-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .about-hero { padding: 120px 0 60px; }
  .about-section { padding: 64px 0; }
  .about-numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .about-number-value { font-size: 2.2rem; }
  .about-team-grid { grid-template-columns: 1fr; }
  .lp-integrations-grid { flex-direction: column; align-items: center; }
  .lp-integration-card { width: 100%; max-width: 200px; }
}

/* =============================================
   SOLUTIONS PAGE STYLES
   ============================================= */
.solutions-highlights {
  margin-top: -80px;
  padding-bottom: 48px;
}

.solutions-highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.solutions-highlight-card {
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: box-shadow .25s, transform .25s;
}

.solutions-highlight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.solutions-hl-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.solutions-hl-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: rgba(26,138,74,.1);
  color: var(--success);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions-hl-icon svg {
  width: 32px;
  height: 32px;
}

.solutions-highlight-card h3 {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
}

.solutions-highlight-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 16px;
}

.solutions-hl-cta {
  font-size: 0.85rem;
  color: var(--red);
  font-weight: 600;
}

.solutions-section {
  padding: 96px 0;
}

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

.solutions-process-step {
  text-align: center;
  padding: 24px;
}

.solutions-process-num {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.solutions-process-step h4 {
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 8px;
}

.solutions-process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* =============================================
   PARTNERS PAGE STYLES
   ============================================= */
.partner-featured-grid {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.partner-featured-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17,31,36,.03);
  border-radius: var(--radius);
  padding: 24px;
  min-height: 120px;
}

.partner-feat-img {
  max-height: 60px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
}

.partner-feat-img.partner-img-error {
  display: none;
}

.partner-feat-img.partner-img-error + .asaas-logo-fallback {
  display: flex;
}

.partner-featured-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red-light);
  background: rgba(212,11,58,.1);
  border: 1px solid rgba(212,11,58,.25);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.partner-featured-content h2 {
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 16px;
}

.partner-featured-content p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner-featured-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.partner-feat-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.partner-feat-item > span:first-child {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}

.partner-feat-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.partner-feat-item p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

/* Partners categories */
.partners-category {
  margin-bottom: 48px;
}

.partners-cat-title {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 700;
  padding-bottom: 12px;
  margin-bottom: 24px;
  border-bottom: 2px solid var(--light);
}

.partners-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.partner-list-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
}

.partner-list-link {
  display: flex;
  gap: 16px;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  align-items: flex-start;
}

.partner-list-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.partner-list-img-wrap {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: rgba(17,31,36,.03);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-list-img {
  max-height: 40px;
  max-width: 50px;
  object-fit: contain;
}

.partner-list-img.partner-img-error {
  display: none;
}

.partner-list-fallback {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--dark);
  display: none;
}

.partner-list-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-list-content h4 {
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.partner-list-content p {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.45;
  margin-bottom: 8px;
}

.partner-list-cat {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
}

/* Team page adjustments */
.about-team-full {
  grid-template-columns: repeat(2, 1fr);
}

.about-team-card .about-team-social {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.about-team-social .social-link {
  width: 32px;
  height: 32px;
  font-size: 0.7rem;
}

/* =============================================
   RESPONSIVE — Solutions & Partners
   ============================================= */
@media (max-width: 1024px) {
  .solutions-highlight-grid { grid-template-columns: 1fr; }
  .solutions-process-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-featured-grid { grid-template-columns: 1fr; text-align: center; }
  .partner-featured-logo { margin: 0 auto; max-width: 200px; }
  .partner-featured-features { text-align: left; }
  .partners-list-grid { grid-template-columns: repeat(2, 1fr); }
  .partner-list-card:only-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  .about-team-full { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .solutions-process-grid { grid-template-columns: 1fr; }
  .partner-featured-features { grid-template-columns: 1fr; }
  .partners-list-grid { grid-template-columns: 1fr; }
  .partner-list-card:only-child { max-width: 100%; }
  .about-team-full { grid-template-columns: 1fr; }
  .solutions-highlights { margin-top: 0; padding-top: 60px; }
}

/* FAQ Section */
.lp-faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-faq-item {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius);
  transition: border-color .2s;
}

.lp-faq-item:hover { border-color: var(--silver); }

.lp-faq-item summary {
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--red);
  font-weight: 700;
  transition: transform .2s;
}

.lp-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.lp-faq-item p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* CTA Section */
.lp-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
}

.lp-cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.lp-cta-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.lp-cta-content p {
  color: rgba(255,255,255,.65);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.lp-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Simple Footer Grid */
.footer-grid-simple {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

/* =============================================
   RESPONSIVE — Landing Pages
   ============================================= */
@media (max-width: 1024px) {
  .lp-problem-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-segments-grid { grid-template-columns: repeat(3, 1fr); }
  .lp-benefits-wrapper { grid-template-columns: 1fr; gap: 40px; }
  .lp-benefits-image { height: 300px; }
}

@media (max-width: 768px) {
  .lp-hero-content { padding: 60px 0; }
  .lp-hero-stats { gap: 32px; }
  .lp-problem-grid { grid-template-columns: 1fr; }
  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-segments-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-cta-actions { flex-direction: column; }
  .lp-cta-actions .btn { width: 100%; }
  .footer-grid-simple { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .lp-hero-stats { flex-direction: column; gap: 24px; }
  .lp-stat-num { font-size: 2rem; }
  .lp-segments-grid { grid-template-columns: 1fr; }
  .footer-grid-simple { grid-template-columns: 1fr; }
}

/* =============================================
   FEATURED SERVICES SECTION
   ============================================= */
.featured-services { background: #f9fafb; }

.featured-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  border: 1px solid var(--light);
}
.featured-service-card.reverse {
  direction: rtl;
}
.featured-service-card.reverse > * {
  direction: ltr;
}

.featured-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.featured-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(212,11,58,.08);
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(212,11,58,.18);
}

.featured-badge-asaas {
  color: #4ade80;
  background: rgba(74,222,128,.15);
  border: 1px solid rgba(74,222,128,.3);
}

.featured-service-card.asaas-featured-card {
  background: linear-gradient(135deg, var(--asaas-blue) 0%, var(--asaas-blue-light) 100%);
  border: none;
}

.featured-service-card.asaas-featured-card h3 {
  color: var(--white);
}

.featured-service-card.asaas-featured-card .featured-desc {
  color: rgba(255,255,255,.85);
}

.featured-service-card.asaas-featured-card .featured-feature strong {
  color: var(--white);
}

.featured-service-card.asaas-featured-card .featured-feature p {
  color: rgba(255,255,255,.7);
}

.featured-service-card.asaas-featured-card .feature-icon {
  color: #4ade80;
  background: rgba(74,222,128,.15);
}

.featured-service-card.asaas-featured-card .pricing-label,
.featured-service-card.asaas-featured-card .pricing-note {
  color: rgba(255,255,255,.7);
}

.featured-service-card.asaas-featured-card .pricing-value {
  color: var(--white);
}

.featured-partner-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.featured-service-content h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--dark);
  margin-bottom: 16px;
}

.featured-desc {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}

.featured-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.featured-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: var(--success-bg);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.featured-feature strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.featured-feature p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.featured-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pricing-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
}

.pricing-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.featured-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Asaas mockup visual */
.featured-service-visual {
  position: relative;
}

.asaas-mockup {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.mockup-header {
  background: var(--dark);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.mockup-header span:last-child {
  font-size: 0.75rem;
  color: rgba(255,255,255,.6);
}

.mockup-body {
  padding: 20px;
}

.mockup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.mockup-stat {
  background: rgba(17,31,36,.03);
  border-radius: 8px;
  padding: 14px;
  text-align: center;
}

.mockup-stat-value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 4px;
}

.mockup-stat-value.green { color: var(--success); }
.mockup-stat-value.red { color: var(--red); }

.mockup-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.mockup-chart {
  background: rgba(17,31,36,.03);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.chart-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}

.chart-bars {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  height: 100px;
  margin-bottom: 12px;
}

.chart-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.bar-fill {
  width: 40px;
  background: rgba(212,11,58,.4);
  border-radius: 4px 4px 0 0;
  transition: height .8s ease;
}

.bar-fill.green { background: var(--success); }

.bar-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.chart-result {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.chart-result-icon {
  font-size: 1.2rem;
  color: var(--success);
}

.chart-result-text {
  font-size: 0.85rem;
  color: var(--dark);
}

.chart-result-text strong {
  color: var(--success);
  font-size: 1rem;
}

.mockup-entries {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mockup-entry {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(17,31,36,.02);
}

.mockup-entry.success .entry-icon {
  color: var(--success);
}
.mockup-entry.pending .entry-icon {
  color: #e65100;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Featured Recibo preview */
.featured-recibo-preview {
  max-width: 400px;
}

/* Simulator hero - more prominent */
.simulator-hero {
  padding: 120px 0;
}

.simulator-hero::before {
  top: -400px;
  right: -400px;
  width: 900px;
  height: 900px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials { background: var(--white); }

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

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-media {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.testimonial-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-video-wrap {
  background: var(--dark);
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,.6);
  cursor: pointer;
  position: relative;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
}

.play-button {
  width: 60px;
  height: 60px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: transform .2s, background .2s;
}

.video-placeholder:hover .play-button {
  transform: scale(1.1);
  background: var(--red-dark);
}

.video-placeholder span:last-child {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
}

.testimonial-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #ffc107;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
  font-style: italic;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--light);
  padding-top: 16px;
}

.testimonial-photo-small {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-video-box {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.video-placeholder-inline {
  background: var(--dark);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,.8);
  cursor: pointer;
  border-radius: 8px;
  transition: background .2s;
}

.video-placeholder-inline:hover {
  background: var(--dark);
}

.play-button-small {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--white);
}

.testimonial-author {
  border-top: 1px solid var(--light);
  padding-top: 16px;
}

.author-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* =============================================
   CASE CARDS WITH IMAGES
   ============================================= */
.case-image-wrap {
  height: 160px;
  overflow: hidden;
  position: relative;
}

.case-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.case-card:hover .case-image {
  transform: scale(1.05);
}

.case-card .case-seg-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(17,31,36,.85);
  backdrop-filter: blur(4px);
  padding: 6px 14px;
}

.case-content {
  padding: 20px 24px;
}

.case-card .case-block {
  padding: 14px 0;
}

/* =============================================
   RESPONSIVE — Featured Services & Testimonials
   ============================================= */
@media (max-width: 1024px) {
  .featured-service-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .featured-service-card.reverse {
    direction: ltr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }
  .simulator-hero {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .featured-service-card {
    padding: 28px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .asaas-mockup {
    display: none;
  }
  .case-image-wrap {
    height: 140px;
  }
}
