/* ============================================================
   AutomaTEF — Landing Page de Vendas TEF (v2 – 13 seções)
   Paleta: Azul #0052FF + Verde #00B894 · Tipografia Poppins/Inter
   Ícones outline · Animações scroll (Intersection Observer)
   ============================================================ */

/* ── Fonts ──────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --tef-primary: #0052FF;
  --tef-primary-dark: #003BB5;
  --tef-primary-deeper: #002E8A;
  --tef-primary-light: #4D85FF;
  --tef-primary-faint: #EBF1FF;
  --tef-secondary: #00B894;
  --tef-secondary-dark: #00937A;
  --tef-secondary-faint: #E6F8F4;
  --tef-accent-red: #FF6B6B;
  --tef-accent-red-bg: #FFF0F0;
  --tef-text: #2d3436;
  --tef-text-soft: #57606f;
  --tef-text-muted: #95a5a6;
  --tef-bg: #F8F9FA;
  --tef-bg-soft: #FFFFFF;
  --tef-border: #E1E4E8;
  --tef-shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
  --tef-shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
  --tef-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
  --tef-shadow-md: 0 16px 48px rgba(0, 82, 255, 0.08);
  --tef-shadow-lg: 0 24px 64px rgba(0, 82, 255, 0.18);
  --tef-radius: 16px;
  --tef-radius-sm: 10px;
  --tef-radius-xs: 6px;
  --tef-radius-pill: 999px;
  --tef-ease: cubic-bezier(.22, .61, .36, 1);
  --tef-font: 'Poppins', 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset escopado (body.tef-lp) ──────────────────────────── */
body.tef-lp {
  font-family: var(--tef-font);
  color: var(--tef-text);
  background: var(--tef-bg);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.tef-lp h1,
body.tef-lp h2,
body.tef-lp h3,
body.tef-lp h4 {
  font-family: var(--tef-font);
  color: var(--tef-text);
  letter-spacing: -0.02em;
  line-height: 1.18;
}

body.tef-lp h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

body.tef-lp h2 {
  font-weight: 700;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
}

body.tef-lp h3 {
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

body.tef-lp p {
  color: var(--tef-text-soft);
}

/* ── Container ─────────────────────────────────────────────── */
.tef-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header override ───────────────────────────────────────── */
body.tef-lp #header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(225, 228, 232, 0.5);
  box-shadow: none;
}

body.tef-lp .nav-menu a {
  color: var(--tef-text);
  font-weight: 500;
}

body.tef-lp .nav-menu a:hover {
  color: var(--tef-primary);
}

/* Botões do topo (Área do Contador, Área do Cliente, Apoio Revenda, EAD Aulas)
   herdam texto/borda brancos do header escuro do portal — no header claro da LP
   ficam invisíveis. Reescopa pra paleta TEF, padronizando com os demais. */
body.tef-lp .nav-cta-secondary {
  border-color: var(--tef-border) !important;
  color: var(--tef-text) !important;
  background: var(--tef-bg-soft) !important;
  font-weight: 500;
}
body.tef-lp .nav-cta-secondary:hover {
  border-color: var(--tef-primary) !important;
  color: var(--tef-primary) !important;
  background: var(--tef-primary-faint) !important;
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.tef-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--tef-ease), transform 0.7s var(--tef-ease);
}

.tef-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.tef-reveal.delay-1 {
  transition-delay: 0.08s;
}

.tef-reveal.delay-2 {
  transition-delay: 0.16s;
}

.tef-reveal.delay-3 {
  transition-delay: 0.24s;
}

.tef-reveal.delay-4 {
  transition-delay: 0.32s;
}

.tef-reveal.delay-5 {
  transition-delay: 0.40s;
}

/* ── Buttons ───────────────────────────────────────────────── */
.tef-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--tef-radius-sm);
  font-family: var(--tef-font);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--tef-ease), box-shadow 0.25s var(--tef-ease), background 0.25s var(--tef-ease);
  white-space: nowrap;
}

.tef-btn-primary {
  background: var(--tef-primary);
  color: #fff;
  border-color: var(--tef-primary);
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.28);
}

.tef-btn-primary:hover {
  background: var(--tef-primary-dark);
  border-color: var(--tef-primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 82, 255, 0.4);
  color: #fff;
}

.tef-btn-green {
  background: var(--tef-secondary);
  color: #fff;
  border-color: var(--tef-secondary);
  box-shadow: 0 8px 24px rgba(0, 184, 148, 0.28);
}

.tef-btn-green:hover {
  background: var(--tef-secondary-dark);
  border-color: var(--tef-secondary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0, 184, 148, 0.4);
  color: #fff;
}

.tef-btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.tef-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

.tef-btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.28);
}

.tef-btn-whatsapp:hover {
  background: #1ea854;
  border-color: #1ea854;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.4);
  color: #fff;
}

.tef-btn-lg {
  padding: 20px 40px;
  font-size: 1.06rem;
}

.tef-btn-sm {
  padding: 12px 24px;
  font-size: 0.9rem;
}

/* ── Section generics ──────────────────────────────────────── */
.tef-section {
  padding: 100px 0;
  position: relative;
}

.tef-section--alt {
  background: var(--tef-bg-soft);
}

.tef-section--gray {
  background: var(--tef-bg);
}

.tef-section--dark {
  background: linear-gradient(135deg, #0f1e3a 0%, #1a2b4a 60%, #0f1e3a 100%);
  color: #fff;
}

.tef-section--dark h2,
.tef-section--dark h3 {
  color: #fff;
}

.tef-section--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.tef-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tef-primary-faint);
  color: var(--tef-primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--tef-radius-pill);
  margin-bottom: 20px;
}

.tef-eyebrow--white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.tef-section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.tef-section-header h2 {
  margin-bottom: 18px;
}

.tef-section-header p {
  font-size: 1.1rem;
  line-height: 1.65;
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 1 — HERO (Fundo Degradê Azul)
   ═══════════════════════════════════════════════════════════ */
.tef-hero {
  padding: 150px 0 90px;
  background: linear-gradient(135deg, #0052FF 0%, #003BB5 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}

/* Partículas decorativas */
.tef-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 15% 25%, rgba(255, 255, 255, 0.15) 50%, transparent 50%),
    radial-gradient(2px 2px at 35% 60%, rgba(255, 255, 255, 0.1) 50%, transparent 50%),
    radial-gradient(2px 2px at 55% 15%, rgba(255, 255, 255, 0.12) 50%, transparent 50%),
    radial-gradient(2px 2px at 75% 45%, rgba(255, 255, 255, 0.08) 50%, transparent 50%),
    radial-gradient(2px 2px at 90% 80%, rgba(255, 255, 255, 0.1) 50%, transparent 50%),
    radial-gradient(3px 3px at 20% 75%, rgba(255, 255, 255, 0.06) 50%, transparent 50%),
    radial-gradient(2px 2px at 60% 85%, rgba(255, 255, 255, 0.08) 50%, transparent 50%),
    radial-gradient(2px 2px at 80% 20%, rgba(255, 255, 255, 0.1) 50%, transparent 50%);
  pointer-events: none;
  animation: tef-twinkle 6s ease-in-out infinite alternate;
}

@keyframes tef-twinkle {
  0% {
    opacity: 0.6;
  }

  100% {
    opacity: 1;
  }
}

/* Glow orbs */
.tef-hero::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 184, 148, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.tef-hero .tef-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.tef-hero-content {
  max-width: 600px;
}

.tef-hero h1 {
  color: #fff;
  margin-bottom: 22px;
}

.tef-hero h1 .accent {
  color: var(--tef-secondary);
  position: relative;
}

.tef-hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.85);
}

.tef-hero-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tef-hero-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.tef-hero-checks li svg {
  width: 20px;
  height: 20px;
  color: var(--tef-secondary);
  flex-shrink: 0;
}

.tef-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.tef-hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tef-hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--tef-radius);
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.35));
}

/* Card flutuante de estatística */
.tef-hero-stat {
  position: absolute;
  bottom: -20px;
  left: -30px;
  background: #fff;
  border-radius: var(--tef-radius);
  padding: 20px 28px;
  box-shadow: var(--tef-shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  animation: tef-float 3s ease-in-out infinite;
}

@keyframes tef-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.tef-hero-stat .stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--tef-secondary);
  line-height: 1;
}

.tef-hero-stat .stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tef-text);
  line-height: 1.3;
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 2 — VÍDEO
   ═══════════════════════════════════════════════════════════ */
.tef-video-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}

.tef-video-wrapper {
  flex: 1 1 520px;
  max-width: 720px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: var(--tef-radius);
  overflow: hidden;
  box-shadow: var(--tef-shadow-lg);
  position: relative;
  background: #000;
  border: 1px solid var(--tef-border);
}

/* Variante vertical para YouTube Shorts (9:16) */
.tef-video-wrapper--short {
  flex: 0 0 auto;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9/16;
}

.tef-video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tef-video-wrapper::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: calc(var(--tef-radius) + 4px);
  background: linear-gradient(135deg, rgba(0, 82, 255, 0.4), rgba(0, 184, 148, 0.4));
  z-index: -1;
  filter: blur(40px);
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 5.1 — SMART POS TEF (vídeo Juliana + benefícios)
   ═══════════════════════════════════════════════════════════ */
.tef-smartpos {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
}

.tef-smartpos-video {
  margin: 0;
  width: 100%;
}

.tef-smartpos-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.tef-smartpos-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tef-smartpos-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  line-height: 1.45;
  color: var(--tef-text);
}

.tef-smartpos-list svg {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  color: var(--tef-secondary);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .tef-smartpos {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 420px;
  }
  .tef-smartpos-info { align-items: stretch; }
  .tef-smartpos-info .tef-btn { text-align: center; }
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 3 — PROBLEMA (SEM vs COM TEF)
   ═══════════════════════════════════════════════════════════ */
.tef-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.tef-problem-card {
  border-radius: var(--tef-radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.tef-problem-card--bad {
  background: #fff;
  border: 2px solid var(--tef-accent-red);
}

.tef-problem-card--bad::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #FF6B6B, #ee5a24);
}

.tef-problem-card--good {
  background: #fff;
  border: 2px solid var(--tef-secondary);
}

.tef-problem-card--good::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tef-secondary), var(--tef-primary));
}

.tef-problem-card h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.tef-problem-card--bad h3 {
  color: var(--tef-accent-red);
}

.tef-problem-card--good h3 {
  color: var(--tef-secondary);
}

.tef-problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tef-problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--tef-text-soft);
}

.tef-problem-list li .icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 1px;
}

.tef-problem-card--bad .icon {
  color: var(--tef-accent-red);
}

.tef-problem-card--good .icon {
  color: var(--tef-secondary);
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 4 — COMO FUNCIONA (5 Passos)
   ═══════════════════════════════════════════════════════════ */
.tef-timeline {
  display: flex;
  gap: 0;
  justify-content: center;
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}

/* Linha conectora */
.tef-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--tef-primary), var(--tef-secondary));
  border-radius: 2px;
  z-index: 0;
}

.tef-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.tef-step-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tef-primary), var(--tef-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  box-shadow: 0 8px 24px rgba(0, 82, 255, 0.3);
  position: relative;
}

.tef-step-number {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--tef-secondary);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 184, 148, 0.4);
}

.tef-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--tef-text);
}

.tef-step p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--tef-text-muted);
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 5 — FLUXOS DE INTEGRAÇÃO
   ═══════════════════════════════════════════════════════════ */
.tef-flows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 1060px;
  margin: 0 auto;
}

.tef-flow-card {
  background: #fff;
  border: 1px solid var(--tef-border);
  border-radius: var(--tef-radius);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--tef-ease), box-shadow 0.35s var(--tef-ease);
}

.tef-flow-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tef-shadow-md);
}

.tef-flow-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--tef-primary-faint);
  color: var(--tef-primary);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--tef-radius-pill);
  margin-bottom: 18px;
}

.tef-flow-card h3 {
  margin-bottom: 20px;
}

.tef-flow-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tef-flow-node {
  background: var(--tef-primary-faint);
  color: var(--tef-primary);
  padding: 10px 16px;
  border-radius: var(--tef-radius-sm);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.3s, transform 0.3s;
}

.tef-flow-node:hover {
  background: var(--tef-primary);
  color: #fff;
  transform: scale(1.05);
}

.tef-flow-arrow {
  color: var(--tef-text-muted);
  font-size: 1.1rem;
}

.tef-flow-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--tef-text-muted);
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--tef-border);
}

.tef-flow-meta svg {
  width: 16px;
  height: 16px;
  color: var(--tef-secondary);
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 6 — COMPARATIVO TEF (Tabela)
   ═══════════════════════════════════════════════════════════ */
.tef-comparison {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
  max-width: 980px;
}

.tef-comparison table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}

.tef-comparison thead th {
  background: var(--tef-primary);
  color: #fff;
  font-weight: 700;
  padding: 18px 24px;
  text-align: center;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.tef-comparison thead th:first-child {
  background: var(--tef-primary-dark);
  border-radius: var(--tef-radius) 0 0 0;
  text-align: left;
}

.tef-comparison thead th:last-child {
  border-radius: 0 var(--tef-radius) 0 0;
}

.tef-comparison tbody td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--tef-border);
  color: var(--tef-text-soft);
  vertical-align: top;
  line-height: 1.5;
  background: #fff;
}

.tef-comparison tbody td:first-child {
  font-weight: 600;
  color: var(--tef-text);
  background: var(--tef-bg);
  min-width: 160px;
}

.tef-comparison tbody tr:hover td {
  background: var(--tef-primary-faint);
}

.tef-comparison tbody tr:hover td:first-child {
  background: rgba(0, 82, 255, 0.08);
}

.tef-comparison tbody tr:last-child td:first-child {
  border-radius: 0 0 0 var(--tef-radius);
}

.tef-comparison tbody tr:last-child td:last-child {
  border-radius: 0 0 var(--tef-radius) 0;
}

/* Performance bars */
.tef-perf-bar {
  height: 8px;
  background: var(--tef-border);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.tef-perf-bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--tef-primary), var(--tef-secondary));
  transition: width 0.8s var(--tef-ease);
}

.tef-stars {
  color: #f59e0b;
  letter-spacing: 2px;
  font-size: 0.9rem;
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 7 — CONEXÕES (Bancos + Adquirentes)
   ═══════════════════════════════════════════════════════════ */
.tef-conn-group {
  margin-bottom: 48px;
}

.tef-conn-group:last-child {
  margin-bottom: 0;
}

.tef-conn-group-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--tef-text-muted);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.tef-conn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.tef-conn-item {
  background: #fff;
  border: 1px solid var(--tef-border);
  border-radius: var(--tef-radius-sm);
  padding: 16px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--tef-text);
  transition: transform 0.25s var(--tef-ease), box-shadow 0.25s var(--tef-ease), border-color 0.25s var(--tef-ease);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tef-conn-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--tef-shadow);
  border-color: var(--tef-primary-light);
}

.tef-conn-item .conn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--tef-primary);
  flex-shrink: 0;
}

.tef-conn-item.conn-adq .conn-dot {
  background: var(--tef-secondary);
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 8 — EQUIPAMENTOS HOMOLOGADOS
   ═══════════════════════════════════════════════════════════ */
.tef-devices-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.tef-devices-image {
  border: 3px solid var(--tef-primary);
  border-radius: var(--tef-radius);
  overflow: hidden;
  box-shadow: var(--tef-shadow-md);
  background: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tef-devices-image img {
  max-width: 100%;
  height: auto;
}

.tef-devices-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tef-info-box {
  background: #fff;
  border: 1px solid var(--tef-border);
  border-radius: var(--tef-radius);
  padding: 24px 28px;
  transition: transform 0.3s var(--tef-ease), box-shadow 0.3s var(--tef-ease);
}

.tef-info-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--tef-shadow);
}

.tef-info-box .info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--tef-primary-faint);
  color: var(--tef-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.tef-info-box .info-icon svg {
  width: 24px;
  height: 24px;
}

.tef-info-box h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.tef-info-box p {
  font-size: 0.92rem;
  line-height: 1.55;
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 9 — ANTES × DEPOIS
   ═══════════════════════════════════════════════════════════ */
.tef-ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
}

.tef-ba-card {
  border-radius: var(--tef-radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}

.tef-ba-card--before {
  background: #fff;
  border: 2px solid #dfe6e9;
}

.tef-ba-card--before::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dfe6e9, #b2bec3);
}

.tef-ba-card--after {
  background: #fff;
  border: 2px solid var(--tef-primary);
  box-shadow: var(--tef-shadow-md);
}

.tef-ba-card--after::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tef-primary), var(--tef-secondary));
}

.tef-ba-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.tef-ba-emoji {
  font-size: 1.6rem;
}

.tef-ba-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.tef-ba-card--before .tef-ba-title {
  color: var(--tef-text-muted);
}

.tef-ba-card--after .tef-ba-title {
  color: var(--tef-primary);
}

.tef-ba-subtitle {
  font-size: 0.88rem;
  color: var(--tef-text-muted);
  margin-bottom: 24px;
}

.tef-ba-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: ba;
}

.tef-ba-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--tef-text-soft);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.tef-ba-list li:last-child {
  border-bottom: none;
}

.tef-ba-list li .ba-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.tef-ba-card--before .ba-num {
  background: var(--tef-bg);
  color: var(--tef-text-muted);
}

.tef-ba-card--after .ba-num {
  background: var(--tef-primary-faint);
  color: var(--tef-primary);
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 10 — PRICING (Setup + 3 Planos)
   ═══════════════════════════════════════════════════════════ */
/* Setup banner */
.tef-setup-banner {
  background: linear-gradient(135deg, var(--tef-primary-faint), #fff);
  border: 2px solid var(--tef-primary);
  border-radius: var(--tef-radius);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}

.tef-setup-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--tef-primary), var(--tef-secondary));
}

.tef-setup-info h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: var(--tef-primary);
}

.tef-setup-info p {
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 500px;
}

.tef-setup-price {
  text-align: center;
  flex-shrink: 0;
}

.tef-setup-price .amount {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--tef-primary);
  display: block;
  line-height: 1;
}

.tef-setup-price .label {
  font-size: 0.82rem;
  color: var(--tef-text-muted);
  font-weight: 500;
}

.tef-setup-note {
  font-size: 0.82rem;
  color: var(--tef-text-muted);
  text-align: center;
  font-style: italic;
}

/* Plan cards */
.tef-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.tef-plan-card {
  background: #fff;
  border: 1px solid var(--tef-border);
  border-radius: var(--tef-radius);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.35s var(--tef-ease), border-color 0.35s var(--tef-ease), box-shadow 0.35s var(--tef-ease);
}

.tef-plan-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 82, 255, 0.3);
  box-shadow: var(--tef-shadow-md);
}

.tef-plan-card.is-popular {
  border: 2px solid var(--tef-primary);
  box-shadow: var(--tef-shadow-md);
  transform: scale(1.05);
  z-index: 2;
}

.tef-plan-card.is-popular:hover {
  transform: scale(1.05) translateY(-6px);
}

.tef-plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--tef-primary), var(--tef-secondary));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: var(--tef-radius-pill);
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(0, 82, 255, 0.4);
}

.tef-plan-for {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tef-primary);
  font-weight: 700;
  margin-bottom: 6px;
}

.tef-plan-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--tef-text);
  margin-bottom: 8px;
  line-height: 1.2;
}

.tef-plan-desc {
  font-size: 0.88rem;
  color: var(--tef-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.tef-plan-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--tef-text);
  margin-bottom: 4px;
  line-height: 1;
}

.tef-plan-price .moeda {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tef-text-muted);
  margin-right: 4px;
  vertical-align: super;
}

.tef-plan-price .periodo {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--tef-text-muted);
}

.tef-plan-extra {
  font-size: 0.84rem;
  color: var(--tef-text-muted);
  margin-bottom: 24px;
}

.tef-plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tef-plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--tef-text-soft);
  line-height: 1.5;
}

.tef-plan-list li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--tef-secondary);
  margin-top: 2px;
}

.tef-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 18px;
  border-radius: var(--tef-radius-sm);
  background: var(--tef-bg);
  color: var(--tef-text);
  font-weight: 600;
  font-size: 0.94rem;
  border: 1.5px solid var(--tef-border);
  text-decoration: none;
  transition: all 0.25s var(--tef-ease);
}

.tef-plan-cta:hover {
  background: var(--tef-primary);
  color: #fff;
  border-color: var(--tef-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 82, 255, 0.28);
}

.tef-plan-card.is-popular .tef-plan-cta {
  background: var(--tef-primary);
  color: #fff;
  border-color: var(--tef-primary);
}

.tef-plan-card.is-popular .tef-plan-cta:hover {
  background: var(--tef-primary-dark);
  border-color: var(--tef-primary-dark);
}

.tef-plans-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 0.86rem;
  color: var(--tef-text-muted);
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 11 — BENEFÍCIOS (4 Cards)
   ═══════════════════════════════════════════════════════════ */
.tef-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.tef-benefit-card {
  background: #fff;
  border: 1px solid var(--tef-border);
  border-radius: var(--tef-radius);
  padding: 36px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--tef-ease), box-shadow 0.35s var(--tef-ease);
}

.tef-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--tef-primary), var(--tef-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--tef-ease);
}

.tef-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--tef-shadow-md);
}

.tef-benefit-card:hover::before {
  transform: scaleX(1);
}

.tef-benefit-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--tef-secondary-faint);
  color: var(--tef-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 1.5rem;
}

.tef-benefit-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.tef-benefit-card p {
  font-size: 0.92rem;
  line-height: 1.6;
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 12 — CTA FINAL
   ═══════════════════════════════════════════════════════════ */
.tef-final-cta {
  background: linear-gradient(135deg, #0052FF, #00B894);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tef-final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(2px 2px at 10% 20%, rgba(255, 255, 255, 0.12) 50%, transparent 50%),
    radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.08) 50%, transparent 50%),
    radial-gradient(2px 2px at 70% 30%, rgba(255, 255, 255, 0.1) 50%, transparent 50%),
    radial-gradient(2px 2px at 85% 65%, rgba(255, 255, 255, 0.06) 50%, transparent 50%);
  pointer-events: none;
}

.tef-final-cta .tef-container {
  position: relative;
  z-index: 1;
}

.tef-final-cta h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  margin-bottom: 18px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.tef-final-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 40px;
}

.tef-final-cta .tef-btn {
  margin: 0 8px 12px;
}

.tef-cta-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.tef-cta-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 500;
}

.tef-cta-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}


/* ═══════════════════════════════════════════════════════════
   SEÇÃO 13 — FOOTER (customizado)
   ═══════════════════════════════════════════════════════════ */
body.tef-lp #footer {
  background: #1a2035;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 64px;
}

body.tef-lp #footer h4 {
  color: #fff;
}

body.tef-lp #footer a:hover {
  color: var(--tef-primary-light);
}


/* ═══════════════════════════════════════════════════════════
   STICKY CTA MOBILE
   ═══════════════════════════════════════════════════════════ */
.tef-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 12px 16px;
  border-top: 1px solid var(--tef-border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.tef-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 16px;
  border-radius: var(--tef-radius-sm);
  background: var(--tef-secondary);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 184, 148, 0.4);
}


/* ═══════════════════════════════════════════════════════════
   RESPONSIVO
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .tef-section {
    padding: 80px 0;
  }

  .tef-hero {
    padding: 130px 0 70px;
  }

  .tef-hero .tef-container {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .tef-hero-content {
    margin: 0 auto;
    max-width: 100%;
  }

  .tef-hero-ctas {
    justify-content: center;
  }

  .tef-hero-checks {
    align-items: center;
  }

  .tef-hero-stat {
    left: auto;
    right: 20px;
  }

  .tef-timeline {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .tef-timeline::before {
    top: 40px;
    bottom: 40px;
    left: 40px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .tef-step {
    display: flex;
    text-align: left;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    padding: 0 0 0 20px;
  }

  .tef-step-circle {
    margin: 0;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }

  .tef-flows {
    grid-template-columns: 1fr;
  }

  .tef-comparison table {
    min-width: 600px;
  }

  .tef-devices-grid {
    grid-template-columns: 1fr;
  }

  .tef-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .tef-plans {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .tef-plan-card.is-popular {
    transform: none;
  }

  .tef-plan-card.is-popular:hover {
    transform: translateY(-6px);
  }

  .tef-setup-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
}

@media (max-width: 768px) {
  .tef-hero {
    padding: 120px 0 60px;
  }

  .tef-problem-grid {
    grid-template-columns: 1fr;
  }

  .tef-ba-grid {
    grid-template-columns: 1fr;
  }

  .tef-final-cta {
    padding: 70px 0;
  }

  .tef-cta-badges {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .tef-sticky-cta {
    display: block;
  }

  body.tef-lp {
    padding-bottom: 80px;
  }

  body.tef-lp .float-whatsapp {
    bottom: 80px;
  }
}

@media (max-width: 640px) {
  .tef-benefits {
    grid-template-columns: 1fr;
  }

  .tef-section-header {
    margin-bottom: 48px;
  }

  .tef-btn {
    padding: 14px 24px;
    font-size: 0.92rem;
  }

  .tef-btn-lg {
    padding: 16px 28px;
    font-size: 0.98rem;
  }

  .tef-flow-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .tef-flow-arrow {
    transform: rotate(90deg);
  }

  .tef-conn-grid {
    gap: 10px;
  }

  .tef-conn-item {
    padding: 12px 16px;
    font-size: 0.82rem;
  }
}

/* ════════════════════════════════════════════════════════════
   PÁGINA: Máquinas homologadas (automatef-maquinas.php)
   ════════════════════════════════════════════════════════════ */

/* Hero da página de máquinas */
.tef-maq-hero {
  padding-top: 120px;
}
.tef-maq-h1 {
  font-size: clamp(1.9rem, 4.2vw, 3rem);
  font-weight: 800;
}
/* O hero é tef-section--dark. As regras body.tef-lp h1/p têm especificidade
   maior que .tef-section--dark h2/p, então o texto sairia escuro (invisível).
   Reescopa com body.tef-lp .tef-maq-hero (mais específico) pra garantir branco. */
body.tef-lp .tef-maq-hero h1 { color: #fff; }
body.tef-lp .tef-maq-hero .tef-section-header p { color: rgba(255, 255, 255, 0.82); }
.tef-maq-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 8px;
}
.tef-maq-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--tef-radius);
  padding: 18px 28px;
  text-align: center;
  min-width: 150px;
  backdrop-filter: blur(6px);
}
.tef-maq-stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.tef-maq-stat span {
  display: block;
  margin-top: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
}

/* Busca */
.tef-maq-search {
  position: relative;
  max-width: 540px;
  margin: 28px auto 0;
}
.tef-maq-search svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: var(--tef-text-muted);
  pointer-events: none;
}
.tef-maq-search input {
  width: 100%;
  padding: 16px 18px 16px 50px;
  border: none;
  border-radius: var(--tef-radius-pill);
  font-family: var(--tef-font);
  font-size: 0.95rem;
  color: var(--tef-text);
  background: #fff;
  box-shadow: var(--tef-shadow-md);
  outline: none;
}
.tef-maq-search input:focus {
  box-shadow: 0 0 0 3px var(--tef-primary-light);
}

/* Os 3 métodos */
.tef-maq-metodos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 8px;
}
.tef-maq-metodo {
  background: var(--tef-bg-soft);
  border: 1px solid var(--tef-border);
  border-top: 4px solid var(--tef-primary);
  border-radius: var(--tef-radius);
  padding: 28px 24px;
  box-shadow: var(--tef-shadow-sm);
  transition: transform 0.3s var(--tef-ease), box-shadow 0.3s var(--tef-ease);
}
.tef-maq-metodo:hover {
  transform: translateY(-4px);
  box-shadow: var(--tef-shadow-md);
}
.tef-maq-metodo--loja        { border-top-color: var(--tef-secondary); }
.tef-maq-metodo--homologacao { border-top-color: var(--tef-primary); }
.tef-maq-metodo--msitef      { border-top-color: var(--tef-accent-red); }
.tef-maq-metodo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.tef-maq-metodo-icon { font-size: 1.8rem; }
.tef-maq-metodo h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.tef-maq-metodo p {
  font-size: 0.9rem;
  color: var(--tef-text-soft);
  margin-bottom: 16px;
}
.tef-maq-metodo-tempo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tef-text);
}
.tef-maq-metodo-tempo svg { width: 16px; height: 16px; color: var(--tef-primary); }

/* Badge de método */
.tef-maq-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: var(--tef-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.tef-maq-badge--loja        { background: var(--tef-secondary-faint); color: var(--tef-secondary-dark); }
.tef-maq-badge--homologacao { background: var(--tef-primary-faint);   color: var(--tef-primary-dark); }
.tef-maq-badge--msitef      { background: var(--tef-accent-red-bg);   color: #d63031; }

/* Filtros */
.tef-maq-filtros {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.tef-maq-filtro {
  padding: 9px 18px;
  border: 1px solid var(--tef-border);
  background: var(--tef-bg-soft);
  border-radius: var(--tef-radius-pill);
  font-family: var(--tef-font);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tef-text-soft);
  cursor: pointer;
  transition: all 0.2s var(--tef-ease);
}
.tef-maq-filtro:hover { border-color: var(--tef-primary-light); color: var(--tef-primary); }
.tef-maq-filtro.is-active {
  background: var(--tef-primary);
  border-color: var(--tef-primary);
  color: #fff;
  box-shadow: var(--tef-shadow-sm);
}

/* Grid de cards de adquirente */
.tef-maq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.tef-maq-card {
  background: var(--tef-bg-soft);
  border: 1px solid var(--tef-border);
  border-radius: var(--tef-radius);
  padding: 22px;
  box-shadow: var(--tef-shadow-xs);
  transition: transform 0.3s var(--tef-ease), box-shadow 0.3s var(--tef-ease), border-color 0.3s var(--tef-ease);
}
.tef-maq-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tef-shadow-md);
  border-color: var(--tef-primary-light);
}
.tef-maq-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.tef-maq-card-head h3 {
  font-size: 1.15rem;
  font-weight: 700;
}
.tef-maq-modelos {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 16px;
}
.tef-maq-chip {
  padding: 5px 11px;
  background: var(--tef-bg);
  border: 1px solid var(--tef-border);
  border-radius: var(--tef-radius-xs);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--tef-text);
}
.tef-maq-nota {
  font-size: 0.85rem;
  color: var(--tef-text-soft);
  font-style: italic;
  margin-bottom: 16px;
}
.tef-maq-card-foot {
  font-size: 0.75rem;
  color: var(--tef-text-muted);
  padding-top: 12px;
  border-top: 1px dashed var(--tef-border);
}

/* Empty state da busca */
.tef-maq-empty {
  text-align: center;
  padding: 40px 20px;
}
.tef-maq-empty p {
  font-size: 1.05rem;
  color: var(--tef-text-soft);
  margin-bottom: 16px;
}

/* Aviso */
.tef-maq-aviso {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--tef-primary-faint);
  border: 1px solid var(--tef-primary-light);
  border-radius: var(--tef-radius);
  padding: 26px 28px;
}
.tef-maq-aviso-icon { font-size: 1.8rem; line-height: 1; }
.tef-maq-aviso h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.tef-maq-aviso p { font-size: 0.92rem; color: var(--tef-text-soft); }

/* Responsivo */
@media (max-width: 860px) {
  .tef-maq-metodos { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .tef-maq-stat { min-width: 120px; padding: 14px 20px; }
  .tef-maq-stat strong { font-size: 1.6rem; }
  .tef-maq-aviso { flex-direction: column; gap: 12px; }
}
