:root {
  --primary: #f97316;
  --primary-light: #fb923c;
  --primary-hover: #ea580c;
  --accent: #f59e0b;
  --accent2: #10b981;
  --background: #09090b;
  --surface: #18181b;
  --surface2: #27272a;
  --text-main: #fafafa;
  --text-muted: #a1a1aa;
  --border: rgba(255, 255, 255, 0.08);
  --glass: rgba(24, 24, 27, 0.75);
  --glass-border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --grad: linear-gradient(135deg, #f97316 0%, #f59e0b 100%);
  --grad-glow: 0 0 25px rgba(249, 115, 22, 0.25);
  --grad-glow-strong: 0 0 40px rgba(249, 115, 22, 0.4);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
}

body {
  background: var(--background);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.section {
  padding: 120px 0;
  scroll-margin-top: 80px;
}

.bg-alt {
  background: linear-gradient(180deg, #09090b 0%, #0f0f13 50%, #09090b 100%);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

h1, h2, h3, h4 {
  color: var(--text-main);
  line-height: 1.2;
}

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  height: 76px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: 16px;
}

.logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
  transition: color 0.25s, transform 0.2s;
  display: inline-block;
}

.nav-links a:hover {
  color: var(--text-main);
  transform: translateY(-1px);
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--text-main);
  background: none;
  border: none;
}

/* ── BUTTONS ── */
.btn {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.45), var(--grad-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-main);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.btn-green {
  background: linear-gradient(135deg, #059669 #10b981);
  background: -webkit-linear-gradient(135deg, #059669, #10b981);
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.45);
}

.btn-white {
  background: #fff;
  color: var(--primary-hover);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.full-width {
  width: 100%;
}

/* ── HERO ── */
.hero {
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle 800px at 50% -200px, rgba(249, 115, 22, 0.15) 0%, transparent 80%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f97316' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--primary-light);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -2px;
  line-height: 1.15;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta-wrapper {
  margin-bottom: 48px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-size: 38px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2px;
}

.stat-item span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  display: block;
}

.hero-visual {
  position: relative;
}

.glass-frame {
  background: var(--glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 40px rgba(249, 115, 22, 0.05);
}

.glass-frame img {
  border-radius: 16px;
  display: block;
  width: 100%;
}

.float-chip {
  position: absolute;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  background: rgba(24, 24, 27, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.float-chip.top {
  top: -16px;
  right: 20px;
}

.float-chip.bottom {
  bottom: 20px;
  left: -20px;
}

.float-chip .live {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

/* ── TRUST BAR ── */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-bar p {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-align: center;
  font-weight: 600;
}

.logo-cloud {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
}

.brand {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--text-muted);
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
}

.brand:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* ── DOR (PROBLEMAS) ── */
.section-eyebrow {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary-light);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pain-card {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(239, 68, 68, 0.01) 100%);
  border: 1px solid rgba(239, 68, 68, 0.1);
  border-radius: var(--radius);
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: rgba(239, 68, 68, 0.25);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.03);
}

.pain-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: inline-block;
}

.pain-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 800;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SOLUÇÕES ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.solution-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: left;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(249, 115, 22, 0.25);
  background: #1f1f23;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

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

.solution-number {
  font-size: 12px;
  font-weight: 900;
  color: var(--primary-light);
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.2);
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.solution-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
}

.solution-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.solution-tag {
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.solution-tag::before {
  content: '✓';
  font-size: 14px;
  font-weight: 900;
}

/* ── APPS ANDROID ── */
.apps-section {
  background: linear-gradient(180deg, rgba(249, 115, 22, 0.04) 0%, rgba(219, 39, 119, 0.02) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.app-card:hover {
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.app-icon {
  font-size: 52px;
  margin-bottom: 16px;
  display: inline-block;
}

.app-card h3 {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.badge-new {
  font-size: 11px;
  font-weight: 800;
  background: var(--grad);
  color: #fff;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.app-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.app-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.app-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(249, 115, 22, 0.08);
  color: var(--primary-light);
  border: 1px solid rgba(249, 115, 22, 0.15);
}

.app-download-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.download-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 6px;
}

.app-install-instructions {
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 20px;
  max-width: 800px;
  margin: 48px auto 0;
  font-size: 14px;
  color: var(--text-muted);
}

.app-install-instructions strong {
  color: var(--text-main);
}

/* ── SHOWCASE / GALERIA ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.showcase-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.showcase-item:hover {
  border-color: rgba(249, 115, 22, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.showcase-image, .showcase-image2 {
  width: 100%;
  border-radius: 12px;
  display: block;
  transition: transform 0.3s;
}

.showcase-image2 {
  max-height: 250px;
  object-fit: contain;
  padding: 10px 0;
}

.showcase-item:hover .showcase-image,
.showcase-item:hover .showcase-image2 {
  transform: scale(1.02);
}

.showcase-label {
  padding: 16px 12px 10px;
  text-align: center;
}

.showcase-label h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.showcase-label p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── MODAIS ── */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  position: relative;
  max-width: 90vw;
  animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-content img {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--border);
}

.modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 36px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.modal-close:hover {
  color: var(--primary-light);
  transform: scale(1.1);
}

/* ── DEPOIMENTOS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}

.author strong {
  font-size: 16px;
  display: block;
  margin-bottom: 4px;
  color: var(--text-main);
}

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

/* ── PREÇOS / PLANO ÚNICO ── */
.pricing-section {
  position: relative;
  overflow: hidden;
}

.pricing-container {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 64px;
  width: 100%;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 56px 48px;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.pricing-card.featured {
  background: radial-gradient(circle at 50% 0%, rgba(249, 115, 22, 0.15) 0%, #150f08 50%, #0e0e11 100%);
  border-color: rgba(249, 115, 22, 0.55);
  box-shadow: var(--grad-glow-strong), 0 30px 80px rgba(0, 0, 0, 0.5);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.popular-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--grad);
  padding: 10px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
}

.plan-name {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.plan-price {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  margin: 24px 0 16px;
  letter-spacing: -2px;
}

.plan-price .currency {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-muted);
  vertical-align: top;
  line-height: 2.2;
}

.plan-price .period {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0;
}

.plan-desc {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.plan-features {
  list-style: none;
  margin-bottom: 48px;
  text-align: left;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.plan-features li {
  font-size: 15px;
  color: var(--text-muted);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features .check {
  color: var(--accent2);
  font-size: 16px;
  font-weight: 900;
  flex-shrink: 0;
}

.plan-features strong {
  color: var(--text-main);
}

.pricing-cta {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.pricing-trial-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 14px;
  font-weight: 600;
}

/* ── CTA BOTTOM SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-hover) 0%, #db2777 100%);
  padding: 100px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 44px;
  font-weight: 900;
  margin-bottom: 20px;
  color: #fff;
  letter-spacing: -1.5px;
}

.cta-section p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-grid {
  max-width: 800px;
  margin: 64px auto 0;
  text-align: left;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(249, 115, 22, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.faq-question {
  padding: 24px 32px;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  user-select: none;
}

.faq-question .icon {
  color: var(--primary-light);
  font-size: 20px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 32px;
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 350px;
  padding: 0 32px 24px;
}

/* ── FOOTER ── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 64px;
  margin-bottom: 56px;
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-main);
  font-weight: 700;
}

.footer-links a {
  display: block;
  margin-bottom: 12px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 14px;
  transition: color 0.2s, transform 0.2s;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(2px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ── LEAD MODAL (TESTE GRÁTIS) ── */
.lead-modal {
  display: none;
  position: fixed;
  z-index: 3000;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.lead-modal.active {
  display: flex;
}

.lead-content {
  background: var(--surface);
  padding: 48px;
  border-radius: 28px;
  border: 1px solid var(--border);
  width: 100%;
  max-width: 480px;
  position: relative;
  animation: scaleIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.75);
}

.lead-content h2 {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.lead-content > p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 12px rgba(249, 115, 22, 0.15);
}

.skip-link {
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
}

.skip-link a {
  color: var(--primary-light);
  text-decoration: none;
  font-weight: 600;
}

.skip-link a:hover {
  text-decoration: underline;
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.6);
  background-color: #20ba5a;
}

.whatsapp-icon {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ── COMPARISON TABLE ── */
.comparison-section {
  padding-bottom: 80px;
}

.comparison-table-wrapper {
  margin-top: 48px;
  overflow-x: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--grad-glow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 700;
}

.comparison-table th.highlight,
.comparison-table td.highlight {
  background: rgba(249, 115, 22, 0.05);
}

.comparison-table th.highlight {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
}

.comparison-table td {
  font-size: 15px;
  color: var(--text-main);
}

.comparison-table td.yes {
  color: var(--accent2);
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ── CTA MID SECTION ── */
.cta-mid-section {
  background: var(--grad);
  padding: 40px 24px;
  text-align: center;
  border-radius: var(--radius);
  margin: 60px auto;
  max-width: 1100px;
  box-shadow: var(--grad-glow-strong);
}

.cta-mid-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.cta-mid-section h3 {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  text-align: left;
  line-height: 1.3;
}

.cta-mid-section .btn-white {
  background: #000;
  color: #fff;
  white-space: nowrap;
}

.cta-mid-section .btn-white:hover {
  background: #18181b;
  transform: translateY(-2px);
}

/* ── PRICING CALC BOX ── */
.pricing-calc-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.pricing-calc-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-calc-box p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.calc-formula {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px dashed var(--border);
  padding: 16px 24px;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 15px;
}

.calc-formula span {
  color: var(--text-main);
  font-weight: 500;
}

.calc-formula .plus,
.calc-formula .equals {
  color: var(--primary);
  font-weight: 800;
}

.calc-formula .total-price {
  color: var(--accent2);
  font-size: 18px;
  font-weight: 800;
  font-family: monospace;
}

.calc-note {
  font-size: 13px !important;
  font-style: italic;
}

/* ── FOOTER CTA BAR ── */
.footer-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid var(--border);
  padding: 20px 32px;
  border-radius: 12px;
  margin-bottom: 40px;
  gap: 16px;
}

.footer-cta-bar span {
  font-weight: 600;
  color: var(--text-main);
  font-size: 16px;
}

.footer-cta-bar .btn-green {
  background-color: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-cta-bar .btn-green:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
}

/* ── LGPD BADGE ── */
.lgpd-badge {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 16px;
  }
  .nav-links a {
    font-size: 13px;
  }
  .nav-cta {
    gap: 8px;
  }
  .nav-cta .btn {
    padding: 8px 14px;
    font-size: 13px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero p {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }
  .hero h1 {
    font-size: 40px;
  }
  .section-title {
    font-size: 30px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: var(--surface);
    flex-direction: column;
    padding: 30px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }
  .nav-links.open {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .solutions-grid {
    grid-template-columns: 1fr;
  }
  .apps-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 1;
  }
  .cta-section h2 {
    font-size: 28px;
  }
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .pricing-card {
    padding: 40px 24px;
  }
  .pricing-card.featured {
    transform: none;
  }
  .cta-mid-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  .cta-mid-section h3 {
    text-align: center;
    font-size: 20px;
  }
  .cta-mid-section .btn-white {
    width: 100%;
  }
  .footer-cta-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .footer-cta-bar .btn-green {
    width: 100%;
    justify-content: center;
  }
}
