/* ============================================
   DentistaÁgil — Landing Page
   Design tokens sincronizados com o app
   ============================================ */

:root {
  --brand: #38BDF8;
  --brand-vivid: #0EA5E9;
  --brand-glow: #7DD3FC;
  --brand-dark: #0C2340;
  --brand-deep: #0F172A;
  --brand-surface: #F0F9FF;
  --brand-border: #BAE6FD;
  --brand-border-strong: #7DD3FC;
  --ai-purple: #8b5cf6;
  --ai-purple-soft: #a78bfa;
  --ai-purple-bg: rgba(139,92,246,0.06);
  --green: #10B981;
  --green-soft: #ECFDF5;
  --yellow: #FBBF24;
  --yellow-soft: #FEFCE8;
  --red: #F87171;
  --text: #0C2340;
  --text-muted: rgba(12,35,64,0.60);
  --text-subtle: rgba(12,35,64,0.45);
  --bg: #FFFFFF;
  --bg-alt: #F0F9FF;
  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 3px rgba(12,35,64,0.06), 0 1px 2px rgba(12,35,64,0.04);
  --shadow: 0 4px 16px rgba(12,35,64,0.06), 0 2px 6px rgba(12,35,64,0.04);
  --shadow-lg: 0 20px 60px rgba(15,23,42,0.12), 0 0 40px rgba(56,189,248,0.12);
  --shadow-glow: 0 0 0 1px rgba(56,189,248,0.2), 0 20px 60px rgba(15,23,42,0.10), 0 0 40px rgba(56,189,248,0.15);
  --font-body: "Inter Tight", ui-sans-serif, system-ui, sans-serif;
  --font-head: "Fustat", ui-sans-serif, system-ui, sans-serif;
}

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

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv11","ss01";
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Ícones inline no estilo Lucide */
.icon {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: -0.15em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.01em; }

p { color: var(--text-muted); }

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

img { max-width: 100%; display: block; }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  font-size: 15px;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-vivid) 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(56,189,248,0.35);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(56,189,248,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand-border);
}
.btn-outline:hover {
  border-color: var(--brand-vivid);
  background: var(--brand-surface);
}

.btn-ghost {
  background: transparent;
  color: var(--brand-dark);
}
.btn-ghost:hover {
  background: var(--brand-surface);
}

.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

/* ============================================
   PILL
   ============================================ */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-surface);
  border: 1px solid var(--brand-border);
  color: var(--brand-dark);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand-vivid);
  box-shadow: 0 0 8px var(--brand-vivid);
}
.pill-purple {
  background: var(--ai-purple-bg);
  border-color: rgba(139,92,246,0.2);
  color: var(--ai-purple);
}
.pill-dot.purple { background: var(--ai-purple); box-shadow: 0 0 8px var(--ai-purple); }
.pill-green {
  background: var(--green-soft);
  border-color: rgba(16,185,129,0.2);
  color: #065F46;
}
.pill-dot.green { background: var(--green); box-shadow: 0 0 8px var(--green); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(186,230,253,0.5);
}
.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
}
.logo img { width: 36px; height: 36px; border-radius: 50%; }
.logo-text {
  font-size: 20px;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-vivid) 50%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.nav-desktop {
  display: flex;
  gap: 28px;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-muted);
}
.nav-desktop a:hover { color: var(--brand-vivid); }
.header-cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--brand-dark);
  cursor: pointer;
  padding: 6px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 20px 24px 28px;
  background: #fff;
  border-bottom: 1px solid var(--brand-border);
}
.nav-mobile a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 16px;
  color: var(--brand-dark);
}
body.nav-open .nav-mobile { display: flex; }

@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background: linear-gradient(180deg, #F0F9FF 0%, #ffffff 70%);
}
.hero-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(56,189,248,0.20) 0%,
    rgba(14,165,233,0.08) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-text h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.highlight {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-vivid) 50%, var(--brand-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 12px rgba(56,189,248,0.4));
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-bullets {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--text-muted);
}
.hero-bullets > div { display: flex; align-items: center; gap: 6px; }
.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

/* Hero visual — browser mockup */
.hero-visual { position: relative; }
.browser-frame {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--brand-border);
  box-shadow: var(--shadow-glow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}
.browser-bar {
  height: 36px;
  background: #F8FAFC;
  border-bottom: 1px solid var(--brand-border);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 6px;
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red { background: #FF605C; }
.dot-yellow { background: #FFBD44; }
.dot-green { background: #00CA4E; }
.browser-url {
  margin-left: 14px;
  font-size: 11px;
  color: var(--text-subtle);
  background: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  border: 1px solid var(--brand-border);
}
.browser-body {
  background: #fff;
  display: block;
}
.mock-dashboard {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 360px;
}
.mock-sidebar {
  background: linear-gradient(180deg, #F8FBFF 0%, #fff 100%);
  border-right: 1px solid var(--brand-border);
  padding: 14px 10px;
}
.mock-logo-box {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 4px 14px;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 12px;
}
.mock-logo-circle {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-glow), var(--brand));
  box-shadow: 0 0 10px rgba(56,189,248,0.5);
}
.mock-logo-title {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700; color: var(--brand-dark);
}
.mock-logo-sub { font-size: 9px; color: var(--text-subtle); }
.mock-nav-item {
  font-family: var(--font-head);
  font-size: 11px;
  color: var(--text-muted);
  padding: 7px 10px;
  border-radius: 8px;
  margin-bottom: 3px;
  cursor: default;
}
.mock-nav-item.active {
  background: rgba(56,189,248,0.12);
  color: var(--brand-vivid);
  font-weight: 600;
}
.mock-nav-item.ai { color: var(--ai-purple); font-weight: 600; }
.mock-main { padding: 16px 18px; background: #fff; }
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.mock-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.mock-sub { font-size: 10px; color: var(--text-subtle); }
.mock-today {
  font-size: 10px;
  padding: 4px 10px;
  border: 1px solid var(--brand-border);
  border-radius: 999px;
  color: var(--brand-vivid);
}
.mock-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px; margin-bottom: 14px;
}
.mock-stat {
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 8px 10px;
}
.mock-stat-label { font-size: 9px; color: var(--text-subtle); margin-bottom: 2px; }
.mock-stat-value { font-family: var(--font-head); font-size: 18px; font-weight: 700; }
.mock-stat-value.blue { color: var(--brand-vivid); }
.mock-stat-value.yellow { color: var(--yellow); }
.mock-stat-value.green { color: var(--green); }
.mock-calendar {
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 6px;
  background: #fff;
}
.mock-slot {
  display: flex; align-items: center; gap: 10px;
  padding: 8px; border-bottom: 1px dashed rgba(186,230,253,0.6);
  min-height: 36px;
}
.mock-slot:last-child { border-bottom: none; }
.mock-slot.empty { min-height: 26px; }
.mock-time { font-size: 9px; color: var(--text-subtle); width: 32px; flex-shrink: 0; }
.mock-event {
  flex: 1;
  background: #F0F9FF;
  border-left: 3px solid var(--brand);
  border-radius: 6px;
  padding: 5px 8px;
}
.mock-event.alt {
  background: var(--green-soft);
  border-left-color: var(--green);
}
.mock-event strong {
  font-family: var(--font-head);
  font-size: 11px;
  display: block;
  color: var(--brand-dark);
}
.mock-event span { font-size: 9px; color: var(--text-subtle); }

.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}
.card-notif {
  top: 20px;
  right: -30px;
  min-width: 200px;
}
.card-notif-icon {
  width: 34px; height: 34px;
  background: var(--brand-surface);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.card-notif-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
}
.card-notif-sub { font-size: 10px; color: var(--text-subtle); }
.card-money {
  bottom: -20px;
  left: -30px;
  animation-delay: 1.5s;
}
.card-money-label { font-size: 10px; color: var(--text-subtle); }
.card-money-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .hero { padding: 48px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .browser-frame { transform: none; }
  .card-notif { right: 0; }
  .card-money { left: 0; bottom: -10px; }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-deep) 100%);
  color: #fff;
  padding: 36px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item { padding: 0 12px; }
.stat-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 36px;
  background: linear-gradient(135deg, #fff 0%, var(--brand-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: rgba(255,255,255,0.75); font-size: 13px; }

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-value { font-size: 28px; }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 96px 0; }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head .pill { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--text-muted); }

@media (max-width: 700px) {
  .section { padding: 64px 0; }
}

/* ============================================
   FEATURES
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-border-strong);
  box-shadow: var(--shadow-glow);
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-surface), #fff);
  border: 1px solid var(--brand-border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { font-size: 14.5px; }

@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

/* ============================================
   ÁGIL AI
   ============================================ */
.section-ai {
  background: linear-gradient(180deg, #fff 0%, #FAF8FF 50%, #fff 100%);
}
.ai-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.ai-text h2 { margin: 18px 0 16px; }
.ai-text p { font-size: 17px; margin-bottom: 20px; }
.ai-bullets { list-style: none; margin-bottom: 28px; }
.ai-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(139,92,246,0.15);
  font-size: 15px;
  color: var(--text);
}
.bolt { color: var(--ai-purple); font-size: 18px; }

.ai-chat {
  background: #fff;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(139,92,246,0.10), 0 0 40px rgba(139,92,246,0.08);
  overflow: hidden;
}
.chat-header {
  background: linear-gradient(135deg, #F6F2FF, #fff);
  border-bottom: 1px solid rgba(139,92,246,0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ai-purple-soft), var(--ai-purple));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  box-shadow: 0 0 10px rgba(139,92,246,0.4);
}
.chat-title {
  font-family: var(--font-head);
  font-weight: 700;
  background: linear-gradient(90deg, var(--ai-purple-soft), var(--ai-purple));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.chat-status {
  font-size: 11px; color: var(--text-subtle);
  display: inline-flex; align-items: center; gap: 6px;
}
.chat-dot {
  width: 6px; height: 6px; background: var(--green); border-radius: 50%;
}
.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
}
.bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.bubble-ai {
  align-self: flex-start;
  background: rgba(139,92,246,0.08);
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.bubble-user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--brand), var(--brand-vivid));
  color: #fff;
  border-bottom-right-radius: 4px;
}
.bubble-data {
  background: #fff;
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 12px;
  padding: 10px 14px;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}
.bubble-data strong { font-family: var(--font-head); color: var(--ai-purple); margin-right: 6px; }
.bubble-cta {
  background: #25D366;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 6px;
}
.chat-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-top: 1px solid rgba(139,92,246,0.12);
  background: #FAF8FF;
}
.chat-input span { font-size: 13px; color: var(--text-subtle); }
.chat-send {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ai-purple-soft), var(--ai-purple));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(139,92,246,0.35);
}

@media (max-width: 900px) { .ai-split { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================
   AGENDAMENTO ONLINE
   ============================================ */
.agend-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.agend-text h2 { margin: 18px 0 16px; }
.agend-text p { font-size: 17px; margin-bottom: 24px; }
.agend-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.agend-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: var(--text);
}
.agend-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-vivid));
  box-shadow: 0 0 0 3px rgba(56,189,248,0.2);
}
.agend-list strong { color: var(--brand-dark); font-family: var(--font-head); }

.phone-frame {
  width: 300px;
  margin: 0 auto;
  background: linear-gradient(180deg, #0F172A 0%, #1E3A5F 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(12,35,64,0.25), 0 0 0 2px rgba(186,230,253,0.1);
  position: relative;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 22px;
  background: #0F172A;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone-screen {
  background: #fff;
  border-radius: 32px;
  padding: 36px 20px 20px;
  min-height: 540px;
}
.phone-brand {
  display: flex; gap: 10px; align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--brand-border);
  margin-bottom: 18px;
}
.phone-logo {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-glow), var(--brand));
  box-shadow: 0 0 10px rgba(56,189,248,0.5);
}
.phone-brand-text div {
  font-family: var(--font-head);
  font-weight: 700; font-size: 14px;
  color: var(--brand-dark);
}
.phone-brand-text small { font-size: 11px; color: var(--text-subtle); }
.phone-step { margin-bottom: 18px; }
.phone-step small {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 11px;
  color: var(--text-subtle);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-option {
  border: 1px solid var(--brand-border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--text-muted);
}
.phone-option.active {
  border-color: var(--brand);
  background: rgba(56,189,248,0.08);
  color: var(--brand-dark);
  font-weight: 600;
  font-family: var(--font-head);
}
.phone-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.phone-slot {
  text-align: center;
  padding: 8px 4px;
  border: 1px solid var(--brand-border);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-head);
}
.phone-slot.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  font-weight: 700;
}
.phone-cta {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, var(--brand), var(--brand-vivid));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 14px rgba(56,189,248,0.35);
}

@media (max-width: 900px) {
  .agend-split { grid-template-columns: 1fr; gap: 40px; }
  .agend-visual { order: 2; }
}

/* ============================================
   WHATSAPP
   ============================================ */
.section-wpp {
  background: linear-gradient(180deg, #fff 0%, #F0FDF4 50%, #fff 100%);
}
.wpp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.wpp-text h2 { margin: 18px 0 16px; }
.wpp-text p { font-size: 17px; margin-bottom: 24px; }
.wpp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.wpp-item {
  background: #fff;
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-head);
  font-weight: 500;
  color: var(--brand-dark);
}

.wpp-phone {
  max-width: 360px;
  margin: 0 auto;
  background: #E5DDD5;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 6px solid #1E3A5F;
}
.wpp-header-bar {
  background: #075E54;
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wpp-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.wpp-name { font-family: var(--font-head); font-weight: 600; font-size: 14px; }
.wpp-online { font-size: 11px; opacity: .85; }
.wpp-body {
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 340px;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.4) 1px, transparent 1.5px),
    radial-gradient(circle at 80% 30%, rgba(255,255,255,0.3) 1px, transparent 1.5px);
  background-color: #E5DDD5;
}
.wpp-msg {
  max-width: 80%;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13.5px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
.wpp-msg.in {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 2px;
}
.wpp-msg.out {
  background: #DCF8C6;
  align-self: flex-end;
  border-top-right-radius: 2px;
}
.wpp-msg.short { max-width: 70%; }
.wpp-msg.pay { background: #FEF9C3; }

@media (max-width: 900px) {
  .wpp-split { grid-template-columns: 1fr; gap: 40px; }
  .wpp-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRICING
   ============================================ */
.section-pricing {
  background: linear-gradient(180deg, #F0F9FF 0%, #fff 100%);
}
.plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.plan {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan-featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-glow);
  position: relative;
}
.plan-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--brand-vivid));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  padding: 6px 16px;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(56,189,248,0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-top { margin-bottom: 20px; }
.plan-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--brand-vivid);
  margin-bottom: 6px;
}
.plan-featured .plan-name {
  background: linear-gradient(135deg, var(--brand), var(--brand-vivid));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.plan-desc { font-size: 14px; color: var(--text-muted); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px dashed var(--brand-border);
  border-bottom: 1px dashed var(--brand-border);
  margin-bottom: 22px;
}
.plan-currency {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 18px;
  color: var(--text-muted);
}
.plan-amount {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 46px;
  color: var(--brand-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}
.plan-period {
  font-size: 14px;
  color: var(--text-muted);
  margin-left: 4px;
}

.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}
.plan-features li {
  padding: 8px 0;
  font-size: 14.5px;
  color: var(--text);
  border-bottom: 1px solid #F1F5F9;
}
.plan-features li:last-child { border-bottom: none; }
.plan-features strong { color: var(--brand-dark); }

.plans-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-subtle);
}

@media (max-width: 800px) {
  .plans-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq details {
  background: #fff;
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  transition: border-color .2s ease;
}
.faq details[open] {
  border-color: var(--brand-border-strong);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  color: var(--brand-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--brand-vivid);
  font-weight: 500;
  transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 12px; font-size: 15px; }

/* ============================================
   FINAL CTA
   ============================================ */
.section-cta {
  padding: 0 24px;
}
.cta-box {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-deep) 100%);
  border-radius: 32px;
  padding: 72px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  margin-bottom: 96px;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at center, rgba(56,189,248,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box h2 { color: #fff; position: relative; margin-bottom: 16px; }
.cta-box p { color: rgba(255,255,255,0.8); font-size: 17px; margin-bottom: 28px; position: relative; }
.cta-actions {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.cta-box .btn-outline {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}
.cta-box .btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #F8FBFF;
  border-top: 1px solid var(--brand-border);
  padding-top: 56px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--brand-dark);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-grid a {
  display: block;
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-muted);
  transition: color .15s ease;
}
.footer-grid a:hover { color: var(--brand-vivid); }
.footer-brand p {
  margin-top: 14px;
  font-size: 14px;
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid var(--brand-border);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  color: var(--text-subtle);
  font-size: 12px;
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ============================================
   Modelos 3D — section nova
   ============================================ */


.pill-violet {
  background: rgba(139, 92, 246, 0.10);
  color: var(--ai-purple);
  border: 1px solid rgba(139, 92, 246, 0.25);
}
.pill-violet .pill-dot {
  background: var(--ai-purple);
  box-shadow: 0 0 8px var(--ai-purple);
}

.section-3d {
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(139,92,246,0.08), transparent 70%),
    radial-gradient(700px 350px at 0% 100%, rgba(14,165,233,0.06), transparent 70%),
    #0a0a0f;
  color: #f4f4f5;
  overflow: hidden;
}

.section-3d-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-3d-head h2 {
  font-family: 'Fustat', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 18px 0 14px;
  letter-spacing: -0.02em;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-3d-sub {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244, 244, 245, 0.72);
}

.section-3d-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.section-3d-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-3d-bullets li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.section-3d-bullets .bullet-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(139,92,246,0.18), rgba(139,92,246,0.05));
  border: 1px solid rgba(139,92,246,0.25);
}
.section-3d-bullets li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.section-3d-bullets strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.section-3d-bullets span {
  font-size: 14px;
  color: rgba(244, 244, 245, 0.65);
  line-height: 1.5;
}

.section-3d-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.section-3d .btn-outline {
  border-color: rgba(255,255,255,0.25);
  color: #fff;
}
.section-3d .btn-outline:hover {
  border-color: rgba(255,255,255,0.45);
  background: rgba(255,255,255,0.05);
}

/* Card do viewer */
.viewer-card {
  border-radius: 20px;
  background: linear-gradient(180deg, #1a1a24 0%, #0f0f17 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow:
    0 30px 80px -30px rgba(139,92,246,0.4),
    0 10px 30px -10px rgba(0,0,0,0.5);
}

.viewer-tabs {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
  scrollbar-width: none;
}
.viewer-tabs::-webkit-scrollbar { display: none; }

.viewer-tab {
  flex: 1;
  min-width: max-content;
  padding: 8px 14px;
  border-radius: 8px;
  background: transparent;
  color: rgba(244, 244, 245, 0.6);
  border: none;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.viewer-tab:hover {
  color: #fff;
  background: rgba(255,255,255,0.04);
}
.viewer-tab.is-active {
  background: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(139,92,246,0.15));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(139,92,246,0.4);
}

.viewer-canvas-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 520px;
  background: #0a0a0f;
}
#viewer-3d-canvas {
  width: 100%;
  height: 100%;
  display: block;
  cursor: grab;
}
#viewer-3d-canvas:active { cursor: grabbing; }

.viewer-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(4px);
  color: rgba(244,244,245,0.85);
  font-size: 13px;
  font-weight: 500;
  pointer-events: none;
  z-index: 2;
}
.viewer-spinner {
  width: 28px;
  height: 28px;
  border: 2.5px solid rgba(255,255,255,0.15);
  border-top-color: var(--ai-purple);
  border-radius: 50%;
  animation: viewerSpin 0.8s linear infinite;
}
@keyframes viewerSpin { to { transform: rotate(360deg); } }

.viewer-hint {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: rgba(244,244,245,0.5);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
  pointer-events: none;
}

.viewer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  background: rgba(0,0,0,0.3);
}
.viewer-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(139,92,246,0.95);
  background: rgba(139,92,246,0.12);
  padding: 4px 8px;
  border-radius: 6px;
}
.viewer-date {
  font-size: 12px;
  color: rgba(244,244,245,0.55);
}

/* Vídeo demo */
.section-3d-video {
  margin-top: 64px;
}
.video-card {
  max-width: 960px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  background: #000;
}
.video-caption {
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-caption strong {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}
.video-caption span {
  color: rgba(244,244,245,0.65);
  font-size: 14px;
}

/* Responsividade da section 3D */
@media (max-width: 960px) {
  .section-3d-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 700px) {
  .section-3d {
    padding: 64px 0;
  }
  .section-3d-head { margin-bottom: 36px; }
  .section-3d-bullets { gap: 14px; }
  .section-3d-bullets .bullet-icon {
    width: 34px; height: 34px; flex-basis: 34px; font-size: 16px;
  }
  .viewer-canvas-wrap {
    aspect-ratio: 4 / 3;
  }
  .viewer-tab { font-size: 12px; padding: 7px 10px; }
  .section-3d-video { margin-top: 40px; }
  .video-caption { padding: 14px 16px; }
}
@media (max-width: 480px) {
  .section-3d-cta .btn { width: 100%; justify-content: center; }
}
