/* ====================================================
   PROFIX CONSTRUTORA — Design System
   Source: Krevi Template Kit (global.json + home.json)
   Colors:  #FF5924 | #151618 | #F4F5F9 | #FFFFFF
   Line:    #E6E8E580  (Krevi "Line" divider token)
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES (lifted directly from global.json) ─── */
:root {
  /* System colors */
  --primary: #ff4d1a;
  --primary-dark: #e64112;
  --primary-light: rgba(255, 77, 26, .10);
  --dark: #1a1a1a;
  --dark-2: #1c1f21;
  --dark-3: #252829;
  --white: #FFFFFF;
  --light: #f1f3f6;
  --bg-site: #eceef1;
  --gray: #94949F;
  --gray-light: #e5e7ec;

  /* Layout & Animation */
  --section-pd: 120px;
  --section-pd-sm: 80px;
  --nav-height: 80px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.12);
  --radius: 30px 0 30px 0;
  /* Leaf Shape Identity */
  --radius-sm: 15px 0 15px 0;
  /* 30% smaller than buttons */

  /* Krevi "Line" token */
  --line: rgba(230, 232, 229, 0.50);
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-hero: rgba(255, 255, 255, 0.18);

  /* Fonts */
  --font-main: 'Inter', sans-serif;
  --font-display: 'Plus Jakarta Sans', sans-serif;

  /* Layout */
  --container: 1300px;
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --shadow-sm: 0 2px 16px rgba(0, 0, 0, .06);
}

/* ── RESET ─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Lenis smooth scrolling compatibility */
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-main);
  background: var(--bg-site);
  color: var(--dark);
  line-height: 1.8;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-main);
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: var(--font-main);
}

/* ── TYPOGRAPHY (faithful to global.json) ────────── */
/*
  H1  → Plus Jakarta Sans, 300, 6em, uppercase, lh 1, ls 0
  H2  → Plus Jakarta Sans, 500, 3em, uppercase, lh 1, ls 0.05em
  H3  → Plus Jakarta Sans, 400, 2.5em, capitalize, lh 1.2
  H4  → Plus Jakarta Sans, 500, 2em, capitalize, lh 1.2, ls -0.01em
  H5  → Plus Jakarta Sans, 400, 1.2em, uppercase, lh 1.4, ls 0.2em
  Button → Plus Jakarta Sans, 300, 0.8em, uppercase, ls 0.2em
*/
h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  font-weight: 300;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
}

h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: capitalize;
}

h5 {
  font-family: var(--font-display);
  font-size: 1.2em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1.4;
}

p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.8;
  letter-spacing: 0.02em;
}

/* ── LAYOUT ─────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

section {
  padding: var(--section-pd) 0;
}

.s-sm {
  padding: var(--section-pd-sm) 0 !important;
}

.bg-dark {
  background: var(--dark);
}

.bg-light {
  background: var(--light);
}

.bg-white {
  background: var(--bg-site);
}

.bg-primary {
  background: var(--primary);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ── SECTION HEADER ─────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--primary);
}

.section-title {
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 60px;
}

.on-dark .section-sub {
  color: rgba(255, 255, 255, .45);
}

.on-dark h2 {
  color: var(--white);
}

.on-dark .section-tag {
  color: var(--primary);
}

/* ── BUTTONS (Krevi: 0.8em, weight 300, uppercase, ls 0.2em, radius 999px) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  min-height: 62px;
  font-family: var(--font-display);
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  line-height: 1;
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Primary CTA = Dark (global.json: button_background_color #151618) */
.btn-primary {
  background: var(--dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .30);
}

/* Orange variant — for dark section backgrounds */
.btn-orange {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
  transform: none;
}

.btn-orange:hover {
  background: var(--white);
  color: #000;
  border-color: var(--white);
  box-shadow: none;
  transform: none;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

/* Outline on coloured (hero orange) backgrounds */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .40);
  padding: 17px 34px;
  min-height: 62px;
  font-family: var(--font-display);
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

/* Outline on white backgrounds */
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--dark);
  border: 1px solid rgba(21, 22, 24, .30);
  padding: 17px 34px;
  min-height: 62px;
  font-family: var(--font-display);
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  transition: gap 0.3s;
}

.btn-link:hover {
  gap: 14px;
}

.btn-link svg {
  width: 14px;
  height: 14px;
}

/* ── NAVIGATION ─────────────────────────────────── */
#header {
  position: fixed;
  top: -1px;
  left: -1px;
  right: -1px;
  width: calc(100% + 2px);
  padding-top: 1px;
  z-index: 2000 !important;
  height: calc(var(--nav-height) + 1px);
  transition: background 0.4s var(--ease), box-shadow 0.4s;
  overflow: hidden !important;
}

/* On orange hero: transparent so orange shows through */
#header.nav-transparent {
  background: transparent;
}

/* After scroll / on inner pages: solid dark */
#header.nav-solid {
  background: var(--dark);
  box-shadow: none;
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-height);
}

.nav-links.left-links {
  justify-content: flex-start;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-logo img {
  height: 50px;
  width: auto;
}

/* ── FLOATING TRANSPARENT HEADER WITH VIGNETTE GRADIENT ── */
#header {
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#header.nav-transparent {
  background: transparent !important;
  border-bottom: none !important;
}

#header.nav-solid {
  background: #1a1a1a !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
  border-bottom: 3px solid var(--primary);
}

/* Branding Assets: Dark Logo (white/orange) for all dark backgrounds */
#header .logo-dark {
  display: block;
}

#header .logo-light {
  display: none;
}

#header .nav-links a {
  color: var(--white) !important;
  opacity: 1;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  /* Text readability shadow */
}

#header .nav-links a:hover,
#header .nav-links a.active {
  color: var(--primary) !important;
}

#header .hamburger span {
  background: var(--white) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

#header .btn {
  /* padding: 8px 24px; */
  /* min-height: 34px; */
  /* font-size: 0.65em; */
}

.footer-logo {
  display: block;
  margin-bottom: 30px;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, .70);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* On transparent header over orange hero, use dark button (contrasts orange) */
#header.nav-transparent .btn-primary {
  background: var(--dark);
}

#header.nav-transparent .btn-primary:hover {
  background: var(--dark-2);
}

.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  width: 30px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 2100 !important;
  transition: transform 0.3s var(--ease);
}

.hamburger span {
  display: block;
  height: 2.5px;
  background: var(--white);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger span:nth-child(1) {
  width: 100%;
}

.hamburger span:nth-child(2) {
  width: 70%;
}

.hamburger span:nth-child(3) {
  width: 100%;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(9.5px) rotate(-45deg);
  width: 100%;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-9.5px) rotate(45deg);
  width: 100%;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -110%;
  width: min(400px, 100%);
  height: 100vh;
  background: var(--dark);
  z-index: 990;
  padding: 120px 48px 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid var(--line-dark);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu a {
  font-size: 1.9rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, .55);
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  transition: color 0.3s, padding-left 0.3s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--primary);
  padding-left: 6px;
}

.mobile-menu .mobile-cta {
  margin-top: 36px;
  border: none;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 989;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

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

/* ═══ HERO (Home) Source: home.json _title:"hero"
background_color: #FD3D00 (primary orange) Layout: flex-column,
justify flex-end Inner: 2-col row,
min-height 60vh,
border between cols ════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
.hero {
  min-height: 100vh;
  background: var(--primary);
  /* ← Krevi: globals/colors?id=primary = #FF5924 */
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}

/* Subtle grid overlay — Krevi uses clean flat colour, we add a minimal grid */
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Large decorative ghost text (Play display font, Krevi "large-text": 21.5em, weight 700) */
.hero-deco {
  position: absolute;
  right: -1vw;
  bottom: 60px;
  font-family: var(--font-display);
  font-size: clamp(14rem, 30vw, 32rem);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, .055);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

/* Hero body — aligns content to bottom (flex-end) matching Krevi hero */
.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--nav-height) + 40px);
}

/* Two-column layout with thin line divider (Krevi: border-left 1px solid var(--line)) */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 260px;
  border-top: 1px solid var(--line-hero);
  min-height: 58vh;
}

/* Left column: main hero content */
.hero-col-main {
  padding: 56px 60px 56px 0;
  border-right: 1px solid var(--line-hero);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* Eyebrow tag above H1 */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, .65);
}

/* H1 on hero: Plus Jakarta Sans 300 uppercase (global.json primary typography) */
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 300;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.hero h1 strong {
  font-weight: 700;
}

/* inline bold emphasis */

.hero-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, .68);
  max-width: 64%;
  line-height: 1.85;
  margin-bottom: 44px;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right column: page index (vertical link list with left border — Krevi pattern) */
.hero-col-index {
  padding: 40px 0 40px 40px;
  display: flex;
  flex-direction: column;
}

.hero-index-lbl {
  font-family: var(--font-display);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, .38);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-hero);
  margin-bottom: 6px;
}

.hero-index-links {
  display: flex;
  flex-direction: column;
  margin-top: auto;
}

.hero-index-links a {
  display: block;
  font-size: 0.72rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, .55);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  transition: color 0.3s, padding-left 0.3s;
}

.hero-index-links a:first-child {
  border-top: 1px solid rgba(255, 255, 255, .10);
}

.hero-index-links a:hover {
  color: var(--white);
  padding-left: 10px;
}

/* Scroll indicator */
.hero-scroll {
  padding: 18px 0 18px 40px;
  /* aligns under right column */
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, .4);
  border-top: 1px solid var(--line-hero);
}

.hero-scroll-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, .4);
}

.hero-scroll svg {
  width: 16px;
  height: 16px;
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

/* Stats bar — dark strip below orange hero for strong contrast */
.hero-stats {
  position: relative;
  z-index: 2;
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hero-stat {
  padding: 28px 44px;
  border-right: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-val {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.hero-stat-val sup {
  color: var(--primary);
  font-size: .65em;
}

.hero-stat-lbl {
  font-family: var(--font-display);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, .35);
}

/* ── PAGE HERO (inner pages) ─────────────────────── */
.page-hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-height) + 50px) 0 50px;
}

/* Horizontal grid lines from Krevi structural pattern */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Bold orange bottom accent bar (matches Krevi border-bottom on header sections) */
.page-hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, .32);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, .32);
  transition: color .3s;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb span {
  color: var(--primary);
}

.breadcrumb svg {
  opacity: .4;
}

.theme-light .breadcrumb a {
  color: var(--gray);
}

.theme-light .breadcrumb span {
  color: var(--dark);
}

.theme-light .breadcrumb svg {
  color: var(--gray);
}

/* Inner page H1: slightly smaller than home hero */
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero h1 strong {
  font-weight: 700;
}

/* ── ABOUT PREVIEW ───────────────────────────────── */
.about-img-wrap {
  position: relative;
}

.img-ph {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--light) 0%, #e2e4ea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-ph-home {
  height: 560px;
}

.img-ph-label {
  font-family: var(--font-display);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(21, 22, 24, .07);
  letter-spacing: 0.35em;
  user-select: none;
}

.about-badge {
  position: absolute;
  bottom: 36px;
  right: -28px;
  width: 148px;
  height: 148px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-align: center;
  box-shadow: 0 12px 40px rgba(255, 89, 36, .35);
  border-radius: var(--radius);
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: .85;
  margin-top: 4px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0 36px;
}

.about-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--dark);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  /* Krevi thin divider */
}

.about-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.about-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ── STATS BAR ───────────────────────────────────── */
/*  Using dark background variant (contrast with white sections) */
.stats-bar {
  background: var(--dark);
  padding: 0;
}

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

.stat-block {
  padding: 52px 40px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
  color: var(--white);
}

.stat-block:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--white);
}

.stat-lbl {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, .35);
  display: block;
  margin-top: 8px;
}

/* Orange stats bar variant (used on about page etc) */
.stats-bar.stats-orange {
  background: var(--primary);
}

.stats-bar.stats-orange .stat-num {
  color: var(--white);
}

.stats-bar.stats-orange .stat-lbl {
  color: rgba(255, 255, 255, .75);
}

.stats-bar.stats-orange .stat-block {
  border-right-color: rgba(255, 255, 255, .18);
}

/* ── PROJECTS GRID ───────────────────────────────── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.proj-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.proj-card.large {
  grid-column: span 2;
}

.proj-img {
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.7s var(--ease);
  position: relative;
}

.proj-card.large .proj-img {
  min-height: 480px;
}

.proj-card:hover .proj-img {
  transform: scale(1.07);
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 16, 18, .94) 0%, rgba(15, 16, 18, .12) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.proj-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 8px;
}

.proj-name {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 5px;
}

.proj-loc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .44);
}

.proj-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 30px 0 30px 0;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.6) rotate(-45deg);
  transition: all 0.35s var(--ease-back);
}

.proj-card:hover .proj-arrow {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.proj-bg-1 {
  background: linear-gradient(135deg, #1a1e22, #252d32);
}

.proj-bg-2 {
  background: linear-gradient(135deg, #1e1a16, #2d2318);
}

.proj-bg-3 {
  background: linear-gradient(135deg, #131618, #1f2224);
}

.proj-bg-4 {
  background: linear-gradient(135deg, #161a1c, #222628);
}

.proj-bg-5 {
  background: linear-gradient(135deg, #19161a, #261e28);
}

/* ── SERVICES SECTION ────────────────────────────── */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 0;
}

.srv-card {
  background: var(--dark-2);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
  border-top: 1px solid var(--line-dark);
  /* Krevi thin top line divider */
  border-radius: var(--radius);
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.srv-card:hover {
  background: var(--dark-3);
}

.srv-card:hover::after {
  transform: scaleX(1);
}

/* Large ghost number (Krevi uses Play "large-text" at huge scale) */
.srv-n {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .045);
  line-height: 1;
  margin-bottom: 16px;
}

.srv-ico {
  width: 44px;
  height: 44px;
  color: var(--primary);
  margin-bottom: 22px;
}

.srv-ttl {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.srv-dsc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .42);
  line-height: 1.85;
}

/* ── DIFFERENTIALS ───────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.diff-item {
  background: var(--light);
  padding: 48px 52px;
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--line);
  /* Krevi thin divider */
  border-radius: var(--radius);
  transition: background 0.3s, box-shadow 0.3s;
}

.diff-item:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

/* Ghost number in Krevi orange */
.diff-n {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--primary);
  opacity: .10;
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}

.diff-c h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.diff-c p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.8;
}

/* ── NEWS GRID ───────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
  /* Krevi Line token */
  border-radius: var(--radius);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.news-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.news-thumb {
  width: 100%;
  height: 210px;
  position: relative;
  overflow: hidden;
}

.news-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
}

.news-card:hover .news-thumb::after {
  opacity: 0.25;
}

.news-thumb-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease);
  object-fit: cover;
}

.news-card:hover .news-thumb-inner {
  transform: scale(1.06);
}

.news-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  line-height: 1;
}

.news-body {
  padding: 28px;
}

.news-date {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 10px;
}

.news-ttl {
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.45;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.news-exrpt {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-bg-1 {
  background: linear-gradient(135deg, #e8e9ef 0%, #d8dae2 100%);
}

.news-bg-2 {
  background: linear-gradient(135deg, #ede8e5 0%, #e2dad5 100%);
}

.news-bg-3 {
  background: linear-gradient(135deg, #e5ede8 0%, #d5e2da 100%);
}

/* ── CTA BAND ────────────────────────────────────── */
.cta-band {
  background: var(--primary);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: 'PROFIX';
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(10rem, 22vw, 24rem);
  font-weight: 700;
  color: rgba(255, 255, 255, .06);
  line-height: 1;
  user-select: none;
  white-space: nowrap;
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 2.8rem);
  max-width: 480px;
  font-weight: 300;
}

.cta-band p {
  color: rgba(255, 255, 255, .72);
  max-width: 380px;
  margin-top: 12px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CONTACT ─────────────────────────────────────── */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}

.contact-detail {
  display: flex;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.contact-detail:last-child {
  border-bottom: none;
}

.c-ico {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.c-ico svg {
  width: 18px;
  height: 18px;
}

.c-text strong {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dark);
  margin-bottom: 3px;
}

.c-text span {
  font-size: 0.95rem;
  color: var(--gray);
}

/* ── TABS ────────────────────────────────────────── */
.tabs-wrap {}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
}

.tab-btn {
  padding: 17px 34px;
  min-height: 62px;
  font-family: var(--font-display);
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray);
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: var(--transition);
  border-radius: var(--radius);
}

.tab-btn.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.tab-btn:hover {
  color: var(--dark);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* ── FORM ────────────────────────────────────────── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-lbl {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-inp {
  width: 100%;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-family: var(--font-main);
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--dark);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
  border-radius: var(--radius);
}

.form-inp:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 89, 36, .10);
}

.form-inp::placeholder {
  color: #c0c2c8;
}

textarea.form-inp {
  min-height: 140px;
  resize: vertical;
}

select.form-inp {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394949F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

.form-check input {
  margin-top: 3px;
  accent-color: var(--primary);
}

.form-check label {
  font-size: 0.88rem;
  color: var(--gray);
}

/* ── FILTER BAR ──────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.filter-btn {
  padding: 17px 34px;
  min-height: 62px;
  font-family: var(--font-display);
  font-size: 0.8em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: none;
  color: var(--gray);
  cursor: pointer;
  transition: var(--transition);
  margin-right: 8px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--dark);
  color: #FFFFFF !important;
  border-color: var(--dark);
}

/* ── EMPREENDIMENTOS CARD ────────────────────────── */
.emp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.emp-card {
  background: var(--white);
  border: 1px solid var(--line);
  /* Krevi Line token */
  border-radius: var(--radius);
  transition: var(--transition);
  overflow: hidden;
}

.emp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.emp-thumb {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.emp-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  pointer-events: none;
}

.emp-card:hover .emp-thumb::after {
  opacity: 0.25;
}

.emp-card:hover .emp-thumb img {
  transform: scale(1.08);
}

.emp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.emp-status {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  background: var(--primary);
  color: #fff;
  line-height: 1;
}

.emp-status.obra {
  background: var(--primary);
}

.emp-status.entregue {
  background: var(--primary);
}

.emp-info {
  padding: 24px;
}

.emp-tipo {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 6px;
}

.emp-nome {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.emp-loc {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.emp-loc svg {
  width: 13px;
  height: 13px;
}

.emp-meta {
  display: flex;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.emp-meta-item {
  font-size: 0.78rem;
  color: var(--gray);
}

.emp-meta-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
}

/* ── EMPREENDIMENTOS ARCHIVE PAGE (Main Listing) ── */
.project-grid-main {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.project-card-main {
  position: relative;
  display: block;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  padding: 30px;
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.project-card-main:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.15);
}

.project-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--light);
  margin-bottom: 30px;
  border-radius: var(--radius);
}

.project-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 2;
  pointer-events: none;
}

.project-card-main:hover .project-img-wrap::after {
  opacity: 0.25;
}

.project-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.project-card-main:hover .project-img-main {
  transform: scale(1.06);
}

.status-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 5;
  background: var(--primary);
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fff;
  pointer-events: none;
  border-radius: 15px 0 15px 0;
  line-height: 1;
}

.project-meta-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.project-info-main {
  flex: 1;
}

.project-cat-main {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  display: block;
  margin-bottom: 12px;
}

.project-title-main {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
  color: var(--dark);
  line-height: 1.15;
  transition: color 0.3s;
}

.project-card-main:hover .project-title-main {
  color: var(--primary);
}

.project-loc-main {
  font-size: 0.95rem;
  color: #888;
  font-weight: 400;
  display: block;
}

.project-arrow-wrap {
  flex-shrink: 0;
  padding-top: 10px;
}

.project-arrow {
  width: 60px;
  height: 60px;
  border: 1px solid rgba(21, 22, 24, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--dark);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-arrow svg {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.project-card-main:hover .project-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.project-card-main:hover .project-arrow svg {
  transform: rotate(-45deg);
}

/* Modifiers for non-featured projects */
.project-card-normal {
  display: grid !important;
  grid-template-columns: 180px 1fr;
  gap: 40px;
  align-items: center;
  padding: 25px 0;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(15, 16, 18, 0.1) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: transform 0.3s ease, border-bottom-color 0.3s ease;
}

.project-card-normal:hover {
  transform: translateX(10px);
  background: transparent !important;
  border-bottom-color: var(--primary) !important;
  box-shadow: none !important;
}

.project-card-normal .project-img-wrap {
  aspect-ratio: 16/10;
  margin-bottom: 0;
  border-radius: var(--radius-sm);
}

.project-card-normal .project-title-main {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 400;
  margin-bottom: 4px;
}

.project-card-normal .project-cat-main {
  margin-bottom: 4px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
}

.project-card-normal .project-meta-main {
  gap: 20px;
  align-items: center;
}

.project-card-normal .project-arrow {
  width: 42px;
  height: 42px;
  border-color: rgba(21, 22, 24, 0.1);
}

.project-card-normal .status-badge {
  top: 10px;
  right: 10px;
  padding: 6px 12px;
  font-size: 0.52rem;
  border-radius: 10px 0 10px 0;
}

@media (max-width: 991px) {
  .project-grid-main {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 20px !important;
  }

  .project-title-main {
    font-size: 1.6rem;
  }

  .project-card-normal {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    padding: 0 0 15px 0 !important;
    border-bottom: none !important;
  }

  .project-card-normal:hover {
    transform: none !important;
  }

  .project-card-normal .project-img-wrap {
    margin-bottom: 12px !important;
    aspect-ratio: 4/3 !important;
  }

  .project-card-normal .project-title-main {
    font-size: 0.95rem !important;
    margin-bottom: 3px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
  }

  .project-card-normal .project-cat-main {
    font-size: 0.58rem !important;
    margin-bottom: 3px !important;
  }

  .project-card-normal .project-loc-main {
    font-size: 0.78rem !important;
  }

  .project-card-normal .project-meta-main {
    align-items: flex-start !important;
    gap: 0 !important;
  }

  .project-card-normal .project-arrow-wrap {
    display: none !important;
  }

  .project-card-normal .status-badge {
    top: 10px !important;
    right: 10px !important;
    padding: 6px 12px !important;
    font-size: 0.52rem !important;
    border-radius: 8px 0 8px 0 !important;
  }
}

/* Featured Card Styling */
.project-card-featured {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  background: #ffffff;
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.project-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 0, 0, 0.18);
}

.project-card-featured .project-img-wrap {
  margin-bottom: 0;
  aspect-ratio: 4/3;
}

.project-card-featured .project-title-main {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 200;
}

.project-card-featured .project-arrow-wrap {
  display: none;
}

.featured-project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-top: 1px solid var(--gray-light);
  padding-top: 25px;
  margin-top: 25px;
}

.featured-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.featured-stat-item:first-child {
  border-right: 1px solid var(--gray-light);
  padding-right: 20px;
}

.featured-stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
}

.featured-stat-label svg {
  color: var(--primary);
  flex-shrink: 0;
}

.featured-stat-label span {
  font-family: var(--font-display);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  font-weight: 500;
}

.featured-stat-val {
  font-size: 1.1rem;
  color: var(--dark);
  font-weight: 600;
  font-family: var(--font-display);
}

@media (max-width: 991px) {
  .project-card-featured {
    grid-template-columns: 1fr !important;
    padding: 20px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    gap: 0;
    transform: none !important;
    box-shadow: none !important;
    text-align: center !important;
  }

  .project-card-featured .project-img-wrap {
    aspect-ratio: 16/11;
    margin-bottom: 20px;
  }

  .project-card-featured .project-title-main {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-weight: 300;
  }

  .featured-project-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px 0 0 0;
    margin-top: 15px;
  }

  .featured-stat-item {
    align-items: center !important;
  }

  .featured-stat-label {
    justify-content: center !important;
  }

  .featured-stat-item:first-child {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid var(--gray-light);
    padding-bottom: 12px;
  }
}


/* ── BLOG / NOTICIAS ─────────────────────────────── */
.blog-sidebar .widget {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.blog-sidebar .widget:last-child {
  border-bottom: none;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.recent-post {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.recent-post-thumb {
  width: 64px;
  height: 64px;
  border-radius: 0;
  flex-shrink: 0;
  background: var(--light);
}

.recent-post-ttl {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 4px;
}

.recent-post-date {
  font-size: 0.7rem;
  color: var(--gray);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  min-height: 38px;
  font-family: var(--font-display);
  font-size: 0.72em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background: var(--light);
  color: var(--gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.tag-item:hover {
  background: var(--primary);
  color: var(--white);
}

/* ── SCROLL REVEAL ANIMATIONS ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in,
.reveal-left.in,
.reveal-right.in,
.reveal-scale.in {
  opacity: 1;
  transform: none;
}

.hero-title.reveal {
  transform: translateY(80px) skewY(2deg);
  filter: blur(15px);
  transition: opacity 1.2s var(--ease), transform 1.2s var(--ease), filter 1.2s var(--ease);
}

.hero-title.reveal.in {
  transform: translateY(0) skewY(0);
  filter: blur(0);
}

.d1 {
  transition-delay: .10s;
}

.d2 {
  transition-delay: .20s;
}

.d3 {
  transition-delay: .30s;
}

.d4 {
  transition-delay: .40s;
}

.d5 {
  transition-delay: .50s;
}

.d6 {
  transition-delay: .60s;
}

@keyframes floating {

  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, -15px);
  }
}

.stats-glass {
  animation: floating 5s ease-in-out infinite;
}

/* ── FOOTER ──────────────────────────────────────── */
#footer {
  background: #1a1a1a;
  padding-bottom: 120px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-social-top {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 60px 0 20px;
}

/* Krevi footer: thin line dividers between columns */
.footer-main {
  padding: 40px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line-dark);
}

.footer-main>div {
  padding: 0 40px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}

.footer-main>div:first-child {
  padding-left: 0;
}

.footer-main>div:last-child {
  padding-right: 0;
  border-right: none;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  display: block;
  margin-bottom: 18px;
}

.footer-logo em {
  color: var(--primary);
  font-style: normal;
}

.footer-about {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .4);
  line-height: 1.85;
  margin-bottom: 28px;
}

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

.f-social-link {
  width: 49px;
  height: 49px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .38);
  transition: var(--transition);
}

.f-social-link svg {
  width: 21px;
  height: 21px;
}

.f-social-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 89, 36, .10);
}

.footer-col-ttl {
  font-family: var(--font-display);
  font-size: 0.91rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--primary);
  margin-bottom: 22px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-links a {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .40);
  transition: color .3s, padding-left .3s;
  padding: 7px 0;
  border-bottom: 0px solid rgba(255, 255, 255, .04);
  line-height: 2.22;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.f-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.f-c-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.f-c-ico {
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.f-c-ico svg {
  width: 15px;
  height: 15px;
}

.f-c-txt {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, .38);
  line-height: 1.6;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .22);
  letter-spacing: 0.05em;
}

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

.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, .22);
  transition: color .3s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ── UTILITIES ───────────────────────────────────── */
.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.mt-16 {
  margin-top: 64px;
}

.mb-8 {
  margin-bottom: 32px;
}

.mb-12 {
  margin-bottom: 48px;
}

.tc {
  text-align: center;
}

.tr {
  text-align: right;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .footer-main>div {
    padding: 20px 15px;
    border-right: 1px solid var(--line-dark);
    border-left: none;
    border-top: none;
    border-bottom: none;
  }

  .footer-main>div:first-child {
    padding-left: 0;
  }

  .footer-main>div:last-child {
    padding-right: 0;
    border-right: none;
  }

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

  .srv-grid,
  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-col-index {
    display: none;
  }

  .hero-col-main {
    border-right: none;
  }

  .hero-scroll {
    border-top-color: var(--line-hero);
  }
}

@media (max-width: 900px) {
  :root {
    --section-pd: 80px;
    --section-pd-sm: 50px;
    --nav-height: 70px;
  }

  .container {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    position: relative !important;
    padding: 0 !important;
  }

  .hamburger {
    display: flex !important;
    position: absolute !important;
    right: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
  }

  .grid-2,
  .grid-3,
  .news-grid,
  .emp-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .proj-card.large {
    grid-column: span 1;
  }

  .proj-card.large .proj-img {
    min-height: 320px;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stat:nth-child(2) {
    border-right: none;
  }

  .hero-stat:nth-child(3) {
    border-top: 1px solid var(--line-dark);
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-block {
    padding: 40px 20px;
  }

  .stat-block:nth-child(2) {
    border-right: none;
  }

  .stat-block:nth-child(3) {
    border-top: 1px solid var(--line-dark);
  }

  .stat-block:nth-child(4) {
    border-top: 1px solid var(--line-dark);
    border-left: 1px solid var(--line-dark);
  }

  .cta-band .flex-between {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .srv-grid,
  .diff-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-desc {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  :root {
    --section-pd: 60px;
    --section-pd-sm: 40px;
  }

  .container {
    padding: 0 24px;
  }

  h1 {
    font-size: clamp(1.8rem, 8vw, 2.3rem) !important;
    line-height: 1.1 !important;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.2rem) !important;
    line-height: 1.2 !important;
  }

  p {
    font-size: 0.95rem !important;
    line-height: 1.6;
  }

  .hero-deco {
    display: none;
  }

  .hero,
  .prj-hero,
  .home-hero {
    height: 80vh !important;
    min-height: 500px !important;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    height: 52px;
  }

  .hero-container {
    padding: 40px 0;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }

  .stat-block {
    border-right: none !important;
    border-bottom: 1px solid var(--line-dark);
  }

  .stat-block:last-child {
    border-bottom: none;
  }

  .news-card,
  .emp-card {
    border-radius: 30px 0 30px 0 !important;
  }

  .news-thumb,
  .emp-thumb {
    height: 180px;
  }

  .news-body,
  .emp-info {
    padding: 20px;
  }

  .footer-main>div {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid var(--line-dark);
  }

  .footer-main>div:last-child {
    border-bottom: none;
  }

  .filter-bar {
    gap: 8px;
    justify-content: center;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 0.7rem;
    width: calc(50% - 4px);
    text-align: center;
  }

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.88rem;
  }

  /* Tabs */
  .tabs-nav {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .tabs-nav::-webkit-scrollbar {
    display: none;
  }
}

/* Premium Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--dark);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu.open a:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu .mobile-cta {
  margin-top: 40px;
  font-size: 0.9rem;
  width: auto;
  min-width: 200px;
  opacity: 0;
  transition-delay: 0.6s;
}

.mobile-menu.open .mobile-cta {
  opacity: 1;
  transform: translateY(0);
}

.hamburger span {
  background: var(--white);
  transition: all 0.3s;
}

.theme-light .nav-transparent .hamburger span {
  background: var(--dark);
}

.nav-solid .hamburger span {
  background: var(--dark);
}

.hamburger.open span {
  background: var(--white) !important;
}

/* ── GLOBAL OVERFLOW LOCK ── */
section,
header,
footer {
  overflow-x: clip;
  width: 100%;
}

.contact-bar {
  overflow: visible !important;
}

/* ── FOOTER REFINED MOBILE ── */
@media (max-width: 991px) {
  #footer {
    padding: 60px 0 120px 0 !important;
  }

  .footer-main {
    display: flex !important;
    flex-direction: column !important;
    gap: 50px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .footer-main>div {
    border-right: none !important;
    border-bottom: 1px solid var(--line-dark) !important;
    padding-bottom: 40px !important;
    width: 100% !important;
  }

  .footer-main>div:last-child {
    border-bottom: none !important;
  }

  .footer-about {
    margin: 0 auto 30px auto !important;
    max-width: 400px;
  }

  .footer-social {
    justify-content: center !important;
  }

  .footer-links {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 !important;
  }

  .footer-links li {
    margin: 10px 0 !important;
  }

  .f-contact {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .f-c-item {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    align-items: center !important;
  }

  .f-c-txt {
    text-align: center !important;
    line-height: 1.5 !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    gap: 25px !important;
    text-align: center !important;
    padding-top: 40px !important;
    margin-top: 40px !important;
  }

  .footer-legal {
    justify-content: center !important;
    gap: 20px !important;
  }

  /* ── MOBILE FORM BOX ── */
  #form-contato {
    background: #fdfdfd !important;
    padding: 30px 20px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    margin-top: 30px !important;
  }

  .form-group {
    margin-bottom: 15px !important;
  }

  .form-inp {
    padding: 12px 16px !important;
    font-size: 0.9rem !important;
  }

  textarea.form-inp {
    min-height: 100px !important;
  }

  .form-check {
    margin-bottom: 20px !important;
  }
}

/* ── HOME — headers, botões folha, publicações ──────────── */
.home-section-head {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.home-section-head--center {
  text-align: center;
}

.home-section-head--center .section-tag {
  justify-content: center;
}

.home-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin: 0;
}

.home-section-title--manifesto {
  font-weight: 300;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  letter-spacing: -0.03em;
  text-align: center;
}

.home-section-title--manifesto .manifesto-title-main {
  display: block;
  white-space: normal;
}

.home-section-title--manifesto strong {
  display: block;
  font-size: 1.14em;
  font-weight: 800;
  margin-top: 0.12em;
  letter-spacing: -0.03em;
}

.home-section-title--manifesto strong::after {
  content: '';
  display: block;
  width: clamp(64px, 10vw, 120px);
  height: 3px;
  background: var(--primary);
  margin: 0.4em auto 0 auto;
}

.manifesto-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dark);
  text-decoration: none;
  padding: 10px 0;
}

.manifesto-link span:first-child {
  position: relative;
}

.manifesto-link span:first-child::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -5px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.manifesto-link:hover span:first-child::after {
  transform: scaleX(1);
}

/* Botão folha — dimensões e formato únicos em toda a home */
.btn-leaf,
.home-hero .hero-cta.btn-leaf {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 18px 38px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  line-height: 1;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.btn-leaf svg,
.home-hero .hero-cta.btn-leaf svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.btn-leaf:hover svg,
.home-hero .hero-cta.btn-leaf:hover svg {
  transform: translateX(4px);
}

.btn-leaf--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-leaf--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  box-shadow: 0 8px 30px rgba(255, 77, 26, 0.4);
  transform: translateY(-2px);
}

.btn-leaf--outline {
  background: var(--white);
  color: var(--dark);
  border-color: rgba(21, 22, 24, 0.22);
}

.btn-leaf--outline:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

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

/* Stats (home) */
.stats-hero {
  position: relative;
  background: #0e0f11;
  overflow: hidden;
}

.stats-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stats-hero-item {
  text-align: center;
  padding: 20px 0;
}

.stats-hero-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
}

.stats-hero-number sup {
  font-size: 0.35em;
  color: var(--primary);
  font-weight: 700;
  margin-top: 0.3em;
  letter-spacing: 0;
}

.stats-hero-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 12px;
  line-height: 1.6;
}

.stats-hero-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.12), transparent);
  margin: 0 clamp(20px, 3vw, 60px);
}

.stats-hero__inner {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.stats-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 89, 36, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 89, 36, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.stats-hero__line-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

/* Publicações (home) */
.section-news {
  padding: clamp(80px, 8vw, 120px) 0;
  background: #f7f7f8;
  border-top: 1px solid rgba(15, 16, 18, 0.06);
}

.news-list {
  list-style: none;
  margin: clamp(36px, 4vw, 54px) auto 0;
  padding: 0;
  max-width: 1300px;
  background: transparent;
  border-top: 1px solid rgba(15, 16, 18, 0.12);
}

.news-list-item {
  display: grid;
  grid-template-columns: 58px 1fr 34px;
  align-items: center;
  gap: 0 clamp(18px, 3vw, 42px);
  padding: clamp(28px, 3.5vw, 38px) 0;
  border-bottom: 1px solid rgba(15, 16, 18, 0.12);
  text-decoration: none;
  transition: color 0.35s var(--ease), transform 0.35s var(--ease);
  position: relative;
}

.news-list-item:first-child {
  border-top: none;
}

.news-list-item:last-child {
  border-bottom-color: rgba(15, 16, 18, 0.12);
}

.news-list-item::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.35s var(--ease);
}

.news-list-item:hover {
  transform: translateX(8px);
}

.news-list-item:hover::before {
  width: 100%;
}

.news-list-num {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  line-height: 1;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-light);
  width: fit-content;
}

.news-list-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.news-list-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  margin: 0;
  transition: color 0.3s var(--ease);
}

.news-list-item:hover .news-list-title {
  color: var(--primary);
}

.news-list-date {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}

.news-list-arrow {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  flex-shrink: 0;
  transition: var(--transition);
}

.news-list-item:hover .news-list-arrow {
  color: var(--primary);
}

.news-list-arrow svg {
  transition: transform 0.3s var(--ease);
}

.news-list-item:hover .news-list-arrow svg {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .stats-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .stats-hero-divider {
    display: none;
  }

  .stats-hero-item {
    padding: 28px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stats-hero-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }

  .stats-hero-number {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .news-list-item {
    grid-template-columns: 44px 1fr auto;
    gap: 0 16px;
    padding: 22px 0;
  }

  .news-list-item:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .stats-hero-number {
    font-size: 3rem;
  }

  .news-list-title {
    font-size: 1.15rem;
  }
}

/* ── HOME — MANIFESTO (split editorial) ─────────────────── */
.home-manifesto {
  position: relative;
  overflow: visible;
  background: var(--white);

}

.home-manifesto__split {
  display: flex;
  align-items: stretch;
  min-height: clamp(560px, 78vh, 820px);
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.home-manifesto__split>.container.home-manifesto__content {
  flex: 0 1 auto;
  width: 100%;
  max-width: calc(var(--container) / 2 + 20px);
  margin-left: max(40px, calc((100vw - var(--container)) / 2));
  margin-right: 0;
  padding-top: clamp(56px, 7vw, 100px);
  padding-bottom: clamp(56px, 7vw, 100px);
  padding-right: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: var(--white);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.home-manifesto__split>.container.home-manifesto__content::after {
  content: '';
  position: absolute;
  top: 12%;
  right: 0;
  width: 3px;
  height: 76%;
  background: linear-gradient(to bottom, transparent, var(--primary), transparent);
}

.home-manifesto .home-section-head--manifesto {
  margin-bottom: clamp(28px, 4vw, 40px);
}

.home-manifesto__intro {
  font-size: clamp(0.95rem, 1.15vw, 1.05rem);
  color: var(--gray);
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 28px;
  text-align: center;
}

.home-manifesto__visual {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  min-height: inherit;
  overflow: hidden;
  margin-right: calc(50% - 50vw);
}

.home-manifesto__figure {
  margin: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.home-manifesto__figure img {
  width: 100%;
  height: 100%;
  min-height: clamp(560px, 78vh, 820px);
  object-fit: cover;
  object-position: center 40%;
  display: block;
  border-radius: var(--radius) 0 0 0;
}

.home-manifesto__stamp {
  position: absolute;
  left: clamp(20px, 3vw, 40px);
  bottom: clamp(28px, 4vw, 56px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  box-shadow: var(--shadow-lg);
}

.home-manifesto__stamp-line {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.3;
}

.home-manifesto__stamp-line--accent {
  color: var(--primary);
  font-weight: 700;
}

/* About (sobre) — editorial split */
.about-editorial {
  background: #f6f6f7;
  border-top: 1px solid rgba(15, 16, 18, 0.05);
  padding: clamp(76px, 8vw, 128px) 0;
  position: relative;
  overflow: hidden;
}

.about-editorial__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.78fr);
  gap: clamp(44px, 6vw, 96px);
  align-items: center;
}

.about-editorial__media {
  position: relative;
  border-radius: 0 var(--radius) 0 var(--radius);
  overflow: hidden;
  min-height: clamp(480px, 58vh, 680px);
  background: #000;
  isolation: isolate;
}

.about-editorial__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  filter: saturate(0.95) contrast(1.04);
}

.about-editorial__media::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.66), transparent);
  z-index: 1;
}

.about-editorial__caption {
  position: absolute;
  left: clamp(24px, 3vw, 42px);
  right: clamp(24px, 3vw, 42px);
  bottom: clamp(24px, 3vw, 42px);
  z-index: 2;
  color: #fff;
}

.about-editorial__caption span {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
}

.about-editorial__caption strong {
  display: block;
  max-width: 360px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.15;
}

.about-editorial__content {
  max-width: 560px;
}

.about-editorial__content .section-tag {
  margin-bottom: 20px;
}

.about-editorial__content h2 {
  margin: 0 0 30px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--dark);
}

.about-editorial__content p {
  max-width: 54ch;
  margin: 0 0 22px;
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.9;
}

.about-editorial__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 28px;
  margin-top: 38px;
}

.about-editorial__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  position: relative;
  color: var(--dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
}

.about-editorial__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(100% - 24px);
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.about-editorial__link:hover::after {
  transform: scaleX(1);
}

.about-editorial__phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid rgba(15, 16, 18, 0.12);
}

.about-editorial__phone-label {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
}

.about-editorial__phone-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

.about-editorial__phone-value:hover {
  color: var(--primary);
}

@media (max-width: 991px) {
  .about-editorial__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .about-editorial__media {
    min-height: 50vh;
  }

  .about-editorial__phone {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .home-manifesto__split {
    flex-direction: column;
    min-height: unset;
    width: 100%;
    margin-left: 0;
  }

  .home-manifesto__split>.container.home-manifesto__content {
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-right: 40px;
  }

  .home-manifesto {
    padding-top: 0;
  }

  .home-manifesto__visual {
    order: -1;
    margin-right: 0;
    flex: none;
  }

  .home-manifesto__visual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, #0e0f11, transparent);
    z-index: 2;
    pointer-events: none;
  }

  .home-manifesto__visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    z-index: 3;
    pointer-events: none;
  }

  .home-manifesto__figure img {
    min-height: 52vh;
    border-radius: 0 0 var(--radius) 0;
  }

  .home-manifesto__split>.container.home-manifesto__content::after {
    display: none;
  }

  .home-section-title--manifesto {
    text-align: center;
  }

  .home-section-head--manifesto .section-tag {
    justify-content: center;
  }
}

/* ── Páginas internas — formulários (terreno / fornecedor) ─ */
.internal-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  padding: 24px 28px;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  transition: var(--transition);
}

.process-step:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.process-step__num {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dark);
  margin: 0 0 8px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

.map-picker {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 12px;
}

.map-picker__canvas {
  height: 280px;
  width: 100%;
  background: var(--light);
}

.map-picker__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  background: var(--light);
  border-top: 1px solid var(--gray-light);
}

.map-picker__hint {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0 0 20px;
  line-height: 1.5;
}

.map-picker__coords {
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--dark-3);
  margin-left: auto;
  align-self: center;
}

.form-section-ttl {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin: 28px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-light);
}

.form-section-ttl:first-of-type {
  margin-top: 0;
}

.form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ════════════════════════════════════════════════════════════
   CHIP MULTISELECT — seleção múltipla via chips em grid uniforme
   ════════════════════════════════════════════════════════════ */

/* Quando .form-row contém chip-grids, empilha vertical (full-width) */
.form-row:has(.form-chip-grid) {
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Grid de chips: auto-fill com colunas uniformes — alinhamento perfeito */
.form-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 8px;
  margin-top: 8px;
}

/* Chip — uniforme, centralizado, sem layout shift */
.form-chip-grid .form-radio-opt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0;
  padding: 10px 14px;
  height: 72px;
  background: var(--white);
  border: 1.5px solid rgba(15, 16, 18, 0.12);
  border-radius: 21px 0 21px 0;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 1.3;
  color: var(--dark);
  cursor: pointer;
  user-select: none;
  white-space: normal;
  transition:
    background 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover — borda escura + lift sutil */
.form-chip-grid .form-radio-opt:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 16, 18, 0.08);
}

/* Selected — fill escuro, texto branco. Sem layout shift. */
.form-chip-grid .form-radio-opt:has(input:checked) {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(15, 16, 18, 0.18);
}

.form-chip-grid .form-radio-opt:has(input:checked):hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(15, 16, 18, 0.22);
}

/* Active — clique tátil */
.form-chip-grid .form-radio-opt:active {
  transform: translateY(0);
  transition-duration: 0.08s;
}

/* Focus visível (teclado) — anel laranja */
.form-chip-grid .form-radio-opt:has(input:focus-visible) {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* Checkbox real — invisível, mantém a11y e form-data */
.form-chip-grid .form-radio-opt input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Mobile — chips menores em telas estreitas */
@media (max-width: 600px) {
  .form-chip-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 6px;
  }

  .form-chip-grid .form-radio-opt {
    padding: 6px 10px;
    height: 76px;
    font-size: 0.8rem;
  }
}

.form-radio-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
}

.form-radio-opt:has(input:checked) {
  border-color: var(--primary);
  background: var(--primary-light);
}

.form-radio-opt input {
  accent-color: var(--primary);
}

select.form-inp[multiple] {
  min-height: 140px;
  padding: 14px 18px;
}

select.form-inp[multiple] option {
  padding: 9px 14px;
  margin-bottom: 2px;
  border-radius: 21px 0 21px 0;
  line-height: 1.4;
}

select.form-inp[multiple] option:checked {
  background: var(--primary-light) linear-gradient(0deg, var(--primary-light), var(--primary-light));
  color: var(--dark);
  font-weight: 500;
}

@media (max-width: 991px) {
  .internal-form-wrap {
    grid-template-columns: 1fr;
  }

  .internal-form-wrap>.reveal-left {
    position: static !important;
  }

  .process-steps {
    margin-bottom: 20px;
  }
}

/* ════════════════════════════════════════════════════════════
   BORDER-RADIUS REDUZIDO EM 30% — formulários e botões
   --radius     30px 0 30px 0  →  21px 0 21px 0
   --radius-sm  15px 0 15px 0  →  10.5px 0 10.5px 0
   ════════════════════════════════════════════════════════════ */
.btn,
.btn-primary,
.btn-dark,
.btn-orange,
.btn-outline,
.btn-outline-dark,
.btn-leaf,
.btn-leaf--primary,
.btn-leaf--outline,
.tab-btn,
.filter-btn,
.form-inp,
input.form-inp,
textarea.form-inp,
select.form-inp,
.home-hero .hero-cta.btn-leaf {
  border-radius: 21px 0 21px 0;
}

.form-radio-opt,
.map-picker,
.process-step {
  border-radius: 21px 0 21px 0;
}