/* ===================================================
   MATÉRIA — Design System
   Multi-page institucional + Landing pages
   =================================================== */

:root {
  /* Palette */
  --cream: #FAFAF7;
  --cream-2: #F1F3EC;
  --cream-3: #E8EBE0;
  --dark: #10120E;
  --dark-2: #182015;
  --dark-3: #1F2618;
  --olive: #4F5F35;
  --olive-2: #6F7E4A;
  --olive-3: #889763;
  --olive-light: #DCE8C6;
  --olive-pale: #EEF3E2;
  --text: #20231C;
  --text-2: #3E4736;
  --muted: #66705A;
  --muted-2: #8A9180;
  --line: rgba(32, 35, 28, 0.09);
  --line-strong: rgba(32, 35, 28, 0.18);
  --white: #FFFFFF;

  /* Typography */
  --sans: 'DM Sans', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  /* Spacing */
  --container: 1280px;
  --gutter: 7%;
  --section: clamp(70px, 9vw, 110px);

  /* Radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 8px 24px rgba(34, 45, 27, 0.05);
  --shadow-md: 0 18px 50px rgba(34, 45, 27, 0.08);
  --shadow-lg: 0 30px 80px rgba(34, 45, 27, 0.12);
  --shadow-olive: 0 18px 48px rgba(79, 95, 53, 0.22);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.008em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ===================================================
   TYPOGRAPHY
   =================================================== */

h1, h2, h3, h4 {
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 6vw, 84px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  letter-spacing: -0.04em;
  font-weight: 600;
}

h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.025em;
  font-weight: 600;
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.015em;
}

p { color: var(--muted); line-height: 1.6; }

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--olive);
}

.dark .eyebrow,
.olive-bg .eyebrow {
  color: var(--olive-light);
}

.dark .eyebrow::before,
.olive-bg .eyebrow::before {
  background: var(--olive-light);
}

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
  margin-top: 18px;
}

.dark .lead,
.olive-bg .lead {
  color: rgba(255, 255, 255, 0.82);
}

/* ===================================================
   LAYOUT
   =================================================== */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--section) var(--gutter);
}

section.dark {
  background: var(--dark);
  color: var(--white);
}

section.dark h1,
section.dark h2,
section.dark h3,
section.dark h4 {
  color: var(--white);
}

section.dark p { color: rgba(255, 255, 255, 0.75); }

section.olive-bg {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.14), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(135deg, var(--olive) 0%, var(--olive-2) 100%);
  color: var(--white);
}

section.olive-bg h1,
section.olive-bg h2,
section.olive-bg h3 { color: var(--white); }

section.cream-2 { background: var(--cream-2); }

.section-header {
  max-width: 880px;
  margin-bottom: 56px;
}

.section-header h2 { margin-top: 14px; }

/* ===================================================
   BUTTONS
   =================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  font-family: inherit;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--olive), var(--olive-2));
  color: var(--white);
  box-shadow: var(--shadow-olive);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--olive-2), var(--olive-3));
  transform: translateY(-2px);
  box-shadow: 0 22px 56px rgba(79, 95, 53, 0.32);
}

.btn-secondary {
  background: var(--white);
  color: var(--text);
  border-color: var(--line-strong);
}

.btn-secondary:hover {
  border-color: var(--olive);
  color: var(--olive);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.14); }

.btn-arrow { display: inline-block; transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* ===================================================
   NAVIGATION
   =================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(14, 16, 12, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar.is-light {
  background: rgba(250, 250, 247, 0.85);
  border-bottom-color: var(--line);
}

.navbar.is-light .logo-text h3 { color: var(--text); }
.navbar.is-light .logo-text span { color: var(--olive); }
.navbar.is-light nav a { color: var(--text-2); }
.navbar.is-light nav a:hover { color: var(--olive); }

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
}

.logo-mark::before {
  width: 22px;
  height: 2px;
  top: 12px;
  left: 8px;
  box-shadow: 0 6px 0 rgba(255, 255, 255, 0.95), 0 12px 0 rgba(255, 255, 255, 0.95);
}

.logo-mark::after {
  width: 2px;
  height: 22px;
  left: 17px;
  top: 8px;
  box-shadow: 6px 0 0 rgba(255, 255, 255, 0.95);
}

.logo-text h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: inherit;
  line-height: 1;
}

.logo-text span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--olive-light);
  text-transform: uppercase;
}

nav.main-nav {
  display: flex;
  gap: 28px;
}

nav.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a.active { color: var(--olive-light); }

.navbar.is-light nav.main-nav a.active { color: var(--olive); }

.cta-nav {
  padding: 11px 18px;
  background: linear-gradient(135deg, var(--olive), var(--olive-2));
  color: var(--white);
  border-radius: var(--r-pill);
  font-size: 13.5px;
  font-weight: 600;
  transition: all 0.25s;
}

.cta-nav:hover {
  background: linear-gradient(135deg, var(--olive-2), var(--olive-3));
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 26px; }
.menu-toggle.active span:first-child { transform: rotate(45deg); top: 21px; }
.menu-toggle.active span:last-child { transform: rotate(-45deg); top: 21px; }

.navbar.is-light .menu-toggle { background: rgba(32, 35, 28, 0.08); }
.navbar.is-light .menu-toggle span { background: var(--text); }

.mobile-menu {
  position: fixed;
  top: 78px;
  left: 16px;
  right: 16px;
  background: rgba(14, 16, 12, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-16px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  color: var(--white);
  padding: 12px 14px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 15px;
}

.mobile-menu a:hover { background: rgba(255, 255, 255, 0.06); }

/* ===================================================
   HERO (home)
   =================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 90px;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/fabrica-hero.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.42;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 16%, rgba(79, 95, 53, 0.32), transparent 36%),
    linear-gradient(to right, rgba(8, 10, 7, 0.92), rgba(8, 10, 7, 0.62) 60%, rgba(8, 10, 7, 0.32) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  color: var(--white);
}

.tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(220, 232, 198, 0.22);
  color: var(--olive-light);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  font-size: clamp(46px, 7vw, 88px);
  letter-spacing: -0.045em;
  line-height: 0.95;
  font-weight: 700;
  color: var(--white);
  max-width: 1020px;
  margin-bottom: 24px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  color: var(--olive-light);
}

.hero p {
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: 720px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin-top: 48px;
}

.hero-proof-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: 22px;
}

.hero-proof-card strong {
  display: block;
  font-size: 30px;
  font-weight: 600;
  color: var(--olive-light);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}

.hero-proof-card span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===================================================
   INTRO STRIP
   =================================================== */

.intro-strip {
  padding: 58px var(--gutter);
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.14), transparent 22rem),
    radial-gradient(circle at 92% 80%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(135deg, #43502F 0%, #617245 100%);
  color: var(--white);
}

.intro-strip p {
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 1160px;
  color: rgba(255, 255, 255, 0.92);
}

.intro-strip strong {
  font-weight: 700;
  color: var(--white);
}

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */

.page-hero {
  padding: 160px var(--gutter) 70px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.page-hero .eyebrow { margin-bottom: 18px; }

.page-hero h1 {
  font-size: clamp(40px, 5.5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  font-weight: 600;
  color: var(--text);
  max-width: 920px;
  margin-bottom: 22px;
}

.page-hero .lead { max-width: 720px; }

/* ===================================================
   AUDIENCE CARDS
   =================================================== */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.audience-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(79, 95, 53, 0.04) 0%, transparent 40%);
  opacity: 0;
  transition: opacity 0.4s;
}

.audience-card:hover {
  border-color: rgba(79, 95, 53, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.audience-card:hover::before { opacity: 1; }

.audience-card .num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.audience-card h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.audience-card > p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.audience-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 1;
}

.audience-card li {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
  padding-left: 14px;
  position: relative;
}

.audience-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  background: var(--olive);
  border-radius: 50%;
}

.audience-card .card-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

.audience-card:hover .card-link { gap: 10px; }

/* ===================================================
   WHAT WE DO CARDS (dark)
   =================================================== */

.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.what-card {
  background:
    radial-gradient(circle at top right, rgba(220, 232, 198, 0.06), transparent 14rem),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.35s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.what-card:hover {
  background:
    radial-gradient(circle at top right, rgba(220, 232, 198, 0.1), transparent 14rem),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(79, 95, 53, 0.5);
  transform: translateY(-6px);
}

.what-card .icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  background: rgba(220, 232, 198, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--olive-light);
}

.what-card .icon svg { width: 20px; height: 20px; }

.what-card h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--white);
}

.what-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
  line-height: 1.6;
  flex-grow: 1;
}

.what-card .card-link {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-top: 22px;
  display: inline-flex;
  gap: 6px;
}

/* ===================================================
   PRODUCT CATEGORIES (catalog)
   =================================================== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 95, 53, 0.3);
}

.product-card .img-wrap {
  aspect-ratio: 16/11;
  overflow: hidden;
  background: var(--cream-2);
  position: relative;
}

.product-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.92);
}

.product-card:hover .img-wrap img { transform: scale(1.04); }

.product-card .img-wrap .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(14, 16, 12, 0.85);
  color: var(--olive-light);
  padding: 6px 10px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
}

.product-card .info { padding: 22px 24px 26px; }

.product-card h3 {
  font-size: 21px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* Catalog CTA inline */

.catalog-cta {
  margin-top: 36px;
  border-radius: var(--r-lg);
  padding: 32px 36px;
  background: var(--dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.catalog-cta h3 {
  font-size: 26px;
  color: var(--white);
  margin-bottom: 6px;
}

.catalog-cta p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  max-width: 580px;
}

/* ===================================================
   STATS / CAPACITY
   =================================================== */

.capacity {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  background: var(--cream-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: all 0.3s;
}

.stat:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.stat h3,
.stat .counter {
  font-size: clamp(38px, 4.5vw, 56px);
  letter-spacing: -0.045em;
  color: var(--olive);
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1;
}

.stat p {
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
}

/* ===================================================
   PROCESS
   =================================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.process-step {
  background: var(--white);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.process-step .step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--olive);
  font-weight: 500;
  display: block;
  margin-bottom: 22px;
}

.process-step h3 {
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  font-size: 14.5px;
}

.process-step .duration {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  display: block;
}

/* ===================================================
   PORTFOLIO
   =================================================== */

.portfolio-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 360px 360px;
  gap: 18px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--dark);
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: all 0.6s ease;
}

.portfolio-item:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.portfolio-item .meta {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  color: var(--white);
  z-index: 1;
}

.portfolio-item .cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 8px;
  display: inline-block;
}

.portfolio-item h3 {
  font-size: 26px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
}

.portfolio-item.large { grid-row: span 2; }

/* Portfolio filterable */

.portfolio-full {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.portfolio-tile {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  transition: all 0.35s;
  cursor: pointer;
}

.portfolio-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 95, 53, 0.3);
}

.portfolio-tile .img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.portfolio-tile .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-tile:hover img { transform: scale(1.05); }

.portfolio-tile .info { padding: 20px 22px 24px; }

.portfolio-tile .info .cat {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--olive);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: inline-block;
}

.portfolio-tile h3 {
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.portfolio-tile p {
  font-size: 13.5px;
  color: var(--muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.filter-btn {
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--text-2);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}

.filter-btn:hover { border-color: var(--olive); color: var(--olive); }

.filter-btn.active {
  background: var(--olive);
  color: var(--white);
  border-color: var(--olive);
}

/* ===================================================
   CASES
   =================================================== */

.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: all 0.35s;
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(79, 95, 53, 0.25);
}

.case-card .case-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive);
  font-weight: 500;
  margin-bottom: 28px;
  display: block;
}

.case-card h3 {
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.case-card p {
  color: var(--muted);
  margin-bottom: 22px;
  font-size: 14.5px;
}

.case-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-2);
}

.case-card li {
  font-size: 13.5px;
  font-weight: 500;
  padding-left: 14px;
  position: relative;
}

.case-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--olive);
  border-radius: 50%;
}

/* ===================================================
   VALUES (sobre page)
   =================================================== */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
}

.value-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--olive-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--olive);
}

.value-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ===================================================
   IMPACT CTA
   =================================================== */

.impact-cta {
  padding: 120px var(--gutter);
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.12), transparent 22rem),
    radial-gradient(circle at 84% 90%, rgba(255, 255, 255, 0.08), transparent 24rem),
    linear-gradient(135deg, #3F4D2C 0%, #6F7E4A 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.impact-cta::before {
  content: "";
  position: absolute;
  inset: auto -8rem -14rem auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.impact-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.impact-inner .eyebrow {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  justify-content: center;
}

.impact-inner .eyebrow::before { background: rgba(255, 255, 255, 0.78); }

.impact-inner h2 {
  font-size: clamp(50px, 7vw, 100px);
  letter-spacing: -0.055em;
  line-height: 0.9;
  font-weight: 700;
  margin-bottom: 26px;
  color: var(--white);
  text-wrap: balance;
}

.impact-inner p {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.45;
  max-width: 720px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, 0.84);
}

.impact-inner .btn-dark {
  background: var(--dark);
  font-size: 15px;
  padding: 16px 28px;
}

.impact-inner .btn-dark:hover { background: var(--text); }

/* ===================================================
   PROOF / MANIFESTO
   =================================================== */

.proof {
  background:
    radial-gradient(circle at 90% 10%, rgba(79, 95, 53, 0.08), transparent 24rem),
    var(--cream);
}

.proof-box { max-width: 1080px; }

.proof-box h2 { margin-top: 14px; margin-bottom: 18px; }

.proof-box p {
  font-size: clamp(18px, 1.55vw, 22px);
  color: var(--text-2);
  max-width: 880px;
  line-height: 1.5;
}

/* ===================================================
   CONTACT
   =================================================== */

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
  background: var(--cream);
}

.contact-copy { max-width: 520px; }

.whatsapp-box {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--r-lg);
  background: var(--white);
  border: 1px solid var(--line);
}

.whatsapp-box strong {
  color: var(--olive);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--mono);
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

.whatsapp-box p {
  color: var(--text-2);
  font-size: 14.5px;
  margin: 0;
}

.contact-form {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  box-shadow: var(--shadow-lg);
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 500;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border-radius: var(--r-md);
  padding: 14px 16px;
  outline: none;
  font: inherit;
  font-size: 14.5px;
  transition: all 0.25s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--olive-2);
  background: rgba(255, 255, 255, 0.07);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255, 255, 255, 0.35); }

.contact-form option { color: var(--text); }

.contact-form .full { grid-column: 1 / -1; }

.contact-form button {
  grid-column: 1 / -1;
  border: none;
  background: linear-gradient(135deg, var(--olive), var(--olive-2));
  color: var(--white);
  padding: 16px 24px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 14.5px;
  transition: all 0.25s;
  font-family: inherit;
  margin-top: 4px;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-olive);
}

/* ===================================================
   FAQ
   =================================================== */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 26px;
}

.faq-item h4 {
  font-size: 16.5px;
  margin-bottom: 8px;
  color: var(--text);
}

.faq-item p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ===================================================
   FOOTER
   =================================================== */

footer {
  padding: 60px var(--gutter) 30px;
  background: #090B07;
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 42px;
}

.footer-brand .logo { margin-bottom: 18px; }

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  max-width: 320px;
}

.footer-col h4 {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--olive-light);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--olive-light); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ===================================================
   FLOATING WHATSAPP
   =================================================== */

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.36);
  transition: all 0.25s;
}

.floating-whatsapp:hover { transform: scale(1.08); }

.floating-whatsapp svg { width: 26px; height: 26px; }

/* ===================================================
   LANDING PAGE SPECIFIC
   =================================================== */

.lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(14, 16, 12, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-back {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.lp-back:hover { color: var(--olive-light); }

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px var(--gutter) 80px;
  background: var(--dark);
  overflow: hidden;
}

.lp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
}

.lp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(79, 95, 53, 0.35), transparent 38%),
    linear-gradient(110deg, rgba(8, 10, 7, 0.94) 0%, rgba(8, 10, 7, 0.65) 55%, rgba(8, 10, 7, 0.28) 100%);
}

.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--white);
}

.lp-hero h1 {
  font-size: clamp(42px, 6.5vw, 78px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 22px;
  text-wrap: balance;
}

.lp-hero h1 em {
  font-style: normal;
  color: var(--olive-light);
}

.lp-hero p {
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255, 255, 255, 0.84);
  max-width: 680px;
  line-height: 1.5;
}

.lp-hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 42px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lp-hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: var(--olive-light);
  letter-spacing: -0.02em;
  margin-bottom: 2px;
}

.lp-hero-stat span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* LP pain blocks */

.lp-pains {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.lp-pain {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px;
}

.lp-pain .pain-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(150, 60, 60, 0.08);
  color: #964040;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
  font-weight: 600;
}

.lp-pain h4 { font-size: 16px; margin-bottom: 8px; }

.lp-pain p { font-size: 14px; color: var(--muted); }

/* LP solutions */

.lp-solutions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.lp-solution {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 28px;
}

.lp-solution .sol-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--olive-light);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  display: block;
}

.lp-solution h4 {
  font-size: 19px;
  color: var(--white);
  margin-bottom: 10px;
}

.lp-solution p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

/* LP final */

.lp-final {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, var(--olive) 0%, var(--olive-2) 100%);
  color: var(--white);
  text-align: center;
}

.lp-final h2 {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}

.lp-final p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto 32px;
}

.lp-final .btn-row { justify-content: center; }

.lp-final .btn-dark {
  background: var(--dark);
  font-size: 14.5px;
}

.lp-final .btn-ghost-light:hover { background: rgba(255, 255, 255, 0.18); }

/* ===================================================
   REVEAL ANIMATIONS
   =================================================== */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   RESPONSIVE
   =================================================== */

@media (max-width: 1180px) {
  :root { --gutter: 5%; }

  .audience-grid,
  .what-grid,
  .product-grid,
  .process-grid,
  .cases-grid,
  .values-grid,
  .lp-pains,
  .lp-solutions {
    grid-template-columns: repeat(2, 1fr);
  }

  .capacity { grid-template-columns: 1fr; gap: 40px; }
  .contact { grid-template-columns: 1fr; gap: 40px; }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .portfolio-item { min-height: 340px; }
  .large { grid-row: auto; }

  .faq-grid { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 760px) {
  :root { --gutter: 5%; --section: 60px; }

  nav.main-nav,
  .cta-nav { display: none; }
  .menu-toggle { display: block; }

  h1 { font-size: clamp(36px, 9vw, 52px); }
  h2 { font-size: clamp(30px, 7vw, 42px); }

  .navbar { padding: 14px var(--gutter); }

  .hero {
    padding: 120px var(--gutter) 70px;
    min-height: auto;
  }

  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof-card { padding: 18px; }
  .hero-proof-card strong { font-size: 26px; }

  .audience-grid,
  .what-grid,
  .product-grid,
  .process-grid,
  .cases-grid,
  .values-grid,
  .lp-pains,
  .lp-solutions,
  .stats-grid { grid-template-columns: 1fr; }

  .audience-card,
  .what-card,
  .case-card,
  .value-card { padding: 26px 22px; }

  .catalog-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .contact-form { grid-template-columns: 1fr; padding: 26px; }

  .impact-cta { padding: 80px var(--gutter); }
  .lp-final { padding: 80px var(--gutter); }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .lp-hero-stats { gap: 22px; }
  .lp-hero-stat strong { font-size: 22px; }
}

/* ===================================================
   PLACEHOLDER PATTERN (conteúdo real a preencher)
   =================================================== */

.placeholder-block {
  border: 2px dashed rgba(79, 95, 53, 0.4);
  background: rgba(79, 95, 53, 0.04);
  padding: 28px 24px;
  border-radius: var(--r-md);
  position: relative;
  margin: 12px 0;
}

.placeholder-block::before {
  content: "SUBSTITUIR · CONTEÚDO REAL";
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--olive);
  color: var(--white);
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  padding: 4px 10px;
  letter-spacing: 0.14em;
  border-radius: 4px;
}

.placeholder-block .ph-title {
  color: var(--olive);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  letter-spacing: -0.01em;
}

.placeholder-block .ph-desc {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.55;
  margin: 0;
}

.placeholder-block .ph-desc strong { color: var(--text); font-weight: 600; }

.placeholder-image {
  aspect-ratio: 4/3;
  border: 2px dashed rgba(79, 95, 53, 0.4);
  background:
    repeating-linear-gradient(45deg, rgba(79, 95, 53, 0.03) 0, rgba(79, 95, 53, 0.03) 8px, transparent 8px, transparent 18px),
    var(--cream-2);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  position: relative;
}

.placeholder-image::before {
  content: "FOTO REAL";
  position: absolute;
  top: -10px;
  left: 18px;
  background: var(--olive);
  color: var(--white);
  font-family: var(--mono);
  font-size: 9.5px;
  padding: 4px 10px;
  letter-spacing: 0.14em;
  border-radius: 4px;
}

.placeholder-image .ph-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}

.placeholder-image .ph-title {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--olive);
  margin-bottom: 6px;
}

.placeholder-image .ph-desc {
  font-size: 12.5px;
  color: var(--text-2);
  max-width: 280px;
  line-height: 1.5;
}

.temp-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(14, 16, 12, 0.78);
  color: var(--olive-light);
  font-family: var(--mono);
  font-size: 9.5px;
  padding: 5px 9px;
  border-radius: 4px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
  z-index: 2;
}

[data-needs-real] {
  position: relative;
}

[data-needs-real]::after {
  content: attr(data-needs-real);
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--olive);
  color: var(--white);
  font-family: var(--mono);
  font-size: 9px;
  padding: 3px 8px;
  letter-spacing: 0.12em;
  border-radius: 4px;
  pointer-events: none;
}

/* ===================================================
   CLIENT LOGOS STRIP (social proof)
   =================================================== */

.logos-strip {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 40px 0 0;
  justify-content: space-between;
}

.logos-strip-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.logos-strip-items {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-placeholder {
  height: 32px;
  min-width: 90px;
  padding: 6px 16px;
  border: 1.5px dashed rgba(79, 95, 53, 0.35);
  border-radius: 6px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(79, 95, 53, 0.03);
}

.hero .logos-strip {
  border-top-color: rgba(255, 255, 255, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  margin-top: 50px;
}

.hero .logos-strip-label { color: rgba(255, 255, 255, 0.6); }

.hero .logo-placeholder {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(220, 232, 198, 0.3);
  color: var(--olive-light);
}

/* ===================================================
   URGENCY BANNER (escassez real)
   =================================================== */

.urgency-banner {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  color: var(--white);
  padding: 18px var(--gutter);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.urgency-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.urgency-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--olive-light);
  position: relative;
  flex-shrink: 0;
}

.urgency-pulse::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--olive-light);
  opacity: 0.4;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.8); opacity: 0; }
}

.urgency-banner strong {
  color: var(--olive-light);
  font-weight: 600;
}

/* ===================================================
   TESTIMONIALS (depoimentos)
   =================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.testimonial-card.dark {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.012em;
  font-weight: 500;
}

.testimonial-card.dark .testimonial-quote { color: rgba(255, 255, 255, 0.92); }

.testimonial-quote::before {
  content: "“";
  font-family: var(--sans);
  font-size: 42px;
  color: var(--olive);
  line-height: 0.5;
  display: block;
  margin-bottom: 14px;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.testimonial-card.dark .testimonial-meta { border-top-color: rgba(255, 255, 255, 0.08); }

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive-pale);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.testimonial-info { font-size: 13.5px; }

.testimonial-info strong { display: block; font-weight: 600; color: var(--text); }
.testimonial-card.dark .testimonial-info strong { color: var(--white); }

.testimonial-info span {
  color: var(--muted);
  font-size: 12.5px;
  display: block;
  margin-top: 2px;
}

.testimonial-card.dark .testimonial-info span { color: rgba(255, 255, 255, 0.55); }

/* ===================================================
   GUARANTEE / RISK REDUCTION
   =================================================== */

.guarantee-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.guarantee-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--olive);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 22px 26px;
}

.guarantee-card .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--olive-pale);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 700;
  font-size: 15px;
}

.guarantee-card h4 { font-size: 16px; margin-bottom: 6px; letter-spacing: -0.015em; }

.guarantee-card p { font-size: 13.5px; color: var(--muted); }

/* ===================================================
   GALLERY (linhas desenvolvidas - LP lojas)
   =================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.gallery-tile {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-tile:hover img { transform: scale(1.04); }

.gallery-tile .label {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(14, 16, 12, 0.82);
  color: var(--olive-light);
  padding: 6px 10px;
  border-radius: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  backdrop-filter: blur(8px);
}

/* ===================================================
   PRINT CARDS (LP sellers - prints de venda)
   =================================================== */

.prints-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.print-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}

.print-card .print-img {
  aspect-ratio: 16/10;
  background: var(--cream-2);
  position: relative;
}

.print-card .print-info {
  padding: 20px 22px;
}

.print-card .print-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 8px;
  display: block;
}

.print-card h4 { font-size: 16px; margin-bottom: 6px; letter-spacing: -0.015em; }

.print-card .print-stats {
  display: flex;
  gap: 20px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.print-stat strong {
  display: block;
  font-size: 18px;
  color: var(--olive);
  font-weight: 600;
  margin-bottom: 2px;
  letter-spacing: -0.02em;
}

.print-stat span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ===================================================
   ATTENDANT (pessoa que atende - contato)
   =================================================== */

.attendant-card {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  margin-top: 14px;
}

.attendant-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--olive-pale);
  color: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 22px;
  flex-shrink: 0;
}

.attendant-info { font-size: 14px; line-height: 1.5; }

.attendant-info strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  margin-bottom: 2px;
}

.attendant-info span {
  display: block;
  color: var(--muted);
  font-size: 12.5px;
}

/* ===================================================
   OFFER BOX (oferta principal nas LPs)
   =================================================== */

.offer-box {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 22px;
  background: rgba(220, 232, 198, 0.14);
  border: 1px solid rgba(220, 232, 198, 0.25);
  border-radius: var(--r-md);
  margin-bottom: 22px;
  backdrop-filter: blur(8px);
}

.offer-box-label {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--olive-light);
}

.offer-box-content {
  font-size: 15px;
  color: var(--white);
  font-weight: 500;
}


/* ===================================================
   MOBILE AUDIT — auditoria pós-v4
   Corrige layouts inline 2-col em serviços/sobre,
   ajusta componentes novos (logos, urgency, testimonials,
   guarantees, gallery, prints, attendant, offer-box,
   placeholders), refina hero das LPs.
   =================================================== */

/* ---------- TABLET (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  /* Layouts inline 2-col viram 1 col (!important porque o style="" é inline) */
  .service-detail-grid,
  .story-layout {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  /* Contato: bloco esquerdo abaixo do formulário */
  .contact-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .contact-right { order: 1; }
  .contact-left  { order: 2; }

  /* Logos strip: gap menor em telas médias */
  .logos-strip { gap: 22px; }
  .logos-strip-items { gap: 20px; }

  /* Portfolio full: 2 col em tablet */
  .portfolio-grid-full {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  /* Cases grid sempre 1 col abaixo de 1024px */
  .cases-grid { grid-template-columns: 1fr; }

  /* Guarantees em tablet */
  .guarantee-row { grid-template-columns: repeat(2, 1fr); }

  /* Hero das LPs: padding lateral menor */
  .lp-hero { padding: 130px var(--gutter) 80px; }
}

/* ---------- MOBILE (≤ 760px) ---------- */
@media (max-width: 760px) {

  /* URGENCY BANNER (topo) */
  .urgency-banner { padding: 12px var(--gutter); }
  .urgency-banner-inner {
    font-size: 12.5px;
    line-height: 1.45;
    gap: 10px;
    text-align: left;
    justify-content: flex-start;
  }
  .urgency-pulse { margin-top: 5px; align-self: flex-start; }

  /* HERO PRINCIPAL */
  .hero { padding: 110px var(--gutter) 60px; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 46px); line-height: 1.08; }
  .hero p { font-size: 15.5px; }
  .hero .btn-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .hero .btn-row .btn { width: 100%; justify-content: center; }

  /* LOGOS STRIP (no hero e standalone) */
  .logos-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 0;
    margin-top: 32px;
  }
  .logos-strip-label { font-size: 10px; }
  .logos-strip-items { gap: 10px; flex-wrap: wrap; }
  .logo-placeholder {
    height: 28px;
    min-width: 72px;
    padding: 4px 12px;
    font-size: 9.5px;
  }

  /* HERO DAS LPs */
  .lp-hero { padding: 110px var(--gutter) 56px; min-height: auto; }
  .lp-hero-content h1 {
    font-size: clamp(28px, 8.5vw, 40px);
    line-height: 1.08;
    margin-bottom: 14px;
  }
  .lp-hero-content p { font-size: 15px; margin-bottom: 22px; }
  .lp-hero-content .btn-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .lp-hero-content .btn-row .btn { width: 100%; justify-content: center; }

  /* OFFER BOX */
  .offer-box { padding: 12px 16px; margin-bottom: 18px; max-width: 100%; }
  .offer-box-label { font-size: 9.5px; }
  .offer-box-content { font-size: 14px; line-height: 1.4; }

  /* TESTIMONIALS */
  .testimonials-grid { gap: 14px; }
  .testimonial-card { padding: 22px 20px; }
  .testimonial-quote { font-size: 15.5px; margin-bottom: 20px; }
  .testimonial-quote::before { font-size: 36px; margin-bottom: 10px; }
  .testimonial-meta { padding-top: 18px; gap: 12px; }
  .testimonial-avatar { width: 40px; height: 40px; font-size: 13px; }
  .testimonial-info { font-size: 13px; }
  .testimonial-info strong { font-size: 14px; }

  /* GUARANTEES */
  .guarantee-row { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .guarantee-card { padding: 20px 22px; }
  .guarantee-card .icon-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
    margin-bottom: 12px;
  }
  .guarantee-card h4 { font-size: 15.5px; }
  .guarantee-card p { font-size: 13px; }

  /* GALLERY (LP Lojas) — 2 col fixas em mobile */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-tile .label { font-size: 9px; padding: 4px 8px; bottom: 10px; left: 10px; }

  /* PRINTS (LP Sellers) */
  .prints-grid { grid-template-columns: 1fr; gap: 14px; }
  .print-card .print-info { padding: 18px 20px; }
  .print-card h4 { font-size: 15.5px; }
  .print-card .print-stats { gap: 16px; margin-top: 12px; padding-top: 12px; }
  .print-stat strong { font-size: 16px; }

  /* ATTENDANT CARD */
  .attendant-card { padding: 18px 20px; gap: 14px; }
  .attendant-avatar { width: 52px; height: 52px; font-size: 18px; }
  .attendant-info { font-size: 13.5px; }
  .attendant-info strong { font-size: 14.5px; }

  /* CONTACT CHANNELS */
  .contact-channels { gap: 10px; }
  .contact-channel { padding: 16px 18px; }

  /* PLACEHOLDER BLOCKS */
  .placeholder-block { padding: 22px 18px; margin: 10px 0; }
  .placeholder-block::before {
    font-size: 9px;
    left: 14px;
    padding: 3px 8px;
    top: -8px;
  }
  .placeholder-block .ph-title { font-size: 13px; margin-bottom: 6px; }
  .placeholder-block .ph-desc { font-size: 12.5px; line-height: 1.5; }

  .placeholder-image { padding: 20px 16px; aspect-ratio: 4/3; }
  .placeholder-image::before { font-size: 9px; left: 14px; padding: 3px 8px; }
  .placeholder-image .ph-icon { width: 32px; height: 32px; font-size: 15px; margin-bottom: 10px; }
  .placeholder-image .ph-title { font-size: 13px; margin-bottom: 4px; }
  .placeholder-image .ph-desc { font-size: 11.5px; max-width: 100%; }

  /* TEMP TAG (canto da imagem) */
  .temp-tag {
    font-size: 8.5px;
    padding: 4px 7px;
    top: 10px;
    right: 10px;
    letter-spacing: 0.1em;
  }

  /* PORTFOLIO FULL: 1 col em mobile */
  .portfolio-grid-full { grid-template-columns: 1fr; gap: 14px; }

  /* PORTFOLIO FILTERS */
  .portfolio-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }
  .filter-btn { white-space: nowrap; flex-shrink: 0; }

  /* CAPACITY / STATS */
  .capacity-copy h2 { font-size: clamp(26px, 7vw, 36px); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .stats-grid .stat h3 { font-size: clamp(36px, 10vw, 56px); }

  /* CATALOG CTA */
  .catalog-cta { padding: 24px; }
  .catalog-cta h3 { font-size: 20px; }

  /* IMPACT / LP-FINAL CTA */
  .impact-cta, .lp-final { padding: 70px var(--gutter); }
  .impact-inner h2 { font-size: clamp(30px, 9vw, 46px); line-height: 1.05; }
  .impact-inner p { font-size: 15px; }
  .impact-inner .btn-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .impact-inner .btn-row .btn { width: 100%; justify-content: center; }
  .lp-final .btn-row { flex-direction: column; gap: 10px; align-items: stretch; }
  .lp-final .btn-row .btn { width: 100%; justify-content: center; }

  /* SECTION HEADER (espaço antes do conteúdo) */
  .section-header { padding-bottom: 36px; }
  .section-header .lead { font-size: 15px; }

  /* PAGE HERO (sobre, servicos, portfolio, contato) */
  .page-hero { padding: 110px var(--gutter) 24px; }
  .page-hero h1 { font-size: clamp(30px, 9vw, 44px); margin-bottom: 14px; }
  .page-hero .lead { font-size: 15px; }

  /* LP NAV (navbar simplificada) */
  .lp-nav { padding: 12px var(--gutter); }
  .lp-nav .logo .logo-text h3 { font-size: 14px; }
  .lp-nav .logo .logo-text span { font-size: 10.5px; }
  .lp-nav-actions { gap: 8px; }
  .lp-back { display: none; }

  /* SERVICOS — listas inline geradas com style="" precisam ajuste */
  .service-detail-grid li {
    font-size: 14px !important;
    line-height: 1.5;
  }

  /* SOBRE story-layout: imagem volta a fluxo natural */
  .story-layout > div:first-child { position: static !important; }

  /* BUTTONS gerais */
  .btn { padding: 13px 22px; font-size: 14.5px; }
  .btn-arrow { font-size: 16px; }

  /* INTRO STRIP */
  .intro-strip p { font-size: clamp(15px, 4.2vw, 18px) !important; }
}

/* ---------- MOBILE EXTRA PEQUENO (≤ 480px) ---------- */
@media (max-width: 480px) {
  h1 { font-size: clamp(28px, 8.5vw, 38px); line-height: 1.08; }
  h2 { font-size: clamp(24px, 7.5vw, 32px); line-height: 1.12; }

  /* Urgency banner em telas muito pequenas */
  .urgency-banner-inner { font-size: 11.5px; }

  /* Stats grid: 1 coluna em tela bem pequena */
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Page hero menor */
  .page-hero { padding-top: 100px; }

  /* Impact / lp-final menos padding */
  .impact-cta, .lp-final { padding: 56px var(--gutter); }

  /* Hero das LPs */
  .lp-hero { padding: 100px var(--gutter) 50px; }

  /* Gallery 2 col continua, mas labels ainda menores */
  .gallery-tile .label { font-size: 8.5px; padding: 3px 7px; }

  /* Floating WhatsApp */
  .floating-whatsapp {
    width: 52px;
    height: 52px;
    bottom: 18px;
    right: 18px;
  }
  .floating-whatsapp svg { width: 24px; height: 24px; }

  /* Catalog CTA */
  .catalog-cta { padding: 20px; }
  .catalog-cta h3 { font-size: 18px; }
  .catalog-cta p { font-size: 13.5px; }

  /* Section header */
  .section-header { padding-bottom: 28px; }
}

