/* ==========================================================================
   DESTAKWEB - Components & Interactive UI Elements
   ========================================================================== */

/* --------------------------------------------------------------------------
   BOTÕES (Buttons)
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--border-radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-indigo) 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  color: white;
}

.btn-secondary {
  background: white;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: #cbd5e1;
  transform: translateY(-2px);
  color: var(--brand-blue);
}

.btn-web {
  background: var(--web-gradient);
  color: white;
  box-shadow: 0 4px 14px var(--web-glow);
}

.btn-web:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(2, 132, 199, 0.35);
  color: white;
}

.btn-retro {
  background: var(--retro-gradient);
  color: white;
  box-shadow: 0 4px 14px var(--retro-glow);
}

.btn-retro:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(139, 92, 246, 0.38);
  color: white;
}

.btn-cloud {
  background: var(--cloud-gradient);
  color: white;
  box-shadow: 0 4px 14px var(--cloud-glow);
}

.btn-cloud:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.35);
  color: white;
}

.btn-maint {
  background: var(--maint-gradient);
  color: white;
  box-shadow: 0 4px 14px var(--maint-glow);
}

.btn-maint:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 158, 11, 0.45);
  color: white;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
  color: white;
}

.btn-telegram {
  background: linear-gradient(135deg, #229ED9 0%, #0088cc 100%);
  color: white;
  box-shadow: 0 4px 14px rgba(34, 158, 217, 0.35);
}

.btn-telegram:hover {
  background: linear-gradient(135deg, #28a9e9 0%, #0099e6 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(34, 158, 217, 0.5);
  color: white;
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

.btn-full {
  width: 100%;
}

/* Efeito de brilho ao passar o mouse */
.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  pointer-events: none;
}

.btn-glow:hover::after {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   BOTÃO FLUTUANTE WHATSAPP
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #25d366;
  color: white;
  padding: 0.85rem 1.35rem;
  border-radius: var(--border-radius-full);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.floating-whatsapp:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: white;
}

.floating-whatsapp svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-full);
  background: rgba(37, 211, 102, 0.5);
  z-index: -1;
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* --------------------------------------------------------------------------
   MODAL / POPUP (Para aviso de Cursos / Loja)
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: white;
  border-radius: var(--border-radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-secondary);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* --------------------------------------------------------------------------
   INPUTS & FORMULÁRIOS
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-sm);
  background: white;
  color: var(--text-main);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* --------------------------------------------------------------------------
   CARDS & BADGES ESPECIAIS
   -------------------------------------------------------------------------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--border-radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-blue);
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.badge-purple {
  background: rgba(124, 58, 237, 0.1);
  color: var(--brand-purple);
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: var(--brand-emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-amber {
  background: rgba(245, 158, 11, 0.1);
  color: var(--brand-amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* --------------------------------------------------------------------------
   TOAST NOTIFICATION (Alerta Flutuante)
   -------------------------------------------------------------------------- */
.toast-container {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}

.toast {
  background: #0f172a;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  pointer-events: auto;
  animation: slide-up 0.4s ease-out;
  border-left: 4px solid var(--brand-blue);
}

@keyframes slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* --------------------------------------------------------------------------
   ELEMENTOS DECORATIVOS TECNOLÓGICOS
   -------------------------------------------------------------------------- */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-blue {
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.08);
}

.orb-purple {
  width: 320px;
  height: 320px;
  background: rgba(139, 92, 246, 0.08);
}

.orb-teal {
  width: 300px;
  height: 300px;
  background: rgba(13, 148, 136, 0.08);
}

.orb-amber {
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.08);
}

/* --------------------------------------------------------------------------
   HERO LIVE SHOWROOM (Card Interativo com Abas Vivas)
   -------------------------------------------------------------------------- */
.hero-showroom {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero-showroom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--web-primary), var(--retro-primary), var(--cloud-primary), var(--maint-primary));
}

.showroom-nav {
  display: flex;
  gap: 0.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1.25rem;
  overflow-x: auto;
}

.showroom-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  padding: 0.5rem 0.85rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.showroom-tab-btn:hover {
  color: var(--text-main);
  background: var(--bg-secondary);
}

.showroom-tab-btn.active {
  color: white;
  background: var(--text-main);
}

[data-theme="dark"] .showroom-tab-btn.active {
  background: var(--brand-blue);
  color: white;
}

.showroom-tab-btn[data-tab="web"].active { background: var(--web-primary); }
.showroom-tab-btn[data-tab="maint"].active { background: var(--maint-primary); }
.showroom-tab-btn[data-tab="retro"].active { background: var(--retro-primary); }
.showroom-tab-btn[data-tab="cloud"].active { background: var(--cloud-primary); }

.showroom-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}

.showroom-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Painel Web Showcase */
.showroom-web-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
}

.speed-gauge-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: conic-gradient(#10b981 0% 100%, #e2e8f0 100% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.3);
}

.speed-gauge-inner {
  width: 58px;
  height: 58px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #10b981;
}

.speed-gauge-label {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: -3px;
}

/* Painel Hardware Showcase */
.showroom-thermal-box {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: var(--bg-secondary);
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-light);
}

.thermal-bar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

.thermal-bar-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 4px;
}

[data-theme="dark"] .thermal-bar-track {
  background: rgba(255, 255, 255, 0.1);
}

.thermal-bar-fill-hot {
  width: 92%;
  height: 100%;
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  border-radius: 4px;
}

.thermal-bar-fill-cool {
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, #06b6d4, #10b981);
  border-radius: 4px;
}

/* Painel Retrô Showcase */
.showroom-arcade-box {
  background: #090d16;
  color: #38bdf8;
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  border: 1px solid #1e293b;
  position: relative;
  overflow: hidden;
}

.arcade-screen-scanline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.15) 0px, rgba(0,0,0,0.15) 1px, transparent 2px);
  pointer-events: none;
}

.arcade-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #f472b6;
  margin-bottom: 0.75rem;
}

.arcade-pill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.arcade-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.4rem 0.5rem;
  border-radius: 6px;
  font-size: 0.75rem;
  text-align: center;
  color: #e2e8f0;
  font-weight: 600;
}

/* Painel Nuvem Showcase */
.showroom-cloud-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cloud-live-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.cloud-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

[data-theme="dark"] .cloud-progress-track {
  background: rgba(255, 255, 255, 0.1);
}

.cloud-progress-fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--cloud-primary), #10b981);
}

/* --------------------------------------------------------------------------
   VITRINE / PORTFÓLIO INTERATIVO
   -------------------------------------------------------------------------- */
.portfolio-filter-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.2rem;
  border-radius: var(--border-radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-btn:hover {
  color: var(--brand-blue);
  border-color: var(--brand-blue);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: var(--brand-blue);
  color: white;
  border-color: var(--brand-blue);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-glow);
}

.portfolio-badge-top {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--border-radius-full);
}

.portfolio-card.web .portfolio-badge-top { background: var(--web-bg); color: var(--web-primary); }
.portfolio-card.retro .portfolio-badge-top { background: var(--retro-bg); color: var(--retro-primary); }
.portfolio-card.cloud .portfolio-badge-top { background: var(--cloud-bg); color: var(--cloud-primary); }
.portfolio-card.maint .portfolio-badge-top { background: var(--maint-bg); color: var(--maint-primary); }

.portfolio-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.portfolio-card.web .portfolio-card-icon { background: var(--web-bg); color: var(--web-primary); }
.portfolio-card.retro .portfolio-card-icon { background: var(--retro-bg); color: var(--retro-primary); }
.portfolio-card.cloud .portfolio-card-icon { background: var(--cloud-bg); color: var(--cloud-primary); }
.portfolio-card.maint .portfolio-card-icon { background: var(--maint-bg); color: var(--maint-primary); }

.portfolio-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.portfolio-card p {
  font-size: 0.93rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.portfolio-tag {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: var(--border-radius-sm);
  color: var(--text-muted);
  font-weight: 500;
}

.portfolio-action-btn {
  margin-top: auto;
  width: 100%;
}

/* --------------------------------------------------------------------------
   COMPARADOR ANTES VS DEPOIS INTERATIVO
   -------------------------------------------------------------------------- */
.compare-interactive-section {
  margin-top: 4rem;
}

.compare-switcher-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.compare-tab-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.compare-tab-pill.active {
  background: var(--text-main);
  color: white;
}

[data-theme="dark"] .compare-tab-pill.active {
  background: var(--brand-blue);
  color: white;
}

.compare-split-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.compare-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.compare-box.before {
  border-top: 4px solid #ef4444;
}

.compare-box.after {
  border-top: 4px solid #10b981;
}

.compare-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.compare-state-badge {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius-full);
  text-transform: uppercase;
}

.compare-state-badge.bad { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.compare-state-badge.good { background: rgba(16, 185, 129, 0.12); color: #10b981; }

.compare-points-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.compare-point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
}

/* --------------------------------------------------------------------------
   CALCULADORA DE ECONOMIA DA NUVEM (Nextcloud vs Cloud Pública)
   -------------------------------------------------------------------------- */
.savings-calc-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.savings-slider-label {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.savings-range-input {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-secondary);
  outline: none;
  cursor: pointer;
  accent-color: var(--cloud-primary);
}

.savings-result-card {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.12) 0%, rgba(16, 185, 129, 0.15) 100%);
  border: 1px solid rgba(13, 148, 136, 0.35);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  text-align: center;
}

.savings-big-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--cloud-primary);
  line-height: 1.1;
  margin: 0.5rem 0;
}

/* --------------------------------------------------------------------------
   SELOS DE CONFIANÇA & GARANTIA BLINDADA (Trust Badges)
   -------------------------------------------------------------------------- */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.trust-badge-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.trust-badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-glow);
}

.trust-badge-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  color: var(--brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.trust-badge-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.trust-badge-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   PERGUNTAS FREQUENTES (FAQ ACORDEON)
   -------------------------------------------------------------------------- */
.faq-accordion {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.3);
}

.faq-header {
  padding: 1.35rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-main);
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--brand-blue);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq-item.active .faq-body {
  max-height: 400px;
  padding: 0 1.75rem 1.5rem 1.75rem;
}

/* --------------------------------------------------------------------------
   SOCIAL PROOF LIVE TOAST (Notificações em Tempo Real)
   -------------------------------------------------------------------------- */
.social-proof-toast {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-md);
  padding: 0.85rem 1.15rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1999;
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-width: 380px;
}

.social-proof-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.social-proof-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.social-proof-content {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.social-proof-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
}

.social-proof-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.social-proof-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.2rem;
  margin-left: auto;
  border-radius: 4px;
  transition: color var(--transition-fast);
}

.social-proof-close:hover {
  color: var(--text-main);
}

