/* =============================================
   LC PRINT – style.css
   Design: Dark Tech / Modern Blue
   Fonts: Syne (display) + DM Sans (body)
   ============================================= */

/* ---------- CSS VARIABLES ---------- */
:root {
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-glow: rgba(37, 99, 235, 0.35);
  --accent: #f59e0b;
  --green: #22c55e;
  --wpp: #25d366;
  --wpp-dark: #1ebe5d;

  --bg: #0a0e1a;
  --bg2: #0d1220;
  --bg3: #111827;
  --surface: #151d2e;
  --surface2: #1e2a3d;
  --border: rgba(255,255,255,0.07);
  --border-blue: rgba(37,99,235,0.3);

  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-blue: 0 8px 32px rgba(37,99,235,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, select, textarea { font-family: var(--font-body); }

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

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

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }

.hl {
  color: var(--blue-light);
  position: relative;
}
.hl-light { color: #fff; text-decoration: underline; text-decoration-color: var(--blue-light); text-underline-offset: 4px; }

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

/* ---------- SECTION COMMON ---------- */
section { 
  padding: 90px 0; 
  position: relative; /* Movido para dentro das chaves */
  overflow: hidden;   /* Movido para dentro das chaves */
}

.section-header {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto 56px
}
.section-header h2{
  white-space: nowrap;	
}
@media (max-width: 768px){

  .section-header{
    max-width: 95%;
  }

  .section-header h2{
    white-space: normal;
    line-height: 1.1;
    font-size: 2.2rem;
  }

}
.section-header p {
  color: var(--text-muted);
  margin-top: 12px;
  font-size: 1.05rem;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header.light h2,
.section-header.light p { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.7); }

.section-tag {
  display: inline-block;
  background: rgba(37,99,235,0.15);
  border: 1px solid var(--border-blue);
  color: var(--blue-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}
.btn-lg { padding: 17px 36px; font-size: 1.05rem; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.4);
}

.btn-outline-primary {
  background: transparent;
  color: var(--blue-light);
  border: 2px solid var(--blue);
}
.btn-outline-primary:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.btn-wpp,
.btn-wpp-hero {
  background: var(--wpp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-wpp:hover,
.btn-wpp-hero:hover {
  background: var(--wpp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

/* Pulse animation for primary CTA */
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5), var(--shadow-blue); }
  70% { box-shadow: 0 0 0 14px rgba(37,99,235,0), var(--shadow-blue); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0), var(--shadow-blue); }
}
.pulse { animation: pulse-ring 2.5s infinite; }
.pulse:hover { animation: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo span { color: var(--blue-light); }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }
.btn-nav {
  margin-left: 12px;
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 8px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(37,99,235,0.08), transparent 40%),
    radial-gradient(circle at bottom right, rgba(245,158,11,0.06), transparent 40%),
    linear-gradient(180deg, #050816 0%, #0b1120 100%);
  z-index: 0;
}
.hero-blur-blue,
.hero-blur-orange {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
}

.hero-blur-blue {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.35);
  top: -120px;
  left: -120px;
}

.hero-blur-orange {
  width: 420px;
  height: 420px;
  background: rgba(245, 158, 11, 0.22);
  bottom: -120px;
  right: -100px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent);
  animation: gridMove 18s linear infinite;
}
.hero-glow {
  position: absolute;
  width: 700px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-40%);
  filter: blur(40px);
}
.hero-glow--2 {
  background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
  top: 40%;
  left: 5%;
  width: 400px;
  height: 300px;
  transform: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  width: 100%
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--border-blue);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.5s infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 13ch;
  text-wrap: balance;
  align-items: flex-start;
  height: clamp(120px, 14vw, 170px);
  overflow: hidden;
  animation: fadeUp 0.7s 0.1s ease both;
  text-align: left;
  overflow-wrap: break-word;
  word-break: break-word;
  display: block;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .hero-headline {
    font-size: clamp(2rem, 10vw, 2.8rem);
    max-width: 100%;
    height: 160px;
    overflow: hidden;
  }
}

#typingText {
  display: inline;
}

.typing-cursor {
  display: inline-block;
  width: 12px;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-sub strong { color: var(--text); }

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.3s ease both;
}
.hero-urgency {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--accent);
  margin-bottom: 48px;
  animation: fadeUp 0.7s 0.35s ease both;
}
.hero-urgency span { color: var(--text-muted); }
.hero-urgency strong { color: var(--accent); }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.45s ease both;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-light);
  line-height: 1;
}
.stat span { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; }
.stat-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ---------- LOGOS BAR ---------- */
.logos-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.logos-label {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.logos-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-pill {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ---------- COMO FUNCIONA ---------- */
.como-funciona { background: var(--bg2); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 0;
}
.step-card {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);

  padding: 70px 28px 36px;

  position: relative;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-align: center;

  display: flex;
  flex-direction: column;

  min-height: 100%;
  height: 100%;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-blue);
}
.step-num {
  position: absolute;
  top: 18px;
  right: 20px;

  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;

  color: rgba(37,99,235,0.12);

  pointer-events: none;
}

.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--border-blue);
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 18px auto 20px;

  color: var(--blue-light);

  position: relative;
  z-index: 2;
}
.step-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.6; }

.step-arrow {
  color: var(--border-blue);
  padding: 0 20px;
  flex-shrink: 0;
}

.como-cta { text-align: center; margin-top: 48px; }

/* ---------- CATÁLOGO ---------- */
.catalogo { background: var(--bg); }

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.cat-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-blue);
}
.cat-card.selected {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px var(--blue), var(--shadow-blue);
}
.cat-img {
  height: 190px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.cat-img-foto {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 18px 24px;
  transition: transform 0.4s ease;
  display: block;
}
.cat-card:hover .cat-img-foto {
  transform: scale(1.06);
}
.cat-tipo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cat-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.cat-nome { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.cat-specs {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 16px;
  flex: 1;
}
.cat-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.cat-spec svg { color: var(--blue-light); flex-shrink: 0; }
.cat-porte {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.porte-tag {
  background: rgba(37,99,235,0.1);
  border: 1px solid var(--border-blue);
  color: var(--blue-light);
  font-size: 0.74rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 6px;
}
.cat-btn {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue-light);
  cursor: pointer;
  transition: all 0.25s;
}
.cat-btn:hover, .cat-card.selected .cat-btn {
  background: var(--blue);
  color: #fff;
}

/* ---------- BENEFÍCIOS ---------- */
.beneficios { background: var(--bg2); }

.benef-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.benef-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s, border-color 0.3s;
}
.benef-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
}
.benef-icon {
  width: 52px;
  height: 52px;
  background: rgba(37,99,235,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.benef-card h4 { margin-bottom: 8px; }
.benef-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ---------- PLANOS ---------- */
.planos { background: var(--bg); }

.planos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  align-items: start;
}
.plano-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.plano-card:hover { transform: translateY(-6px); }

.plano-destaque {
  background: linear-gradient(145deg, #0f1e3d, var(--surface2));
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-blue);
  transform: scale(1.03);
}
.plano-destaque:hover { transform: scale(1.03) translateY(-6px); }

.plano-popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 22px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-blue);
}
.plano-header { margin-bottom: 20px; }
.plano-nome {
  display: block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.plano-ideal { font-size: 0.82rem; color: var(--text-muted); }

.plano-preco { margin-bottom: 24px; }
.preco-de {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.preco-por {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.cifrao { font-size: 1rem; color: var(--text-muted); }
.preco-por strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.preco-por span { font-size: 0.9rem; color: var(--text-muted); }

.plano-itens { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.plano-itens li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.plano-itens li svg { flex-shrink: 0; }
.plano-no { color: var(--text-dim) !important; }

.planos-note {
  text-align: center;
  margin-top: 32px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- SIMULADOR ---------- */
.simulador {
  background: linear-gradient(135deg, #060c1a 0%, #0d1529 50%, #060c1a 100%);
  position: relative;
  overflow: hidden;
}
.simulador::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.sim-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 1;
  align-items: start;
}

.sim-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sim-field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.sim-field label strong { color: var(--text); }
.sim-field select {
  width: 100%;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.2s;
}
.sim-field select:focus {
  outline: none;
  border-color: var(--blue);
}

.sim-planos-btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.sim-plano-btn {
  flex: 1;
  min-width: 90px;
  background: var(--surface2);
  border: 2px solid var(--border);
  color: var(--text-muted);
  border-radius: 10px;
  padding: 12px 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.sim-plano-btn span {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-dim);
}
.sim-plano-btn:hover { border-color: var(--blue); color: var(--blue-light); }
.sim-plano-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.sim-plano-btn.active span { color: rgba(255,255,255,0.75); }

/* Range slider */
.slider {
  width: 100%;
  height: 6px;
  background: var(--surface2);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
  margin: 8px 0;
  accent-color: var(--blue);
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.25);
  border: 2px solid #fff;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Resultado */
.sim-resultado {
  background: var(--surface);
  border: 1px solid var(--border-blue);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.sim-res-header {
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 16px 28px;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.sim-res-body { padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.sim-res-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
}
.sim-res-row span { color: var(--text-muted); }
.sim-res-row strong { color: var(--text); font-weight: 700; }
.sim-res-divider { height: 1px; background: var(--border); }
.total-row span { font-size: 1rem; font-weight: 700; color: var(--text); }
.total-row strong { font-family: var(--font-display); font-size: 1.4rem; color: var(--blue-light); }
.economia-row { background: rgba(34,197,94,0.08); border: 1px solid rgba(34,197,94,0.2); border-radius: 8px; padding: 12px 14px; }
.economia-val { color: var(--green) !important; font-family: var(--font-display); font-size: 1.1rem !important; }
.sim-res-note {
  background: rgba(37,99,235,0.08);
  border-top: 1px solid var(--border);
  padding: 18px 28px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.sim-res-note strong { color: var(--text); }
.sim-cta { display: flex; justify-content: center; margin: 0 28px 28px; }

@media (max-width: 600px) {
  .sim-cta { margin: 0 16px 24px; width: calc(100% - 32px); box-sizing: border-box; }
}

/* ---------- DEPOIMENTOS ---------- */
.depoimentos { background: var(--bg2); }

.depo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.depo-card {
    background: #111827;
    border-radius: 20px;
    padding: 24px;

    display: flex;
    flex-direction: column;

    min-height: 280px;
	
}
.depo-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-blue);
}
.depo-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.depo-card > p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}
.depo-autor {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: auto;
}
.depo-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: auto;
}
.depo-autor strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.depo-autor span { font-size: 0.78rem; color: var(--text-muted); }

/* ---------- FORMULÁRIO ---------- */
.formulario { background: var(--bg); }

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-left { padding-top: 8px; }
.form-left h2 { margin: 12px 0 16px; }
.form-left > p { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-size: 1rem; }

.form-beneficios { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.form-beneficios li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--text-muted);
}

.form-urgency-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(245,158,11,0.08);
  border: 1px solid rgba(245,158,11,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.form-urgency-box svg { flex-shrink: 0; margin-top: 1px; }
.form-urgency-box strong { color: var(--accent); }

/* Form itself */
.form-right {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}
.form-microcopy {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  background: rgba(37,99,235,0.08);
  border: 1px solid var(--border-blue);
  border-radius: 8px;
  padding: 10px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-group label em { font-style: normal; font-weight: 400; color: var(--text-dim); }
.form-group input,
.form-group select {
  width: 100%;
  box-sizing: border-box;
  background: var(--surface2);
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.form-group input::placeholder { color: var(--text-dim); }
.form-group input.error,
.form-group input.error:focus { border-color: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,0.15); }
.field-error { display: block; font-size: 0.8rem; color: #f87171; margin-top: 5px; min-height: 16px; }

.form-privacy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 14px;
}

/* ---------- CONFIRMAÇÃO ---------- */
.confirmacao { background: var(--bg); padding: 80px 0; }

.confirm-box {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--surface);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-xl);
  padding: 52px 40px;
}
.confirm-icon {
  width: 72px;
  height: 72px;
  background: rgba(34,197,94,0.1);
  border: 2px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.confirm-box h2 { margin-bottom: 12px; }
.confirm-box > p { color: var(--text-muted); margin-bottom: 28px; }

.confirm-resumo {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
}
.confirm-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.confirm-item:last-child { border-bottom: none; }
.confirm-item span { color: var(--text-muted); }
.confirm-item strong { color: var(--text); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg2); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--border-blue); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-q:hover { background: rgba(255,255,255,0.03); }
.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--blue-light);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ---------- CTA FINAL ---------- */
.cta-final {
  background: linear-gradient(135deg, #0b1635 0%, #0f2050 50%, #0b1635 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-final-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.cta-final-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-final-inner > p { color: rgba(255,255,255,0.6); margin-bottom: 40px; font-size: 1rem; }
.cta-final-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 12px; display: inline-block; }
.footer-brand > p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px;
  height: 38px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.2s;
}
.footer-links h5, .footer-contato h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-links, .footer-contato { display: flex; flex-direction: column; }
.footer-links a, .footer-contato a, .footer-contato span {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-contato a:hover { color: var(--blue-light); }
.footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }

/* ---------- WPP FLOAT ---------- */
.wpp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wpp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
}
.wpp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37,211,102,0.6);
}
.wpp-float:hover .wpp-tooltip { opacity: 1; transform: translateX(-8px); }
.wpp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(4px);
  transition: all 0.3s;
  pointer-events: none;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  section { padding: 70px 0; }

  .nav-links, .btn-nav, .btn-cliente { display: none; }
  .nav-links { margin-left: 0; }
  .nav-toggle { display: flex; margin-left: auto; }
  .nav-inner { gap: 12px; }
  .logo-img { height: 26px; max-width: 110px; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    border-bottom: 1px solid var(--border);
    gap: 20px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1rem; color: var(--text-muted); }
  .nav-links.open a:hover { color: #fff; }

  /* Área de Clientes injetado via JS dentro do menu aberto */
  .btn-nav.open {
    display: inline-flex;
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); text-align: center; padding: 8px 0; }
  .step-card {
  overflow: hidden;
}

  .sim-wrapper { grid-template-columns: 1fr; }
  .sim-resultado { position: static; }

  .form-wrapper { grid-template-columns: 1fr; gap: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
  .form-right { box-sizing: border-box; width: 100%; overflow: hidden; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .planos-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .plano-destaque { transform: none; }
  .plano-destaque:hover { transform: translateY(-6px); }

  .hero-stats { gap: 0; width: 100%; justify-content: center; }
  .stat { padding: 0 16px; }
}

@media (max-width: 600px) {
  .hero { padding: 120px 0 64px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; row-gap: 16px; }
  .stat-div { display: none; }
  .stat { flex: 1 1 40%; }

  .form-right { padding: 28px 20px; box-sizing: border-box; width: 100%; }

  .formulario .container { padding-left: 16px; padding-right: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: 1; }

  .cta-final-btns .btn { width: 100%; justify-content: center; }

  .sim-planos-btns { flex-direction: column; }
  .sim-plano-btn { flex-direction: row; justify-content: space-between; }

  .benef-grid { grid-template-columns: 1fr; }
  .catalogo-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }

  .wpp-float { bottom: 20px; right: 16px; }

  .confirm-box { padding: 36px 24px; }
}

/* ============================================================
   CARROSSEL
   ============================================================ */
.carrossel-section {
  background: var(--bg2);
  padding: 80px 0 60px;
}
.carousel-outer {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}
.carousel-track {
  display: flex;
  gap: 0;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.carousel-slide {
  min-width: calc(100% / 3);
  height: 340px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  background: #111827;
  transition: transform 0.3s;
}
.carousel-slide:hover { transform: scale(1.01); }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}
.carousel-slide:hover img { transform: scale(1.05); }
.carousel-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;

  position: absolute;
  inset: 0;

  transition: transform .5s;
}
.slide-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  padding: 32px 24px 20px;
}
.slide-tag {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.slide-overlay p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin: 0;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(10,14,26,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  z-index: 20;
  transition: all 0.25s;
}
.carousel-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}
.carousel-dot.active {
  background: var(--blue-light);
  width: 22px;
  border-radius: 4px;
}
.carousel-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--text-dim);
  padding: 0 24px;
}
.carousel-note code {
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 0.78rem;
  color: var(--blue-light);
}

/* Carrossel responsivo */
@media (max-width: 900px) {
  .carousel-slide { min-width: 50%; }
}
@media (max-width: 600px) {
  .carousel-slide { min-width: 100%; }
  .carousel-slide { height: 260px; }
}

/* ============================================================
   PÁGINA INTERNA COMUM (produtos / serviços)
   ============================================================ */
.page-hero {
  padding: 140px 0 60px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { max-width: 680px; }
.page-hero-content .section-tag { margin-bottom: 16px; }
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero-content p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-bottom: 20px;
}
.page-breadcrumb a { color: var(--blue-light); }
.page-breadcrumb a:hover { text-decoration: underline; }

/* Filtros de categoria */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 9px 20px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--blue); color: var(--blue-light); }
.filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Cards de produto */
.produto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.produto-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.produto-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-blue);
}
.produto-img {
  height: 180px;
  background: linear-gradient(135deg, var(--surface2), var(--bg3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  position: relative;
}
.produto-categoria {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.produto-badge-new {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--accent);
  color: #000;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
}
.produto-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.produto-nome { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.produto-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.produto-preco {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-light);
  margin-bottom: 14px;
}
.produto-preco small { font-size: 0.75rem; font-weight: 400; color: var(--text-dim); display: block; }
.produto-btn {
  width: 100%;
  padding: 11px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue-light);
  cursor: pointer;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.produto-btn:hover { background: var(--blue); color: #fff; }

/* Cards de serviço */
.servico-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.servico-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.servico-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-blue);
  box-shadow: var(--shadow-blue);
}
.servico-icon {
  width: 60px; height: 60px;
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  flex-shrink: 0;
}
.servico-nome { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
.servico-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.servico-itens { display: flex; flex-direction: column; gap: 7px; }
.servico-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
}
.servico-item svg { flex-shrink: 0; color: var(--green); }
.servico-cta {
  margin-top: 4px;
  padding: 11px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue-light);
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  display: block;
}
.servico-cta:hover { background: var(--blue); color: #fff; }

/* nav active */
.nav-active { color: #fff !important; }

@media (max-width: 600px) {
  .produto-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .produto-img { height: 140px; font-size: 40px; }
  .servico-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .produto-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LOGO IMAGEM
   ============================================================ */
.logo { display: flex; align-items: center; }
.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
  /* filtro para garantir visibilidade no fundo escuro */
  filter: none;
  transition: opacity 0.2s;
}
.logo-img:hover { opacity: 0.85; }

/* Versão footer: um pouco menor */
.logo-img--footer {
  height: 38px;
  filter: none;
  opacity: 0.85;
}
.logo-img--footer:hover { opacity: 1; }

@media (max-width: 600px) {
  .logo-img { height: 36px; }
  .logo-img--footer { height: 30px; }
}

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light), var(--accent));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(37,99,235,0.6);
}

/* ============================================================
   PARTICLES CANVAS
   ============================================================ */
#particlesCanvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ============================================================
   TYPING CURSOR
   ============================================================ */
.typing-cursor {
  display: inline-block;
  color: var(--blue-light);
  font-weight: 300;
  animation: blink-cursor 0.75s step-end infinite;
  margin-left: 2px;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ============================================================
   TILT 3D CARDS
   ============================================================ */
.tilt-card {
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}
.tilt-card:hover { box-shadow: 0 24px 60px rgba(37,99,235,0.3); }

/* ============================================================
   MAPA DE ATENDIMENTO
   ============================================================ */
.mapa-section { background: var(--bg); }

.mapa-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.mapa-embed {
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mapa-embed iframe { border-radius: var(--radius-lg); }

.mapa-right h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.mapa-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.cidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.cidade-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.cidade-item em { font-style: normal; color: var(--blue-light); font-size: 0.78rem; }
.cidade-principal { color: var(--text); font-weight: 600; }
.cidade-mais { color: var(--accent); font-size: 0.82rem; grid-column: 1 / -1; }

.cidade-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  opacity: 0.6;
}
.cidade-dot--principal {
  background: var(--green);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: blink 1.5s infinite;
}
.cidade-dot--mais { background: var(--accent); opacity: 1; }

.mapa-cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mapa-cta-box p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.mapa-cta-box strong { color: var(--text); }

/* Responsive mapa */
@media (max-width: 860px) {
  .mapa-wrapper { grid-template-columns: 1fr; }
  .mapa-embed { height: 280px; }
  .cidades-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 500px) {
  .cidades-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   ANIMAÇÃO DE NÚMERO no simulador
   ============================================================ */
.sim-num-anim {
  display: inline-block;
  transition: transform 0.2s, opacity 0.2s;
}
.sim-num-anim.updating {
  transform: translateY(-4px);
  opacity: 0.4;
}

/* ============================================================
   FLOATING GLOW nos cards de plano (reforço)
   ============================================================ */
@keyframes floatGlow {
  0%, 100% { box-shadow: 0 0 0 1px var(--blue), 0 8px 32px rgba(37,99,235,0.2); }
  50%       { box-shadow: 0 0 0 1px var(--blue), 0 16px 48px rgba(37,99,235,0.4); }
}
.plano-destaque { animation: floatGlow 3s ease-in-out infinite; }
.plano-destaque:hover { animation: none; }

/* ============================================================
   HERO com partículas (z-index fix)
   ============================================================ */
.hero-blur-blue,
.hero-blur-orange{
  z-index: 0;
  pointer-events: none;
}
.hero { z-index: 1; }
.hero-content { z-index: 2; }
  position: relative;
  z-index: 2;

/* ============================================================
   BLURS ANIMADOS
   ============================================================ */
.hero-blur-blue,
.hero-blur-orange{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);

  animation: floatingBlur 12s ease-in-out infinite;
}

/* Blur azul */
.hero-blur-blue{
  width: 420px;
  height: 420px;

  background: rgba(37,99,235,.35);

  top: -120px;
  left: -120px;

  animation-delay: 0s;
}

/* Blur laranja */
.hero-blur-orange{
  width: 380px;
  height: 380px;

  background: rgba(251,146,60,.28);

  bottom: -120px;
  right: -120px;

  animation-delay: -6s;
}

@keyframes floatingBlur{

  0%{
    transform: translate(0,0) scale(1);
  }

  25%{
    transform: translate(30px,-20px) scale(1.05);
  }

  50%{
    transform: translate(0px,30px) scale(.96);
  }

  75%{
    transform: translate(-25px,-15px) scale(1.04);
  }

  100%{
    transform: translate(0,0) scale(1);
  }

}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(60px);
  }
}

.hero-blur-blue,
.hero-blur-orange {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  z-index: 0;
  will-change: transform;
}

.hero-blur-blue {
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.35);
  top: -120px;
  left: -120px;

  animation: floatBlue 12s ease-in-out infinite alternate;
}

.hero-blur-orange {
  width: 420px;
  height: 420px;
  background: rgba(245, 158, 11, 0.22);
  bottom: -120px;
  right: -100px;

  animation: floatOrange 14s ease-in-out infinite alternate;
}

@keyframes floatBlue {
  from {
    transform: translate(0px, 0px) scale(1);
  }

  to {
    transform: translate(60px, 40px) scale(1.12);
  }
}

@keyframes floatOrange {
  from {
    transform: translate(0px, 0px) scale(1);
  }

  to {
    transform: translate(-50px, -35px) scale(1.15);
  }
}

/* ── Botão Área de Clientes (navbar) ── */
.btn-cliente {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  background: rgba(37,99,235,0.15);
  color: var(--blue-light);
  border: 1px solid rgba(37,99,235,0.35);
  transition: all 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn-cliente:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
/* ── Hover individual por rede social no footer ── */
.footer-social a[aria-label="WhatsApp"]:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}
.footer-social a[aria-label="Instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  border-color: #dd2a7b;
  color: #fff;
}
/* ============================================================
   BANNER SISTEMA DE GESTÃO (clientes.html)
   ============================================================ */
.sistema-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.06));
  border: 1px solid rgba(37,99,235,0.35);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 28px;
}
.sistema-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.sistema-text { flex: 1; min-width: 0; }
.sistema-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.sistema-text p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.btn-sistema {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}
.btn-sistema:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.45);
}
@media (max-width: 768px) {

  .steps-grid {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px;

    overflow-x: auto;
    overflow-y: hidden;

    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

.steps-grid {
  align-items: stretch !important;
}

  .step-arrow {
    display: none !important;
  }

  .step-card {
    flex: 0 0 260px !important;
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;

    padding: 65px 20px 28px;
    scroll-snap-align: center;
    min-height: 380px !important;
  }

  .step-num {
    font-size: 2.3rem;
    top: 16px;
    right: 16px;
  }

}
/* ============================================================
   ÁREA DE CLIENTES – Estilos completos
   ============================================================ */

@media (max-width: 640px) {
  .sistema-banner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-sistema { width: 100%; justify-content: center; }
}

.cliente-search-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px 20px;
  margin-bottom: 32px;
}
.search-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.search-tab {
  flex: 1;
  min-width: 140px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.search-tab.active { background: var(--blue); border-color: var(--blue); color: #fff; }
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 12px;
  color: var(--text-muted);
}
.search-input-wrap svg { flex-shrink: 0; }
.search-input-wrap input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.95rem;
  min-width: 0;
}
.search-input-wrap input::placeholder { color: var(--text-dim); }
.search-hint {
  font-size: 0.82rem;
  color: var(--text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.search-hint span {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px 12px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--text-muted);
  font-size: 0.8rem;
}
.search-hint span:hover { background: var(--blue); border-color: var(--blue); color: #fff; }

.results-section { margin-bottom: 32px; }
.results-count { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; min-height: 22px; }
.results-count strong { color: var(--text); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}
@media (max-width: 640px) { .cards-grid { grid-template-columns: 1fr; gap: 14px; } }

.suporte-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.suporte-card:hover { border-color: var(--border-blue); box-shadow: var(--shadow-blue); }

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(37,99,235,0.12);
  border: 1px solid var(--border-blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.card-icon.hp      { background: rgba(0,115,209,0.12);  border-color: rgba(0,115,209,0.3); }
.card-icon.brother { background: rgba(0,160,70,0.12);   border-color: rgba(0,160,70,0.3); }
.card-icon.epson   { background: rgba(0,104,183,0.12);  border-color: rgba(0,104,183,0.3); }
.card-icon.ricoh   { background: rgba(220,38,38,0.12);  border-color: rgba(220,38,38,0.3); }
.card-icon.samsung { background: rgba(20,40,160,0.12);  border-color: rgba(20,40,160,0.3); }
.card-icon.problema{ background: rgba(245,158,11,0.12); border-color: rgba(245,158,11,0.3); }

.card-title-group { flex: 1; min-width: 0; }
.card-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--text); line-height: 1.3; }
.card-subtitle { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.card-badge {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 3px 9px; border-radius: 20px; flex-shrink: 0;
}
.badge-modelo   { background: rgba(37,99,235,0.15);  color: var(--blue-light); border: 1px solid var(--border-blue); }
.badge-problema { background: rgba(245,158,11,0.15); color: var(--accent);     border: 1px solid rgba(245,158,11,0.3); }

.card-body { padding: 8px 0; }
.resource-list { display: flex; flex-direction: column; }
.resource-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: background 0.2s; cursor: pointer;
}
.resource-item:last-child { border-bottom: none; }
.resource-item:hover:not(.disabled) { background: rgba(37,99,235,0.06); }
.resource-item.disabled { opacity: 0.5; cursor: default; }

.resource-icon {
  width: 34px; height: 34px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.resource-icon.ri-driver { background: rgba(37,99,235,0.12);  color: var(--blue-light); }
.resource-icon.ri-video  { background: rgba(220,38,38,0.12);  color: #f87171; }
.resource-icon.ri-guide  { background: rgba(34,197,94,0.12);  color: var(--green); }
.resource-icon.ri-error  { background: rgba(245,158,11,0.12); color: var(--accent); }

.resource-text { flex: 1; min-width: 0; }
.resource-name {
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  line-height: 1.3; display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.resource-meta { font-size: 0.76rem; color: var(--text-muted); margin-top: 2px; }
.resource-arrow { color: var(--text-dim); flex-shrink: 0; }
.resource-item.disabled .resource-arrow { display: none; }
.placeholder-badge {
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text-dim); font-size: 0.68rem;
  padding: 1px 7px; border-radius: 20px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em;
}

.empty-state { text-align: center; padding: 60px 24px; color: var(--text-muted); }
.empty-state svg { margin: 0 auto 16px; opacity: 0.3; }
.empty-state h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--text); }
.empty-state p  { font-size: 0.9rem; max-width: 380px; margin: 0 auto; }

/* ── WPP e Instagram – botões no mesmo padrão ── */
.suporte-wpp-box {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, rgba(37,211,102,0.1), rgba(37,211,102,0.05));
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: var(--radius-lg);
  padding: 22px 24px; margin-top: 12px; flex-wrap: wrap;
}
.suporte-wpp-box svg { color: var(--wpp); flex-shrink: 0; }
.suporte-wpp-box > div { flex: 1; min-width: 180px; }
.suporte-wpp-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.suporte-wpp-box p  { font-size: 0.85rem; color: var(--text-muted); }
.suporte-wpp-box .btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  white-space: nowrap; flex-shrink: 0; text-decoration: none; transition: all 0.25s;
}

.insta-banner {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, rgba(221,42,123,0.1), rgba(131,52,175,0.08));
  border: 1px solid rgba(221,42,123,0.2);
  border-radius: var(--radius-lg);
  padding: 22px 24px; margin-top: 16px; flex-wrap: wrap;
}
.insta-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.insta-banner > div { flex: 1; min-width: 160px; }
.insta-banner h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.insta-banner p  { font-size: 0.82rem; color: var(--text-muted); }
.btn-insta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 12px 22px; border-radius: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  white-space: nowrap; flex-shrink: 0;
  text-decoration: none !important; transition: all 0.25s;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(221,42,123,0.35);
}
.btn-insta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(221,42,123,0.5); }

@media (max-width: 500px) {
  .suporte-wpp-box { flex-direction: column; align-items: flex-start; }
  .suporte-wpp-box .btn { width: 100%; }
  .insta-banner { flex-direction: column; align-items: flex-start; }
  .btn-insta { width: 100%; }
}

/* ── Mobile tweaks área de clientes ── */
@media (max-width: 640px) {
  .cliente-search-wrap { padding: 18px 16px 14px; }
  .search-tab { font-size: 0.82rem; padding: 9px 12px; min-width: 120px; }
  .card-header { padding: 14px 16px; gap: 10px; }
  .resource-item { padding: 11px 16px; gap: 10px; }
  .card-title { font-size: 0.92rem; }
  .card-subtitle { font-size: 0.75rem; }
}
