/* ============================================
   ATACADO REIWIU — Sistema de Design
   Verde Petróleo #27736A · Off-white #F5F2EC
   ============================================ */

:root {
  --green: #27736A;
  --green-dark: #1B5B52;
  --green-deep: #0F3B35;
  --green-soft: #E8F0EE;
  --whatsapp: #25D366;
  --whatsapp-hover: #1FB855;
  --off-white: #F5F2EC;
  --off-white-2: #EEEAE1;
  --ink: #141414;
  --ink-2: #2A2A2A;
  --muted: #6B6B66;
  --line: rgba(20,20,20,0.08);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 3px rgba(15,59,53,0.06), 0 1px 2px rgba(15,59,53,0.04);
  --shadow: 0 4px 20px rgba(15,59,53,0.08), 0 2px 6px rgba(15,59,53,0.05);
  --shadow-lg: 0 24px 60px rgba(15,59,53,0.15), 0 8px 20px rgba(15,59,53,0.08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  max-width: 100%;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Archivo', 'Inter', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.container { width: min(1280px, 92vw); margin: 0 auto; }
.wide { width: min(1440px, 94vw); margin: 0 auto; }

/* ================ HEADER ================ */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background 300ms var(--ease), backdrop-filter 300ms, box-shadow 300ms, padding 300ms var(--ease);
}
.header.scrolled {
  background: rgba(245,242,236,0.92);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  box-shadow: 0 1px 0 rgba(20,20,20,0.06);
  padding: 12px 0;
}
.header .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px;
}
.logo-wrap {
  display: flex; align-items: center; gap: 12px;
}
.logo-wrap img {
  height: 34px; width: auto;
  filter: brightness(0) invert(1);
  transition: filter 300ms var(--ease);
}
.header.scrolled .logo-wrap img { filter: none; }
.nav {
  display: flex; align-items: center; gap: 30px;
  font-size: 14px; font-weight: 500;
}
.nav a {
  color: rgba(255,255,255,0.9);
  transition: color 200ms var(--ease);
  position: relative;
}
.header.scrolled .nav a { color: var(--ink-2); }
.nav a:hover { color: var(--whatsapp); }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--whatsapp);
  transform: scaleX(0); transform-origin: left;
  transition: transform 250ms var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 22px;
  font-weight: 600; font-size: 14px;
  border-radius: 100px;
  transition: transform 250ms var(--ease-bounce), box-shadow 250ms var(--ease), background 200ms;
  white-space: nowrap;
}
.btn-wa {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.btn-wa:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.5);
}
.btn-wa svg { width: 18px; height: 18px; }
.btn-lg { padding: 18px 32px; font-size: 16px; }
.btn-xl { padding: 22px 40px; font-size: 18px; }
.btn-ghost {
  color: var(--ink);
  border: 1.5px solid rgba(20,20,20,0.15);
  background: transparent;
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-outline-white {
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }

.pulse-wa {
  position: relative;
}
.pulse-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: var(--whatsapp);
  animation: pulseRing 2s cubic-bezier(0.4,0,0.2,1) infinite;
  z-index: -1;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.5; }
  80%, 100% { transform: scale(1.25); opacity: 0; }
}

/* ================ HERO ================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  color: white;
  padding: 140px 0 60px;
  isolation: isolate;
}
.hero-media {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(135deg, #0F3B35 0%, #1A1A1A 100%);
  overflow: hidden;
}
.hero-media iframe,
.hero-media video {
  position: absolute;
  top: 50%; left: 50%;
  width: 177.78vh; /* 16:9 */
  min-width: 100%;
  height: 56.25vw; /* 16:9 */
  min-height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border: 0;
  object-fit: cover;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(15,59,53,0.55) 0%, rgba(15,59,53,0.3) 40%, rgba(15,59,53,0.85) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 60%);
}

/* Sound toggle (now in header next to WA button) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-sound {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(15,28,26,0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 220ms var(--ease), border-color 220ms, transform 220ms var(--ease-bounce);
}
.header.scrolled .hero-sound {
  background: rgba(15,28,26,0.92);
  border-color: rgba(110,231,183,0.25);
}
.hero-sound:hover {
  background: rgba(15,28,26,0.78);
  border-color: rgba(255,255,255,0.32);
  transform: translateY(-1px);
}
.hero-sound svg { width: 18px; height: 18px; flex: 0 0 18px; }
.hero-sound .ico-mute { display: inline-block; }
.hero-sound .ico-sound { display: none; }
.hero-sound[data-on="true"] .ico-mute { display: none; }
.hero-sound[data-on="true"] .ico-sound { display: inline-block; }
.hero-sound[data-on="true"] {
  background: rgba(39,115,106,0.92);
  border-color: rgba(110,231,183,0.45);
}
.hero-sound .hero-sound-lbl { display: none; }
@media (max-width: 720px) {
  .hero-sound {
    display: none !important;
  }
  /* Header: only logo, centered, slightly larger */
  .header .bar {
    justify-content: center;
    gap: 0;
  }
  .header .bar > .btn-wa,
  .header .bar > .nav,
  .header .bar > .header-actions {
    display: none !important;
  }
  .logo-wrap {
    justify-content: center;
  }
  .logo-wrap img {
    width: auto !important;
    height: 60px !important;
  }
  .header.scrolled .logo-wrap img {
    height: 52px !important;
  }
  /* Hero block: pull content higher, scroll-hint sits closer */
  .hero {
    min-height: auto !important;
    padding: 96px 0 56px !important;
  }
  .scroll-ind {
    bottom: 14px !important;
  }
  .scroll-ind .line {
    height: 28px !important;
  }
  /* Stats row centered (matches user request) */
  .stats-row {
    text-align: center;
  }
  .stat-block {
    text-align: center;
  }
  .stat-block .stat-num {
    justify-content: center;
    display: flex;
  }
  .stat-block .stat-lbl {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 180px;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  max-width: 720px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 28px;
}
.hero-kicker .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 12px #6EE7B7;
  animation: breathe 2s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero h1 {
  font-size: clamp(40px, 6vw, 84px);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .accent { color: #6EE7B7; }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.9);
}
.hero-sub {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 560px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  line-height: 1.55;
  text-wrap: pretty;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-bullets {
  display: grid; grid-template-columns: repeat(2, auto); gap: 12px 28px;
  font-size: 14px; color: rgba(255,255,255,0.85);
  max-width: 520px;
}
.hero-bullets li { display: flex; align-items: center; gap: 10px; list-style: none; }
.hero-bullets .check {
  width: 20px; height: 20px; flex: none;
  border-radius: 50%;
  background: rgba(110,231,183,0.2);
  color: #6EE7B7;
  display: grid; place-items: center;
}
.hero-bullets .check svg { width: 12px; height: 12px; }

/* Hero right — atendente */
.hero-person {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  isolation: isolate;
}
.person-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(39,115,106,0.2), rgba(15,28,26,0.6));
  box-shadow:
    0 30px 80px rgba(0,0,0,0.45),
    0 0 0 1px rgba(255,255,255,0.08) inset;
  transform: translateZ(0);
}
.person-frame::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15,28,26,0.55) 100%);
  pointer-events: none;
}
.person-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 700ms var(--ease);
}
.hero-person:hover .person-frame img { transform: scale(1.03); }

.person-status {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px 7px 10px;
  background: rgba(15,28,26,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(110,231,183,0.4);
  border-radius: 100px;
  color: white;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 0.03em;
}
.person-status .ring {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6EE7B7;
  box-shadow: 0 0 0 0 rgba(110,231,183,0.7);
  animation: personPulse 1.8s ease-in-out infinite;
}
@keyframes personPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110,231,183,0.7); }
  50% { box-shadow: 0 0 0 8px rgba(110,231,183,0); }
}

.person-card {
  position: relative;
  margin: -56px 18px 0 18px;
  padding: 18px 18px 20px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.5) inset;
  z-index: 2;
}
.person-meta {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 12px;
}
.person-avatar {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--green);
  background: var(--off-white);
}
.person-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.person-info { display: flex; flex-direction: column; min-width: 0; }
.person-info strong {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.person-info span {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.person-quote {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 14px;
  font-style: italic;
  text-wrap: pretty;
}
.person-cta {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 11px 16px;
}

.scroll-ind {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 3;
}
.scroll-ind .line {
  width: 1px; height: 40px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(-10px); opacity: 0; }
  50% { opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ================ CREDIBILITY BAR ================ */
.cred {
  background: var(--green);
  background-image:
    radial-gradient(ellipse at top left, rgba(255,255,255,0.08), transparent 60%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: white;
  padding: 36px 0;
  position: relative;
}
.cred-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px;
}
.cred-item { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.cred-icon { width: 44px; height: 44px; flex: none; display: grid; place-items: center;
  background: rgba(255,255,255,0.1); border-radius: 12px; }
.cred-icon svg { width: 22px; height: 22px; }
.cred-num { font-family: 'Archivo', sans-serif; font-size: 28px; font-weight: 800; line-height: 1; }
.cred-lbl { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 4px; }

/* ================ SECTIONS SHARED ================ */
section { position: relative; }
.section { padding: 110px 0; }
.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green);
  padding: 6px 12px;
  background: var(--green-soft);
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(34px, 4.2vw, 56px);
  color: var(--ink);
  margin-bottom: 16px;
}
.section-head h2 .accent { color: var(--green); }
.section-head p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  text-wrap: pretty;
}

/* ================ CATALOG ================ */
.filters {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 48px;
}
.filter {
  padding: 10px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: white;
  font-weight: 500; font-size: 14px;
  color: var(--ink-2);
  transition: all 200ms var(--ease);
}
.filter:hover { border-color: var(--green); color: var(--green); }
.filter.active {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 350ms var(--ease-bounce), box-shadow 350ms var(--ease);
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.card-badge {
  position: absolute; top: 16px; left: 16px;
  z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--ink);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 100px;
}
.card-badge.hot { background: #E63946; }
.card-badge.top { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.card-cat {
  position: absolute; top: 16px; right: 16px;
  z-index: 2;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--ink-2);
  font-size: 11px; font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-images {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--off-white);
  overflow: hidden;
}
.product-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.product-img.active { opacity: 1; }

/* Placeholder illustrations using striped bg + label */
.product-placeholder {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.product-placeholder.active { opacity: 1; }
.product-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg,
    var(--ph-a, #ddd) 0 14px,
    var(--ph-b, #eee) 14px 28px);
  opacity: 0.55;
}
.product-placeholder .ph-label {
  position: relative;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink);
  background: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 100px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.card-body {
  padding: 22px;
  display: flex; flex-direction: column; flex: 1;
}
.card-title {
  font-family: 'Archivo', sans-serif;
  font-size: 22px; font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.card-sub {
  font-size: 13px; color: var(--muted);
  margin-bottom: 14px;
}
.card-meta {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 14px;
  background: var(--off-white);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 13px;
}
.card-meta strong { color: var(--ink); font-weight: 700; }
.card-meta .dot-sep { color: var(--line); }

.colors-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: space-between;
}
.colors-label .active-name { color: var(--green); text-transform: none; letter-spacing: 0; font-weight: 600; font-size: 13px; }

.color-row {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 18px;
}
.color-option {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid rgba(20,20,20,0.1);
  cursor: pointer;
  transition: transform 200ms var(--ease-bounce), border-color 200ms, box-shadow 200ms;
  position: relative;
}
.color-option:hover { transform: scale(1.12); }
.color-option.active {
  border: 3px solid var(--green);
  transform: scale(1.18);
  box-shadow: 0 4px 14px rgba(39,115,106,0.35);
}
.color-option .cnt {
  position: absolute; bottom: -4px; right: -4px;
  background: var(--ink); color: white;
  font-size: 9px; font-weight: 700;
  padding: 2px 5px; border-radius: 100px;
  font-family: 'Inter', sans-serif;
  min-width: 16px; text-align: center;
  opacity: 0; transition: opacity 200ms;
}
.color-option.active .cnt { opacity: 1; }

.card-ctas { display: flex; gap: 8px; margin-top: auto; }
.card-ctas .btn { flex: 1; justify-content: center; padding: 12px 16px; font-size: 13px; }
.card-ctas .btn-ghost { flex: 0 0 auto; padding: 12px; }

/* ================ PILLARS ================ */
.pillars-bg {
  background: linear-gradient(180deg, var(--off-white) 0%, white 100%);
}
.pillars {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.pillar {
  padding: 34px 28px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform 300ms var(--ease-bounce), box-shadow 300ms, border-color 300ms;
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--green);
  transform: scaleX(0); transform-origin: left;
  transition: transform 400ms var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.pillar:hover::before { transform: scaleX(1); }
.pillar-num {
  font-family: 'Archivo', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green);
  margin-bottom: 18px;
}
.pillar-icon {
  width: 56px; height: 56px;
  background: var(--green-soft);
  border-radius: 14px;
  display: grid; place-items: center;
  color: var(--green);
  margin-bottom: 20px;
  transition: transform 300ms var(--ease-bounce), background 300ms;
}
.pillar:hover .pillar-icon { transform: scale(1.1) rotate(-4deg); }
.pillar-icon svg { width: 28px; height: 28px; }
.pillar h3 {
  font-size: 20px; margin-bottom: 10px; color: var(--ink);
}
.pillar p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ================ FABRICA (aerial photos) ================ */
.fabrica-bg {
  background: var(--ink);
  color: white;
  overflow: hidden;
}
.fabrica-bg .section-head h2 { color: white; }
.fabrica-bg .section-head p { color: rgba(255,255,255,0.7); }
.fabrica-bg .section-eyebrow {
  background: rgba(110,231,183,0.15);
  color: #6EE7B7;
}
.fabrica-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.fabrica-hero {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #222;
}
.fabrica-hero img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.fabrica-hero:hover img { transform: scale(1.04); }
.fabrica-hero .tag {
  position: absolute; bottom: 20px; left: 20px;
  padding: 10px 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.fabrica-hero .tag .pin { width: 8px; height: 8px; border-radius: 50%; background: #E63946; box-shadow: 0 0 10px #E63946; }

.fabrica-side { display: grid; grid-template-rows: 1fr 1fr; gap: 24px; }
.fabrica-side > div {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: auto;
  background: #222;
}
.fabrica-side img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.fabrica-side > div:hover img { transform: scale(1.05); }

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat-block .stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  color: white;
  letter-spacing: -0.02em;
}
.stat-block .stat-num .plus { color: #6EE7B7; }
.stat-block .stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  letter-spacing: 0.03em;
}

/* ================ PROCESSO ================ */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  position: relative;
}
.step {
  position: relative;
  padding: 32px 24px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
}
.step-num {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  background: var(--ink);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Archivo', sans-serif;
  font-size: 22px; font-weight: 700;
  position: relative;
  z-index: 1;
}
.step:nth-child(1) .step-num { background: var(--green); }
.step:nth-child(2) .step-num { background: var(--green-dark); }
.step:nth-child(3) .step-num { background: var(--ink); }
.step:nth-child(4) .step-num { background: var(--whatsapp); }
.step h3 { font-size: 18px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); line-height: 1.55; }
.step-arrow {
  position: absolute;
  top: 54px;
  right: -16px;
  width: 28px;
  color: var(--line);
  z-index: 0;
  display: none;
}
@media (min-width: 900px) { .step-arrow { display: block; } }

.process-cta { text-align: center; margin-top: 48px; }

/* ================ DEPOIMENTOS ================ */
.testis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  padding: 30px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.testi-stars { display: flex; gap: 2px; color: #F59E0B; margin-bottom: 18px; }
.testi-stars svg { width: 18px; height: 18px; }
.testi-quote {
  font-size: 16px; line-height: 1.6; color: var(--ink-2);
  margin-bottom: 24px;
  flex: 1;
  text-wrap: pretty;
}
.testi-quote::before { content: '"'; color: var(--green); font-family: 'Archivo', serif; font-weight: 800; margin-right: 2px; }
.testi-quote::after { content: '"'; color: var(--green); font-weight: 800; }
.testi-who { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  display: grid; place-items: center;
  font-family: 'Archivo', sans-serif;
  font-weight: 700; font-size: 16px;
}
.testi-name { font-weight: 600; font-size: 14px; color: var(--ink); }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ================ INSTAGRAM ================ */
.insta-bg { background: white; }
.insta-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-bottom: 36px;
}
.insta-post {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--off-white);
  transition: transform 300ms var(--ease);
}
.insta-post:hover { transform: translateY(-4px); }
.insta-post .ph-bg {
  position: absolute; inset: 0;
}
.insta-post .ph-label {
  position: absolute; top: 14px; left: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: white;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 5px 10px;
  border-radius: 6px;
}
.insta-post .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.75) 100%);
  display: flex; align-items: flex-end;
  padding: 14px;
  color: white;
  opacity: 0;
  transition: opacity 300ms var(--ease);
}
.insta-post:hover .overlay { opacity: 1; }
.insta-post .meta { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.insta-post .meta span { display: inline-flex; align-items: center; gap: 4px; }
.insta-post .ig-icon {
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px;
  color: white;
  opacity: 0.9;
}

.insta-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 24px 32px;
  background: linear-gradient(135deg, #F9E0FF, #FFD8D8, #FFE8B0);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.insta-cta .handle { font-weight: 700; font-size: 18px; color: var(--ink); }
.insta-cta .sub { font-size: 14px; color: var(--ink-2); margin-top: 2px; }

/* ================ FAQ ================ */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 200ms;
}
.faq.open { border-color: var(--green); }
.faq-q {
  width: 100%; padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: 16px; font-weight: 600;
  color: var(--ink);
  text-align: left;
  transition: background 200ms;
}
.faq-q:hover { background: var(--off-white); }
.faq-ico {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid; place-items: center;
  flex: none;
  transition: transform 300ms var(--ease-bounce), background 300ms;
}
.faq.open .faq-ico { background: var(--green); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease);
}
.faq-a-inner {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.faq.open .faq-a { max-height: 300px; }
.faq-foot {
  text-align: center; margin-top: 40px;
  color: var(--muted);
}
.faq-foot a { color: var(--green); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ================ CTA FINAL ================ */
.cta-final {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(110,231,183,0.15), transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(39,115,106,0.4), transparent 60%),
    linear-gradient(135deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
  color: white;
  text-align: center;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.08) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-final h2 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 22px;
  position: relative;
}
.cta-final h2 .accent { color: #6EE7B7; }
.cta-final p {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 40px;
  position: relative;
}
.cta-checks {
  display: grid; grid-template-columns: repeat(2, auto); gap: 14px 32px;
  justify-content: center;
  margin-bottom: 44px;
  position: relative;
}
.cta-checks li {
  display: flex; align-items: center; gap: 10px;
  list-style: none;
  font-size: 15px;
}
.cta-checks .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: #6EE7B7; color: var(--green-deep);
  display: grid; place-items: center;
}
.cta-checks .check svg { width: 13px; height: 13px; }
.cta-big-wrap { position: relative; display: inline-block; }
.cta-final .btn-wa {
  font-size: 19px;
  padding: 24px 44px;
  box-shadow: 0 14px 40px rgba(37,211,102,0.5);
  animation: heart 2s ease-in-out infinite;
}
@keyframes heart {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.cta-reply {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  position: relative;
}
.cta-reply .dot-g { width: 8px; height: 8px; border-radius: 50%; background: #6EE7B7; box-shadow: 0 0 10px #6EE7B7; animation: breathe 2s infinite; }

/* ================ FOOTER ================ */
footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.foot-grid h4 {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
  font-family: 'Inter', sans-serif;
}
.foot-grid img.foot-logo {
  height: 32px; filter: brightness(0) invert(1); margin-bottom: 18px;
}
.foot-grid p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.55); }
.foot-grid ul { list-style: none; }
.foot-grid li { margin-bottom: 10px; }
.foot-grid a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 200ms; }
.foot-grid a:hover { color: #6EE7B7; }
.foot-socials { display: flex; gap: 10px; margin-top: 20px; }
.foot-socials a {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: grid; place-items: center;
  transition: all 250ms var(--ease-bounce);
}
.foot-socials a:hover { background: var(--green); transform: translateY(-3px); color: white; }
.foot-socials svg { width: 18px; height: 18px; }
.foot-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ================ FLOATING WA ================ */
.fab-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  width: 62px; height: 62px;
  background: var(--whatsapp);
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(37,211,102,0.45);
  transition: transform 300ms var(--ease-bounce);
  animation: fabIn 600ms var(--ease-bounce) 1.2s both;
}
.fab-wa:hover { transform: scale(1.1); }
.fab-wa::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--whatsapp);
  animation: pulseRing 2s cubic-bezier(0.4,0,0.2,1) infinite;
  z-index: -1;
}
.fab-wa svg { width: 30px; height: 30px; }
@keyframes fabIn {
  from { opacity: 0; transform: translateY(20px) scale(0.6); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.fab-lbl {
  position: absolute;
  right: 72px;
  top: 50%; transform: translateY(-50%);
  background: var(--ink);
  color: white;
  padding: 10px 14px;
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  opacity: 0; pointer-events: none;
  transition: opacity 250ms var(--ease);
}
.fab-wa:hover .fab-lbl { opacity: 1; }

/* ================ REVEAL ANIMATIONS ================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-stag > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
.reveal-stag.in > * { opacity: 1; transform: none; }
.reveal-stag.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stag.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stag.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stag.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stag.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stag.in > *:nth-child(6) { transition-delay: 400ms; }
.reveal-stag.in > *:nth-child(7) { transition-delay: 480ms; }
.reveal-stag.in > *:nth-child(8) { transition-delay: 560ms; }

/* Hero entrance (always animate on load) */
.hero .enter {
  opacity: 0;
  transform: translateY(20px);
  animation: enter 900ms var(--ease) forwards;
}
.hero .enter-1 { animation-delay: 200ms; }
.hero .enter-2 { animation-delay: 350ms; }
.hero .enter-3 { animation-delay: 500ms; }
.hero .enter-4 { animation-delay: 650ms; }
.hero .enter-5 { animation-delay: 800ms; }
.hero .enter-6 { animation-delay: 950ms; }
@keyframes enter {
  to { opacity: 1; transform: none; }
}

/* ================ TWEAKS PANEL ================ */
#tweaks-panel {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 95;
  width: 290px;
  background: white;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  border: 1px solid var(--line);
  padding: 18px;
  display: none;
  font-size: 13px;
}
#tweaks-panel.on { display: block; }
#tweaks-panel h5 {
  font-family: 'Archivo', sans-serif;
  font-size: 14px; font-weight: 700;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
#tweaks-panel h5::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.tweak-row { margin-bottom: 12px; }
.tweak-row label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); display: block; margin-bottom: 6px; }
.tweak-row .opts { display: flex; gap: 6px; }
.tweak-row .opt {
  flex: 1;
  padding: 8px 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  background: white;
  transition: all 200ms;
}
.tweak-row .opt.active { background: var(--ink); color: white; border-color: var(--ink); }
.tweak-row .opt:hover:not(.active) { border-color: var(--green); color: var(--green); }

/* Hero variant: split */
body[data-hero="split"] .hero-media iframe,
body[data-hero="split"] .hero-media video { display: none; }
body[data-hero="split"] .hero-sound { display: none; }
body[data-hero="split"] .hero-media {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(110,231,183,0.2), transparent 50%),
    linear-gradient(135deg, var(--green-deep), var(--ink) 70%);
}

/* Color scheme variant */
body[data-scheme="vivid"] {
  --green: #2A9D8F;
  --green-dark: #1F7A6E;
  --green-deep: #0F4D45;
  --green-soft: #E0F2EF;
}

/* Density variant */
body[data-density="compact"] .section { padding: 80px 0; }
body[data-density="compact"] .grid { gap: 18px; }
body[data-density="compact"] .card-body { padding: 18px; }

/* ================ FABRICA STORY (history block) ================ */
.fabrica-story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: start;
  padding: 56px 48px;
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(110,231,183,0.06) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.fabrica-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: linear-gradient(180deg, #6EE7B7 0%, transparent 100%);
}
.fabrica-story-meta { position: relative; }
.fabrica-story .story-since {
  display: inline-block;
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #6EE7B7;
  padding: 7px 14px;
  background: rgba(110,231,183,0.12);
  border: 1px solid rgba(110,231,183,0.25);
  border-radius: 100px;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.fabrica-story .story-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: white;
  margin-bottom: 26px;
  text-wrap: balance;
}
.fabrica-story .story-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0; margin: 0;
}
.fabrica-story .story-pills li {
  font-size: 12px;
  font-weight: 500;
  padding: 8px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
}
.fabrica-story-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  text-wrap: pretty;
}
.fabrica-story-text .story-lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255,255,255,0.95);
  font-weight: 400;
}
.fabrica-story-text strong { color: white; font-weight: 700; }

/* ================ RESPONSIVE ================ */
@media (max-width: 1100px) {
  .fabrica-story { gap: 40px; padding: 48px 36px; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-person { max-width: 440px; margin: 0 auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testis { grid-template-columns: 1fr; }
  .insta-row { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 24px 12px; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px 20px; }
  .fabrica-layout { grid-template-columns: 1fr; }
  .fabrica-story { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; margin-top: 36px; }
  .fabrica-story-text { font-size: 15px; }
  .fabrica-story-text .story-lead { font-size: 17px; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 70px 0; }
  .container { padding: 0 18px; }
  .grid { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 120px 0 40px; }
  .hero-bullets { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .insta-row { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr; }
  .btn-xl, .btn-lg { font-size: 15px; padding: 18px 28px; }
  .fabrica-layout { gap: 16px; }
  .fabrica-side { grid-template-rows: auto auto; }
  .fabrica-story { padding: 32px 22px; gap: 26px; border-radius: 18px; }
  .fabrica-story::before { width: 3px; }
  .fabrica-story .story-pills { gap: 6px; justify-content: center; }
  .fabrica-story .story-pills li { font-size: 11px; padding: 6px 11px; }
  .fabrica-story-text { font-size: 15px; line-height: 1.65; gap: 14px; text-align: center; }
  .fabrica-story-text .story-lead { font-size: 16px; }
  .fabrica-story-meta { text-align: center; }
  .stats-row { padding-top: 28px; gap: 24px 16px; }
  .stat-block .stat-num { font-size: clamp(36px, 9vw, 52px); }
  .stat-block .stat-lbl { font-size: 12px; margin-top: 6px; }

  /* === Mobile centering: hero & section heads === */
  .hero-grid > div:first-child { text-align: center; }
  .hero-kicker { margin-left: auto; margin-right: auto; }
  .hero h1 { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; max-width: 92%; }
  .hero-ctas { justify-content: center; align-items: center; flex-direction: column; }
  .hero-ctas .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero-bullets { justify-items: start; max-width: 280px; margin: 24px auto 0; }
  .section-head { text-align: center; }
  .section-head h2, .section-head p, .section-head .section-eyebrow { text-align: center; margin-left: auto; margin-right: auto; }

  /* === Cred bar 2 cols on mobile (matches user mockup) === */
  .cred {
    padding: 36px 0 !important;
  }
  .cred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .cred-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
    padding: 22px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    min-height: 150px;
    justify-content: center;
  }
  .cred-item .cred-icon {
    margin: 0;
    width: 48px;
    height: 48px;
  }
  .cred-icon svg { width: 24px; height: 24px; }
  .cred-num {
    text-align: center;
    font-size: 30px;
    line-height: 1.05;
  }
  .cred-num br + span {
    font-size: 14px !important;
  }
  .cred-lbl {
    text-align: center;
    font-size: 11px;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  /* Hide hero bullets list on mobile (cred bar covers same info) */
  .hero-bullets { display: none !important; }

  /* === Buttons never overflow on mobile === */
  .btn, .btn-lg, .btn-xl {
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.25;
    word-break: break-word;
  }
  .btn-lg { padding: 16px 22px; font-size: 14px; gap: 8px; }
  .btn-xl { padding: 18px 24px; font-size: 15px; gap: 8px; }
  .btn-wa svg, .btn-lg svg, .btn-xl svg { flex: none; }

  /* CTA wrappers: full width container, button centered */
  .process-cta, .cta-big-wrap {
    width: 100%;
    display: block;
  }
  .process-cta .btn, .cta-big-wrap .btn {
    width: 100%;
    max-width: 360px;
  }
  .cta-final .btn-wa {
    font-size: 15px !important;
    padding: 18px 22px !important;
  }

  /* Floating WA: keep it tidy on mobile */
  .fab-lbl { display: none; }

  /* Filters: scrollable row */
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
}
