*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #06070f;
  --bg2: #0c0e1a;
  --bg3: #111427;
  --primary: #4f8ef7;
  --primary-glow: rgba(79,142,247,0.25);
  --accent: #7c3aed;
  --accent2: #06b6d4;
  --text: #e8eaf6;
  --text-muted: #8892b0;
  --border: rgba(255,255,255,0.07);
  --glass: rgba(255,255,255,0.04);
  --radius: 16px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

.bg-blobs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.18;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob-1 { width: 600px; height: 600px; background: #4f8ef7; top: -200px; left: -150px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: #7c3aed; top: 40%; right: -200px; animation-delay: -4s; }
.blob-3 { width: 400px; height: 400px; background: #06b6d4; bottom: -100px; left: 30%; animation-delay: -8s; }

@keyframes blobFloat {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(30px,40px) scale(1.08); }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
}
nav.scrolled {
  background: rgba(6,7,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #4f8ef7, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.logo span { color: var(--accent2); -webkit-text-fill-color: unset; font-weight: 300; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: linear-gradient(135deg, #4f8ef7, #7c3aed);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); color: #fff !important; }
@media (max-width: 768px) { .nav-links { display: none; } }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  text-align: center;
}
.hero-content { max-width: 860px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(79,142,247,0.1);
  border: 1px solid rgba(79,142,247,0.25);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before { content: '✦'; }

h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 24px;
}
h1 .gradient {
  background: linear-gradient(135deg, #4f8ef7 0%, #7c3aed 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 42px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #4f8ef7, #7c3aed);
  color: #fff; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 16px 32px; border-radius: 50px; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(79,142,247,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 50px rgba(79,142,247,0.45); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--glass); color: var(--text);
  border: 1px solid var(--border); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1rem; padding: 16px 32px; border-radius: 50px;
  text-decoration: none; transition: background 0.2s, transform 0.2s; backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.hero-stats { display: flex; gap: 40px; justify-content: center; margin-top: 64px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, #4f8ef7, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

.section { padding: 100px 0; }
.section-tag {
  display: inline-block; background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.2);
  color: var(--primary); padding: 4px 14px; border-radius: 50px; font-size: 0.75rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}
.section-title {
  font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 16px;
}
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.75; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

.problems-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 56px; }
.problem-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; backdrop-filter: blur(10px); transition: transform 0.3s, border-color 0.3s;
  opacity: 0; transform: translateY(30px);
}
.problem-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s; }
.problem-card:hover { transform: translateY(-4px); border-color: rgba(79,142,247,0.3); }
.problem-icon { font-size: 2rem; margin-bottom: 14px; }
.problem-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: #fff; }
.problem-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-top: 56px; }
.service-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; backdrop-filter: blur(10px); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden; opacity: 0; transform: translateY(30px);
  text-decoration: none; color: inherit; display: block;
}
.service-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(79,142,247,0.35); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrap { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 22px; }
.icon-blue { background: rgba(79,142,247,0.15); }
.icon-purple { background: rgba(124,58,237,0.15); }
.icon-cyan { background: rgba(6,182,212,0.15); }
.icon-green { background: rgba(16,185,129,0.15); }
.icon-pink { background: rgba(236,72,153,0.15); }
.service-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; color: #fff; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }
.service-price { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--primary); background: rgba(79,142,247,0.1); border: 1px solid rgba(79,142,247,0.2); padding: 5px 12px; border-radius: 50px; display: inline-block; margin-bottom: 15px; }
.service-features { list-style: none; margin-bottom: 20px; }
.service-features li { font-size: 0.85rem; color: var(--text-muted); padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.service-features li::before { content: '✓'; color: var(--accent2); font-weight: 700; flex-shrink: 0; }
.service-link { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: color 0.2s; }
.service-card:hover .service-link { color: #fff; }

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; margin-top: 56px; }
.step { text-align: center; opacity: 0; transform: translateY(30px); }
.step.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #4f8ef7, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif; font-size: 1.3rem; font-weight: 900; color: #fff;
  margin: 0 auto 20px; box-shadow: 0 0 30px rgba(79,142,247,0.4);
}
.step h3 { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); }

.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; margin-top: 56px; align-items: start; }
.plan-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px; backdrop-filter: blur(10px); transition: transform 0.3s;
  opacity: 0; transform: translateY(30px);
}
.plan-card.visible { opacity: 1; transform: translateY(0); transition: opacity 0.6s ease, transform 0.6s ease; }
.plan-card.featured { border-color: rgba(79,142,247,0.5); background: rgba(79,142,247,0.07); box-shadow: 0 0 60px rgba(79,142,247,0.15); position: relative; }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 5px 16px; border-radius: 50px; white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px; }
.plan-name { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; color: var(--text-muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 1px; }
.plan-price { font-family: 'Outfit', sans-serif; font-size: 2.8rem; font-weight: 900; letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.plan-price span { font-size: 1.1rem; font-weight: 500; color: var(--text-muted); }
.plan-period { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 28px; }
.plan-features { list-style: none; margin-bottom: 32px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: var(--text-muted); padding: 7px 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border-bottom: none; }
.plan-features li::before { content: '✓'; color: #10b981; font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-cta { display: block; text-align: center; padding: 14px; border-radius: 12px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; }
.plan-cta-primary { background: linear-gradient(135deg, #4f8ef7, #7c3aed); color: #fff; box-shadow: 0 4px 30px rgba(79,142,247,0.3); }
.plan-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(79,142,247,0.45); }
.plan-cta-secondary { background: var(--glass); border: 1px solid var(--border); color: var(--text); }
.plan-cta-secondary:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }

.faq-list { margin-top: 56px; max-width: 760px; margin-left: auto; margin-right: auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; backdrop-filter: blur(10px); background: var(--glass); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 600; padding: 22px 24px; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq-q:hover { color: var(--primary); }
.faq-arrow { transition: transform 0.3s; flex-shrink: 0; font-size: 1.2rem; }
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a-inner { padding: 0 24px 22px; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

.cta-final { padding: 100px 0; text-align: center; }
.cta-box {
  background: linear-gradient(135deg, rgba(79,142,247,0.1), rgba(124,58,237,0.1));
  border: 1px solid rgba(79,142,247,0.2); border-radius: var(--radius-lg); padding: 72px 48px;
  position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(79,142,247,0.08) 0%, transparent 70%); }
.cta-box h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; letter-spacing: -1px; margin-bottom: 18px; position: relative; }
.cta-box p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 40px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 12px; background: #25d366; color: #fff;
  font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.05rem; padding: 18px 36px;
  border-radius: 50px; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 40px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { transform: translateY(-3px); box-shadow: 0 8px 50px rgba(37,211,102,0.5); }
.btn-whatsapp svg { width: 22px; height: 22px; fill: #fff; }

footer { border-top: 1px solid var(--border); padding: 40px 0; position: relative; z-index: 2; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-copy { font-size: 0.825rem; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.825rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

.float-wa {
  position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px;
  background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 30px rgba(37,211,102,0.5); z-index: 99; text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s; animation: waPulse 2.5s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 50px rgba(37,211,102,0.7); animation: none; }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 50px rgba(37,211,102,0.8), 0 0 0 12px rgba(37,211,102,0.1); }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { opacity: 0; animation: fadeUp 0.8s ease forwards; }
.hero-badge { animation-delay: 0.1s; }
h1 { animation-delay: 0.2s; }
.hero-sub { animation-delay: 0.35s; }
.hero-actions { animation-delay: 0.5s; }
.hero-stats { animation-delay: 0.65s; }

@media (max-width: 600px) { .cta-box { padding: 48px 24px; } .hero { padding: 120px 0 60px; } }

/* Estilos adicionais para as páginas internas (detalhe dos serviços) */
.nav-back { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-back:hover { color: #fff; }

.service-detail-hero { min-height: 70vh; display: flex; align-items: center; padding: 160px 0 60px; text-align: left; }
.grid-detail { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
@media (max-width: 992px) {
  .grid-detail { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .service-detail-hero { min-height: auto; padding: 120px 0 60px; }
  .hero-actions-left { justify-content: center; }
}

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

/* Mockup interativo e interações de simulação */
.mockup-container {
  background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; backdrop-filter: blur(20px); box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  position: relative; overflow: hidden;
}
.mockup-header { display: flex; gap: 6px; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 12px; align-items: center; }
.mockup-dot { width: 12px; height: 12px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f56; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #27c93f; }
.mockup-title { font-size: 0.8rem; color: var(--text-muted); font-family: 'Outfit', sans-serif; font-weight: 600; margin-left: auto; text-transform: uppercase; letter-spacing: 1px; }

/* Simulação WhatsApp Chat */
.wa-chat-window { display: flex; flex-direction: column; gap: 12px; font-size: 0.85rem; text-align: left; }
.wa-msg { max-width: 85%; padding: 12px 16px; border-radius: 14px; position: relative; line-height: 1.4; animation: fadeUp 0.5s ease forwards; }
.wa-msg-in { background: var(--bg3); color: var(--text); border-top-left-radius: 2px; align-self: flex-start; }
.wa-msg-out { background: #075e54; color: #fff; border-top-right-radius: 2px; align-self: flex-end; }
.wa-msg-time { font-size: 0.7rem; color: rgba(255,255,255,0.4); margin-top: 4px; display: block; text-align: right; }

/* Grid de Benefícios / Características Técnicas */
.features-detail-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.feature-detail-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; backdrop-filter: blur(10px); transition: transform 0.3s, border-color 0.3s;
}
.feature-detail-card:hover { transform: translateY(-4px); border-color: rgba(79,142,247,0.3); }
.feature-detail-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: #fff; }
.feature-detail-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; }

/* Mockups específicos */
.mockup-insta-post { display: flex; flex-direction: column; background: #000; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.insta-header { display: flex; align-items: center; gap: 10px; padding: 12px; }
.insta-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.insta-username { font-weight: 600; font-size: 0.85rem; }
.insta-img { width: 100%; aspect-ratio: 1; background: #111; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.insta-img-gradient { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(6,182,212,0.3)); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px; text-align: center; }
.insta-img-text { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; line-height: 1.2; letter-spacing: -0.5px; }
.insta-actions { display: flex; gap: 14px; padding: 12px; font-size: 1.2rem; }
.insta-caption { padding: 0 12px 12px; font-size: 0.8rem; line-height: 1.4; color: #ddd; }
.insta-caption span { font-weight: 600; margin-right: 6px; }

.mockup-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; text-align: center; }
.calendar-day { padding: 10px 4px; border-radius: 8px; font-size: 0.75rem; color: var(--text-muted); background: rgba(255,255,255,0.02); }
.calendar-day.active { background: rgba(79,142,247,0.15); color: var(--primary); font-weight: 700; border: 1px solid rgba(79,142,247,0.3); }
.calendar-day.booked { background: rgba(236,72,153,0.1); color: #ec4899; text-decoration: line-through; opacity: 0.5; }
.calendar-times { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 16px; }
.calendar-time-btn { padding: 8px; border-radius: 6px; background: var(--bg3); border: 1px solid var(--border); color: var(--text); font-size: 0.75rem; font-weight: 600; cursor: pointer; text-align: center; }
.calendar-time-btn.selected { background: var(--primary); border-color: var(--primary); color: #fff; }

.mockup-reviews { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.review-item { padding: 16px; background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 12px; }
.review-user { display: flex; gap: 10px; align-items: center; margin-bottom: 8px; }
.review-avatar { width: 32px; height: 32px; border-radius: 50%; background: #4f8ef7; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; color: #fff; }
.review-name { font-weight: 600; font-size: 0.85rem; }
.review-stars { color: #ffb400; font-size: 0.9rem; }
.review-text { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 12px; }
.review-reply { padding: 12px 14px; background: rgba(79,142,247,0.06); border-left: 3px solid var(--primary); border-radius: 0 8px 8px 0; font-size: 0.78rem; line-height: 1.45; }
.review-reply-header { font-weight: 700; color: var(--primary); font-size: 0.72rem; margin-bottom: 4px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }

.mockup-report { display: flex; flex-direction: column; gap: 16px; }
.report-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.report-mini-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 8px; padding: 12px; text-align: center; }
.report-mini-val { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800; color: var(--accent2); }
.report-mini-lbl { font-size: 0.65rem; color: var(--text-muted); margin-top: 2px; }
.report-chart-container { height: 120px; border-bottom: 2px solid var(--border); border-left: 2px solid var(--border); margin: 10px 10px 0 20px; position: relative; display: flex; align-items: flex-end; justify-content: space-around; padding: 0 10px; }
.chart-bar { width: 24px; background: linear-gradient(to top, var(--primary), var(--accent)); border-radius: 4px 4px 0 0; animation: barGrow 1s ease forwards; transform-origin: bottom; }
@keyframes barGrow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

/* Estilos para as Calculadoras e Formulários dos Planos */
.calculator-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.calc-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.calc-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.calc-input-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.calc-slider {
  flex-grow: 1;
  height: 6px;
  background: var(--border);
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px var(--primary);
  transition: transform 0.1s;
}
.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}
.calc-number {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  min-width: 60px;
  text-align: right;
}

.roi-result-box {
  background: linear-gradient(135deg, rgba(16,185,129,0.1), rgba(6,182,212,0.1));
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 10px;
  animation: fadeUp 0.5s ease;
}
.roi-saved-val {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: #10b981;
  letter-spacing: -1px;
}
.roi-saved-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Growth Scope preview styles */
.growth-scope-display {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.scope-item-pill {
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}
.scope-item-pill:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(79,142,247,0.3);
  transform: translateY(-2px);
}
.scope-item-pill.active {
  background: rgba(79,142,247,0.08);
  border-color: rgba(79,142,247,0.5);
  box-shadow: 0 0 20px rgba(79,142,247,0.1);
}
.scope-pill-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.scope-pill-info {
  flex-grow: 1;
}
.scope-pill-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}
.scope-pill-desc {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.scope-pill-status {
  font-size: 0.7rem;
  font-weight: 700;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(16,185,129,0.1);
  padding: 4px 8px;
  border-radius: 50px;
}

/* Custom form styles for Enterprise builder */
.enterprise-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.form-step-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.form-input-select {
  width: 100%;
  background: var(--bg3);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  cursor: pointer;
}
.form-input-select:focus {
  border-color: var(--primary);
}
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.01);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
}
.checkbox-item:hover {
  background: rgba(255,255,255,0.03);
}
.checkbox-item input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.checkbox-item-label {
  font-size: 0.85rem;
  color: var(--text);
}
.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  gap: 12px;
}
