/* ===== EcoDomus Inteligente — Site de divulgação ===== */

:root {
  --bg: #f4f7f5;
  --bg-elev: #ffffff;
  --bg-soft: #eef2ee;
  --dark: #0e2a22;
  --dark-soft: #143a2e;
  --dark-fg: #cfe3d8;
  --dark-fg-dim: #7fa291;
  --text: #16241d;
  --text-dim: #5d7268;
  --border: #e2e9e3;
  --primary: #18a558;
  --primary-soft: #d9f2e3;
  --primary-strong: #0f7a40;
  --accent: #0fb5ae;
  --warn: #e8a33d;
  --danger: #e0584f;
  --info: #3d8be8;
  --shadow: 0 1px 3px rgba(16,40,30,.06), 0 8px 24px rgba(16,40,30,.06);
  --shadow-lg: 0 18px 50px rgba(16,40,30,.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --grad-eco: linear-gradient(135deg, #18a558, #0fb5ae);
  --grad-dark: linear-gradient(160deg, #103128, #0a2019);
  --max: 1160px;
}

[data-theme="dark"] {
  --bg: #0a1611;
  --bg-elev: #11211a;
  --bg-soft: #16261e;
  --dark: #061009;
  --dark-soft: #0e1f18;
  --dark-fg: #c4ddd0;
  --dark-fg-dim: #6f8e7f;
  --text: #e6f0ea;
  --text-dim: #92a89c;
  --border: #1e3329;
  --primary: #25c46c;
  --primary-soft: #143524;
  --primary-strong: #2fe080;
  --accent: #1fd4cc;
  --shadow: 0 1px 3px rgba(0,0,0,.3), 0 8px 24px rgba(0,0,0,.25);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.45);
  --grad-dark: linear-gradient(160deg, #0e1f18, #050d09);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }
section { position: relative; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 24px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--grad-eco); color: #fff; box-shadow: 0 10px 26px rgba(24,165,88,.32); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(24,165,88,.42); }
.btn-ghost { background: var(--bg-elev); color: var(--text); border: 1px solid var(--border); box-shadow: var(--shadow); }
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--primary); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.22); }
.btn-light:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ===== Header / Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .25s, box-shadow .25s, border-color .25s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; gap: 24px; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px; background: var(--grad-eco);
  display: grid; place-items: center; font-size: 20px; color: #fff;
  box-shadow: 0 8px 20px rgba(24,165,88,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.02; }
.brand-eco { font-size: 19px; font-weight: 800; letter-spacing: -.4px; }
.brand-int { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--text-dim); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 15px; border-radius: 10px; font-size: 14.5px; font-weight: 500; color: var(--text-dim);
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-soft); }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: var(--bg-elev); border: 1px solid var(--border); box-shadow: var(--shadow);
  font-size: 18px; transition: transform .15s;
}
.icon-btn:hover { transform: translateY(-2px); }
.hamburger { display: none; }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 20px;
  background: var(--bg-elev); border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 13px 12px; border-radius: 10px; font-weight: 500; }
.mobile-menu a:hover { background: var(--bg-soft); }

/* ===== Hero ===== */
.hero { padding: 150px 0 90px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -180px; right: -140px; width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(24,165,88,.22), transparent 62%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: var(--primary-soft); color: var(--primary-strong); margin-bottom: 22px;
}
.pill .live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--primary);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,196,108,.5); }
  70% { box-shadow: 0 0 0 8px rgba(37,196,108,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,196,108,0); }
}
.hero h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; letter-spacing: -1.5px; line-height: 1.05; }
.hero h1 .grad { background: var(--grad-eco); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 18px; color: var(--text-dim); margin: 22px 0 32px; max-width: 520px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note { display: flex; gap: 22px; margin-top: 26px; flex-wrap: wrap; }
.hero-note div { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-dim); font-weight: 500; }
.hero-note .ck { color: var(--primary); font-weight: 800; }

/* Hero mock dashboard */
.mock-shell { position: relative; }
.mock {
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--bg-soft); }
.mock-dot { width: 11px; height: 11px; border-radius: 50%; background: var(--border); }
.mock-dot:nth-child(1){ background: #e0584f; } .mock-dot:nth-child(2){ background: #e8a33d; } .mock-dot:nth-child(3){ background: #18a558; }
.mock-url { margin-left: 10px; font-size: 12px; color: var(--text-dim); background: var(--bg-elev); padding: 4px 12px; border-radius: 8px; border: 1px solid var(--border); }
.mock-body { padding: 20px; display: flex; flex-direction: column; gap: 14px; }
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.mk { background: var(--bg-soft); border-radius: 14px; padding: 14px; }
.mk-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; margin-bottom: 9px; }
.mk-ico.green { background: var(--primary-soft); } .mk-ico.teal { background: rgba(15,181,174,.16); } .mk-ico.amber { background: rgba(232,163,61,.18); }
.mk-label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .6px; color: var(--text-dim); font-weight: 600; }
.mk-val { font-size: 21px; font-weight: 800; letter-spacing: -.5px; font-variant-numeric: tabular-nums; }
.mk-val small { font-size: 12px; color: var(--text-dim); font-weight: 600; }
.mock-chart { background: var(--bg-soft); border-radius: 14px; padding: 16px; }
.mc-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.mc-title { font-size: 13px; font-weight: 600; }
.mc-tag { font-size: 11px; color: var(--primary-strong); background: var(--primary-soft); padding: 3px 10px; border-radius: 20px; font-weight: 600; }
.bars { display: flex; align-items: flex-end; gap: 7px; height: 90px; }
.bars span { flex: 1; border-radius: 6px 6px 0 0; background: var(--grad-eco); opacity: .85; animation: grow 1s ease backwards; }
@keyframes grow { from { height: 0 !important; } }
.float-card {
  position: absolute; background: var(--bg-elev); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 15px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 11px; font-size: 13px;
}
.float-card .fc-ico { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 17px; background: var(--primary-soft); }
.float-card .fc-val { font-weight: 800; font-size: 15px; }
.float-card .fc-lbl { font-size: 11px; color: var(--text-dim); }
.float-1 { top: 60px; left: -30px; animation: floaty 4s ease-in-out infinite; }
.float-2 { bottom: 24px; right: -26px; animation: floaty 4s ease-in-out infinite 1.6s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Logos / trust strip ===== */
.strip { padding: 30px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.strip-stat .n { font-size: clamp(28px, 3.4vw, 38px); font-weight: 800; letter-spacing: -1px; background: var(--grad-eco); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.strip-stat .l { font-size: 13.5px; color: var(--text-dim); font-weight: 500; margin-top: 2px; }

/* ===== Section shared ===== */
.section { padding: 92px 0; }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 54px; }
.eyebrow { display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--primary-strong); margin-bottom: 14px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; }
.section-head p { font-size: 17px; color: var(--text-dim); margin-top: 16px; }

/* ===== Problema ===== */
.problem { background: var(--bg-soft); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.problem-card { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow); }
.problem-card .pc-ico { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; font-size: 24px; margin-bottom: 16px; background: rgba(224,88,79,.12); }
.problem-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.problem-card p { font-size: 14.5px; color: var(--text-dim); }

/* ===== Funcionalidades ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); transition: transform .18s, box-shadow .18s, border-color .18s;
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: color-mix(in srgb, var(--primary) 40%, var(--border)); }
.feature .f-ico { width: 54px; height: 54px; border-radius: 15px; display: grid; place-items: center; font-size: 25px; margin-bottom: 18px; background: var(--primary-soft); color: var(--primary-strong); }
.feature .f-ico.blue { background: rgba(61,139,232,.14); } .feature .f-ico.teal { background: rgba(15,181,174,.14); } .feature .f-ico.amber { background: rgba(232,163,61,.16); }
.feature h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 9px; }
.feature p { font-size: 14.5px; color: var(--text-dim); }

/* ===== Como funciona ===== */
.how { background: var(--grad-dark); color: var(--dark-fg); }
.how .section-head h2 { color: #fff; }
.how .section-head p { color: var(--dark-fg-dim); }
.how .eyebrow { color: var(--accent); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; position: relative; }
.step {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 30px 26px; position: relative;
}
.step-n {
  width: 46px; height: 46px; border-radius: 13px; background: var(--grad-eco); color: #fff;
  display: grid; place-items: center; font-size: 20px; font-weight: 800; margin-bottom: 18px;
  box-shadow: 0 8px 22px rgba(24,165,88,.4);
}
.step h3 { font-size: 19px; font-weight: 700; color: #fff; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--dark-fg-dim); }

/* ===== Benefícios (split) ===== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.reverse .split-visual { order: 2; }
.benefit-list { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
.benefit { display: flex; gap: 16px; }
.benefit .b-ico { width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; font-size: 21px; background: var(--primary-soft); color: var(--primary-strong); }
.benefit h4 { font-size: 16.5px; font-weight: 700; margin-bottom: 3px; }
.benefit p { font-size: 14.5px; color: var(--text-dim); }
.split-visual {
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-lg);
}
.rec-preview { display: flex; flex-direction: column; gap: 12px; }
.rec {
  display: flex; gap: 15px; align-items: flex-start; padding: 16px;
  border-radius: var(--radius-sm); background: var(--bg-soft);
}
.rec-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; font-size: 20px; flex-shrink: 0; background: var(--primary-soft); }
.rec-body { flex: 1; }
.rec-title { font-weight: 600; font-size: 14.5px; margin-bottom: 3px; }
.rec-text { font-size: 12.8px; color: var(--text-dim); }
.rec-save { font-weight: 700; color: var(--primary-strong); font-size: 14px; white-space: nowrap; }

/* Donut for benefits */
.donut-card { text-align: center; }
.donut-wrap { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.donut { width: 170px; height: 170px; border-radius: 50%; display: grid; place-items: center; position: relative; }
.donut::after { content: ""; position: absolute; inset: 26px; border-radius: 50%; background: var(--bg-elev); }
.donut-center { position: relative; z-index: 1; }
.donut-center .dc-val { font-size: 30px; font-weight: 800; letter-spacing: -1px; }
.donut-center .dc-lbl { font-size: 12px; color: var(--text-dim); }
.donut-legend { display: flex; flex-direction: column; gap: 11px; text-align: left; }
.donut-legend .dl { display: flex; align-items: center; gap: 9px; font-size: 13.5px; }
.donut-legend .dot { width: 11px; height: 11px; border-radius: 4px; }
.donut-legend .dv { margin-left: auto; font-weight: 700; font-variant-numeric: tabular-nums; }

/* ===== Demo banner ===== */
.demo { background: var(--bg-soft); }
.demo-card {
  background: var(--grad-dark); border-radius: var(--radius-lg); padding: 56px;
  display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; overflow: hidden; position: relative;
}
.demo-card .dg {
  position: absolute; top: -120px; right: -80px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(15,181,174,.28), transparent 60%); pointer-events: none;
}
.demo-card h2 { color: #fff; font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; letter-spacing: -.8px; position: relative; }
.demo-card p { color: var(--dark-fg-dim); font-size: 16.5px; margin-top: 14px; max-width: 480px; position: relative; }
.demo-actions { display: flex; flex-direction: column; gap: 12px; position: relative; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 20px 24px; font-size: 16px; font-weight: 600; text-align: left; }
.faq-q .chev { font-size: 20px; color: var(--primary); transition: transform .25s; flex-shrink: 0; }
.faq-item.open .chev { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 20px; font-size: 14.5px; color: var(--text-dim); }

/* ===== Contacto / CTA final ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info h2 { font-size: clamp(26px, 3.6vw, 38px); font-weight: 800; letter-spacing: -1px; line-height: 1.12; }
.contact-info p { font-size: 16.5px; color: var(--text-dim); margin: 16px 0 26px; }
.contact-points { display: flex; flex-direction: column; gap: 16px; }
.contact-points .cp { display: flex; align-items: center; gap: 13px; font-size: 15px; }
.contact-points .cp-ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; font-size: 19px; background: var(--primary-soft); color: var(--primary-strong); flex-shrink: 0; }
.contact-points .cp small { display: block; color: var(--text-dim); font-size: 12.5px; }
.form {
  background: var(--bg-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg); color: var(--text);
  font-size: 15px; font-family: inherit; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.form .btn { width: 100%; justify-content: center; margin-top: 4px; }
.form .btn:disabled { opacity: .7; cursor: default; transform: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-error { font-size: 13px; color: var(--danger); text-align: center; margin-top: 12px; font-weight: 600; min-height: 1px; }
.form-error:empty { margin-top: 0; }
.form-note { font-size: 12.5px; color: var(--text-dim); text-align: center; margin-top: 14px; }
.form-ok { display: none; text-align: center; padding: 30px 10px; }
.form-ok.show { display: block; }
.form-ok .ok-ico { width: 64px; height: 64px; border-radius: 50%; background: var(--primary-soft); color: var(--primary-strong); display: grid; place-items: center; font-size: 30px; margin: 0 auto 16px; }
.form-ok h3 { font-size: 20px; font-weight: 700; margin-bottom: 6px; }
.form-ok p { color: var(--text-dim); font-size: 14.5px; }

/* ===== Footer ===== */
.footer { background: var(--grad-dark); color: var(--dark-fg); padding: 60px 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-eco { color: #fff; }
.footer .brand-int { color: var(--dark-fg-dim); }
.footer-about { font-size: 14px; color: var(--dark-fg-dim); margin-top: 16px; max-width: 300px; }
.footer-col h5 { font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--dark-fg-dim); padding: 6px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
  padding: 30px 0; margin-top: 4px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-logos a { display: inline-flex; align-items: center; transition: opacity .15s, transform .15s; }
.footer-logos a:hover { opacity: .8; transform: translateY(-2px); }
.footer-logos img { height: 44px; width: auto; display: block; }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; font-size: 13px; color: var(--dark-fg-dim); flex-wrap: wrap; gap: 12px; }

@media (max-width: 640px) {
  .footer-logos { gap: 28px; padding: 24px 0; }
  .footer-logos img { height: 34px; }
}

/* ===== Reveal on scroll ===== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 520px; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse .split-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .demo-card { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .problem-grid, .features-grid, .steps { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
  .demo-card { padding: 40px 28px; }
  .section { padding: 68px 0; }
  .hero { padding: 124px 0 66px; }
}
@media (max-width: 480px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta .btn, .demo-actions .btn { width: 100%; justify-content: center; }
  .float-1, .float-2 { display: none; }
}
