:root {
  --blue-primary:  #0099E6;
  --blue-bright:   #00AAFF;
  --blue-glow:     #5CC8FF;
  --blue-deep:     #0470C7;
  --blue-navy:     #071B37;
  --ice-bg:        #F4FAFF;
  --ice-surface:   rgba(255,255,255,0.92);
  --ice-surface-strong:#FFFFFF;
  --card-bg:       #FFFFFF;
  --card-solid:    #FFFFFF;
  --surface-soft:  #EAF6FF;
  --surface-deep:  #D9F0FF;
  --border-soft:   rgba(0,153,230,0.14);
  --border-strong: rgba(0,153,230,0.24);
  --dark-border:   rgba(0,153,230,0.12);
  --text-main:     #0A1B33;
  --text-muted:    #5F728C;
  --text-soft:     #7F93AC;
  --glass-bg:      rgba(255,255,255,0.92);
  --glass-border:  rgba(0,153,230,0.12);
  --radius-lg:     22px;
  --radius-xl:     30px;
  --shadow-blue:   0 10px 28px rgba(0,110,190,0.10);
  --shadow-soft:   0 8px 20px rgba(15,72,126,0.06);
  --font-head:     'Sora', sans-serif;
  --font-body:     'Manrope', sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background:
    radial-gradient(circle at top left, rgba(0,170,255,0.10), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(0,153,230,0.08), transparent 22%),
    linear-gradient(180deg, #F8FCFF 0%, #F3FAFF 48%, #EEF7FF 100%);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

/* removido noise overlay pesado */

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
  background: rgba(255,255,255,0.92);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border-soft);
  padding: 12px 0;
  box-shadow: 0 8px 22px rgba(2,116,199,0.08);
}

#navbar .navbar-brand img {
  height: 38px;
}

#navbar .nav-link {
  color: var(--text-main) !important;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: color .2s, background .2s;
}

#navbar .nav-link:hover {
  color: var(--blue-bright) !important;
  background: rgba(0,153,230,0.08);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(37,211,102,0.18);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.24);
}

.btn-cta-nav {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
  color: #fff !important;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  padding: 8px 18px;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0,153,230,0.18);
}

.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,153,230,0.24);
  background: var(--blue-bright);
}

/* ─── HERO ─── */
#hero {
  min-height: 96vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(0,153,230,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 80%, rgba(0,170,255,0.08) 0%, transparent 50%),
    linear-gradient(180deg, #F9FCFF 0%, #ECF7FF 100%);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(0,153,230,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,153,230,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .5;
}

.hero-orb {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,153,230,0.18);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--blue-deep);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  box-shadow: 0 6px 18px rgba(0,123,199,0.05);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00CC70;
  box-shadow: none;
  animation: none;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 24px;
  color: var(--text-main);
  text-wrap: balance;
  text-shadow: none;
}

.hero-title .accent {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.18rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.75;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 10px 24px rgba(0,153,230,0.18);
  text-decoration: none;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,153,230,0.24);
  color: #fff;
}

.btn-hero-secondary {
  background: rgba(255,255,255,0.88);
  color: var(--text-muted);
  border: 1px solid var(--border-soft);
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 500;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
  text-decoration: none;
}

.btn-hero-secondary:hover {
  border-color: var(--blue-primary);
  color: var(--blue-bright);
  background: rgba(0,153,230,0.06);
}

.hero-trial-note {
  font-size: .84rem;
  color: var(--text-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-trial-note i { color: #00CC70; }

/* Hero mockup */
.hero-mockup {
  position: relative;
  z-index: 2;
}

.mockup-window {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-blue);
}

.mockup-bar {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(234,246,255,0.92));
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0,153,230,0.10);
}

.mockup-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #FF5F57; }
.mockup-dot:nth-child(2) { background: #FFBD2E; }
.mockup-dot:nth-child(3) { background: #28CA41; }

.mockup-url {
  background: rgba(0,153,230,0.05);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: .78rem;
  color: var(--text-soft);
  margin-left: 8px;
}

.mockup-body { padding: 0; }

.chat-sidebar {
  background: linear-gradient(180deg, #0A1F40 0%, #09254C 100%);
  border-right: 1px solid var(--dark-border);
  padding: 16px 0;
  color: #EAF6FF;
}

.chat-sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  cursor: pointer;
  transition: background .2s;
  position: relative;
}

.chat-sidebar-item.active {
  background: rgba(0,153,230,0.1);
}

.chat-sidebar-item.active::before {
  content:'';
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:3px;
  background: var(--blue-primary);
  border-radius: 0 4px 4px 0;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:.85rem;
  font-weight:700;
  flex-shrink:0;
}

.chat-item-info {
  flex:1;
  min-width:0;
}

.chat-item-name {
  font-size:.82rem;
  font-weight:600;
  color: #F4FAFF;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.chat-item-preview {
  font-size:.72rem;
  color: #B6CAE0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.chat-badge {
  background: var(--blue-primary);
  color:#fff;
  border-radius:50px;
  font-size:.65rem;
  font-weight:700;
  padding: 2px 7px;
}

.chat-main {
  padding: 16px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  background: linear-gradient(180deg, #FDFEFF 0%, #F2F9FF 100%);
}

.msg-bubble {
  max-width: 75%;
  border-radius: 16px;
  padding: 8px 14px;
  font-size:.78rem;
  line-height:1.5;
}

.msg-in {
  background: #ffffff;
  color: #113458;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 12px rgba(10,72,124,0.04);
}

.msg-out {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  color:#fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.msg-ai {
  background: rgba(0,170,255,0.12);
  border: 1px solid rgba(0,153,230,0.14);
  color: #085992;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.msg-ai-label {
  font-size:.65rem;
  color: var(--blue-primary);
  font-weight:600;
  margin-bottom:3px;
  display:flex;
  align-items:center;
  gap:4px;
}

.mockup-stats {
  border-top: 1px solid rgba(0,153,230,0.12);
  padding: 14px 16px;
  display:flex;
  gap: 20px;
  background: linear-gradient(180deg, #F7FBFF 0%, #EFF7FF 100%);
}

.stat-chip { display:flex; flex-direction:column; }

.stat-chip-val {
  font-size:.92rem;
  font-weight:700;
  color: var(--blue-deep);
  font-family: var(--font-head);
}

.stat-chip-lbl {
  font-size:.65rem;
  color: var(--text-muted);
}

/* Floating badges on mockup */
.float-badge {
  position: absolute;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,153,230,0.10);
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  animation: none;
}

.float-badge-1 { bottom: 30px; left: -50px; }
.float-badge-2 { top: 30px; right: -40px; }

.float-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.1rem;
}

.float-text-val {
  font-size:.9rem;
  font-weight:700;
  font-family: var(--font-head);
  color: var(--text-main);
}

.float-text-lbl {
  font-size:.68rem;
  color: var(--text-muted);
}

/* ─── SECTION SHARED ─── */
.section-pad { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.015em;
  margin-bottom: 20px;
  color: var(--text-main);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 400;
  max-width: 560px;
  line-height: 1.75;
}

/* ─── STATS STRIP ─── */
#stats {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-inner {
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(236,247,255,0.98) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.stats-inner::before {
  content:'';
  position:absolute;
  top:-1px;
  left:10%;
  right:10%;
  height:2px;
  background: linear-gradient(90deg, transparent, var(--blue-primary), transparent);
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: .9rem;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  background: var(--dark-border);
  align-self: stretch;
}

/* ─── FEATURES ─── */
#funcionalidades {
  position: relative;
  overflow: hidden;
}

.features-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0,153,230,0.04) 0%, transparent 70%);
}

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  height: 100%;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.feature-card::before {
  content:'';
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(0,153,230,0.04) 0%, transparent 60%);
  opacity:0;
  transition: opacity .25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,153,230,0.26);
  box-shadow: 0 12px 24px rgba(0,110,190,0.10);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0,153,230,0.16), rgba(0,100,200,0.08));
  border: 1px solid rgba(0,153,230,0.20);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-deep);
  margin-bottom: 24px;
}

.feature-title {
  font-family: var(--font-head);
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.feature-desc {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
}

.feature-tag {
  display: inline-block;
  background: rgba(0,153,230,0.08);
  border: 1px solid rgba(0,153,230,0.14);
  color: var(--blue-deep);
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  margin-top: 16px;
  letter-spacing: .04em;
}

/* ─── HOW IT WORKS ─── */
#sobre {
  position: relative;
  overflow: hidden;
}

.sobre-bg {
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, #F6FBFF 0%, #EDF7FF 50%, #F8FCFF 100%);
  z-index:0;
}

.step-item {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink:0;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-deep));
  display: flex;
  align-items:center;
  justify-content:center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,153,230,0.16);
  position: relative;
}

.step-num::after {
  content:'';
  position:absolute;
  top:100%;
  left:50%;
  transform:translateX(-50%);
  width:1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--blue-primary), transparent);
}

.step-item:last-child .step-num::after { display: none; }

.step-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.step-desc {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7;
}

.sobre-visual {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-soft);
}

/* ─── PRICING ─── */
#precos {
  position: relative;
  overflow: hidden;
}

.pricing-bg {
  position:absolute;
  inset:0;
  z-index:0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,153,230,0.05) 0%, transparent 60%);
}

.plan-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  height: 100%;
  position: relative;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.plan-card.featured {
  background: linear-gradient(160deg, #0C2147 0%, #0A5FB1 100%);
  border-color: var(--blue-primary);
  box-shadow: 0 12px 28px rgba(0,110,190,0.16);
  transform: scale(1.02);
}

.plan-card:hover:not(.featured) {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,110,190,0.10);
  border-color: rgba(0,153,230,0.24);
}

.plan-card.featured:hover {
  transform: scale(1.02) translateY(-2px);
}

.plan-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 0 0 12px 12px;
}

.plan-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-main);
}

.plan-desc {
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 28px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}

.plan-price-currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding-bottom: 6px;
}

.plan-price-val {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-glow));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.plan-price-period {
  font-size: .85rem;
  color: var(--text-muted);
  padding-bottom: 6px;
}

.plan-trial {
  font-size: .8rem;
  color: #00B96B;
  margin-bottom: 28px;
  display:flex;
  align-items:center;
  gap:5px;
}

.plan-divider {
  height: 1px;
  background: var(--dark-border);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  padding:0;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-features li i {
  color: var(--blue-primary);
  flex-shrink:0;
  margin-top:2px;
}

.plan-features li.off i { color: rgba(0,0,0,0.15); }
.plan-features li.off span { opacity: .45; }

.btn-plan {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  border: none;
  transition: all .25s;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-plan-outline {
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--dark-border) !important;
  color: var(--text-muted);
}

.btn-plan-outline:hover {
  border-color: var(--blue-primary) !important;
  color: var(--blue-bright);
  background: rgba(0,153,230,0.05);
}

.btn-plan-primary {
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
  color: #fff;
  box-shadow: 0 8px 18px rgba(0,153,230,0.16);
}

.btn-plan-primary:hover {
  box-shadow: 0 12px 22px rgba(0,153,230,0.22);
  color:#fff;
  transform: translateY(-2px);
}

/* featured text */
.plan-card.featured,
.cta-inner {
  color: #fff;
}

.plan-card.featured .plan-name,
.plan-card.featured .plan-desc,
.plan-card.featured .plan-price-currency,
.plan-card.featured .plan-price-period,
.plan-card.featured .plan-features li,
.plan-card.featured .plan-trial {
  color: #F6FBFF !important;
}

.plan-card.featured .plan-price-val {
  background: linear-gradient(135deg, #ffffff, #D9F4FF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── TESTIMONIALS ─── */
#depoimentos {
  position: relative;
  overflow: hidden;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 32px;
  height: 100%;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  box-shadow: var(--shadow-soft);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,110,190,0.08);
  border-color: rgba(0,153,230,0.22);
}

.testimonial-stars {
  color: #FFC107;
  font-size: .9rem;
  margin-bottom: 16px;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display:flex;
  align-items:center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:.9rem;
}

.testimonial-name {
  font-weight: 600;
  font-size: .92rem;
  color: var(--text-main);
}

.testimonial-role {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ─── CTA STRIP ─── */
#cta-strip {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-inner {
  background:
    linear-gradient(135deg, #082248 0%, #0372D1 48%, #00AAFF 100%);
  border: 1px solid rgba(0,170,255,0.22);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,110,190,0.18);
}

.cta-inner::before {
  content:'';
  position:absolute;
  top:-1px;
  left:5%;
  right:5%;
  height:2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.55), transparent);
}

.cta-orb {
  display: none;
}

.cta-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-sub {
  color: #EAF6FF;
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 40px;
}

/* ─── CONTACT ─── */
#contato {
  position: relative;
  overflow: hidden;
}

.contact-card {
  background: var(--card-bg);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: var(--shadow-soft);
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(0,153,230,0.12);
  color: var(--text-main);
  border-radius: 12px;
  padding: 12px 18px;
  font-family: var(--font-body);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.contact-form .form-control:focus,
.contact-form textarea:focus {
  background: #fff;
  border-color: var(--blue-primary);
  color: var(--text-main);
  box-shadow: 0 0 0 3px rgba(0,153,230,0.10);
}

.contact-form .form-control::placeholder,
.contact-form textarea::placeholder {
  color: #90A4BB;
}

.contact-form label {
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.btn-contact-send {
  width: 100%;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-bright));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  transition: all .25s;
  box-shadow: 0 8px 18px rgba(0,153,230,0.16);
}

.btn-contact-send:hover {
  box-shadow: 0 12px 22px rgba(0,153,230,0.22);
  transform: translateY(-2px);
  color: #fff;
}

.contact-info-item {
  display:flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink:0;
  background: rgba(0,153,230,0.08);
  border: 1px solid rgba(0,153,230,0.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.1rem;
  color: var(--blue-deep);
}

.contact-info-label {
  font-size: .78rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info-val {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-main);
}

/* ─── FOOTER ─── */
footer {
  padding: 60px 0 32px;
  background: transparent;
  border-top: 1px solid rgba(0,153,230,0.10);
}

.footer-logo {
  height: 32px;
  margin-bottom: 16px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: .88rem;
  max-width: 260px;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-main);
  margin-bottom: 16px;
}

.footer-links {
  list-style:none;
  padding:0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--text-muted);
  text-decoration:none;
  font-size: .88rem;
  transition: color .2s;
}

.footer-links a:hover { color: var(--blue-deep); }

.footer-social {
  display:flex;
  gap:10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.94);
  border: 1px solid var(--border-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--text-muted);
  text-decoration:none;
  transition: all .2s;
  font-size: .95rem;
}

.social-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-bright);
  background: rgba(0,153,230,0.08);
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  margin-top: 40px;
  padding-top: 24px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
}

.footer-copy {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .05s; }
.reveal-delay-2 { transition-delay: .10s; }
.reveal-delay-3 { transition-delay: .15s; }
.reveal-delay-4 { transition-delay: .20s; }

/* ─── PARALLAX ─── */
.parallax-layer {
  will-change: transform;
}

/* counters */
.counter {
  display:inline-block;
}

/* ─── BADGE WAPP FLOAT ─── */
.wapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items:center;
  justify-content:center;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(37,211,102,0.22);
  transition: transform .2s, box-shadow .2s;
  animation: none;
}

.wapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 26px rgba(37,211,102,0.28);
  color:#fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  #navbar .navbar-collapse {
    margin-top: 16px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 10px 24px rgba(0,110,190,0.08);
    border: 1px solid var(--border-soft);
  }
}

@media (max-width: 768px) {
  .float-badge-1,
  .float-badge-2 {
    display: none;
  }

  .plan-card.featured {
    transform: none;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .contact-card {
    padding: 32px 24px;
  }

  .stats-inner {
    padding: 36px 20px;
  }

  .hero-grid-lines {
    opacity: .25;
  }
}

/* redução de trabalho de renderização */
.hero-content,
.hero-mockup {
  will-change: transform, opacity;
}

.feature-card,
.plan-card,
.testimonial-card,
.contact-card,
.stats-inner,
.sobre-visual,
.mockup-window,
.cta-inner {
  contain: layout paint;
}