/* ==========================================================
   WebFormas — Página de cidade
   Agência de Marketing Digital em Manaus - AM
   Identidade: brutalist-pop (mesma da LP /agencia/)
   ========================================================== */

/* Archivo Black auto-hospedada — preload + optional => sem CLS */
@font-face {
  font-family: 'Archivo Black';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('../fonts/archivo-black-latin.woff2') format('woff2');
}
/* Fallback com métricas equivalentes (zera o shift se a fonte demorar) */
@font-face {
  font-family: 'Archivo Black Fallback';
  src: local('Impact'), local('Arial Bold'), local('Arial');
  ascent-override: 87.8%;
  descent-override: 21%;
  line-gap-override: 0%;
}

:root {
  --purple-900: #2A0A4F;
  --purple-800: #3B1278;
  --purple-700: #4F1B8B;
  --purple-600: #6B2FC9;
  --purple-500: #8B4FE8;
  --purple-400: #B088FF;

  --lime: #A8E830;
  --lime-bright: #C5FF3D;
  --lime-deep: #7AB800;

  --magenta: #FF2E9A;
  --magenta-bright: #FF5CB8;
  --hot-pink: #FF1478;

  --yellow: #FFC107;
  --yellow-bright: #FFD93D;

  --cyan: #2DD4FF;
  --orange: #FF6B35;

  --ink: #0A0614;
  --ink-soft: #14091F;
  --paper: #FAF7F2;
  --paper-warm: #F5EDE0;
  --cream: #FFF6E3;

  --font-display: 'Archivo Black', 'Archivo Black Fallback', 'Impact', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-hand: 'Caveat', cursive;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

html, body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  background:
    radial-gradient(ellipse 1200px 600px at 10% -10%, rgba(168, 232, 48, 0.15), transparent 60%),
    radial-gradient(ellipse 800px 600px at 110% 15%, rgba(255, 46, 154, 0.12), transparent 60%),
    var(--paper);
  padding-top: 96px;
}

img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }

/* ===================== Noise overlay ===================== */
.noise {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' /%3E%3C/svg%3E");
}

/* ===================== Botão assinatura ===================== */
.wf-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 34px;
  background: linear-gradient(180deg, var(--lime-bright) 0%, var(--lime) 55%, var(--lime-deep) 100%);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 999px;
  border: 3px solid var(--ink);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.6),
    inset 0 -3px 0 rgba(0,0,0,0.2),
    6px 6px 0 0 var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
}
.wf-btn::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 50%);
  pointer-events: none;
}
.wf-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.8) 50%, transparent 100%);
  transform: skewX(-22deg);
  animation: btnShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%, 30% { left: -60%; }
  70%, 100% { left: 130%; }
}
.wf-btn:hover {
  transform: translate(-3px, -3px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.6),
    inset 0 -3px 0 rgba(0,0,0,0.2),
    10px 10px 0 0 var(--ink);
  filter: saturate(1.15);
}
.wf-btn:active {
  transform: translate(2px, 2px);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.6),
    inset 0 -3px 0 rgba(0,0,0,0.2),
    2px 2px 0 0 var(--ink);
}
.wf-btn .wf-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--lime-bright);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.wf-btn:hover .wf-btn-arrow { transform: translateX(4px) rotate(-45deg); }

.wf-btn.wf-btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 3px var(--ink), 6px 6px 0 0 var(--ink);
}
.wf-btn.wf-btn-ghost::before,
.wf-btn.wf-btn-ghost::after { display: none; }

.wf-btn.wf-btn-on-dark {
  border-color: var(--lime-bright);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.6),
    inset 0 -3px 0 rgba(0,0,0,0.3),
    6px 6px 0 0 var(--lime-bright);
}
.wf-btn.wf-btn-on-dark:hover {
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.6),
    inset 0 -3px 0 rgba(0,0,0,0.3),
    10px 10px 0 0 var(--lime-bright);
}

/* ===================== Sticker / tag ===================== */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--yellow);
  color: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}
.sticker.pink { background: var(--magenta); color: var(--ink); }
.sticker.lime { background: var(--lime); }
.sticker.cyan { background: var(--cyan); }
.sticker.dark { background: var(--ink); color: var(--lime-bright); border-color: var(--lime-bright); box-shadow: 3px 3px 0 var(--lime-bright); }
.sticker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: currentColor;
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: 0.3; } }
.sticker-gap { margin-bottom: 20px; }
.sticker-gap-lg { margin-bottom: 24px; }

/* ===================== Marquee ===================== */
.marquee {
  overflow: hidden;
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  background: var(--ink);
  color: var(--lime-bright);
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  gap: 48px;
  padding: 18px 0;
  width: max-content;
  animation: scroll 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee-item svg { color: var(--magenta); }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee.light { background: var(--paper); color: var(--ink); }
.marquee.light .marquee-item svg { color: var(--purple-700); }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===================== Container ===================== */
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ===================== Nav ===================== */
.nav {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 20px;
}
.nav-inner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 22px;
  background: var(--ink);
  border: 2.5px solid var(--ink);
  border-radius: 100px;
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.nav-inner > :not(.nav-anim) { position: relative; z-index: 2; }

.nav-anim {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  filter: blur(34px) saturate(1.2);
  background: linear-gradient(120deg, #2A0A4F 0%, #0A0614 60%, #3B1278 100%);
}
.nav-blob {
  position: absolute;
  width: 60%;
  height: 380%;
  top: -140%;
  border-radius: 50%;
  mix-blend-mode: screen;
  will-change: transform;
}
.nav-blob-1 {
  left: -10%;
  background: radial-gradient(circle, rgba(40, 0, 50, 0.95) 0%, rgba(255, 46, 154, 0) 60%);
  animation: navMoveA 14s ease-in-out infinite;
}
.nav-blob-2 {
  left: 25%;
  background: radial-gradient(circle, rgba(139, 79, 232, 0.90) 0%, rgba(139, 79, 232, 0) 60%);
  animation: navMoveB 18s ease-in-out infinite;
}
.nav-blob-3 {
  left: 55%;
  background: radial-gradient(circle, rgba(154, 14, 139, 0.75) 0%, rgba(168, 232, 48, 0) 60%);
  animation: navMoveC 22s ease-in-out infinite;
}
.nav-blob-4 {
  left: 75%;
  background: radial-gradient(circle, rgba(40, 0, 50, 0.70) 0%, rgba(45, 212, 255, 0) 60%);
  animation: navMoveA 26s linear infinite reverse;
}
@keyframes navMoveA {
  0%, 100% { transform: translate(-30%, 0) scale(1); }
  50%      { transform: translate(40%, 10%) scale(1.2); }
}
@keyframes navMoveB {
  0%, 100% { transform: translate(20%, -5%) scale(1.1); }
  50%      { transform: translate(-40%, 8%) scale(0.9); }
}
@keyframes navMoveC {
  0%, 100% { transform: translate(-20%, 5%) scale(1); }
  50%      { transform: translate(30%, -8%) scale(1.3); }
}
@media (prefers-reduced-motion: reduce) {
  .nav-blob { animation: none; }
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}
.nav-logo img {
  height: 81px;
  width: auto;
  display: block;
  margin-left: 17px;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
  color: #fff;
}
.nav-links a:hover { color: var(--magenta); }
@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ===================== Utilitários ===================== */
.float-slow { animation: floatSlow 6s ease-in-out infinite; }
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .float-slow { animation: none; }
}
.num-star { font-size: 0.5em; color: var(--magenta); }

/* ==================================================
   HERO
   ================================================== */
.hero {
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 60px 0 100px;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.04;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 40px 40px 60px;
  max-width: 1360px;
  margin: 0 auto;
}
.hero-stickers {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.0vw, 80px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  z-index: 2;
  max-width: 15ch;
}
.hero-title .line-1 { display: block; }
.hero-title .line-2 { display: block; color: var(--purple-700); }
.hero-title .stroke {
  -webkit-text-stroke: 3px var(--ink);
  color: transparent;
}
.hero-kicker {
  display: block;
  font-family: var(--font-hand);
  font-weight: 700;
  font-size: clamp(40px, 6.5vw, 88px);
  color: var(--magenta);
  line-height: 0.85;
  margin-top: 12px;
  letter-spacing: -0.02em;
  text-transform: none;
  transform: rotate(-3deg);
  transform-origin: left;
}

.hero-chameleon {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 40%;
  max-width: 470px;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 20px 40px rgba(79, 27, 139, 0.3));
}
.hero-chameleon img { width: 100%; }

.hero-bottom {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: end;
  position: relative;
  z-index: 5;
}
.hero-bottom > * { min-width: 0; }
.hero-copy {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.5;
  max-width: 640px;
  font-weight: 500;
  color: var(--ink-soft);
}
.hero-copy strong { font-weight: 800; color: var(--purple-700); }

.hero-bullets {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 12px;
}
.hero-bullets li {
  position: relative;
  padding-left: 34px;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink-soft);
}
.hero-bullets li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 2px 2px 0 var(--ink);
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
}

.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  z-index: 5;
}
.hero-cta-sub {
  font-family: var(--font-hand);
  font-size: 22px;
  color: var(--magenta);
  transform: rotate(-4deg);
  margin-left: 90px;
}

.hero-proof-row {
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
  gap: 35px 80px;
  align-items: center;
  padding-top: 40px;
  border-top: 2px dashed var(--ink);
}
.hero-proof { display: flex; align-items: baseline; gap: 10px; }
.hero-proof-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 42px);
  color: var(--purple-700);
  line-height: 1;
  letter-spacing: -0.03em;
}
.hero-proof-label {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  max-width: 140px;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .hero-chameleon {
    position: relative;
    right: auto; top: auto;
    width: 60%;
    margin: 20px auto -50px;
  }
  .hero-bottom { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(30px, 8.5vw, 52px); max-width: none; }
  .hero-kicker { font-size: clamp(34px, 10vw, 56px); }
}

/* ==================================================
   CENÁRIO LOCAL (o problema)
   ================================================== */
.scenario-section {
  background: var(--cream);
  position: relative;
  padding: 130px 0 120px;
  z-index: 2;
}
.scenario-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}
.scenario-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.scenario-title .purple { color: var(--purple-700); }
.scenario-title .stroke {
  -webkit-text-stroke: 2.5px var(--ink);
  color: transparent;
}
.scenario-intro {
  font-size: 18px;
  line-height: 1.55;
  max-width: 440px;
  padding-bottom: 14px;
}
.scenario-intro strong { font-weight: 800; color: var(--purple-700); }

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.scenario-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 32px 26px;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.scenario-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--ink);
}
.scenario-card .num {
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1;
  color: var(--magenta);
  -webkit-text-stroke: 1.5px var(--ink);
  margin-bottom: 18px;
}
.scenario-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
}
.scenario-card p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.scenario-quote {
  margin-top: 50px;
  padding: 34px 40px;
  background: var(--ink);
  color: #fff;
  border-radius: 24px;
  border: 3px solid var(--ink);
  font-family: var(--font-display);
  font-size: clamp(19px, 2.1vw, 28px);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-align: center;
}
.scenario-quote .lime { color: var(--lime-bright); }

@media (max-width: 1100px) {
  .scenario-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .scenario-header { grid-template-columns: 1fr; }
  .scenario-section { padding: 90px 0 80px; }
}
@media (max-width: 560px) {
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario-quote { padding: 26px 22px; }
}

/* ==================================================
   SERVIÇOS
   ================================================== */
.services-section {
  background: #fff;
  position: relative;
  padding: 140px 0 120px;
  z-index: 2;
}
.services-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 20px;
}
.services-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.6vw, 68px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.services-title .purple { color: var(--purple-700); }
.services-title .stroke {
  -webkit-text-stroke: 2.5px var(--ink);
  color: transparent;
}
.services-intro {
  font-size: 18px;
  line-height: 1.55;
  max-width: 440px;
  padding-bottom: 14px;
}
.services-intro strong { font-weight: 800; color: var(--purple-700); }

.triad-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-hand);
  font-size: 32px;
  color: var(--magenta);
  transform: rotate(-2deg);
  margin: 40px 0 20px;
}
.triad-label-spaced { margin-top: 70px; }

.triad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 30px;
  background: #fff;
  border-radius: 24px;
  border: 3px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 12px 12px 0 var(--ink);
}
.service-card.hero-card { background: var(--purple-700); color: #fff; }
.service-card.hero-card-2 { background: var(--lime); }
.service-card.hero-card-3 { background: var(--magenta); color: #fff; }

.service-number {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  opacity: 0.6;
  margin-bottom: 20px;
}
.service-icon {
  width: 68px; height: 68px;
  border-radius: 18px;
  border: 2.5px solid var(--ink);
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--ink);
}
.service-card.hero-card .service-icon { background: var(--lime-bright); }
.service-card.hero-card-2 .service-icon { background: #fff; }
.service-card.hero-card-3 .service-icon { background: var(--yellow); }

.service-name {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.service-desc {
  font-size: 15.5px;
  line-height: 1.5;
  opacity: 0.92;
  margin-bottom: 24px;
  flex-grow: 1;
}
.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  opacity: 0.85;
  width: fit-content;
}
.service-features li::before { content: "→"; font-weight: 900; }

.service-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.service-mini {
  padding: 24px 22px;
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  transition: transform 0.2s ease;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-mini:hover { transform: translateY(-4px); }
.service-mini .icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink);
  color: var(--lime-bright);
  border-radius: 12px;
  margin-bottom: 16px;
}
.service-mini .name {
  font-family: var(--font-display);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 6px;
}
.service-mini .name-sub {
  font-size: 16px;
  color: var(--magenta);
  font-weight: 700;
  margin-bottom: 10px;
}
.service-mini .desc {
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--ink-soft);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

@media (max-width: 900px) {
  .services-header { grid-template-columns: 1fr; }
  .triad-grid { grid-template-columns: 1fr; }
  .service-secondary-grid { grid-template-columns: 1fr 1fr; }
  .services-section { padding: 90px 0 80px; }
}
@media (max-width: 520px) {
  .service-secondary-grid { grid-template-columns: 1fr; }
}

/* ==================================================
   MÉTODO
   ================================================== */
.method-section {
  background: var(--purple-700);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  z-index: 2;
}
.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 80px 80px;
}
.method-header {
  max-width: 900px;
  margin: 0 auto 70px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.method-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.4vw, 78px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-top: 12px;
}
.method-title .lime { color: var(--lime-bright); }
.method-title .hand {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--yellow-bright);
  letter-spacing: -0.01em;
  text-transform: none;
}
.method-intro {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  max-width: 640px;
  margin: 20px auto 0;
}
.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.method-step {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  transition: all 0.3s ease;
}
.method-step:hover {
  background: var(--lime-bright);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-6px);
}
.method-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 1;
  color: var(--lime-bright);
  margin-bottom: 20px;
  transition: color 0.3s;
}
.method-step:hover .method-step-num { color: var(--magenta); }
.method-step-name {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.method-step-desc { font-size: 14.5px; line-height: 1.5; opacity: 0.85; }
.method-section .section-cta { margin-top: 60px; position: relative; z-index: 2; }

@media (max-width: 900px) {
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-section { padding: 90px 0; }
}
@media (max-width: 520px) {
  .method-steps { grid-template-columns: 1fr; }
}

/* ==================================================
   ÁREAS ATENDIDAS (bairros / zonas)
   ================================================== */
.areas-section {
  background: var(--paper);
  position: relative;
  padding: 130px 0 120px;
  z-index: 2;
}
.areas-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}
.areas-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 62px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-top: 16px;
}
.areas-title .purple { color: var(--purple-700); }
.areas-title .hand {
  font-family: var(--font-hand);
  color: var(--magenta);
  font-weight: 700;
  display: inline-block;
  transform: rotate(-3deg);
  text-transform: none;
}
.areas-intro {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 20px;
  color: var(--ink-soft);
}
.areas-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.areas-list li {
  padding: 9px 18px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s ease, background 0.15s ease;
}
.areas-list li:hover { transform: translate(-2px, -2px); background: var(--lime); }
.areas-note {
  text-align: center;
  margin-top: 34px;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.areas-note strong { color: var(--purple-700); }

@media (max-width: 900px) {
  .areas-section { padding: 90px 0 80px; }
}

/* ==================================================
   DEPOIMENTOS + NÚMEROS
   ================================================== */
.testimonials-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  z-index: 2;
}
.testimonials-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}
.testimonials-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-top: 16px;
}
.testimonials-title .hand {
  font-family: var(--font-hand);
  color: var(--magenta);
  font-weight: 700;
  display: inline-block;
  transform: rotate(-3deg);
  text-transform: none;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 30px;
  position: relative;
  box-shadow: 6px 6px 0 var(--ink);
}
.testimonial-card.featured { background: var(--yellow); transform: rotate(-1deg); }
.testimonial-card:nth-child(2) { transform: translateY(-20px); }
.testimonial-card:nth-child(3) { transform: rotate(1deg); }
.testimonial-stars {
  color: var(--yellow);
  font-size: 22px;
  letter-spacing: 4px;
  -webkit-text-stroke: 1px var(--ink);
  margin-bottom: 16px;
}
.testimonial-card.featured .testimonial-stars { color: var(--ink); -webkit-text-stroke: 0; }
.testimonial-quote {
  font-size: 17px;
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 500;
}
.testimonial-quote::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 60px;
  line-height: 0;
  vertical-align: -30px;
  color: var(--magenta);
  margin-right: 6px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}
.testimonial-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--purple-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-avatar.bg-magenta { background: var(--magenta); }
.testimonial-avatar.bg-ink { background: var(--ink); }
.testimonial-avatar.bg-lime { background: var(--lime); color: var(--ink); }
.testimonial-name {
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.1;
  text-transform: uppercase;
}
.testimonial-role { font-size: 13px; color: var(--ink-soft); opacity: 0.7; }

.why-block {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 2px dashed var(--ink);
  text-align: center;
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.why-title .hand {
  font-family: var(--font-hand);
  color: var(--magenta);
  font-weight: 700;
  display: inline-block;
  transform: rotate(-2deg);
  text-transform: none;
}
.why-copy {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
  font-weight: 500;
  color: var(--ink-soft);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border: 3px solid var(--ink);
  border-radius: 24px;
  padding: 28px 20px;
  box-shadow: 6px 6px 0 var(--ink);
  text-align: center;
}
.why-card:nth-child(odd) { transform: rotate(-1deg); }
.why-card:nth-child(even) { transform: rotate(1deg); }
.why-card .num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 44px);
  color: var(--purple-700);
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-card .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  margin-top: 10px;
  line-height: 1.3;
}

@media (max-width: 900px) {
  .testimonials-section { padding: 90px 0 80px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-card:nth-child(n) { transform: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-card { padding: 22px 14px; }
  .why-card:nth-child(n) { transform: none; }
}

/* ==================================================
   CTA FINAL
   ================================================== */
.cta-section {
  background: #270F66;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 140px 0 120px;
  z-index: 2;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, var(--magenta) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, var(--purple-600) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, var(--lime) 0%, transparent 30%);
  opacity: 0.3;
  filter: blur(20px);
}
.cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 68px);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
.cta-title .hand {
  font-family: var(--font-hand);
  font-weight: 700;
  color: var(--lime-bright);
  font-size: 1.2em;
  display: inline-block;
  transform: rotate(-2deg);
  line-height: 0.9;
  text-transform: none;
}
.cta-title .magenta { color: var(--magenta-bright); }
.cta-copy {
  font-size: 20px;
  line-height: 1.55;
  max-width: 680px;
  margin: 30px auto 40px;
  color: rgba(255,255,255,0.85);
}
.cta-copy strong { color: var(--lime-bright); }
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.cta-note {
  margin-top: 26px;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
}
.cta-chameleon {
  position: absolute;
  bottom: -8%;
  right: -5%;
  width: 360px;
  z-index: 1;
  opacity: 0.9;
  transform: rotate(12deg);
  filter: drop-shadow(0 0 60px rgba(168, 232, 48, 0.5));
}
@media (max-width: 900px) {
  .cta-section { padding: 90px 0 80px; }
  .cta-chameleon { display: none; }
}

/* ==================================================
   FAQ
   ================================================== */
.faq-section {
  background: var(--paper);
  padding: 140px 0 120px;
  position: relative;
  z-index: 2;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.faq-left .eyebrow {
  font-family: var(--font-hand);
  font-size: 32px;
  color: var(--magenta);
  transform: rotate(-3deg);
  display: inline-block;
}
.faq-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 14px 0 24px;
}
.faq-title .purple { color: var(--purple-700); }
.faq-subtitle {
  font-size: 17px;
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 400px;
}
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 2.5px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.2s;
}
.faq-item.open { background: var(--lime); box-shadow: 6px 6px 0 var(--ink); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  color: var(--ink);
  background: none;
  cursor: pointer;
}
.faq-q-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-family: var(--font-display);
  transition: transform 0.3s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); background: var(--magenta); color: #fff; }
.faq-a {
  padding: 0 26px 22px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-soft);
  display: none;
}
.faq-item.open .faq-a { display: block; }

@media (max-width: 900px) {
  .faq-section { padding: 90px 0 80px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ==================================================
   OUTRAS CAPITAIS
   ================================================== */
.cities-section {
  background: var(--ink);
  color: #fff;
  padding: 110px 0 100px;
  position: relative;
  z-index: 2;
  border-top: 3px solid var(--ink);
}
.cities-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.cities-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-top: 16px;
}
.cities-title .lime { color: var(--lime-bright); }
.cities-intro {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
}
.cities-region { margin-bottom: 38px; }
.cities-region h3 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--magenta-bright);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.cities-region ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 18px;
}
.cities-region a {
  display: inline-block;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  padding: 4px 0;
  transition: color 0.2s, transform 0.2s;
}
.cities-region a:hover { color: var(--lime-bright); transform: translateX(3px); }
.cities-region a[aria-current="page"] {
  color: var(--lime-bright);
  font-weight: 700;
  pointer-events: none;
}

@media (max-width: 900px) {
  .cities-section { padding: 80px 0 70px; }
  .cities-region ul { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .cities-region ul { grid-template-columns: 1fr; }
}

/* ==================================================
   FOOTER
   ================================================== */
.footer {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 20px 0 40px;
  z-index: 2;
}
.footer-huge {
  font-family: var(--font-display);
  font-size: clamp(65px, 9vw, 311px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.78);
  color: transparent;
  text-align: center;
  margin-bottom: 40px;
  pointer-events: none;
}
.footer-huge .magenta { color: var(--magenta-bright); -webkit-text-stroke: 0; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.footer-brand-logo { margin-bottom: 14px; }
.footer-brand-logo img { height: 138px; width: auto; display: block; }
.footer-brand-desc {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
  max-width: 320px;
}
.footer-social { display: flex; gap: 10px; margin-top: 4px; }
.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--magenta);
  border-color: var(--magenta);
}
.footer-col h3 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--lime-bright);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 15px; color: rgba(255,255,255,0.75); transition: color 0.2s; }
.footer-col a:hover { color: var(--lime-bright); }

.footer .wf-btn, .footer .wf-btn:hover { color: #000; }

.footer-contact-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
}
.footer-contact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--magenta-bright);
  margin-bottom: 4px;
}
.footer-contact-value {
  font-family: var(--font-display);
  font-size: 19px;
  margin-bottom: 14px;
}
.footer-contact-email { font-size: 15px; }

/* Créditos: copyright centralizado + logo WebFormas abaixo, também centralizado */
.footer-credit {
  padding-top: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.footer-credit p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 720px;
}
.footer-credit img {
  height: 58px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}
.footer-credit a:hover img { opacity: 1; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ==================================================
   WhatsApp flutuante
   ================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 64px;
  height: 64px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  z-index: 90;
  transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 3px solid #25D366;
  animation: ring 1.8s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before { animation: none; }
}

/* ==================================================
   Scroll reveal
   ================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==================================================
   Responsivo — ajustes finais
   ================================================== */
@media (max-width: 900px) {
  .nav { top: 10px; padding: 0 12px; }
  body { padding-top: 92px; }
  .nav-inner { padding: 8px 14px 8px 10px; gap: 10px; border-radius: 80px; }
  .nav-logo img { height: 56px; margin-left: 4px; }
  .nav .wf-btn { padding: 12px 20px; font-size: 14px; gap: 8px; }
  .nav .wf-btn .wf-btn-arrow { width: 26px; height: 26px; }

  .hero { padding: 30px 0 70px; }
  .hero-inner { padding: 24px 20px 40px; overflow: hidden; }
  .hero-stickers { gap: 8px; margin-bottom: 24px; }
  .hero-stickers .sticker { font-size: 11px; padding: 6px 12px; letter-spacing: 0.04em; }
  .hero-kicker { transform: rotate(-2deg); }
  .hero-cta-sub { margin-left: 0; font-size: 18px; }
  .hero-bottom { gap: 28px; margin-top: 36px; }
  .hero-proof-row { gap: 20px 28px; margin-top: 40px; padding-top: 28px; }
  .hero-proof-num { font-size: clamp(34px, 7vw, 47px); }
  .hero-proof-label { font-size: 12px; max-width: 110px; }

  .container { padding: 0 20px; }
}

@media (max-width: 768px) {
  .hero-title,
  .scenario-title,
  .services-title,
  .method-title,
  .areas-title,
  .testimonials-title,
  .cta-title,
  .faq-title,
  .cities-title,
  .footer-huge {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (max-width: 520px) {
  html, body { font-size: 15px; }

  .scenario-title   { font-size: clamp(26px, 7.5vw, 38px); }
  .services-title   { font-size: clamp(28px, 8vw, 40px); }
  .method-title     { font-size: clamp(30px, 8.5vw, 42px); }
  .areas-title      { font-size: clamp(27px, 7.8vw, 38px); }
  .testimonials-title { font-size: clamp(30px, 8vw, 42px); }
  .cta-title        { font-size: clamp(27px, 8vw, 40px); }
  .faq-title        { font-size: clamp(28px, 8vw, 38px); }
  .cities-title     { font-size: clamp(24px, 7vw, 34px); }
  .footer-huge      { font-size: clamp(44px, 13vw, 64px); }
  .faq-q            { font-size: 15px; padding: 18px 20px; }

  .nav { top: 8px; padding: 0 8px; }
  body { padding-top: 78px; }
  .nav-inner { padding: 6px 10px 6px 6px; gap: 8px; border-radius: 60px; border-width: 2px; }
  .nav-logo img { height: 44px; margin-left: 0; }
  .nav .wf-btn {
    padding: 9px 14px;
    font-size: 12px;
    gap: 6px;
    letter-spacing: 0.02em;
    border-width: 2px;
    box-shadow:
      inset 0 2px 0 rgba(255,255,255,0.6),
      inset 0 -2px 0 rgba(0,0,0,0.2),
      3px 3px 0 0 var(--ink);
  }
  .nav .wf-btn .wf-btn-arrow { width: 22px; height: 22px; }

  .hero-inner { padding: 16px 16px 28px; }
  .hero-copy { font-size: 16px; }
  .hero-chameleon { width: 72%; margin: 16px auto -36px; }
  .hero-proof-row { gap: 22px 18px; }
  .hero-proof {
    flex: 1 1 calc(50% - 10px);
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .hero-proof-label { font-size: 11px; max-width: 100%; }

  .wf-btn {
    padding: 16px 26px;
    font-size: 15px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .container { padding: 0 16px; }
}
