/* =========================================================
   WEB ORAGO — Design System (tema claro)
   Fundo claro + acentos índigo/roxo/lavanda, hexágono como
   assinatura visual, foco em conversão via WhatsApp.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  /* Base clara */
  --bg: #FFFFFF;
  --bg-soft: #F6F5FC;
  --bg-alt: #EFECFB;
  --ink: #14142B;
  --ink-soft: #5B5B72;
  --border: #E7E4F5;

  /* Marca */
  --indigo: #4F46E5;
  --purple: #534AB7;
  --lavender: #AFA9EC;
  --lavender-soft: #E4E1FB;

  /* Produtos */
  --erp-1: #534AB7;   --erp-2: #185FA5;
  --food-1: #F97316;  --food-2: #16A34A;
  --style-1: #EC4899; --style-2: #9333EA;
  --ponto-1: #4F46E5; --ponto-2: #534AB7;

  /* WhatsApp */
  --whats: #25D366;
  --whats-dark: #1DA851;

  /* Tipografia */
  --font-display: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 16px;
  --radius-sm: 10px;
  --container: 1180px;
  --shadow: 0 10px 30px -12px rgba(20, 20, 43, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
.hidden { display: none !important; }

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--indigo); color: #fff; padding: 12px 20px;
  border-radius: 0 0 8px 0; z-index: 999; font-weight: 600; font-size: 0.9rem;
}
.skip-link:focus { left: 0; top: 0; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.hex-field { position: relative; overflow: hidden; }
.hex-field::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='84' height='96' viewBox='0 0 84 96'%3E%3Cpath d='M42 0 84 24 84 72 42 96 0 72 0 24Z' fill='none' stroke='%234F46E5' stroke-opacity='0.08' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 84px 96px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 10%, black 35%, transparent 80%);
  pointer-events: none;
}

.hex {
  --hex-a: var(--indigo);
  --hex-b: var(--purple);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(145deg, var(--hex-a), var(--hex-b));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: #fff;
}

/* Logos reais (produtos + marca Web Orago). Tenta carregar a imagem; se o arquivo
   ainda não existir, volta pro hexágono CSS automaticamente (ver onerror inline). */
.logo-icon { object-fit: contain; display: block; flex-shrink: 0; }
.logo-fallback.logo-fallback { display: none; }
.brand .hex, .brand .logo-icon { width: 32px; height: 32px; font-size: 0.85rem; }
.mega-item .hex, .mega-item .logo-icon { width: 38px; height: 38px; font-size: 0.9rem; flex-shrink: 0; }
.product-card .hex, .product-card .logo-icon { width: 52px; height: 52px; margin-bottom: 18px; }
.chat-head .hex, .chat-head .logo-icon { width: 26px; height: 26px; }
.footer-product-badge .hex, .footer-product-badge .logo-icon { width: 28px; height: 28px; }
.hero-visual .hex, .hero-visual .logo-icon { width: 96px; height: 96px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--purple);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 14px;
}

/* =================== HEADER + MEGA MENU =================== */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.1rem; }
.brand .hex { width: 32px; height: 32px; font-size: 0.85rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > a, .has-mega > button {
  font-size: 0.95rem; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s; background: none; border: none;
  display: flex; align-items: center; gap: 4px; padding: 0;
}
.nav-links > a:hover, .has-mega:hover > button { color: var(--indigo); }
.has-mega { position: relative; }
.has-mega svg { width: 14px; height: 14px; }
.mega-panel {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 620px;
  max-width: min(620px, calc(100vw - 48px));
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-top: 14px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}
/* Controlado via JS (classe .mega-open) — evita que o hover "vaze"
   para o menu vizinho e garante que só um dropdown fica aberto por vez. */
.has-mega.mega-open .mega-panel { display: grid; }
.mega-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px; border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.mega-item:hover { background: var(--bg-soft); }
.mega-item .hex { width: 38px; height: 38px; font-size: 0.9rem; flex-shrink: 0; }
.mega-item strong { display: block; font-size: 0.92rem; }
.mega-item span { display: block; font-size: 0.8rem; color: var(--ink-soft); margin-top: 2px; }
.nav-cta-group { display: flex; align-items: center; gap: 12px; }
.nav-whats {
  display: flex; align-items: center; gap: 8px;
  background: var(--whats); color: #fff;
  padding: 9px 18px; border-radius: 999px;
  font-weight: 600; font-size: 0.88rem;
}
.nav-whats svg { width: 16px; height: 16px; fill: #fff; }
#mobile-menu-btn { display: none; background: none; border: none; color: var(--ink); }
#mobile-menu {
  display: none; flex-direction: column; padding: 8px 24px 20px;
  border-top: 1px solid var(--border);
  max-height: calc(100vh - 64px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
body.menu-open { overflow: hidden; }
#mobile-menu a, #mobile-menu .mm-group-title { padding: 12px 0; color: var(--ink-soft); border-bottom: 1px solid var(--border); }
#mobile-menu .mm-group-title { color: var(--ink); font-weight: 700; border-bottom: none; padding-bottom: 4px; }
#mobile-menu.open { display: flex; }

@media (max-width: 900px) {
  .nav-links, .nav-cta-group { display: none; }
  #mobile-menu-btn { display: block; }
}

/* =================== HERO =================== */
.hero { padding: 90px 0 60px; text-align: center; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800; line-height: 1.14; letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.hero h1 span {
  background: linear-gradient(120deg, var(--purple), var(--indigo));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p { font-size: 1.12rem; color: var(--ink-soft); max-width: 600px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary, .btn-secondary, .btn-whats {
  padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 0.94rem;
  border: none; transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary { background: linear-gradient(120deg, var(--indigo), var(--purple)); color: #fff; box-shadow: 0 10px 24px -8px rgba(79,70,229,0.5); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary { background: var(--bg); color: var(--ink); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--indigo); color: var(--indigo); }
.btn-whats { background: var(--whats); color: #fff; box-shadow: 0 10px 24px -8px rgba(37,211,102,0.5); }
.btn-whats:hover { background: var(--whats-dark); transform: translateY(-2px); }
.btn-whats svg { width: 18px; height: 18px; fill: #fff; }

.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 60px; padding: 32px 0; border-top: 1px solid var(--border);
}
.stats-strip .item { text-align: center; }
.stats-strip .item b { display: block; font-size: 2rem; font-weight: 800; color: var(--indigo); }
.stats-strip .item span { font-size: 0.85rem; color: var(--ink-soft); }
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }

/* =================== SECTION SHELL =================== */
section { padding: 90px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin: 0 0 14px; letter-spacing: -0.01em; }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; margin: 0; }
.alt-bg { background: var(--bg-soft); }

/* =================== ECOSSISTEMA / PRODUTOS =================== */
.eco-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 22px; }
.product-card {
  --p1: var(--indigo); --p2: var(--purple);
  position: relative; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px 24px; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(120deg, var(--p1), var(--p2));
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.product-card .hex { width: 52px; height: 52px; --hex-a: var(--p1); --hex-b: var(--p2); margin-bottom: 18px; font-size: 1.3rem; font-weight: 800; }
.product-card h3 { margin: 0 0 8px; font-size: 1.2rem; font-weight: 700; }
.product-card p { color: var(--ink-soft); font-size: 0.93rem; margin: 0 0 18px; }
.product-card .card-actions { display: flex; flex-direction: column; gap: 8px; position: relative; z-index: 1; }
.product-card .card-actions a { font-size: 0.85rem; font-weight: 600; }
.product-card .card-actions .acessar { color: var(--p1); }
.product-card .card-actions .whats-link { color: var(--whats-dark); display: inline-flex; align-items: center; gap: 6px; }
.product-card .card-actions .whats-link svg { width: 14px; height: 14px; fill: var(--whats-dark); }
.product-card .domain { font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); display: block; margin-bottom: 10px; }

.product-card.erp   { --p1: var(--erp-1);   --p2: var(--erp-2); }
.product-card.food  { --p1: var(--food-1);  --p2: var(--food-2); }
.product-card.style { --p1: var(--style-1); --p2: var(--style-2); }
.product-card.ponto { --p1: var(--ponto-1); --p2: var(--ponto-2); }

/* =================== SERVIÇOS =================== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 18px; }
.service-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.service-card .hex { width: 42px; height: 42px; margin-bottom: 14px; }
.service-card svg { width: 20px; height: 20px; stroke: #fff; }
.service-card h3 { font-size: 1.02rem; margin: 0 0 8px; font-weight: 700; }
.service-card p { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }

/* =================== POR QUE / SOBRE =================== */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.about-wrap h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 16px; }
.about-wrap p { color: var(--ink-soft); margin: 0 0 14px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.about-facts div { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px; }
.about-facts b { display: block; font-size: 0.72rem; color: var(--purple); font-family: var(--font-mono); text-transform: uppercase; margin-bottom: 4px; }
.about-visual {
  min-height: 320px; border-radius: var(--radius);
  background: linear-gradient(155deg, var(--lavender-soft), var(--bg-soft));
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
@media (max-width: 860px) { .about-wrap { grid-template-columns: 1fr; } }

/* =================== GERADORES DE IA =================== */
.ai-tool { max-width: 620px; margin: 0 auto; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.ai-tool input[type="text"] {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-soft); color: var(--ink);
  font-size: 0.95rem; margin-bottom: 14px;
}
.ai-tool input[type="text"]:focus { outline: none; border-color: var(--indigo); }
.ai-tool .btn-primary { width: 100%; justify-content: center; }
.ai-output { margin-top: 20px; padding: 20px; background: var(--bg-soft); border-radius: var(--radius-sm); font-size: 0.92rem; color: var(--ink-soft); text-align: left; }
.ai-output h1, .ai-output h2, .ai-output h3, .ai-output strong { color: var(--ink); }
.ai-output img { border-radius: var(--radius-sm); margin-top: 10px; }
.spinner { width: 22px; height: 22px; border: 3px solid var(--indigo); border-top-color: transparent; border-radius: 50%; margin: 16px auto 0; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* =================== CTA FINAL (WhatsApp em vez de formulário) =================== */
.cta-final {
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  border-radius: 24px; padding: 56px 40px; text-align: center; color: #fff;
}
.cta-final h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 12px; }
.cta-final p { color: rgba(255,255,255,0.85); max-width: 480px; margin: 0 auto 30px; }
.cta-channels { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-channel {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-sm); padding: 16px 22px; text-align: left;
  min-width: 200px; transition: background 0.2s;
}
.cta-channel:hover { background: rgba(255,255,255,0.2); }
.cta-channel b { display: block; font-size: 0.95rem; margin-bottom: 4px; }
.cta-channel span { font-size: 0.82rem; color: rgba(255,255,255,0.8); }

/* =================== FOOTER =================== */
footer { border-top: 1px solid var(--border); padding: 50px 0 100px; background: var(--bg-soft); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-grid h4 { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--purple); font-family: var(--font-mono); margin: 0 0 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--ink-soft); font-size: 0.9rem; }
.footer-grid a:hover { color: var(--indigo); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; color: var(--ink-soft); }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }

/* =================== BARRA FIXA INFERIOR (mobile) =================== */
.sticky-cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 190;
  background: var(--bg); border-top: 1px solid var(--border);
  box-shadow: 0 -6px 20px rgba(20,20,43,0.08);
  display: flex;
}
.sticky-cta-bar a {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 10px 6px; font-size: 0.72rem; font-weight: 600; color: var(--ink-soft);
  border-right: 1px solid var(--border);
}
.sticky-cta-bar a:last-child { border-right: none; }
.sticky-cta-bar a svg { width: 20px; height: 20px; }
.sticky-cta-bar a.whats { color: var(--whats-dark); }
.sticky-cta-bar a.whats svg { fill: var(--whats-dark); }
@media (min-width: 761px) { .sticky-cta-bar { display: none; } }

/* =================== CHAT IA (assistente do site) =================== */
#chat-launcher {
  position: fixed; bottom: 26px; right: 26px; z-index: 200;
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(140deg, var(--indigo), var(--purple));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(79,70,229,0.45); border: none; transition: transform 0.2s;
}
#chat-launcher:hover { transform: scale(1.08); }
#chat-launcher svg { width: 26px; height: 26px; stroke: #fff; }

#chat-window {
  position: fixed; bottom: 96px; right: 26px; z-index: 200;
  width: 350px; max-width: calc(100vw - 40px); height: 460px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); display: none; flex-direction: column; overflow: hidden;
}
#chat-window.open { display: flex; }
.chat-head { padding: 14px 16px; background: linear-gradient(120deg, var(--indigo), var(--purple)); color: #fff; display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 0.92rem; }
.chat-head .hex { width: 26px; height: 26px; background: rgba(255,255,255,0.25); font-size: 0.65rem; }
#chat-messages { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 9px; background: var(--bg-soft); }
.msg { max-width: 82%; padding: 9px 13px; border-radius: 14px; font-size: 0.86rem; line-height: 1.45; }
.msg.bot { background: var(--bg); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.msg.user { background: var(--indigo); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-input-row { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--border); background: var(--bg); }
.chat-input-row input { flex: 1; padding: 9px 13px; border-radius: 999px; border: 1px solid var(--border); background: var(--bg-soft); color: var(--ink); font-size: 0.86rem; }
.chat-input-row input:focus { outline: none; border-color: var(--indigo); }
.chat-input-row button { width: 36px; height: 36px; border-radius: 50%; border: none; background: linear-gradient(120deg, var(--indigo), var(--purple)); display: flex; align-items: center; justify-content: center; }
.chat-input-row button svg { width: 15px; height: 15px; stroke: #fff; }
.chat-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--indigo); display: inline-block; animation: pulse 1s infinite ease-in-out; }
.chat-dot:nth-child(2) { animation-delay: 0.15s; }
.chat-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes pulse { 0%, 80%, 100% { opacity: 0.3; } 40% { opacity: 1; } }

@media (max-width: 760px) {
  #chat-launcher { bottom: 76px; }
  #chat-window { bottom: 144px; left: 12px; width: auto; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

/* =================== VOLTAR AO TOPO =================== */
#back-to-top {
  position: fixed; bottom: 26px; left: 26px; z-index: 190;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(20,20,43,0.3);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
}
#back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#back-to-top:hover { background: var(--indigo); }
#back-to-top svg { width: 20px; height: 20px; stroke: #fff; }
@media (max-width: 760px) { #back-to-top { bottom: 76px; } }

/* =================== REDES SOCIAIS (rodapé) =================== */
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, transform 0.2s;
}
.footer-social a:hover { border-color: var(--indigo); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; fill: var(--ink-soft); }
.footer-social a:hover svg { fill: var(--indigo); }

/* =================== BADGES DE APP (App do Colaborador) =================== */
.store-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.store-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff;
  border: 1px solid #2a2a45; border-radius: 10px;
  padding: 8px 14px; font-size: 0.78rem; line-height: 1.2;
}
.store-badge svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
.store-badge b { display: block; font-size: 0.88rem; }
.store-badge span { display: block; font-size: 0.66rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.03em; }

/* =================== STAT CARDS (estilo cards com ícone circular) =================== */
.stats-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 20px;
  text-align: center;
}
.stat-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.stat-icon.tone-purple { background: var(--lavender-soft); }
.stat-icon.tone-orange { background: #FDE9DA; }
.stat-icon svg { width: 26px; height: 26px; }
.stat-icon.tone-purple svg { stroke: var(--purple); color: var(--purple); }
.stat-icon.tone-orange svg { stroke: #EA6A12; color: #EA6A12; }
.stat-card b { display: block; font-size: 2.1rem; font-weight: 800; margin-bottom: 6px; }
.stat-card span { color: var(--ink-soft); font-size: 0.95rem; }
@media (max-width: 860px) { .stats-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .stats-cards { grid-template-columns: 1fr; } }

/* =================== PLACEHOLDER DE IMAGEM (para o cliente substituir depois) =================== */
.img-placeholder {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--ink-soft); text-align: center; padding: 24px;
  min-height: 260px;
}
.img-placeholder svg { width: 36px; height: 36px; stroke: var(--lavender); }
.img-placeholder b { font-size: 0.85rem; color: var(--ink); }
.img-placeholder span { font-size: 0.78rem; }

/* Preparado para receber a imagem real: some arquivo -> troca automática, sem editar HTML/CSS de novo */
.img-placeholder img { display: none; }
.img-placeholder.has-image {
  border: none; background: none; padding: 0; display: block; min-height: 0;
}
.img-placeholder.has-image img { display: block; width: 100%; height: auto; border-radius: var(--radius); }
.img-placeholder.has-image svg, .img-placeholder.has-image b, .img-placeholder.has-image span { display: none; }

/* =================== SHOWCASE DETALHADO POR SISTEMA =================== */
.showcase-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.showcase-item:last-child { border-bottom: none; }
.showcase-item.reverse .showcase-copy { order: 2; }
.showcase-item.reverse .showcase-media { order: 1; }
.showcase-copy .tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 0.75rem; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; font-weight: 600;
}
.showcase-copy h3 { font-size: 1.6rem; font-weight: 800; margin: 0 0 12px; }
.showcase-copy p { color: var(--ink-soft); margin: 0 0 18px; }
.showcase-copy ul { list-style: none; padding: 0; margin: 0 0 24px; }
.showcase-copy li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 10px; font-size: 0.94rem; }
.showcase-copy li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.showcase-actions { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .showcase-item, .showcase-item.reverse { grid-template-columns: 1fr; }
  .showcase-item.reverse .showcase-copy, .showcase-item.reverse .showcase-media { order: unset; }
}

/* =================== PROJETOS SOB ENCOMENDA (portfólio) =================== */
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.portfolio-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.portfolio-card .img-placeholder { min-height: 180px; border-radius: 0; border-width: 0 0 1px; }
.portfolio-card .portfolio-body { padding: 22px; }
.portfolio-card .segment-badge { font-size: 0.72rem; font-family: var(--font-mono); text-transform: uppercase; color: var(--purple); background: var(--lavender-soft); padding: 4px 10px; border-radius: 999px; display: inline-block; margin-bottom: 12px; }
.portfolio-card h4 { font-size: 1.05rem; margin: 0 0 8px; font-weight: 700; }
.portfolio-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0; }
.portfolio-link { display: inline-block; margin-top: 12px; font-size: 0.84rem; font-weight: 600; color: var(--indigo); }
.portfolio-link:hover { text-decoration: underline; }

/* =================== SEGMENTOS ATENDIDOS =================== */
.segments-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.segment-chip {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 18px; display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: 0.92rem;
  transition: border-color 0.2s, transform 0.2s;
}
.segment-chip:hover { border-color: var(--indigo); transform: translateY(-3px); }
.segment-chip .hex { width: 34px; height: 34px; font-size: 0.85rem; }

/* Mega menu de segmentos: lista simples em colunas, sem ícone hexagonal */
.mega-panel.segments-panel { width: 480px; grid-template-columns: repeat(2, 1fr); }
.segments-panel a { padding: 10px 12px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; color: var(--ink-soft); }
.segments-panel a:hover { background: var(--bg-soft); color: var(--indigo); }

/* =================== SEGMENTOS (cards com subtipos + tooltip) =================== */
.segment-card {
  position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; cursor: default; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.segment-card:hover, .segment-card:focus-within { border-color: var(--indigo); transform: translateY(-3px); box-shadow: var(--shadow); }
.segment-card .hex { width: 40px; height: 40px; font-size: 0.95rem; margin-bottom: 14px; }
.segment-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.segment-card .segment-types { font-size: 0.84rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }
.segment-tooltip {
  position: absolute; left: 16px; right: 16px; bottom: calc(100% + 10px); z-index: 20;
  background: var(--ink); color: #fff; border-radius: var(--radius-sm);
  padding: 14px 16px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.segment-card:hover .segment-tooltip, .segment-card:focus-within .segment-tooltip { opacity: 1; visibility: visible; transform: translateY(0); }
.segment-tooltip::after {
  content: ""; position: absolute; top: 100%; left: 28px; width: 0; height: 0;
  border: 7px solid transparent; border-top-color: var(--ink);
}
.segment-tooltip b { display: block; font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--lavender); margin-bottom: 8px; }
.segment-tooltip ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.segment-tooltip li { font-size: 0.78rem; background: rgba(255,255,255,0.12); padding: 4px 10px; border-radius: 999px; }
@media (max-width: 640px) {
  .segment-tooltip { position: static; opacity: 1; visibility: visible; transform: none; margin-top: 12px; box-shadow: none; }
  .segment-tooltip::after { display: none; }
}

/* =================== CARROSSEL DE PARCEIROS =================== */
.partners-wrap { display: flex; align-items: center; gap: 12px; max-width: calc(var(--container) + 88px); margin: 0 auto; padding: 0 24px; }
.partners-carousel {
  display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding: 6px 2px 20px; flex: 1;
  scrollbar-width: thin; scrollbar-color: var(--lavender) transparent;
}
.partners-carousel::-webkit-scrollbar { height: 6px; }
.partners-carousel::-webkit-scrollbar-thumb { background: var(--lavender); border-radius: 999px; }
.partner-card {
  flex: 0 0 auto; scroll-snap-align: start; width: 200px;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 18px; display: flex; flex-direction: column; align-items: center; gap: 14px;
  text-align: center; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.partner-card:hover { border-color: var(--indigo); transform: translateY(-5px); box-shadow: var(--shadow); }
.partner-logo {
  width: 100%; height: 64px; display: flex; align-items: center; justify-content: center;
  color: var(--lavender);
}
.partner-logo img { display: none; max-width: 100%; max-height: 64px; object-fit: contain; }
.partner-logo.has-image img { display: block; }
.partner-logo.has-image svg { display: none; }
.partner-logo svg { width: 40px; height: 40px; }
.partner-name { font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); }
.partner-card:hover .partner-name { color: var(--indigo); }
.partners-nav {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg); border: 1px solid var(--border); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}
.partners-nav:hover { border-color: var(--indigo); color: var(--indigo); }
.partners-nav svg { width: 18px; height: 18px; }
@media (max-width: 640px) {
  .partners-nav { display: none; }
  .partners-wrap { padding: 0; }
  .partners-carousel { padding-left: 24px; padding-right: 24px; }
}

/* =================== GRUPO & PARCEIROS =================== */
.group-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.group-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; text-align: center;
}
.group-card .hex { width: 56px; height: 56px; margin: 0 auto 16px; font-size: 1.2rem; font-weight: 800; }
.group-card h3 { font-size: 1.05rem; margin: 0 0 6px; font-weight: 700; }
.group-card span { font-size: 0.85rem; color: var(--ink-soft); }
.group-card.placeholder { border-style: dashed; color: var(--ink-soft); }
.group-card.placeholder .hex { background: var(--bg-soft); }

/* =================== RODAPÉ COM ÍCONES DE PRODUTO (estilo Alterdata) =================== */
.footer-products-row {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px;
  padding-bottom: 32px; border-bottom: 1px solid var(--border);
}
.footer-product-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 16px 8px 8px; font-size: 0.85rem; font-weight: 600; color: var(--ink);
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.footer-product-badge:hover { border-color: var(--indigo); color: var(--indigo); transform: translateY(-2px); box-shadow: var(--shadow); }
.footer-product-badge .hex { width: 28px; height: 28px; font-size: 0.7rem; }

/* =================== LANDING DE PRODUTO (ERP / Food / Style / Ponto) =================== */
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-bottom: 18px; }
.back-link:hover { color: var(--indigo); }
.back-link svg { width: 16px; height: 16px; }

.hero-product { padding: 60px 0 80px; }
.hero-product .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-product h1 { font-family: var(--font-display); font-size: clamp(2.1rem, 4.4vw, 3.2rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 18px; }
.hero-product h1 span { background: linear-gradient(120deg, var(--purple), var(--indigo)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-product p.lead { font-size: 1.08rem; color: var(--ink-soft); margin: 0 0 28px; max-width: 520px; }
.hero-product .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.hero-highlights li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.93rem; color: var(--ink-soft); }
.hero-highlights li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.hero-visual { min-height: 340px; border-radius: var(--radius); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hero-visual .hex { width: 96px; height: 96px; font-size: 2rem; font-weight: 800; }
.hero-visual.erp   { background: linear-gradient(155deg, rgba(83,74,183,0.14), rgba(24,95,165,0.08)); }
.hero-visual.food  { background: linear-gradient(155deg, rgba(249,115,22,0.14), rgba(22,163,74,0.08)); }
.hero-visual.style { background: linear-gradient(155deg, rgba(236,72,153,0.14), rgba(147,51,234,0.08)); }
.hero-visual.ponto { background: linear-gradient(155deg, rgba(79,70,229,0.14), rgba(83,74,183,0.08)); }
@media (max-width: 860px) {
  .hero-product .container { grid-template-columns: 1fr; }
  .hero-visual { min-height: 200px; order: -1; }
}

/* item do produto atual, destacado dentro do próprio mega menu */
.mega-item.current { background: var(--bg-soft); border: 1px solid var(--border); }

/* =================== PLANOS E PREÇOS =================== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; align-items: stretch; }
.price-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px 22px; display: flex; flex-direction: column; position: relative;
}
.price-card.featured { border-color: var(--indigo); box-shadow: var(--shadow); }
.price-card.featured::before {
  content: "Mais escolhido"; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--indigo); color: #fff; font-size: 0.7rem; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; }
.price-card .price { font-size: 1.9rem; font-weight: 800; margin: 0 0 10px; line-height: 1; white-space: nowrap; }
@media (max-width: 400px) { .price-card .price { font-size: 1.5rem; } }
.price-card .price span { font-size: 0.82rem; font-weight: 500; color: var(--ink-soft); }
.price-card .price-desc { font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 22px; flex-grow: 1; }
.price-card .btn-primary, .price-card .btn-secondary { justify-content: center; width: 100%; }
.pricing-note { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin: 24px auto 0; max-width: 640px; }

.compare-wrap { overflow-x: auto; margin-top: 48px; border: 1px solid var(--border); border-radius: var(--radius); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; min-width: 640px; }
.compare-table th, .compare-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid var(--border); white-space: nowrap; }
.compare-table th { background: var(--bg-soft); font-weight: 700; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child, .compare-table th:first-child {
  text-align: left; position: sticky; left: 0; background: var(--bg); font-weight: 600;
}
.compare-table th:first-child { background: var(--bg-soft); }
.compare-table td.yes { color: var(--indigo); font-weight: 700; }
.compare-table td.no { color: var(--border); }
.price-table th:not(:first-child), .price-table td:not(:first-child) { text-align: left; }
.price-cell b { display: block; font-size: 1rem; }
.price-cell span { display: block; font-size: 0.76rem; color: var(--ink-soft); font-weight: 400; }

.billing-toggle {
  display: inline-flex; gap: 4px; padding: 4px; background: var(--bg-soft);
  border: 1px solid var(--border); border-radius: 999px; margin: 0 auto 32px; position: relative;
}
.billing-toggle button {
  border: none; background: none; padding: 9px 20px; border-radius: 999px;
  font-size: 0.86rem; font-weight: 600; color: var(--ink-soft); position: relative; z-index: 1;
}
.billing-toggle button.active { background: var(--bg); color: var(--indigo); box-shadow: var(--shadow); }
.billing-toggle-wrap { display: flex; justify-content: center; }
.billing-badge {
  display: inline-block; background: #DCFCE7; color: #166534; font-size: 0.68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 999px; margin-left: 6px; vertical-align: middle;
}

/* =================== DESTAQUE DOCUMENTOS FISCAIS =================== */
.fiscal-highlight {
  border-radius: var(--radius); padding: 32px; margin-bottom: 32px; color: #fff;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.fiscal-highlight-text h3 { margin: 0 0 6px; font-size: 1.2rem; font-weight: 800; }
.fiscal-highlight-text p { margin: 0; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.fiscal-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.fiscal-badges span {
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  padding: 8px 16px; border-radius: 999px; font-weight: 700; font-size: 0.85rem;
}

/* =================== GRUPOS DE RECURSOS (estilo catálogo por categoria) =================== */
.feature-groups { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.feature-group { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.feature-group .hex { width: 40px; height: 40px; margin-bottom: 14px; }
.feature-group svg { width: 18px; height: 18px; stroke: #fff; }
.feature-group h3 { font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.feature-group > p { font-size: 0.85rem; color: var(--ink-soft); margin: 0 0 14px; }
.feature-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.feature-list li {
  font-size: 0.8rem; background: var(--bg-soft); border: 1px solid var(--border);
  padding: 6px 12px; border-radius: 999px; color: var(--ink);
}

/* =================== RECURSOS ADICIONAIS (add-ons) =================== */
.addon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.addon-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; flex-direction: column; }
.addon-card .hex { width: 40px; height: 40px; margin-bottom: 14px; }
.addon-card svg { width: 18px; height: 18px; stroke: #fff; }
.addon-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 6px; }
.addon-card p { font-size: 0.86rem; color: var(--ink-soft); margin: 0 0 14px; flex-grow: 1; }
.addon-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.addon-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; padding: 3px 9px; border-radius: 999px; }
.addon-tag.erp   { background: #EFECFB; color: #534AB7; }
.addon-tag.food  { background: #FEE7D6; color: #EA6A12; }
.addon-tag.style { background: #FCE7F3; color: #9333EA; }

/* =================== PASSOS NUMERADOS (emissão de certificado) =================== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step-card { text-align: center; position: relative; }
.step-card .step-number {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px;
  background: linear-gradient(120deg, var(--indigo), var(--purple)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.1rem;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin: 0 0 8px; }
.step-card p { font-size: 0.86rem; color: var(--ink-soft); margin: 0; }

/* =================== PÁGINAS LEGAIS (termos / privacidade) =================== */
.legal-hero { padding: 56px 0 40px; border-bottom: 1px solid var(--border); }
.legal-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin: 0 0 10px; }
.legal-hero p { color: var(--ink-soft); margin: 0; }
.legal-updated { display: inline-block; font-family: var(--font-mono); font-size: 0.78rem; color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--border); padding: 5px 12px; border-radius: 999px; margin-top: 14px; }
.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 56px; align-items: start; padding: 56px 0 90px; }
.legal-toc { position: sticky; top: 96px; }
.legal-toc b { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--purple); font-family: var(--font-mono); margin-bottom: 12px; }
.legal-toc ol { list-style: none; margin: 0; padding: 0; counter-reset: toc; display: flex; flex-direction: column; gap: 4px; }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: block; font-size: 0.86rem; color: var(--ink-soft); padding: 7px 10px; border-radius: var(--radius-sm);
}
.legal-toc a::before { content: counter(toc) ". "; color: var(--purple); font-weight: 700; }
.legal-toc a:hover { background: var(--bg-soft); color: var(--indigo); }
.legal-body h2 { font-size: 1.25rem; font-weight: 800; margin: 44px 0 14px; scroll-margin-top: 96px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1rem; font-weight: 700; margin: 24px 0 10px; }
.legal-body p { color: var(--ink-soft); margin: 0 0 14px; }
.legal-body ul, .legal-body ol.legal-list { color: var(--ink-soft); margin: 0 0 14px; padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--indigo); font-weight: 600; }
.legal-callout {
  background: var(--bg-soft); border: 1px solid var(--border); border-left: 3px solid var(--indigo);
  border-radius: var(--radius-sm); padding: 16px 20px; margin: 0 0 14px; font-size: 0.92rem; color: var(--ink-soft);
}
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; padding-top: 32px; }
  .legal-toc { position: static; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 18px; }
}

/* =================== PLANOS DO PONTO (seletor de faixa + cards) =================== */
.ponto-tier-select {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 0 auto 40px; max-width: 720px;
}
.ponto-tier-select button {
  border: 1px solid var(--border); background: var(--bg); color: var(--ink-soft);
  padding: 10px 20px; border-radius: 999px; font-size: 0.88rem; font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ponto-tier-select button:hover { border-color: var(--indigo); color: var(--indigo); }
.ponto-tier-select button.active {
  background: linear-gradient(120deg, var(--indigo), var(--purple)); border-color: transparent; color: #fff;
}

.ponto-plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; align-items: start; }
.ponto-plan-card {
  position: relative; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 26px; text-align: center;
}
.ponto-plan-card.featured { border-color: var(--indigo); box-shadow: var(--shadow); }
.ponto-plan-card .cycle-badge {
  position: absolute; top: 22px; right: 22px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.03em; padding: 4px 12px; border-radius: 999px;
}
.ponto-plan-card .cycle-badge.mensal { background: var(--bg-soft); color: var(--ink-soft); }
.ponto-plan-card .cycle-badge.semestral { background: #DBEAFE; color: #1D4ED8; }
.ponto-plan-card .cycle-badge.anual { background: #DCFCE7; color: #166534; }
.ponto-plan-card .plan-icon {
  width: 44px; height: 44px; border-radius: 50%; margin: 0 auto 14px;
  background: var(--lavender-soft); display: flex; align-items: center; justify-content: center;
}
.ponto-plan-card .plan-icon svg { width: 22px; height: 22px; stroke: var(--indigo); }
.ponto-plan-card h3 { font-size: 1.05rem; font-weight: 800; margin: 0 0 2px; }
.ponto-plan-card .plan-users { font-size: 0.8rem; color: var(--ink-soft); margin: 0 0 18px; }
.ponto-plan-card .plan-price { font-size: 2.1rem; font-weight: 800; line-height: 1; margin-bottom: 4px; white-space: nowrap; }
.ponto-plan-card .plan-price span { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.ponto-plan-card .plan-price-note { font-size: 0.76rem; color: var(--ink-soft); margin: 0 0 20px; min-height: 16px; }
.ponto-plan-card .btn-primary, .ponto-plan-card .btn-secondary { width: 100%; justify-content: center; margin-bottom: 22px; }
.ponto-plan-card .plan-features { list-style: none; margin: 0 0 20px; padding: 0; text-align: left; }
.ponto-plan-card .plan-features li {
  display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--ink-soft);
  padding: 9px 0; border-bottom: 1px dashed var(--border);
}
.ponto-plan-card .plan-features li:last-child { border-bottom: none; }
.ponto-plan-card .plan-features svg { width: 15px; height: 15px; stroke: #16A34A; flex-shrink: 0; }
.ponto-plan-card .plan-trial { border-top: 1px solid var(--border); padding-top: 18px; }
.ponto-plan-card .plan-trial a { display: block; font-size: 0.86rem; font-weight: 700; color: var(--indigo); margin-bottom: 6px; }
.ponto-plan-card .plan-trial span { font-size: 0.74rem; color: var(--ink-soft); }

.ponto-contact-cta { display: none; text-align: center; max-width: 520px; margin: 0 auto; padding: 44px 32px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); }
.ponto-contact-cta h3 { font-size: 1.2rem; font-weight: 800; margin: 0 0 10px; }
.ponto-contact-cta p { color: var(--ink-soft); margin: 0 0 22px; }

@media (max-width: 700px) {
  .ponto-tier-select { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; margin-left: -24px; margin-right: -24px; padding-left: 24px; padding-right: 24px; }
  .ponto-tier-select button { flex-shrink: 0; }
}

/* FAQ — accordion nativo via <details>/<summary>, sem JS */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.faq-item summary {
  padding: 18px 22px; font-weight: 700; font-size: 0.98rem; cursor: pointer;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.3rem; font-weight: 400; color: var(--indigo); flex-shrink: 0; transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--ink-soft); font-size: 0.92rem; }

