/* ─── ROOT & RESET ─── */
:root {
  --bg: #FDFCFB;
  --bg-alt: #F2F0E8;
  --text: #1C1C1C;
  --text-muted: #6B6B6B;
  --accent: #585531;
  --accent-dark: #3d3c22;
  --accent-light: #EEEBD8;
  --border: #E8E6E1;
  --white: #FFFFFF;
  --radius: 18px;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.10);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── ANIMAÇÕES ─── */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1),
              transform .65s cubic-bezier(.22,1,.36,1);
}
[data-animate="left"]  { transform: translateX(-48px); }
[data-animate="right"] { transform: translateX(48px); }
[data-animate="scale"] { transform: scale(.9); }
[data-animate].visible { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }
[data-delay="7"] { transition-delay: .7s; }
[data-delay="8"] { transition-delay: .8s; }

/* ─── NAV ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,252,251,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
.logo-img { height: 36px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

/* ─── BOTÕES ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all .25s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(88,85,49,.35);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { background: var(--bg-alt); transform: translateY(-1px); }
.btn-white { background: #fff; color: var(--accent-dark); }
.btn-white:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,.14);
}
.btn-lg { padding: 16px 32px; font-size: 17px; }

/* ─── LAYOUT ─── */
.section { padding: 104px 24px; }
.section-inner { max-width: 1120px; margin: 0 auto; }
.section-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 16px;
}
h1, h2 { font-weight: 800; letter-spacing: -2px; line-height: 1.08; }
h1 { font-size: clamp(40px, 5.5vw, 68px); margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4vw, 52px); margin-bottom: 20px; }
em { color: var(--accent); font-style: normal; }
.section-sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}
.section-alt { background: var(--bg-alt); }

/* ─── HERO (HOME) ─── */
.hero {
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}
.hero::before, .hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.hero::before {
  width: 500px; height: 500px;
  background: rgba(88,85,49,.07);
  top: -100px; left: -150px;
}
.hero::after {
  width: 400px; height: 400px;
  background: rgba(88,85,49,.05);
  bottom: -80px; right: -100px;
  animation-delay: -4s;
}
@keyframes floatOrb {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(30px, 20px) scale(1.1); }
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-text { text-align: left; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: .3px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-wrap { position: relative; z-index: 1; }
.hero-photo {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,.14);
}
.hero-photo-caption {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}

.hero-stats-wrap {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.hero-stats {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat {
  flex: 1;
  padding: 28px 32px;
  text-align: center;
  position: relative;
}
.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: var(--border);
}
.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-number em { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* ─── PAGE HERO (páginas internas) ─── */
.page-hero {
  padding: 80px 24px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(88,85,49,.06);
  border-radius: 50%;
  filter: blur(80px);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); }
.page-hero .section-sub { margin: 0 auto; }

/* ─── EMPRESAS ATENDIDAS ─── */
.clients-grid {
  display: flex;
  gap: 24px;
  margin-top: 60px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  min-width: 200px;
}
.client-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--accent-light);
}
.client-card img {
  height: 56px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.client-card:hover img { transform: translateY(-4px); }

/* ─── SECTION DARK ─── */
.section-dark { background: #111110; color: #fff; }
.section-dark .section-tag { color: #a09d6f; }
.section-dark h2 { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.5); }

/* ─── COMPARAÇÃO ─── */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}
.cmp-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.cmp-card:hover { transform: translateY(-4px); }
.cmp-card.bad  { background: rgba(255,59,48,.07); border-color: rgba(255,59,48,.18); }
.cmp-card.good { background: rgba(88,85,49,.1);   border-color: rgba(88,85,49,.3); }
.cmp-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.cmp-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.cmp-card.bad  .cmp-icon { background: rgba(255,59,48,.14); }
.cmp-card.good .cmp-icon { background: rgba(88,85,49,.2); }
.cmp-title { font-size: 18px; font-weight: 700; color: #fff; }
.cmp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.cmp-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: rgba(255,255,255,.7); line-height: 1.55;
}
.cmp-list li .dot {
  flex-shrink: 0; margin-top: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
.cmp-card.bad  .dot { background: rgba(255,59,48,.2); color: #FF3B30; }
.cmp-card.good .dot { background: rgba(88,85,49,.25); color: #a09d6f; }

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--accent-light);
}
.feat-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: transform .3s cubic-bezier(.22,1,.36,1);
}
.feature-card:hover .feat-icon { transform: scale(1.12) rotate(-4deg); }
.feat-title { font-size: 19px; font-weight: 700; margin-bottom: 12px; letter-spacing: -.3px; }
.feat-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ─── NÚMEROS ─── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
  background: var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.num-item {
  background: var(--bg-alt);
  padding: 52px 32px;
  text-align: center;
  transition: background .2s;
}
.num-item:hover { background: #e8e4cc; }
.num-big {
  font-size: 60px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 14px;
}
.num-big em { color: var(--accent); font-style: normal; font-size: 48px; }
.num-label { font-size: 15px; color: var(--text-muted); line-height: 1.55; }

/* ─── CTA BANNER ─── */
.cta-section {
  background: var(--accent);
  text-align: center;
  padding: 104px 24px;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
  top: -200px; right: -100px;
  animation: floatOrb 10s ease-in-out infinite alternate;
}
.cta-section .section-inner { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; }
.cta-section .section-sub { color: rgba(255,255,255,.8); margin: 0 auto 44px; max-width: 520px; }

/* ─── PORTFÓLIO (Sites) ─── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(460px, 1fr));
  gap: 32px;
  margin-top: 60px;
}
.portfolio-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.portfolio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.portfolio-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.portfolio-info { padding: 28px; }
.portfolio-client {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.portfolio-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.portfolio-desc { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* ─── VÍDEOS (Automações) ─── */
.videos-grid {
 display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.video-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.video-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  text-decoration: none;
  background: #000;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .3s;
  opacity: .92;
}
.video-thumb:hover img { transform: scale(1.04); opacity: 1; }
.video-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  background: rgba(255, 0, 0, 0.88);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.45);
  transition: transform .25s cubic-bezier(.22,1,.36,1), background .2s;
}
.video-thumb:hover .video-play {
  transform: translate(-50%, -50%) scale(1.14);
  background: #ff0000;
}
.video-info { padding: 20px; }
.video-num {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 8px;
}
.video-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -.3px; }
.video-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── QUEM SOMOS ─── */
.about-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 24px 104px;
}
.about-photo {
  width: 100%;
  border-radius: 24px;
  display: block;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
}
.about-text .section-tag { margin-bottom: 16px; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-text p:last-child { margin-bottom: 0; }

/* ─── TIMELINE ─── */
.timeline { margin-top: 48px; display: flex; flex-direction: column; }
.timeline-item { display: flex; gap: 20px; padding-bottom: 36px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 5px;
  box-shadow: 0 0 0 4px var(--accent-light);
}
.timeline-connector {
  width: 2px;
  background: var(--border);
  flex: 1;
  margin-top: 8px;
  min-height: 24px;
}
.timeline-item:last-child .timeline-connector { display: none; }
.timeline-content { flex: 1; padding-bottom: 4px; }
.timeline-year {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--accent);
  margin-bottom: 6px;
}
.timeline-text { font-size: 16px; color: var(--text-muted); line-height: 1.75; }

/* ─── NOTÍCIAS ─── */
.news-empty {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  padding: 80px 24px 120px;
}
.news-empty-icon { font-size: 56px; margin-bottom: 28px; }
.news-empty h3 { font-size: 28px; font-weight: 800; letter-spacing: -1px; margin-bottom: 16px; }
.news-empty p { font-size: 17px; color: var(--text-muted); line-height: 1.75; }

/* ─── FOOTER ─── */
footer { background: #111110; color: #fff; padding: 72px 24px 40px; }
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 40px;
}
.footer-logo-img { height: 32px; width: auto; margin-bottom: 20px; display: block; filter: brightness(0) invert(1); }
.footer-desc { font-size: 15px; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  transition: background .2s, transform .2s;
}
.soc-btn:hover { background: rgba(255,255,255,.14); transform: translateY(-2px); }
.footer-col-title {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  text-decoration: none; font-size: 15px;
  color: rgba(255,255,255,.6); transition: color .2s;
}
.footer-col ul a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; color: rgba(255,255,255,.3);
}

/* ─── WHATSAPP FLUTUANTE ─── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,.4);
  transition: all .25s;
  animation: wapulse 3s infinite;
}
.wa-float img { width: 34px; height: 34px; object-fit: contain; }
.wa-float:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,.6); }
@keyframes wapulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,.4); }
  50%       { box-shadow: 0 4px 36px rgba(37,211,102,.75); }
}

/* ─── HAMBURGER ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background .2s;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--bg-alt); }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .2s;
}
nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── RESPONSIVO ─── */
@media (max-width: 900px) {
  .hero { padding: 48px 20px 56px; }
  .hero-inner { grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
  .hero-text { text-align: center; }
  .badge { display: flex; width: fit-content; margin: 0 auto 24px; }
  .hero-sub { margin: 0 auto 32px; max-width: 100%; font-size: 16px; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; white-space: normal; text-align: center; }
  .hero-image-wrap { order: -1; max-width: 360px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; padding: 60px 24px 80px; }
  .about-photo { max-width: 440px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  nav .btn { display: none; }
  .nav-links {
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: rgba(253,252,251,0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    gap: 0;
    display: flex !important;
    transition: max-height .35s cubic-bezier(.22,1,.36,1);
    padding: 0 24px;
    z-index: 98;
  }
  nav.open .nav-links { max-height: 320px; padding: 4px 24px 16px; }
  .nav-links li { list-style: none; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
    color: var(--text) !important;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child a { border-bottom: none; }

  h1, h2 { letter-spacing: -1px; }
  .hero-stats { flex-direction: column; }
  .stat + .stat::before { display: none; }
  .comparison { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { gap: 16px; }
  .client-card { padding: 20px 32px; min-width: 150px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
