/* ===== Tokens ===== */
:root {
  --blue: #2A5D86;
  --blue-dark: #1F4665;
  --blue-light: #EAF1F6;
  --gray: #737A85;
  --ink: #1B2126;
  --ink-soft: #4B535B;
  --bg: #FFFFFF;
  --bg-soft: #F7F9FA;
  --border: #E4E8EB;
  --radius: 16px;
  --shadow: 0 12px 32px rgba(27, 33, 38, 0.08);
  --shadow-sm: 0 4px 14px rgba(27, 33, 38, 0.06);
  --container: 1160px;
  --ff-head: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }

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

h1, h2, h3 { font-family: var(--ff-head); line-height: 1.2; color: var(--ink); }

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

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.center { text-align: center; }

.section { padding: 96px 0; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 720px;
}

.section-title.center { margin-left: auto; margin-right: auto; }

.section-lead {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
}

.section-lead.center { margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover { border-color: var(--blue); background: var(--blue-light); }

.btn-header { padding: 11px 22px; font-size: 0.9rem; }

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
}

.logo img { height: 40px; width: auto; }

.nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 24px;
}

.nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft);
  transition: color 0.15s ease;
}

.nav a:hover { color: var(--blue); }

.nav-cta { display: none; }

.nav-overlay { display: none; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero ===== */
.hero {
  padding: 88px 0 96px;
  background: linear-gradient(180deg, var(--blue-light) 0%, #fff 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  column-gap: 56px;
  align-items: center;
  grid-template-areas:
    "eyebrow visual"
    "title   visual"
    "lead    visual"
    "actions visual";
}

.hero-eyebrow { grid-area: eyebrow; }

.hero-title {
  grid-area: title;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-lead {
  grid-area: lead;
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-actions { grid-area: actions; display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
  grid-area: visual;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}

.hero-card svg {
  width: 26px;
  height: 26px;
  color: var(--blue);
  flex-shrink: 0;
}

.hero-card strong { display: block; font-size: 0.95rem; }

.hero-card span { font-size: 0.85rem; color: var(--gray); }

.hero-card-1 { margin-left: 0; }
.hero-card-2 { margin-left: 40px; }
.hero-card-3 { margin-left: 0; }

/* ===== Logos strip ===== */
.logos-strip {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.logos-strip-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--gray);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.logos-strip-inner span:nth-child(even) { color: var(--border); }

/* ===== Cards / Services ===== */
.cards { display: grid; gap: 24px; }

.services-grid { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.card-featured {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-featured .card-icon { background: rgba(255, 255, 255, 0.15); }

.card-icon svg { width: 26px; height: 26px; color: var(--blue); }

.card-featured .card-icon svg { color: #fff; }

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

.card p { color: var(--ink-soft); font-size: 0.95rem; }

.card-featured h3, .card-featured p { color: #fff; }
.card-featured p { opacity: 0.9; }

/* ===== IA Spotlight ===== */
.ia-spotlight { background: var(--blue); color: #fff; overflow: hidden; }

.ia-spotlight-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: 56px;
  row-gap: 24px;
  align-items: start;
  grid-template-areas:
    "copy   visual"
    "cta    visual";
}

.ia-spotlight-copy { grid-area: copy; }

.ia-spotlight-cta { grid-area: cta; }

.ia-eyebrow { color: rgba(255, 255, 255, 0.7); }

.ia-spotlight .section-title { color: #fff; margin-bottom: 18px; }

.ia-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 28px;
  max-width: 520px;
}

.ia-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.ia-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}

.ia-features li::before {
  content: '\2713';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-size: 0.7rem;
  font-weight: 700;
}

.ia-spotlight .btn-primary { background: #fff; color: var(--blue); }

.ia-spotlight .btn-primary:hover { background: var(--blue-light); }

.ia-spotlight-visual { grid-area: visual; align-self: center; display: flex; justify-content: center; }

.phone-mockup {
  position: relative;
  width: 280px;
  max-width: 100%;
  aspect-ratio: 398 / 802;
  filter: drop-shadow(0 24px 40px rgba(20, 20, 20, 0.22));
}

.phone-frame-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.phone-screen-overlay {
  position: absolute;
  top: 8%;
  bottom: 2%;
  left: 4.77%;
  right: 4.52%;
  border-radius: 3% 3% 13% 13% / 1.5% 1.5% 6.5% 6.5%;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.phone-status-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 20px 2px;
  color: var(--ink);
}

.phone-time { font-size: 0.78rem; font-weight: 700; }

.phone-status-icons { display: flex; align-items: center; gap: 5px; }

.phone-status-icons svg { width: 15px; height: auto; }

/* ===== WhatsApp-style chat ===== */
.wa-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 12px;
  border-bottom: 1px solid var(--border);
}

.wa-back { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }

.wa-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  overflow: hidden;
}

.wa-avatar img { width: 20px; height: 20px; object-fit: contain; }

.wa-title { display: flex; flex-direction: column; gap: 1px; }

.wa-title strong { font-size: 0.84rem; color: var(--ink); }

.wa-title span { font-size: 0.7rem; color: #667781; }

.wa-icons { display: flex; align-items: center; gap: 16px; margin-left: auto; color: #54656f; }

.wa-icons svg { width: 18px; height: 18px; }

.wa-chat {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 10px;
  min-height: 300px;
  background-color: #e9ddce;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px;
  background-position: 0 0, 13px 13px;
}

.wa-msg {
  position: relative;
  max-width: 82%;
  padding: 7px 8px 6px 9px;
  border-radius: 8px;
  font-size: 0.83rem;
  line-height: 1.35;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.12);
}

.wa-msg-them {
  background: #fff;
  align-self: flex-start;
  border-top-left-radius: 0;
}

.wa-msg-mine {
  background: #d9fdd3;
  align-self: flex-end;
  border-top-right-radius: 0;
}

.wa-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
  font-size: 0.62rem;
  color: rgba(17, 27, 33, 0.45);
}

.wa-meta svg { width: 14px; height: 14px; color: #53bdeb; }

.wa-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #f0f0f0;
}

.wa-input-pill {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: 1;
  padding: 7px 12px;
  border-radius: 20px;
  background: #fff;
  color: #8696a0;
}

.wa-input-pill svg { width: 18px; height: 18px; flex-shrink: 0; }

.wa-input-pill span { flex: 1; font-size: 0.8rem; }

.wa-mic-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  flex-shrink: 0;
}

.wa-mic-btn svg { width: 15px; height: 15px; }

.phone-home-indicator {
  width: 120px;
  height: 4px;
  margin: 8px auto 10px;
  border-radius: 3px;
  background: var(--ink);
  opacity: 0.3;
}

/* ===== Comparativo ===== */
.comparativo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.comparativo-col {
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid var(--border);
}

.comparativo-sem { background: var(--bg-soft); }

.comparativo-com { background: var(--blue-light); border-color: var(--blue); }

.comparativo-col h3 { font-size: 1.15rem; margin-bottom: 20px; }

.comparativo-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.comparativo-col li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparativo-col li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
}

.comparativo-sem li::before {
  background-color: var(--border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234B535B' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 6l12 12M18 6L6 18'/%3E%3C/svg%3E");
}

.comparativo-com li::before {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
}

/* ===== Processo ===== */
.processo { background: var(--bg-soft); }

.processo-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.processo-steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.processo-step { position: relative; text-align: center; }

.processo-number {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
}

.processo-step h3 { font-size: 1.05rem; margin-bottom: 8px; }

.processo-step p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Diferenciais ===== */
.diferenciais { background: var(--bg-soft); }

.diferenciais-grid { grid-template-columns: repeat(4, 1fr); }

.diferencial { text-align: left; }

.diferencial-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.diferencial-icon svg { width: 24px; height: 24px; color: var(--blue); }

.diferencial h3 { font-size: 1.05rem; margin-bottom: 8px; }

.diferencial p { color: var(--ink-soft); font-size: 0.92rem; }

/* ===== Sobre ===== */
.sobre-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}

.sobre-copy p { color: var(--ink-soft); margin-bottom: 16px; }

.sobre-stats {
  display: grid;
  gap: 20px;
}

.stat {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
}

.stat strong {
  display: block;
  font-family: var(--ff-head);
  font-size: 1.8rem;
  color: var(--blue);
  margin-bottom: 6px;
}

.stat span { color: var(--gray); font-size: 0.9rem; }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--blue);
  padding: 72px 0;
}

.cta-banner-inner { text-align: center; }

.cta-banner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin-bottom: 14px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--blue);
}

.cta-banner .btn-primary:hover { background: var(--blue-light); }

/* ===== Contato ===== */
.contato-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
  text-align: left;
}

.contato-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contato-info-item:not(.contato-info-static):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: var(--blue);
}

.contato-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contato-icon svg { width: 22px; height: 22px; color: var(--blue); }

.contato-info-text { display: flex; flex-direction: column; gap: 2px; }

.contato-info-text strong { font-size: 0.95rem; }

.contato-info-text span { color: var(--gray); font-size: 0.85rem; }

/* ===== Contact form ===== */
.contato-form {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row { display: flex; flex-direction: column; gap: 6px; }

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.required-mark { color: var(--blue); }

.form-row input, .form-row textarea {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink);
  resize: vertical;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(42, 93, 134, 0.12);
}

.form-submit { align-self: flex-start; }

.form-success {
  display: none;
  order: -1;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.contato-form.is-sent .form-success { display: flex; }

/* ===== Footer ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-logo img { height: 32px; filter: brightness(0) invert(1); }

.footer-nav { display: flex; gap: 24px; flex-wrap: wrap; }

.footer-nav a, .footer-social a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.15s ease;
}

.footer-nav a:hover, .footer-social a:hover { color: #fff; }

.footer-social { display: flex; gap: 20px; }

.footer-bottom {
  padding: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== WhatsApp float button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 28px; height: 28px; color: #fff; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .services-grid, .diferenciais-grid, .processo-steps { grid-template-columns: repeat(2, 1fr); }
  .processo-steps { row-gap: 40px; }
  .processo-steps::before { display: none; }
  .ia-spotlight-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "cta";
  }
  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "visual"
      "lead"
      "actions";
  }
  .hero-visual { flex-direction: row; flex-wrap: wrap; margin: 8px 0 4px; }
  .hero-card { flex: 1 1 240px; margin-left: 0 !important; }
  .sobre-inner { grid-template-columns: 1fr; }
  .contato-layout { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed;
    top: 76px;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(300px, 80vw);
    background: var(--blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 28px;
    gap: 22px;
    overflow-y: auto;
    transform: translateX(calc(100% + 24px));
    transition: transform 0.3s ease;
    box-shadow: -16px 0 40px rgba(27, 33, 38, 0.18);
    z-index: 95;
  }

  .nav.open { transform: translateX(0); }

  .nav a { color: rgba(255, 255, 255, 0.85); }

  .nav a:hover { color: #fff; }

  .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    background: #fff;
  }

  .nav a.nav-cta { color: var(--blue); }

  .nav a.nav-cta:hover { background: var(--blue-light); color: var(--blue-dark); }

  .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(17, 24, 28, 0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 90;
  }

  .nav-overlay.open { opacity: 1; pointer-events: auto; }

  body.menu-open { overflow: hidden; }

  .menu-toggle { display: flex; }

  .btn-header { display: none; }

  .menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section { padding: 64px 0; }

  .services-grid, .diferenciais-grid, .comparativo-grid, .processo-steps { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
