/* ==========================================================================
   Novo Site Marketing Certo - Design System & CSS Stylesheet v10.2
   ========================================================================== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables & Tokens */
:root {
  --primary-teal: #00b4d8;
  --primary-teal-hover: #0096c7;
  --primary-green: #00f5d4;
  --primary-green-hover: #01c7ad;
  --dark-teal: #0f4c5c;
  --dark-slate: #0f172a;
  --slate-text: #334155;
  --slate-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-footer: #090d16;
  --border-color: #e2e8f0;
  --border-focus: #00b4d8;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--slate-text);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-slate);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-bg-white {
  background-color: var(--bg-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-header .badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: rgb(0 180 216 / 0.1);
  color: var(--dark-teal);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--dark-slate);
}

.section-header p {
  color: var(--slate-muted);
  font-size: 1.125rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #0096c7 100%);
  color: white;
  box-shadow: 0 4px 14px rgb(0 180 216 / 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(0 180 216 / 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--dark-teal);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background-color: rgba(15, 76, 92, 0.05);
  border-color: var(--dark-teal);
  transform: translateY(-2px);
}

.btn-green {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-hover) 100%);
  color: var(--dark-slate);
  box-shadow: 0 4px 14px rgb(0 245 212 / 0.3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgb(0 245 212 / 0.4);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--dark-slate);
}

.logo-text span {
  color: var(--primary-teal);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--slate-text);
  position: relative;
}

.nav-link:hover {
  color: var(--primary-teal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-teal);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Button */
.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1010;
}

.menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-slate);
  margin: 5px 0;
  transition: var(--transition);
}

/* Hero Section */
.hero {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background: radial-gradient(circle at 80% 20%, rgb(0 245 212 / 0.08) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgb(0 180 216 / 0.08) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  font-size: 0.875rem;
  color: var(--slate-text);
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  display: block;
  animation: pulse 2s infinite;
}

.hero-content h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--slate-muted);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-val {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-slate);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-lbl {
  font-size: 0.85rem;
  color: var(--slate-muted);
  font-weight: 500;
}

/* Interactive SVG Hero Asset / Mockup Container */
.hero-visual {
  position: relative;
}

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}

.hero-card:hover {
  transform: translateY(-5px);
}

.card-header-mockup {
  height: 48px;
  background-color: #f1f5f9;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding: 0 1.25rem;
  gap: 0.5rem;
}

.dot-mockup {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background-color: #ef4444; }
.dot-yellow { background-color: #f59e0b; }
.dot-green { background-color: #10b981; }

.url-bar-mockup {
  height: 24px;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  flex-grow: 1;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 0.75rem;
  color: var(--slate-muted);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-green));
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 180, 216, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(0, 180, 216, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-teal);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--slate-muted);
  font-size: 0.975rem;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.feature-list-item svg {
  flex-shrink: 0;
  color: var(--primary-teal);
  margin-top: 2px;
}

/* Interactive Marketing Certo Interface Simulator */
.sim-container {
  display: grid;
  grid-template-cols: 280px 1fr;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  min-height: 560px;
  overflow: hidden;
}

.sim-sidebar {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #1e293b;
}

.sim-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0 0.75rem 1.5rem 0.75rem;
  border-bottom: 1px solid #1e293b;
}

.sim-brand-title {
  font-family: 'Outfit', sans-serif;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.sim-menu {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
}

.sim-menu-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.925rem;
  font-weight: 500;
  transition: var(--transition);
}

.sim-menu-item:hover, .sim-menu-item.active {
  background-color: #1e293b;
  color: white;
}

.sim-menu-item.active {
  border-left: 3px solid var(--primary-teal);
}

.sim-menu-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.sim-version {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
}

.sim-content {
  padding: 2.5rem;
  background-color: #f8fafc;
  display: flex;
  flex-direction: column;
}

.sim-pane {
  display: none;
  flex-direction: column;
  height: 100%;
}

.sim-pane.active {
  display: flex;
}

.sim-pane-header {
  margin-bottom: 2rem;
}

.sim-pane-header h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.sim-pane-header p {
  color: var(--slate-muted);
}

.sim-form-grid {
  display: grid;
  grid-template-cols: 1fr 1fr;
  gap: 2rem;
  flex-grow: 1;
}

.sim-editor-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sim-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sim-field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-slate);
}

.sim-input, .sim-textarea, .sim-select {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: white;
  width: 100%;
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.sim-input:focus, .sim-textarea:focus, .sim-select:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgb(0 180 216 / 0.15);
}

.sim-textarea {
  min-height: 150px;
  resize: none;
}

.sim-preview-column {
  background-color: #efeae2; /* WhatsApp chat wallpaper background */
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  max-height: 400px;
}

.sim-preview-header {
  height: 52px;
  background-color: #075e54;
  color: white;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 0.75rem;
}

.sim-preview-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #128c7e;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}

.sim-preview-info {
  display: flex;
  flex-direction: column;
}

.sim-preview-name {
  font-size: 0.925rem;
  font-weight: 600;
}

.sim-preview-status {
  font-size: 0.7rem;
  opacity: 0.8;
}

.sim-preview-messages {
  flex-grow: 1;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.75rem;
  overflow-y: auto;
}

.sim-msg {
  max-width: 80%;
  padding: 0.5rem 0.875rem 0.4rem 0.875rem;
  border-radius: 8px;
  font-size: 0.875rem;
  position: relative;
  box-shadow: 0 1px 1px rgb(0 0 0 / 0.08);
}

.sim-msg.received {
  background-color: white;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.sim-msg.sent {
  background-color: #dcf8c6;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.sim-msg-time {
  font-size: 0.65rem;
  color: #747f88;
  text-align: right;
  margin-top: 0.25rem;
  display: block;
}

.sim-msg-attachment {
  border-radius: 4px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.sim-msg-attachment svg {
  color: var(--primary-teal);
}

/* Dashboard & Engagement Dual Grid */
.dashboard-grid {
  display: grid;
  grid-template-cols: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* Account Health Interactive Widget */
.health-widget {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.widget-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
}

.widget-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.widget-title h4 {
  font-size: 1.25rem;
}

.widget-title svg {
  color: var(--primary-teal);
}

.widget-header-action {
  background: none;
  border: none;
  outline: none;
}

.widget-body {
  display: grid;
  grid-template-cols: 180px 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Circle Progress bar */
.health-score-container {
  position: relative;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.health-svg {
  transform: rotate(-90deg);
  width: 160px;
  height: 160px;
}

.health-circle-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 12;
}

.health-circle-progress {
  fill: none;
  stroke: url(#health-gradient);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 440;
  stroke-dashoffset: 440; /* We will animate this dynamically in JS */
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.health-score-text-wrapper {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.health-score-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-slate);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.health-score-label {
  font-size: 0.75rem;
  color: var(--slate-muted);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.health-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.health-metric {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.metric-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-teal);
  flex-shrink: 0;
}

.metric-info {
  display: flex;
  flex-direction: column;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--slate-muted);
  font-weight: 500;
}

.metric-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-slate);
}

.health-status-badge {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #fef08a; /* yellow */
  color: #854d0e;
  transition: var(--transition);
  margin-top: 1.5rem;
}

.health-status-badge.ready {
  background-color: #dcfce7; /* green */
  color: #166534;
}

/* Strategic Engagement Visual Step list */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  padding-left: 2rem;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 8px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: var(--border-color);
}

.step-item {
  position: relative;
}

.step-node {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: white;
  border: 3px solid var(--border-color);
  z-index: 2;
  transition: var(--transition);
}

.step-item.active .step-node {
  border-color: var(--primary-teal);
  background-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgb(0 180 216 / 0.2);
}

.step-content {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.step-item.active .step-content {
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-md);
}

.step-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.step-title h5 {
  font-size: 1rem;
  font-weight: 700;
}

.step-badge {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-weight: 600;
  background-color: var(--bg-light);
  color: var(--slate-muted);
}

.step-item.active .step-badge {
  background-color: rgb(0 180 216 / 0.1);
  color: var(--dark-teal);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--slate-muted);
  line-height: 1.5;
}

/* Sectors Grid */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.sector-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sector-card:hover {
  border-color: var(--primary-teal);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.sector-icon {
  width: 48px;
  height: 48px;
  color: var(--primary-teal);
  margin-bottom: 1.25rem;
}

.sector-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
}

/* Testimonials Grid */
.testimonials-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card::after {
  content: '"';
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 4rem;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
  color: #e2e8f0;
  font-weight: 800;
  pointer-events: none;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate-text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(0, 180, 216, 0.1);
  color: var(--dark-teal);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-slate);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--slate-muted);
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-cols: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.pricing-card.featured {
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-xl);
  transform: scale(1.03);
}

.pricing-card.featured::before {
  content: 'MAIS POPULAR';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-teal);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-header {
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-plan-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--slate-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.pricing-card.featured .pricing-plan-name {
  color: var(--primary-teal);
}

.price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1.5rem 0;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-slate);
  align-self: flex-start;
  margin-top: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--dark-slate);
  font-family: 'Outfit', sans-serif;
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--slate-muted);
  margin-left: 0.25rem;
}

.pricing-license-selector {
  margin-bottom: 2rem;
}

.pricing-license-selector label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-muted);
  margin-bottom: 0.5rem;
  text-align: center;
  text-transform: uppercase;
}

.license-select-wrapper {
  position: relative;
}

.pricing-features {
  margin-top: 1rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.pricing-feature-item svg {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-footer {
  text-align: center;
}

.pricing-footer p {
  font-size: 0.8rem;
  color: var(--slate-muted);
  margin-top: 1rem;
}

/* Secondary Pricing Cards (Single Machine & Custom) */
.extra-pricing {
  display: grid;
  grid-template-cols: 1.2fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.extra-pricing-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.extra-pricing-card.custom-card {
  background: linear-gradient(135deg, var(--dark-slate) 0%, #1e293b 100%);
  color: white;
  border: none;
}

.extra-pricing-card.custom-card h3, .extra-pricing-card.custom-card p {
  color: white;
}

.extra-pricing-info {
  max-width: 60%;
}

.extra-pricing-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.extra-pricing-info p {
  font-size: 0.95rem;
  color: var(--slate-muted);
}

.extra-pricing-action {
  flex-shrink: 0;
}

.satisfaction-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-top: 3rem;
  border: 1px solid var(--border-color);
}

.satisfaction-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.satisfaction-text h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.satisfaction-text p {
  font-size: 0.85rem;
  color: var(--slate-muted);
}

/* FAQ Section Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover, .faq-item.active {
  border-color: rgba(0, 180, 216, 0.3);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-trigger {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-trigger h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-slate);
  margin: 0;
}

.faq-icon-wrapper {
  color: var(--slate-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-wrapper {
  transform: rotate(180deg);
  color: var(--primary-teal);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--slate-muted);
  border-top: 1px solid transparent;
  line-height: 1.6;
}

.faq-item.active .faq-content-inner {
  border-color: #f1f5f9;
}

/* Contact Info Channels & Call Center Section */
.contact-grid {
  display: grid;
  grid-template-cols: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.channels-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .channels-container {
    grid-template-columns: 1fr;
  }
}

.channel-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  gap: 1rem;
}

.channel-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-md);
}

.channel-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: rgba(0, 180, 216, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-teal);
  flex-shrink: 0;
}

.channel-info h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.channel-info p {
  font-size: 0.85rem;
  color: var(--slate-muted);
}

/* Footer & Compliance */
.footer {
  background-color: var(--bg-footer);
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid #1e293b;
}

.footer-top {
  display: grid;
  grid-template-cols: 2fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #1e293b;
  padding-bottom: 3rem;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.925rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-links-col h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.9rem;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom p {
  color: #64748b;
}

.footer-bottom a {
  color: #64748b;
}

.footer-bottom a:hover {
  color: #94a3b8;
}

/* Keyframes */
@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* Responsiveness (Media queries) */

/* ── 1024px: Keep hero 2-column but tighten typography ── */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .laptop-wrapper {
    max-width: 100%;
  }

  .dashboard-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sectors-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .sim-container {
    grid-template-columns: 1fr;
  }

  .sim-sidebar {
    border-right: none;
    border-bottom: 1px solid #1e293b;
  }

  .extra-pricing {
    grid-template-columns: 1fr;
  }

  .extra-pricing-card {
    flex-direction: column;
    text-align: center;
  }

  .extra-pricing-info {
    max-width: 100%;
  }

  .satisfaction-bar {
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── 768px: Collapse hero to single column for mobile ── */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .header .container {
    height: 70px;
  }
  
  .nav {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: white;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 2rem;
    align-items: center;
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
  }
  
  .nav.active {
    left: 0;
  }
  
  .menu-btn {
    display: block;
  }
  
  .menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .nav-cta {
    display: none;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .sim-form-grid {
    grid-template-cols: 1fr;
  }
  
  .widget-body {
    grid-template-cols: 1fr;
    justify-items: center;
    text-align: center;
  }
  
  .sectors-grid {
    grid-template-cols: 1fr;
  }
  
  .channels-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .channels-container {
    grid-template-columns: 1fr;
  }
}
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==========================================================================
   Laptop Device Shell Wrapper
   ========================================================================== */
.laptop-wrapper {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

.laptop-screen {
  background-color: #1e293b; /* Screen bezel color */
  border-radius: 16px 16px 0 0;
  padding: 10px 10px 0 10px;
  border: 3px solid #334155;
  border-bottom: none;
  box-shadow: inset 0 2px 5px rgba(255, 255, 255, 0.1), 0 15px 35px rgba(15, 23, 42, 0.2);
  position: relative;
  z-index: 2;
}

/* Webcam dot on laptop bezel */
.laptop-screen::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background-color: #0f172a;
  border-radius: 50%;
  z-index: 5;
}

.laptop-base {
  height: 12px;
  background: linear-gradient(to bottom, #cbd5e1 0%, #94a3b8 100%);
  border-radius: 0 0 16px 16px;
  border-bottom: 5px solid #64748b;
  position: relative;
  width: 106%;
  left: -3%;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.15);
}

.laptop-hinge {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 5px;
  background-color: #475569;
  border-radius: 2px;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.3);
}

.laptop-touchpad {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 5px;
  background-color: rgba(0,0,0,0.06);
  border-radius: 0 0 3px 3px;
  border: 1px solid rgba(0,0,0,0.08);
  border-top: none;
}

/* ==========================================================================
   Software Mockup in Hero Section (Option 3 - Hybrid)
   ========================================================================== */
.software-mockup {
  position: relative;
  background-color: var(--bg-white);
  border-radius: 8px 8px 0 0;
  border: 1px solid var(--border-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 350px;
}

.software-mockup-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-top-bar {
  background-color: #005f73;
  color: white;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  user-select: none;
}

.mockup-actions {
  display: flex;
  gap: 0.35rem;
}

.mockup-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #f59e0b; }
.mockup-dot.green { background-color: #10b981; }

.mockup-title {
  font-size: 0.775rem;
  opacity: 0.95;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0.5rem;
}

.mockup-status-capsules {
  display: flex;
  gap: 0.5rem;
}

.status-capsule {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
  font-weight: 700;
}
.status-capsule.connected {
  background-color: rgba(16, 185, 129, 0.2);
  color: #00f5d4;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.status-capsule.safe {
  background-color: rgba(0, 245, 212, 0.2);
  color: #00f5d4;
  border: 1px solid rgba(0, 245, 212, 0.3);
}

.mockup-toolbar {
  background-color: #0077b6;
  color: white;
  display: flex;
  padding: 0.3rem 0.5rem;
  gap: 0.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  user-select: none;
}

.tool-item {
  font-size: 0.725rem;
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  white-space: nowrap;
}
.tool-item.active {
  background-color: rgba(255, 255, 255, 0.15);
  color: #00f5d4;
  font-weight: 700;
}

.mockup-workspace {
  display: grid;
  grid-template-cols: 1.15fr 1fr;
  flex-grow: 1;
  background-color: #f8fafc;
  overflow: hidden;
}

.mockup-col {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.leads-col {
  border-right: 1px solid var(--border-color);
  background-color: white;
}

.col-header {
  font-size: 0.725rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark-slate);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.25rem;
}

.lead-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 0.4rem;
}

.lead-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lead-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  min-width: 0;
}

.lead-name {
  font-size: 0.725rem;
  font-weight: 600;
  color: var(--dark-slate);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lead-phone {
  font-size: 0.65rem;
  color: var(--slate-muted);
}

.lead-badge {
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 9999px;
}
.badge-sent {
  background-color: #dcfce7;
  color: #166534;
}
.badge-sending {
  background-color: #fef3c7;
  color: #d97706;
}
.badge-pending {
  background-color: #f1f5f9;
  color: #475569;
}

.msg-col {
  background-color: #efeae2; /* WhatsApp Wallpaper */
  position: relative;
}

.msg-balloon-preview {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.msg-bubble-sent {
  background-color: #dcf8c6;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border-top-right-radius: 0;
  font-size: 0.725rem;
  align-self: flex-end;
  max-width: 95%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.bubble-attachment {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background-color: rgba(0, 0, 0, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.bubble-time {
  font-size: 0.55rem;
  color: #747f88;
  display: block;
  text-align: right;
  margin-top: 0.2rem;
}

.send-action-bar {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 0.5rem;
}

.sending-progress {
  height: 4px;
  background-color: rgba(0, 0, 0, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #10b981;
}

.btn-send-now {
  background-color: #128c7e;
  color: white;
  border: none;
  padding: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  cursor: default;
}

/* Video Trigger Overlay styling */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(1px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.video-overlay:hover {
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(2px);
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--primary-teal);
  color: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse-ring 2s infinite;
  box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.6);
}

.play-btn svg {
  margin-left: 4px;
  transition: var(--transition);
}

.video-overlay:hover .play-btn {
  transform: scale(1.08);
  background-color: var(--primary-green);
  color: var(--dark-slate);
}

.play-txt {
  color: white;
  margin-top: 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 180, 216, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0);
  }
}

/* ==========================================================================
   Vimeo Video Modal
   ========================================================================== */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 850px;
  background-color: black;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2010;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal.active .modal-container {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(15, 23, 42, 0.5);
  border: none;
  color: white;
  font-size: 2.25rem;
  cursor: pointer;
  z-index: 2020;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--primary-green);
}

.modal-video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
}

.modal-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   Responsive Mockup rules
   ========================================================================== */
@media (max-width: 992px) {
  .software-mockup {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .software-mockup {
    height: 250px;
  }
}

/* ==========================================================================
   Modo Estratégico de Engajamento
   ========================================================================== */
.estrategico-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.result-box {
  background: white;
  border-left: 4px solid var(--primary-teal);
  padding: 1.5rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-top: 1.5rem;
}

.result-box h4 {
  color: var(--dark-slate);
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
}

.result-box p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--slate-muted);
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e6fcf5;
  color: #0ca678;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  margin-top: 1.5rem;
}

/* ==========================================================================
   Interactive Simulator Section Styles
   ========================================================================== */
.simulator-wrapper {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.sim-cases {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sim-case-btn {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.sim-case-btn:hover {
  transform: translateY(-2px);
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-md);
}

.sim-case-btn.active {
  background: var(--bg-white);
  border-color: var(--primary-teal);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.sim-case-btn.active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-teal) 0%, var(--primary-green) 100%);
  border-radius: 0 4px 4px 0;
}

.sim-case-btn .sc-icon {
  font-size: 1.8rem;
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sim-case-btn.active .sc-icon {
  background: rgba(0, 180, 216, 0.1);
  transform: scale(1.05);
}

.sim-case-btn .sc-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sim-case-btn .sc-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark-slate);
  transition: color 0.3s ease;
}

.sim-case-btn.active .sc-text strong {
  color: var(--primary-teal);
}

.sim-case-btn .sc-text span {
  font-size: 0.95rem;
  color: var(--slate-text);
  line-height: 1.5;
}

.sim-phone-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 991px) {
  .simulator-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .sim-cases {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
  }
}

.smart-phone {
  background: #efeae2;
  border: 12px solid #222;
  border-radius: 40px;
  width: 100%;
  max-width: 320px;
  height: 520px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

.sp-header {
  background: #005c4b;
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.sp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ffffff"><path d="M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z"/></svg>');
  background-size: cover;
  background-color: #abb4bd;
}

.sp-contact {
  display: flex;
  flex-direction: column;
}

.sp-contact strong { font-size: 1rem; }
.sp-contact span { font-size: 0.75rem; opacity: 0.8; }

.sp-body {
  padding: 20px 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="%23d6d0c4" fill-opacity="0.3"><path d="M10 10h10v10H10z"/></g></svg>');
}

.sp-msg {
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  max-width: 85%;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}

.sp-out {
  background: #dcf8c6;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.sp-in {
  background: #ffffff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.sp-status {
  align-self: center;
  background: rgba(0,0,0,0.05);
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  color: #666;
  margin: 4px 0;
}

/* Animations for Chat Mockup */
@keyframes playChat {
  0% { opacity: 0; transform: translateY(10px); }
  5% { opacity: 1; transform: translateY(0); }
  95% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}

.sp-body > * {
  opacity: 0;
  animation: playChat 15s infinite;
}

.sp-body > *:nth-child(1) { animation-delay: 0.5s; }
.sp-body > *:nth-child(2) { animation-delay: 1.5s; }
.sp-body > *:nth-child(3) { animation-delay: 4.5s; }
.sp-body > *:nth-child(4) { animation-delay: 5.5s; }
.sp-body > *:nth-child(5) { animation-delay: 7s; }
.sp-body > *:nth-child(6) { animation-delay: 8.5s; }
.sp-body > *:nth-child(7) { animation-delay: 9.5s; }

@media (max-width: 768px) {
  .estrategico-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   Health Dashboard
   ========================================================================== */
.health-dashboard {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.health-ui {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
}

.health-ui-header {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hui-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: var(--dark-slate);
}

.hui-btn {
  padding: 8px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-slate);
  background: white;
  cursor: pointer;
}

.health-ui-body {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.health-score {
  width: 160px;
  height: 160px;
  margin-bottom: 2rem;
  position: relative;
}

.circular-chart {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}
.circle-bg {
  fill: none;
  stroke: #eee;
  stroke-width: 3.5;
}
.circle-score {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  animation: progress 2s ease-out forwards;
}
.circle-score.green { stroke: #00b4d8; }
.circle-score.yellow { stroke: #f59f00; }
.circle-score.orange { stroke: #f76707; }
.circle-score.red { stroke: #e03131; }

@keyframes progress {
  0% { stroke-dasharray: 0 100; }
}

.score-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2px;
}

.score-value strong {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: var(--dark-slate);
}
.score-value span {
  font-size: 0.75rem;
  color: var(--slate-muted);
  letter-spacing: 1px;
}

.health-metrics {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.h-metric {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hm-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hm-text {
  display: flex;
  flex-direction: column;
}
.hm-text span {
  font-size: 0.8rem;
  color: var(--slate-muted);
}
.hm-text strong {
  font-size: 1rem;
  color: var(--dark-slate);
}

.health-status {
  text-align: center;
}

.badge-green {
  background: #e6fcf5;
  color: #0ca678;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
  font-weight: 600;
}
.badge-yellow {
  background: #fff3bf;
  color: #f59f00;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
  font-weight: 600;
}
.badge-orange {
  background: #ffe8cc;
  color: #f76707;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
  font-weight: 600;
}
.badge-red {
  background: #ffe3e3;
  color: #e03131;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
  font-weight: 600;
}

.health-content p {
  color: var(--slate-muted);
  line-height: 1.6;
}

.health-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.h-info-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #eee;
}

.h-info-card h4 {
  margin: 0 0 10px 0;
  color: var(--dark-slate);
  font-size: 1.1rem;
}

.h-info-card p {
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.status-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.dot.green { background: #0ca678; }
.dot.yellow { background: #f59f00; }
.dot.orange { background: #f76707; }
.dot.red { background: #e03131; }

.health-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.health-table th, .health-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.health-table th {
  color: var(--slate-muted);
  font-weight: 500;
}
.health-table td {
  color: var(--dark-slate);
}
.health-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 992px) {
  .health-dashboard {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 576px) {
  .status-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   All Features Grid (20 cards)
   ========================================================================== */
.all-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.af-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.af-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00b4d8, #00f5d4);
  transition: width 0.3s ease;
}

.af-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 180, 216, 0.12);
  border-color: rgba(0, 180, 216, 0.3);
}

.af-card:hover::after {
  width: 100%;
}

.af-card-accent {
  background: linear-gradient(135deg, #f0fdff 0%, #ecfeff 100%);
  border-color: rgba(0, 180, 216, 0.25);
}

.af-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,180,216,0.1) 0%, rgba(0,245,212,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
  transition: var(--transition);
}

.af-card:hover .af-icon {
  background: linear-gradient(135deg, rgba(0,180,216,0.2) 0%, rgba(0,245,212,0.2) 100%);
  transform: scale(1.08);
}

.af-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0;
  line-height: 1.35;
}

.af-card p {
  font-size: 0.845rem;
  color: var(--slate-muted);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .all-features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .all-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .all-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Recursos de Grupos
   ========================================================================== */
.grupos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.grupo-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.grupo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.grupo-icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(0,180,216,0.12) 0%, rgba(0,245,212,0.12) 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.grupo-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 0;
}

.grupo-card p {
  font-size: 0.875rem;
  color: var(--slate-muted);
  margin: 0;
  line-height: 1.5;
}

.grupo-card-highlight {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-color: transparent;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.grupos-badges-row {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.grupo-feature-badge {
  background: rgba(0,245,212,0.12);
  border: 1px solid rgba(0,245,212,0.2);
  color: #00f5d4;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 0.75rem;
  border-radius: 9999px;
  text-align: center;
}

.grupo-highlight-text {
  font-size: 0.85rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
  text-align: center;
}

/* ==========================================================================
   Ferramenta de Manutenção de Contas
   ========================================================================== */
.manutencao-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.manutencao-text h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.manutencao-text > p {
  color: var(--slate-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.manutencao-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.manut-mini {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.manut-mini svg {
  color: var(--primary-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.manut-mini strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 0.15rem;
}

.manut-mini span {
  font-size: 0.78rem;
  color: var(--slate-muted);
  line-height: 1.4;
}

.manutencao-recursos {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.manut-recursos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.manut-recurso {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.manut-recurso-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(0,180,216,0.1) 0%, rgba(0,245,212,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-teal);
  flex-shrink: 0;
}

.manut-recurso h5 {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.manut-recurso p {
  font-size: 0.78rem;
  color: var(--slate-muted);
  line-height: 1.45;
  margin: 0;
}

.manut-footer-badge {
  background: linear-gradient(135deg, rgba(0,180,216,0.08) 0%, rgba(0,245,212,0.08) 100%);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-teal);
}

.manut-footer-badge svg {
  color: var(--primary-teal);
  flex-shrink: 0;
}

/* ==========================================================================
   Versão Demonstrativa 48H
   ========================================================================== */
.section-demo {
  background: linear-gradient(135deg, #0a1628 0%, #0f2a4a 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.section-demo::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.demo-badge-top {
  display: inline-block;
  border: 1px solid rgba(0,245,212,0.4);
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #00f5d4;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.demo-badge-top strong {
  font-size: 1rem;
}

.demo-logo-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.demo-logo-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  flex-shrink: 0;
}

.demo-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
  margin: 0;
  line-height: 1.1;
}

.demo-subtitle {
  font-size: 1rem;
  color: #00f5d4;
  font-weight: 600;
  margin-bottom: 1.75rem;
  margin-left: 0;
}

.demo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.demo-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
}

.demo-feat-icon {
  font-size: 1.15rem;
  flex-shrink: 0;
}

.btn-demo-cta {
  display: inline-block;
  background: linear-gradient(135deg, #00b4d8 0%, #00f5d4 100%);
  color: #0f172a;
  font-size: 1rem;
  font-weight: 900;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,180,216,0.35);
}

.btn-demo-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,180,216,0.5);
  color: #0f172a;
}

/* Demo Laptop Mockup */
.demo-laptop-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.demo-laptop-screen {
  background: #0f172a;
  border: 2px solid #334155;
  border-radius: 14px 14px 0 0;
  padding: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 340px;
}

.demo-sw-header {
  background: #1e293b;
  padding: 0.4rem 0.75rem;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.demo-sw-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: #00f5d4;
  font-family: 'Outfit', sans-serif;
}

.demo-sw-body {
  display: grid;
  grid-template-columns: 140px 1fr;
  flex-grow: 1;
  overflow: hidden;
}

.demo-sw-sidebar {
  background: #0a1628;
  border-right: 1px solid #1e293b;
  padding: 0.4rem 0;
  overflow: hidden;
}

.demo-sw-menu-item {
  padding: 0.3rem 0.6rem;
  font-size: 0.58rem;
  color: #64748b;
  cursor: default;
  transition: background 0.15s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.demo-sw-menu-item.active,
.demo-sw-menu-item:hover {
  background: rgba(0,180,216,0.12);
  color: #00b4d8;
}

.demo-sw-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  gap: 0.5rem;
}

.demo-sw-center-logo {
  text-align: center;
}

.demo-sw-big-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #0f172a;
  font-family: 'Outfit', sans-serif;
  margin: 0 auto 0.4rem;
}

.demo-sw-center-logo h4 {
  font-size: 0.72rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.1rem;
}

.demo-sw-center-logo p {
  font-size: 0.58rem;
  color: #00f5d4;
  margin-bottom: 0.25rem;
}

.demo-sw-center-logo small {
  font-size: 0.52rem;
  color: #64748b;
  line-height: 1.4;
}

.demo-sw-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem;
  width: 100%;
}

.demo-sw-stat {
  background: rgba(0,180,216,0.1);
  border: 1px solid rgba(0,180,216,0.2);
  border-radius: 4px;
  padding: 0.3rem;
  font-size: 0.48rem;
  font-weight: 700;
  color: #00b4d8;
  text-align: center;
  line-height: 1.3;
}

.demo-sw-footer-bar {
  background: #1e293b;
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.demo-sw-btn {
  background: linear-gradient(135deg, #00b4d8, #00f5d4);
  color: #0f172a;
  border: none;
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  font-size: 0.6rem;
  font-weight: 800;
  cursor: default;
  font-family: 'Outfit', sans-serif;
}

.demo-laptop-base {
  background: linear-gradient(to bottom, #cbd5e1, #94a3b8);
  height: 10px;
  border-radius: 0 0 10px 10px;
  border-bottom: 4px solid #64748b;
  position: relative;
  width: 108%;
  left: -4%;
  box-shadow: 0 8px 20px rgba(15,23,42,0.25);
}

.demo-laptop-hinge {
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #475569;
  border-radius: 2px;
}

.demo-laptop-pad {
  position: absolute;
  top: 1px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: rgba(0,0,0,0.06);
  border-radius: 0 0 3px 3px;
}

/* Responsive overrides for new sections */
@media (max-width: 1024px) {
  .grupos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .manutencao-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .demo-visual {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .grupos-grid {
    grid-template-columns: 1fr;
  }
  .manut-recursos-grid {
    grid-template-columns: 1fr;
  }
  .manutencao-mini-grid {
    grid-template-columns: 1fr;
  }
  .demo-laptop-screen {
    height: 260px;
  }
  .demo-sw-body {
    grid-template-columns: 110px 1fr;
  }
}

/* ==========================================================================
   Interactive Hero Campaign Simulator
   ========================================================================== */
.simulation-container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  width: 100%;
  height: 100%;
  background-color: #020617;
  overflow: hidden;
}

.sim-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.panel-software {
  background-color: #0b0f19;
  border-right: 1px solid #1e293b;
  color: #f8fafc;
}

.sim-header {
  background-color: #111827;
  padding: 0.5rem 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #1f2937;
  flex-shrink: 0;
}

.sim-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #00f5d4;
  letter-spacing: 0.5px;
}

.sim-badge {
  font-size: 0.55rem;
  background-color: rgba(0, 180, 216, 0.15);
  color: #00b4d8;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-weight: 600;
}

.sim-body {
  padding: 0.6rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex-grow: 1;
  overflow: hidden;
}

.sim-field-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-top: 0.1rem;
}

.sim-textarea-box {
  background-color: #030712;
  border: 1px solid #1e293b;
  border-radius: 6px;
  padding: 0.4rem;
  font-size: 0.65rem;
  height: 54px;
  color: #e2e8f0;
  font-family: monospace;
  overflow: hidden;
  line-height: 1.35;
}

.cursor-pipe {
  animation: sim-blink 1s infinite;
  color: #00f5d4;
  font-weight: bold;
}

@keyframes sim-blink {
  50% { opacity: 0; }
}

.sim-attachment-card {
  background-color: #111827;
  border: 1px dashed #374151;
  border-radius: 6px;
  padding: 0.35rem 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  color: #9ca3af;
}

.sim-send-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-bottom: 0.2rem;
}

.sim-progress-container {
  height: 3px;
  background-color: #1f2937;
  border-radius: 2px;
  overflow: hidden;
}

.sim-progress-bar {
  height: 100%;
  width: 0;
  background-color: #00f5d4;
  transition: width 0.05s linear;
}

.sim-send-status {
  font-size: 0.55rem;
  color: #64748b;
  text-align: right;
  font-style: italic;
}

.sim-btn-send {
  background: #1f2937;
  color: #9ca3af;
  border: none;
  padding: 0.35rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  cursor: default;
  transition: all 0.25s ease;
  text-align: center;
}

.sim-btn-send.active {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: white;
  box-shadow: 0 0 8px rgba(0, 180, 216, 0.4);
}

/* WhatsApp Panel */
.panel-whatsapp {
  background-color: #efeae2;
  background-image: radial-gradient(#e4e0d9 1px, transparent 1px);
  background-size: 8px 8px;
}

.sim-wa-header {
  background-color: #008069;
  color: white;
  padding: 0.4rem 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  flex-shrink: 0;
}

.sim-wa-avatar {
  width: 22px;
  height: 22px;
  background-color: #00a884;
  color: white;
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sim-wa-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.sim-wa-name {
  font-size: 0.68rem;
  font-weight: 600;
}

.sim-wa-status {
  font-size: 0.5rem;
  opacity: 0.85;
}

.sim-wa-icons {
  margin-left: auto;
  opacity: 0.8;
  display: flex;
}

.sim-wa-chat {
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow-y: auto;
  flex-grow: 1;
}

.sim-msg {
  display: flex;
  flex-direction: column;
  max-width: 88%;
  animation: sim-slide-up 0.25s ease-out;
}

@keyframes sim-slide-up {
  from { transform: translateY(8px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.msg-incoming {
  align-self: flex-start;
}

.msg-incoming .msg-bubble {
  background-color: white;
  border-radius: 0 6px 6px 6px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
}

.msg-outgoing {
  align-self: flex-end;
}

.msg-outgoing .msg-bubble {
  background-color: #e2f9cb;
  border-radius: 6px 0 6px 6px;
  box-shadow: 0 1px 0.5px rgba(0,0,0,0.08);
}

.msg-bubble {
  padding: 0.35rem 0.5rem;
}

.msg-bubble p {
  font-size: 0.62rem;
  margin: 0;
  line-height: 1.3;
  color: #111b21;
}

.var-highlight {
  color: #0284c7;
  background-color: rgba(14, 165, 233, 0.1);
  padding: 0 2px;
  border-radius: 2px;
  font-weight: 600;
}

.msg-time {
  font-size: 0.45rem;
  color: #667781;
  display: block;
  text-align: right;
  margin-top: 0.1rem;
}

/* Catalog Card styling inside Bubble */
.bubble-catalog {
  padding: 0.2rem !important;
  background-color: #e2f9cb !important;
}

.catalog-card {
  background-color: white;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  width: 130px;
}

.catalog-img {
  width: 100%;
  height: 60px;
  object-fit: cover;
}

.catalog-info {
  padding: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.catalog-title {
  font-size: 0.55rem;
  font-weight: 700;
  color: #0f172a;
}

.catalog-price {
  font-size: 0.5rem;
  color: #10b981;
  font-weight: 600;
}

.catalog-btn {
  background-color: #25d366;
  color: white;
  border: none;
  font-size: 0.5rem;
  font-weight: 700;
  padding: 0.2rem;
  border-radius: 3px;
  text-align: center;
  cursor: default;
  margin-top: 0.15rem;
}

/* Chatbot Quick Replies style */
.bubble-chatbot {
  background-color: #f0fdf4 !important;
  border: 1px solid #dcfce7 !important;
}

.quick-replies {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.3rem;
  flex-wrap: wrap;
}

.reply-pill {
  font-size: 0.5rem;
  background-color: white;
  border: 1px solid #008069;
  color: #008069;
  padding: 0.15rem 0.35rem;
  border-radius: 999px;
  font-weight: 600;
}

.reply-pill.active {
  background-color: #008069;
  color: white;
}

/* Responsive styles for Hero simulator */
@media (max-width: 768px) {
  .simulation-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .panel-software {
    display: none;
  }
  .simulation-container {
    grid-template-columns: 1fr;
  }
}

/* --- DEPOIMENTOS --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate-text);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(0, 180, 216, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  font-family: serif;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-teal);
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark-slate);
  font-size: 1rem;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--slate-muted);
}

/* FORCANDO GRID DOS PLANOS PARA 2x2 */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Aumentando o Notebook da Demo */
.demo-laptop-wrap {
    transform: scale(1.15) !important;
    transform-origin: center !important;
    margin-left: 1rem;
}
@media (max-width: 992px) {
    .demo-laptop-wrap {
        transform: scale(1) !important;
        margin-left: 0;
    }
}

/* CSS ANIMATIONS */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Puxar notebook da Hero para cima */
@media (min-width: 992px) {
  .hero-visual {
    margin-top: -60px;
  }
}


/* ==========================================
   Language Selector (Internacionalização)
   ========================================== */
.lang-selector-wrapper {
  position: relative;
  display: inline-block;
  font-family: inherit;
  z-index: 1000;
}

.lang-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 180, 216, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.15);
  color: var(--dark-slate);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lang-selector-btn:hover {
  background: rgba(0, 180, 216, 0.08);
  border-color: var(--primary-blue);
  color: var(--dark-teal);
}

.lang-selector-btn svg {
  transition: transform 0.2s ease;
  stroke: var(--dark-slate);
}

.lang-selector-btn:hover svg {
  stroke: var(--dark-teal);
}

.lang-selector-btn[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

/* Dropdown Options */
.lang-dropdown {
  position: absolute;
  top: 120%;
  right: 0;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  display: none;
  flex-direction: column;
  min-width: 160px;
  overflow: hidden;
  animation: langSlideDown 0.2s ease forwards;
}

.lang-dropdown.show {
  display: flex;
}

.lang-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  color: #334155;
  font-size: 0.875rem;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  text-align: left;
}

.lang-opt:hover {
  background: #f1f5f9;
  color: var(--dark-teal);
  padding-left: 1.2rem;
}

.lang-opt.active {
  background: rgba(0, 180, 216, 0.05);
  color: var(--dark-teal);
  font-weight: 700;
}

@keyframes langSlideDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsivo para mobile */
@media (max-width: 768px) {
  .lang-selector-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
  }
  
  .lang-label {
    display: none; /* Oculta sigla no mobile */
  }
  
  .lang-dropdown {
    right: auto;
    left: 0;
  }
}

/* ==========================================================================
   WhatsApp Floating Widget & Interactive Lead Capture Modal
   ========================================================================== */

.wa-float-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.wa-widget-label {
  background-color: var(--bg-white, #ffffff);
  color: #0f172a;
  padding: 10px 30px 10px 18px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  pointer-events: auto;
  white-space: nowrap;
  border: 1px solid rgba(15, 23, 42, 0.05);
  transition: all 0.3s ease;
  user-select: none;
  position: relative;
  cursor: pointer;
}

.wa-widget-close-label {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  font-size: 14px;
  font-weight: 500;
  color: #ef4444;
  cursor: pointer;
  padding: 0;
  margin: 0;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.wa-widget-close-label:hover {
  color: #dc2626;
  transform: translateY(-50%) scale(1.25);
}

.wa-widget-label strong {
  font-weight: 700;
}

.wa-widget-btn {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  position: relative;
  pointer-events: auto;
  transition: all 0.3s ease;
  animation: waPulse 2s infinite;
}

.wa-widget-btn svg {
  transition: transform 0.3s ease;
}

.wa-float-widget:hover .wa-widget-btn {
  transform: scale(1.08);
}

.wa-float-widget:hover .wa-widget-btn svg {
  transform: rotate(15deg);
}

.wa-float-widget:hover .wa-widget-label {
  transform: translateX(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Animations */
@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* WhatsApp Modal Overlay & Container */
.wa-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.wa-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.wa-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wa-modal-container {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 2.5rem;
  margin: 20px;
  z-index: 2;
}

.wa-modal.active .wa-modal-container {
  transform: scale(1) translateY(0);
}

.wa-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #64748b;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 3;
}

.wa-modal-close:hover {
  color: #0f172a;
}

/* Modal Screens */
.wa-modal-screen {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wa-modal-screen.active {
  display: block;
  opacity: 1;
}

/* Screen 1: Form Screen */
.wa-form-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.wa-form-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-family: 'Outfit', sans-serif;
}

.wa-form-header p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.wa-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-form-group input {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid #e2e8f0;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  color: #0f172a;
  background-color: #f8fafc;
  transition: all 0.2s ease;
}

.wa-form-group input:focus {
  border-color: #25D366;
  outline: none;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

.wa-form-submit-btn {
  width: 100%;
  padding: 14px;
  background: #10b981;
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  transition: all 0.3s ease;
  margin-top: 6px;
}

.wa-form-submit-btn:hover {
  background: #059669;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
  transform: translateY(-1px);
}

.wa-form-submit-btn:active {
  transform: translateY(1px);
}

/* Screen 2: Redirect / Success Screen */
.wa-redirect-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wa-success-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 1.5rem;
}

.wa-success-circle {
  width: 60px;
  height: 60px;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scaleInCheck 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleInCheck {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wa-success-tag {
  background: rgba(16, 185, 129, 0.08);
  color: #047857;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.15);
  font-family: 'Outfit', sans-serif;
}

.wa-redirect-title {
  font-family: 'Outfit', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.wa-redirect-desc {
  font-size: 14.5px;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.wa-redirect-countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #059669;
  margin-bottom: 1.5rem;
}

.wa-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(16, 185, 129, 0.2);
  border-top-color: #10b981;
  border-radius: 50%;
  animation: waSpin 0.8s linear infinite;
}

@keyframes waSpin {
  to {
    transform: rotate(360deg);
  }
}

.wa-redirect-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white !important;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.wa-redirect-btn:hover {
  background: #128C7E;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  transform: translateY(-1px);
}

.wa-redirect-warning {
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.wa-widget-btn svg {
  width: 28px !important;
  height: 28px !important;
  flex-shrink: 0;
  display: block;
}

.wa-form-logo svg {
  width: 24px !important;
  height: 24px !important;
  flex-shrink: 0;
  display: block;
}

/* Responsividade Mobile para WhatsApp Widget */
@media (max-width: 500px) {
  .wa-widget-label {
    display: none; /* Oculta o balão de texto em celulares */
  }
  
  .wa-float-widget {
    bottom: 16px;
    right: 16px;
  }
  
  .wa-modal-container {
    padding: 1.75rem 1.5rem;
    margin: 15px;
  }
}


/* ==========================================================================
   DOWNLOAD & DEMONSTRATION PAGE STYLES (Ported from ECHOBOT)
   ========================================================================== */

.download-hero {
    padding: 120px 0 60px;
    position: relative;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.download-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 245, 212, 0.07) 0%, rgba(0, 180, 216, 0.02) 60%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 180, 216, 0.08);
    border: 1px solid rgba(0, 180, 216, 0.2);
    color: #00b4d8;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-title {
    font-family: 'Inter', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 15px;
    line-height: 1.15;
    position: relative;
    z-index: 2;
}

.download-subtitle {
    font-size: 1.15rem;
    color: var(--slate-muted);
    max-width: 650px;
    margin: 0 auto 35px;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.download-cta-wrapper {
    position: relative;
    z-index: 2;
    margin-bottom: 15px;
}

.btn-download {
    padding: 18px 45px;
    font-size: 1.15rem;
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(0, 245, 212, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
    color: white;
}

.download-meta {
    font-size: 0.85rem;
    color: var(--slate-muted);
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

/* Seção de Navegadores */
.browser-instructions-section {
    padding: 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: #fafafa;
}

.browser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.browser-card {
    background: white;
    border: 1px solid #eaeaea;
    border-radius: 20px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}

.browser-card:hover {
    border-color: rgba(0, 180, 216, 0.25);
    transform: translateY(-4px);
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.browser-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f8fafc;
}

.browser-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-slate);
}

.browser-card p {
    font-size: 0.95rem;
    color: var(--slate-muted);
    line-height: 1.6;
}

.browser-card strong {
    color: #00b4d8;
}

/* Seção do Guia de Instalação Passo a Passo */
.guide-section {
    padding: 80px 0;
    background: white;
}

.guide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-row.reverse {
    grid-template-columns: 0.9fr 1.1fr;
}

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

.step-number {
    font-size: 0.9rem;
    font-weight: 700;
    color: #00b4d8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-number::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 2px;
    background: #00b4d8;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-bottom: 15px;
    line-height: 1.3;
}

.step-desc {
    font-size: 1rem;
    color: var(--slate-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.step-badge-tip {
    background: #f8fafc;
    border-left: 3px solid #00f5d4;
    padding: 12px 18px;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    color: var(--dark-slate);
    line-height: 1.5;
}

.step-badge-tip strong {
    color: #00b4d8;
}

.step-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: white;
}

.step-image-wrapper:hover {
    border-color: rgba(0, 180, 216, 0.3);
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.15);
    transform: scale(1.02);
}

.step-image-wrapper img {
    width: 100%;
    display: block;
    height: auto;
}

@media (max-width: 900px) {
    .download-title {
        font-size: 2.5rem;
    }
    .browser-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }
    .step-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    .step-row.reverse {
        grid-template-columns: 1fr;
    }
    .step-row.reverse .step-image-wrapper {
        grid-row: 2;
    }
    .step-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ==========================================================================
   SMS & RCS 2.0 Section & Google Messages Simulator
   ========================================================================== */
.sms-rcs-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.sms-phone {
  background: #f1f3f4;
  border: 12px solid #222;
  border-radius: 40px;
  width: 100%;
  max-width: 320px;
  height: 520px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
}

.sms-sp-header {
  background: #ffffff;
  color: #1a73e8;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  border-bottom: 1px solid #dadce0;
}

.sms-sp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1a73e8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.sms-sp-contact {
  display: flex;
  flex-direction: column;
}

.sms-sp-contact strong { 
  font-size: 0.95rem; 
  color: #202124; 
}

.sms-sp-contact span { 
  font-size: 0.725rem; 
  color: #1a73e8; 
  display: flex;
  align-items: center;
  gap: 4px;
}

.sms-sp-body {
  padding: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: #ffffff;
  overflow-y: auto;
}

.sms-bubble-rcs {
  background: #f1f3f4;
  border: 1px solid #dadce0;
  border-radius: 18px;
  overflow: hidden;
  max-width: 90%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  align-self: flex-start;
}

.sms-bubble-image {
  width: 100%;
  height: 110px;
  background: linear-gradient(135deg, #1a73e8 0%, #00b4d8 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.sms-bubble-image .promo-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: white;
}

.sms-bubble-image .product-title {
  font-size: 1.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.25);
  letter-spacing: -0.5px;
}

.sms-bubble-content {
  padding: 12px;
}

.sms-bubble-content .msg-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #202124;
  margin: 0 0 4px 0;
}

.sms-bubble-content .msg-text {
  font-size: 0.8rem;
  color: #5f6368;
  margin: 0;
  line-height: 1.4;
}

.sms-pdf-attachment {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #dadce0;
  border-radius: 12px;
  padding: 10px;
  margin: 6px 10px 10px 10px;
  text-decoration: none;
  color: #202124;
  transition: background 0.2s;
}

.sms-pdf-attachment:hover {
  background: #f8f9fa;
}

.sms-pdf-icon {
  background: #fce8e6;
  color: #d93025;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sms-pdf-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sms-pdf-name {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #3c4043;
}

.sms-pdf-size {
  font-size: 0.65rem;
  color: #70757a;
}

.sms-status-text {
  align-self: center;
  font-size: 0.7rem;
  color: #70757a;
  background: #f1f3f4;
  padding: 4px 12px;
  border-radius: 20px;
  margin: 4px 0;
}

.sms-bubble-out {
  background: #e8f0fe;
  color: #185abc;
  border-radius: 18px;
  border-bottom-right-radius: 4px;
  padding: 10px 14px;
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 85%;
  align-self: flex-end;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.sms-bubble-in {
  background: #f1f3f4;
  color: #202124;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  padding: 10px 14px;
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 85%;
  align-self: flex-start;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Animations for SMS Chat Simulator */
@keyframes playSMSChat {
  0% { opacity: 0; transform: translateY(10px); }
  5% { opacity: 1; transform: translateY(0); }
  95% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; }
}

.sms-sp-body > * {
  opacity: 0;
  animation: playSMSChat 15s infinite;
  flex-shrink: 0;
}

.sms-sp-body > *:nth-child(1) { animation-delay: 0.5s; }
.sms-sp-body > *:nth-child(2) { animation-delay: 1.5s; }
.sms-sp-body > *:nth-child(3) { animation-delay: 4.5s; }
.sms-sp-body > *:nth-child(4) { animation-delay: 5.5s; }
.sms-sp-body > *:nth-child(5) { animation-delay: 7s; }
.sms-sp-body > *:nth-child(6) { animation-delay: 8.5s; }

@media (max-width: 768px) {
  .sms-rcs-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   LEGAL PAGES STYLES (Terms of Use & Privacy Policy)
   ========================================================================== */
.legal-hero {
  padding: 140px 0 60px;
  position: relative;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, #090d16 0%, #0f172a 100%);
  color: white;
}

.legal-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(0, 245, 212, 0.05) 60%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 1;
}

.legal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #ffffff 30%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.legal-body-section {
  padding: 60px 0 80px;
  background-color: var(--bg-light);
}

.legal-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  max-width: 960px;
  margin: 0 auto;
}

.legal-content {
  font-family: 'Inter', sans-serif;
  color: var(--slate-text);
  line-height: 1.8;
  font-size: 1.05rem;
}

.legal-content h2, .legal-content h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-slate);
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.legal-content h2 {
  font-size: 1.45rem;
  border-bottom: 2px solid rgba(0, 180, 216, 0.1);
  padding-bottom: 0.5rem;
}

.legal-content h3 {
  font-size: 1.2rem;
  margin-top: 1.75rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

.legal-content strong {
  color: var(--dark-slate);
}

.legal-content a {
  color: var(--primary-teal);
  text-decoration: none;
  transition: var(--transition);
}

.legal-content a:hover {
  color: var(--primary-teal-hover);
  text-decoration: underline;
}

.legal-last-updated {
  font-style: italic;
  color: var(--slate-muted);
  text-align: right;
  margin-top: 3rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .legal-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
  }
  .legal-title {
    font-size: 2.2rem;
  }
}

/* ==========================================================================
   Changelog Styles - EchoBot / Marketing Certo
   ========================================================================== */
.changelog-body-section {
  padding: 60px 0 80px;
  background-color: var(--bg-light);
}

.changelog-card {
  max-width: 1000px;
  margin: 0 auto;
}

.version-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2.5rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.version-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.version-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 3px solid var(--primary-teal);
}

.version-header .emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.version-info {
  flex: 1;
}

.version-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.version-date {
  color: var(--slate-muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.changelog-card h3.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark-slate);
  margin: 2.5rem 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.changelog-card h3.section-title:first-of-type {
  margin-top: 1rem;
}

.feature {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-teal);
  border-right: 1px solid var(--border-color);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.feature-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--dark-slate);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
}

.feature-title .emoji {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-description {
  color: var(--slate-text);
  line-height: 1.8;
  font-size: 1rem;
}

.feature-description ul, .feature-description ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.feature-description li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.feature-description table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.feature-description th {
  background: var(--bg-light);
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--dark-slate);
  border-bottom: 2px solid var(--border-color);
}

.feature-description td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-color);
  color: var(--slate-text);
}

.feature-description tr:last-child td {
  border-bottom: none;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-green) 100%);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-mega {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.badge-critical {
  background: linear-gradient(135deg, #ffd89b 0%, #19547b 100%);
}

.highlight-box {
  background: linear-gradient(135deg, var(--dark-teal) 0%, var(--primary-teal) 100%);
  color: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.highlight-box p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.highlight-box strong {
  color: white;
}

.info-box {
  background: rgba(16, 185, 129, 0.05);
  padding: 1.5rem;
  border-left: 4px solid #10b981;
  border-radius: var(--radius-sm);
  margin: 1.75rem 0;
  font-size: 1.05rem;
  border-right: 1px solid rgba(16, 185, 129, 0.1);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.info-box p {
  margin: 0;
  color: var(--slate-text);
}

.warning-box {
  background: rgba(245, 158, 11, 0.05);
  padding: 1.5rem;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-sm);
  margin: 1.75rem 0;
  border-right: 1px solid rgba(245, 158, 11, 0.1);
  border-top: 1px solid rgba(245, 158, 11, 0.1);
  border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.warning-box p {
  color: #b45309;
  margin: 0;
}

@media (max-width: 768px) {
  .version-card {
    padding: 2rem;
  }
  .version-title {
    font-size: 1.45rem;
  }
  .version-header .emoji {
    font-size: 2rem;
  }
}

/* ==========================================================================
   Calendly Demo Scheduling Section
   ========================================================================== */
.scheduling-section {
  padding: 5rem 0;
  background: var(--bg-light, #fafafa);
}

.scheduling-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg, 24px);
  padding: 3.5rem 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.1));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

/* Glow decorative elements */
.scheduling-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, rgba(255,255,255,0) 70%);
  transform: rotate(15deg);
  pointer-events: none;
}

.scheduling-content {
  flex: 1;
  z-index: 1;
  text-align: left;
}

.scheduling-content span.badge {
  background: rgba(0, 245, 212, 0.1);
  color: #00f5d4;
  padding: 6px 12px;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 1.25rem;
}

.scheduling-content h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  font-family: 'Outfit', sans-serif;
}

.scheduling-content p {
  color: #cbd5e1;
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.scheduling-action {
  flex-shrink: 0;
  z-index: 1;
}

.btn-scheduling {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
  border: none;
  color: #ffffff !important;
  font-weight: 700;
  padding: 1.2rem 2.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 180, 216, 0.35);
  cursor: pointer;
}

.btn-scheduling:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.5);
  filter: brightness(1.1);
}

@media (max-width: 991px) {
  .scheduling-card {
    flex-direction: column;
    text-align: center;
    padding: 3rem 2rem;
    gap: 2rem;
  }
  
  .scheduling-content {
    text-align: center;
  }

  .btn-scheduling {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   Social Proof Notification Popup
   ========================================================================== */
.sp-popup-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 245, 212, 0.3);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 9999;
  width: 380px;
  max-width: calc(100vw - 40px);
  transform: translateY(150px) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.sp-popup-container.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.sp-icon-wrapper {
  background: linear-gradient(135deg, #00f5d4 0%, #00b4d8 100%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
}

.sp-icon {
  font-size: 1.5rem;
}

.sp-content {
  flex: 1;
}

.sp-content h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.sp-content h4 strong {
  color: #00f5d4;
  font-weight: 700;
}

.sp-content p {
  color: #cbd5e1;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}

.sp-content p strong {
  color: #ffffff;
}

#sp-close {
  background: none;
  border: none;
  color: #64748b;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
  position: absolute;
  top: 8px;
  right: 12px;
}

#sp-close:hover {
  color: #ffffff;
}

