/* ============================================================
   Kairos — Desenvolvimento de Software e Consultoria
   Folha de estilo principal
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --accent:        #2DE0B0;
  --accent-2:      #4FC3F7;
  --accent-ink:    #06241D;
  --accent-soft:   rgba(45, 224, 176, .12);
  --accent-line:   rgba(45, 224, 176, .32);

  --bg:            #0B1120;
  --bg-alt:        #0E1728;
  --surface:       rgba(255, 255, 255, .035);
  --surface-2:     rgba(255, 255, 255, .06);
  --border:        rgba(255, 255, 255, .10);
  --border-strong: rgba(255, 255, 255, .18);

  --text:          #EAF0F7;
  --text-muted:    #9BA9BD;
  --text-dim:      #74839A;

  --shadow:        0 24px 60px -30px rgba(0, 0, 0, .85);
  --radius:        18px;
  --radius-sm:     12px;
  --maxw:          1160px;

  --font-display:  'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, -apple-system, sans-serif;
}

:root[data-theme="light"] {
  --accent:        #0FA98A;
  --accent-2:      #2563EB;
  --accent-ink:    #FFFFFF;
  --accent-soft:   rgba(15, 169, 138, .10);
  --accent-line:   rgba(15, 169, 138, .28);

  --bg:            #F6F8FB;
  --bg-alt:        #FFFFFF;
  --surface:       #FFFFFF;
  --surface-2:     #F1F5F9;
  --border:        rgba(11, 17, 32, .10);
  --border-strong: rgba(11, 17, 32, .18);

  --text:          #0B1120;
  --text-muted:    #4A5568;
  --text-dim:      #6B7A90;

  --shadow:        0 20px 50px -30px rgba(11, 17, 32, .35);
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 5.2vw, 3.65rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
h3 { font-size: 1.16rem; }

p  { margin: 0 0 1rem; color: var(--text-muted); }

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

img, svg { max-width: 100%; }

ul, ol { margin: 0; padding: 0; list-style: none; }

svg[viewBox] { fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 999;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 18px; border-radius: 10px; font-weight: 600;
}
.skip-link:focus { left: 16px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-display); font-size: .95rem; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn-primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: var(--accent-ink);
  box-shadow: 0 12px 30px -14px var(--accent-line);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 38px -14px var(--accent-line); }
.btn-ghost { border-color: var(--border-strong); color: var(--text); background: var(--surface); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: .88rem; }
.btn-block { width: 100%; }
.btn-arrow { width: 17px; height: 17px; transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.icon-btn {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 12px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--accent); }
.icon-btn svg { width: 18px; height: 18px; }
.icon-sun  { display: none; }
:root[data-theme="light"] .icon-sun  { display: block; }
:root[data-theme="light"] .icon-moon { display: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 16px 0;
  transition: background .3s ease, padding .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  padding: 10px 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header-inner { display: flex; align-items: center; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.16rem; letter-spacing: -.02em; }
.brand-mark { width: 34px; height: 34px; stroke: none; }
.brand-dot { color: var(--accent); }

.nav { display: flex; gap: 6px; margin-left: auto; }
.nav a {
  padding: 9px 14px; border-radius: 999px; font-size: .92rem; color: var(--text-muted);
  transition: color .2s ease, background .2s ease;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a.active { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--border); background: var(--surface); border-radius: 12px; cursor: pointer; padding: 0; }
.burger span { display: block; width: 18px; height: 2px; margin: 3px auto; background: var(--text); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.burger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 168px 0 0; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.orb-a { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); }
.orb-b { width: 460px; height: 460px; bottom: -180px; left: -140px; background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%); opacity: .35; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 20%, transparent 75%);
  opacity: .6;
}

.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding-bottom: 72px; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--accent-line); background: var(--accent-soft);
  font-size: .82rem; font-weight: 500; color: var(--text);
  margin-bottom: 22px;
}
.pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 var(--accent-line); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 var(--accent-line); } 70% { box-shadow: 0 0 0 10px transparent; } 100% { box-shadow: 0 0 0 0 transparent; } }

.hero h1 em { font-style: normal; background: linear-gradient(110deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lead { font-size: 1.1rem; max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 16px; }
.hero-note { font-size: .86rem; color: var(--text-dim); margin: 0; }

/* Painel de fluxo */
.hero-panel {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 18px; box-shadow: var(--shadow); backdrop-filter: blur(6px);
}
.panel-head { display: flex; align-items: center; gap: 7px; padding: 4px 6px 14px; border-bottom: 1px solid var(--border); }
.panel-head .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-strong); }
.panel-title { margin-left: 8px; font-size: .78rem; color: var(--text-dim); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }

.flow { display: grid; gap: 8px; padding: 14px 0; }
.flow-step {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid transparent;
  opacity: .55; transition: opacity .3s ease, border-color .3s ease, transform .3s ease;
}
.flow-step.done { opacity: 1; }
.flow-step.running { opacity: 1; border-color: var(--accent-line); background: var(--accent-soft); }
.flow-step:hover { transform: translateX(3px); }
.flow-ic {
  width: 28px; height: 28px; flex: none; display: grid; place-items: center;
  border-radius: 9px; background: var(--bg); border: 1px solid var(--border);
  font-size: .8rem; font-weight: 600; font-family: var(--font-display);
}
.flow-step strong { display: block; font-size: .9rem; font-weight: 600; }
.flow-step small { color: var(--text-dim); font-size: .78rem; }
.flow-step div { flex: 1; }
.tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; padding: 4px 9px; border-radius: 999px; font-weight: 600; }
.tag.ok   { background: var(--accent-soft); color: var(--accent); }
.tag.run  { background: rgba(79, 195, 247, .16); color: var(--accent-2); }
.tag.wait { background: var(--surface-2); color: var(--text-dim); }

.panel-foot { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; border-top: 1px solid var(--border); padding-top: 16px; }
.panel-foot > div { padding: 2px 6px; }
.panel-foot span:not(.metric-num) { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent); }
.panel-foot small { display: block; color: var(--text-dim); font-size: .76rem; margin-top: 2px; }
.metric-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--accent); }

/* Marquee */
.marquee { position: relative; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 16px 0; overflow: hidden; background: var(--surface); }
.marquee-track { display: flex; gap: 26px; width: max-content; animation: slide 38s linear infinite; }
.marquee-track span { font-family: var(--font-display); font-size: .95rem; color: var(--text-dim); white-space: nowrap; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- Seções ---------- */
.section { padding: 100px 0; }
.section-alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { max-width: 620px; margin-bottom: 52px; }
.section-head p { font-size: 1.02rem; }

.eyebrow {
  display: inline-block; font-family: var(--font-display); font-size: .78rem;
  text-transform: uppercase; letter-spacing: .16em; color: var(--accent);
  margin-bottom: 14px; font-weight: 600;
}

/* Quem somos */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-actions { margin-top: 26px; }

.destaque {
  position: relative;
  margin: 0 0 22px;
  padding: 2px 0 2px 20px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--text);
  letter-spacing: -.01em;
}

.value-list { display: grid; gap: 14px; }
.value-list li {
  display: flex; gap: 14px; padding: 20px;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  transition: border-color .25s ease, transform .25s ease;
}
.value-list li:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.value-list svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 3px; }
.value-list strong { font-family: var(--font-display); font-size: .98rem; }
.value-list p { margin: 3px 0 0; font-size: .9rem; }

/* Serviços */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card {
  position: relative; padding: 30px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border); overflow: hidden;
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.card::after {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card.feature { grid-column: span 2; background: linear-gradient(140deg, var(--accent-soft), var(--surface) 55%); }
.card-ic {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 14px;
  background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent);
  margin-bottom: 18px;
}
.card-ic svg { width: 22px; height: 22px; }
.card p { font-size: .94rem; margin-bottom: 16px; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; }
.chips li {
  font-size: .76rem; padding: 5px 11px; border-radius: 999px;
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim);
}

/* Processo */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  position: relative; padding: 30px 24px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  transition: transform .28s ease, border-color .28s ease;
}
.step:hover { transform: translateY(-5px); border-color: var(--accent-line); }
.step-num {
  display: inline-block; font-family: var(--font-display); font-size: 2.1rem; font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 8px; line-height: 1;
}
.step p { font-size: .93rem; }
.step-time {
  display: inline-block; font-size: .76rem; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 4px 11px; border-radius: 999px;
}

/* Resultados */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 52px; }
.stat { padding: 28px 24px; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); text-align: left; }
.stat .metric-num, .stat .suffix {
  font-family: var(--font-display); font-size: clamp(2.1rem, 4vw, 2.8rem); font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat p { margin: 8px 0 0; font-size: .9rem; }

.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { padding: 30px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg); transition: border-color .25s ease, transform .25s ease; }
.benefit:hover { border-color: var(--accent-line); transform: translateY(-4px); }
.benefit p { font-size: .94rem; margin: 0; }

/* Setores */
.sectors { display: flex; flex-wrap: wrap; gap: 10px; }
.sectors li {
  padding: 11px 20px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); font-family: var(--font-display); font-size: .92rem; color: var(--text-muted);
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.sectors li:hover { border-color: var(--accent-line); color: var(--accent); transform: translateY(-2px); }

/* FAQ */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); overflow: hidden; transition: border-color .25s ease;
}
.faq details[open] { border-color: var(--accent-line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 56px 20px 24px; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ''; position: absolute; right: 24px; top: 50%; width: 11px; height: 11px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: translateY(-70%) rotate(45deg); transition: transform .25s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-body { padding: 0 24px 22px; }
.faq-body p { margin: 0; font-size: .95rem; }

/* Contato */
.cta-section { background: var(--bg-alt); border-top: 1px solid var(--border); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin-top: 28px; }
.contact-list li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: .96rem; }
.contact-list svg { width: 20px; height: 20px; color: var(--accent); flex: none; }
.contact-list a:hover { color: var(--accent); }

.form { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 30px; box-shadow: var(--shadow); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 7px; color: var(--text-muted); font-family: var(--font-display); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--bg); border: 1px solid var(--border); color: var(--text);
  font-family: var(--font-body); font-size: .95rem; resize: vertical;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--text-dim); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft);
}
.field .invalid { border-color: #F87171; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-note { font-size: .8rem; color: var(--text-dim); margin: 14px 0 0; text-align: center; }
.form-note.success { color: var(--accent); }
.form-note.error { color: #F87171; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg); border-top: 1px solid var(--border); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand p { font-size: .92rem; max-width: 38ch; margin-top: 16px; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-dim); margin-bottom: 16px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: .92rem; color: var(--text-muted); transition: color .2s ease; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  border-top: 1px solid var(--border); padding-top: 22px;
}
.footer-bottom p { margin: 0; font-size: .82rem; color: var(--text-dim); }

/* Botão flutuante do WhatsApp */
.wa-float {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px 12px 15px; border-radius: 999px;
  background: #25D366; color: #06241D;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem;
  box-shadow: 0 12px 28px -12px rgba(37, 211, 102, .8);
  transition: transform .2s ease, box-shadow .25s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(37, 211, 102, .9); }
.wa-float svg { width: 20px; height: 20px; stroke-width: 1.6; }
@media (max-width: 640px) {
  .wa-float { padding: 13px; left: 16px; bottom: 16px; }
  .wa-float span { display: none; }
}

/* Voltar ao topo */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 50%; background: var(--accent); color: var(--accent-ink);
  box-shadow: 0 10px 26px -10px var(--accent-line);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 19px; height: 19px; stroke-width: 2.2; }

/* ---------- Animação de entrada ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1020px) {
  .hero-inner, .split, .cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .steps, .stats, .benefits { grid-template-columns: repeat(2, 1fr); }
  .card.feature { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 64px 16px auto 16px; margin: 0;
    flex-direction: column; gap: 4px; padding: 14px;
    background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
    box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(-10px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }
  .nav.open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: 12px 14px; }
  .header-actions .btn { display: none; }
  .hero { padding-top: 130px; }
}

@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .cards, .steps, .stats, .benefits, .field-row, .panel-foot { grid-template-columns: 1fr; }
  .card.feature { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form { padding: 22px; }
  .container { padding: 0 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
