/* ============================================================
   LCE – Lopes e Caldas Engenharia
   Stylesheet – style.css
   Primary: #ed6e04  |  Secondary: #682813
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────────── */
:root {
  --primary: #ed6e04;
  --primary-dark: #c85a00;
  --primary-light: #ff8c2a;
  --secondary: #682813;
  --secondary-dark: #4a1a0d;

  --dark: #0d0d0d;
  --dark-2: #141414;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --dark-5: #2d2d2d;
  --mid: #4a4a4a;
  --gray: #888888;
  --gray-light: #b0b0b0;
  --light: #f5f5f0;
  --white: #ffffff;

  --font-main: 'Inter', 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-serif: 'Scope One', Georgia, Cambria, "Times New Roman", serif;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 40px 80px rgba(0, 0, 0, 0.4);

  --header-h: 80px;
  --container: 1340px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  /* Clip horizontal overflow at the root so off-screen elements (e.g.
     mobile-nav with translateX(100%)) never create horizontal scroll.
     overflow-x:clip (unlike hidden) does NOT create a scroll container,
     so position:sticky elements continue to work correctly. */
  overflow-x: clip;
}

body {
  font-family: var(--font-main);
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Screen-reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ── SMOOTH SCROLL OFFSET ───────────────────────────────────── */
section[id],
article[id] {
  scroll-margin-top: calc(var(--header-h, 80px) + 20px);
}

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

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-eyebrow-light {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
}

#about-title,
#portfolio-title,
#areas-title {
  color: var(--dark);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 100;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 0;
}

.section-text {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--primary);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.btn-form-submit svg {
  rotate: 0deg;
  transition: rotate 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-form-submit:hover svg {
  rotate: 45deg;
}

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

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}

.btn-secondary-hero:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-link-arrow svg {
  transition: transform var(--transition);
}

.btn-link-arrow:hover {
  color: var(--primary-light);
}

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

.btn-cta-header {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-cta-header:hover {
  background: var(--primary-dark);
}

/* ── HEADER ────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 8000;
  height: var(--header-h);
  background: transparent;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  /* Fix Chrome mobile address-bar clip bug:
     Promotes the header to its own GPU compositor layer so it is painted
     independently and never clipped by the browser chrome animation. */
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Mobile: header slides off-screen when scrolling down so it never
   overlaps with Chrome's animating address bar */
.site-header.header-hidden {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
}

.header-logo img {
  height: 50px;
  width: auto;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled .header-logo img {
  height: 40px;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.04);
}

.site-header.scrolled .nav-link {
  color: rgba(0, 0, 0, 0.75);
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-item.active>.nav-link {
  color: var(--primary);
}

.site-header.scrolled .btn-cta-header {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.site-header.scrolled .btn-cta-header:hover {
  background: var(--primary);
  color: var(--white);
}

.site-header.scrolled .btn-hamburger span,
.site-header.nav-open .btn-hamburger span {
  background: var(--dark);
}

.site-header.nav-open {
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04), 0 4px 24px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 40px;
  gap: 40px;
  position: relative;
}

/* Logo */
.header-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  transition: opacity var(--transition);
}

.header-logo:hover {
  opacity: 0.85;
}

.header-logo img {
  height: 42px;
  width: auto;
}

/* Main Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: right;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-item.active>.nav-link {
  color: var(--white);
}

.nav-arrow {
  transition: transform var(--transition);
  flex-shrink: 0;
}

.nav-item.dropdown-active .nav-arrow {
  transform: rotate(180deg);
}

/* Mega Dropdown */
/* ── CLEAN DROPDOWN ──────────────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 999;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.nav-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-list {
  list-style: none;
  padding: 8px 0;
}

.dropdown-list li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.01em;
  transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
  white-space: nowrap;
}

.dropdown-list li a:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  padding-left: 26px;
}

.dropdown-list li:first-child a {
  border-radius: var(--radius) var(--radius) 0 0;
}

.dropdown-list li:last-child a {
  border-radius: 0 0 var(--radius) var(--radius);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-dropdown-trigger {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all var(--transition);
}

.lang-dropdown-trigger:hover {
  color: var(--white);
}

.lang-dropdown-trigger .lang-arrow {
  transition: transform 0.25s ease;
  color: rgba(255, 255, 255, 0.5);
}

.lang-dropdown.open .lang-dropdown-trigger .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  list-style: none;
  padding: 6px 0;
  margin: 0;
  min-width: 90px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown-link {
  display: block;
  padding: 8px 16px;
  color: rgba(0, 0, 0, 0.7);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  text-align: center;
  cursor: pointer;
}

.lang-dropdown-link:hover {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.04);
}

.lang-dropdown-link.active {
  color: var(--primary);
}

/* Scrolled header adjustments */
.site-header.scrolled .lang-dropdown-trigger {
  color: rgba(0, 0, 0, 0.7);
}

.site-header.scrolled .lang-dropdown-trigger:hover {
  color: var(--dark);
}

.site-header.scrolled .lang-dropdown-trigger .lang-arrow {
  color: rgba(0, 0, 0, 0.4);
}

/* Mobile Language Selector */
.mobile-lang-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-lang-btn {
  background: none;
  border: none;
  color: rgba(0, 0, 0, 0.45);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 6px 10px;
  cursor: pointer;
  transition: color var(--transition);
}

.mobile-lang-btn.active {
  color: var(--primary);
}

.mobile-lang-btn:hover {
  color: var(--dark-2);
}

.mobile-lang-selector .lang-divider {
  color: rgba(0, 0, 0, 0.15);
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: color var(--transition), background var(--transition);
}

.btn-search:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Search Panel */
.search-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
}

.search-panel.open {
  max-height: 80px;
  padding: 16px 0;
}

.search-panel-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-input {
  flex: 1;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 18px;
  font-family: var(--font-main);
  padding: 8px 0;
  outline: none;
  transition: border-color var(--transition);
}

.search-input:focus {
  border-bottom-color: var(--primary);
}

.search-input::placeholder {
  color: var(--gray);
}

.search-submit,
.search-close {
  color: rgba(255, 255, 255, 0.6);
  padding: 8px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.search-submit:hover,
.search-close:hover {
  color: var(--primary);
}

/* Hamburger */
.btn-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.btn-hamburger:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-header.scrolled .btn-hamburger:hover,
.site-header.nav-open .btn-hamburger:hover {
  background: rgba(0, 0, 0, 0.05);
}

.btn-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
  transform-origin: center;
}

.btn-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.btn-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  overflow-y: auto;
  z-index: 998;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  padding: 24px 0 100px;
}

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

.mobile-nav-list {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-item.active .mobile-nav-link {
  color: var(--primary);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-2);
  text-align: left;
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--primary);
}

.mobile-nav-link[aria-expanded="true"] {
  color: var(--primary);
}

.mobile-nav-link[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

.mobile-submenu {
  background: var(--light);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.mobile-submenu.open {
  max-height: 450px;
}

.mobile-submenu li a {
  display: block;
  padding: 12px 40px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
  transition: color var(--transition), padding var(--transition);
}

.mobile-submenu li a:hover {
  color: var(--primary);
  padding-left: 48px;
}

.mobile-nav-cta {
  padding: 24px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-nav-cta .btn-primary {
  width: 100%;
  justify-content: center;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(13, 13, 13, 0.75) 0%,
      rgba(104, 40, 19, 0.35) 50%,
      rgba(13, 13, 13, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 100px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  /* color: var(--primary); */
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 100;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  /* max-width: 580px; */
}

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

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
}

@keyframes scrollBounce {

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

  50% {
    transform: translateX(-50%) translateY(18px);
  }
}

.hero-nav {
  position: absolute;
  right: 40px;
  bottom: 60px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.3);
}

/* ── STATS ─────────────────────────────────────────────────── */
.stats-section {
  background: var(--white);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding: 0;
}

.stats-grid {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 40px;
  gap: 12px;
  transition: background var(--transition);
  cursor: default;
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition);
}

.stat-item:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 100;
  color: var(--primary);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  display: inline;
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 30px 0;
  flex-shrink: 0;
}

/* ── ABOUT ─────────────────────────────────────────────────── */
.about-section {
  padding: 120px 0;
  background: var(--light);
}

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

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-infografia {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
  margin-left: -90px;
}

.about-infografia img {
  width: 130%;
  height: auto;
  max-width: none;
  object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 12px 48px rgba(0, 0, 0, 0.15));
  transition: transform var(--transition-slow), filter var(--transition-slow);
}

.about-infografia img:hover {
  transform: scale(1.015);
  filter: drop-shadow(0 20px 64px rgba(0, 0, 0, 0.22));
}

/* ── ABOUT COUNTRIES ───────────────────────────────────────── */
.about-countries {
  margin: 32px 0;
  width: 100%;
}

.about-countries-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.countries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.country-tag {
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  background: var(--white);
  color: var(--dark);
  border-radius: 30px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  cursor: default;
}

.country-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(237, 110, 4, 0.12);
}

/* ── AREAS ─────────────────────────────────────────────────── */
/* ══════════════════════════════════════════════════════════════
   AREAS CAROUSEL (ArcelorMittal-style)
══════════════════════════════════════════════════════════════ */
.areas-section {
  background: var(--white);
  padding: 80px 0;
  overflow: hidden;
  /* clips the right bleed at viewport edge */
}

/* Allow the carousel to extend right of the container */
.areas-section>.container {
  overflow: visible;
}

.areas-carousel-container {
  position: relative;
  width: 100%;
  margin-top: 48px;
}

/* ── TRACK WRAPPER ────────────────────────────────────────── */
.areas-track-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* The sliding track */
.areas-track {
  display: flex;
  gap: 24px;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── INDIVIDUAL SLIDE CARD ───────────────────────────────── */
.area-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  position: relative;
  height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
}

/* Navigation buttons */
.areas-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: var(--primary);
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition), transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.areas-nav-btn:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.05);
}

.areas-nav-left {
  left: -23px;
}

.areas-nav-right {
  right: -23px;
}

/* Counter styles */
.areas-counter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  width: 100%;
}

.areas-counter {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  background: rgba(237, 110, 4, 0.08);
  padding: 8px 20px;
  border-radius: 100px;
}

.area-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.area-slide:hover img {
  transform: scale(1.05);
}

/* Gradient overlay */
.area-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.5) 55%,
      rgba(0, 0, 0, 0.92) 100%);
  transition: background 0.4s ease;
}

.area-slide:hover .area-slide-overlay {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.1) 0%,
      rgba(104, 40, 19, 0.45) 55%,
      rgba(0, 0, 0, 0.95) 100%);
}

/* Text content at the bottom */
.area-slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 28px;
}

.area-slide-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(237, 110, 4, 0.6);
  border-radius: var(--radius);
  color: var(--primary);
  margin-bottom: 14px;
  transition: background var(--transition), border-color var(--transition);
}

.area-slide:hover .area-slide-icon {
  background: rgba(237, 110, 4, 0.15);
  border-color: var(--primary);
}

.area-slide-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.area-slide-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.area-slide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: gap var(--transition), color var(--transition);
}

.area-slide-link:hover {
  gap: 12px;
  color: var(--primary-light);
}




/* ── PORTFOLIO ─────────────────────────────────────────────── */
.portfolio-section {
  padding: 120px 0;
  background: var(--white);
}

.portfolio-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 22px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 0.04em;
  color: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: var(--transition);
  background: transparent;
}

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

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
  margin-bottom: 48px;
}

.portfolio-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background: var(--dark-3);
  cursor: pointer;
}

.portfolio-item-wide {
  grid-column: span 2;
}

.portfolio-item-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.portfolio-item-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.portfolio-item:hover .portfolio-item-inner img {
  transform: scale(1.06);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  opacity: 1;
  transition: background var(--transition);
}

.portfolio-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.portfolio-item-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1.3;
  transition: transform var(--transition);
}

.portfolio-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease, margin-top 0.3s ease, padding 0.3s ease;
  width: fit-content;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  max-height: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  border: none;
}

.portfolio-item:hover .portfolio-view-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  max-height: 50px;
  margin-top: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.portfolio-view-btn:hover {
  background: var(--primary-dark);
}

.portfolio-item.hidden {
  display: none;
}

.portfolio-cta {
  text-align: center;
}

/* ── COMMITMENT ────────────────────────────────────────────── */
.commitment-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.commitment-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.commitment-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.commitment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(104, 40, 19, 0.92) 0%,
      rgba(13, 13, 13, 0.88) 100%);
}

.commitment-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.commitment-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 100;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.commitment-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.commitment-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: background var(--transition), transform var(--transition);
}

.pillar:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  background: rgba(237, 110, 4, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 4px;
  transition: background var(--transition);
}

.pillar:hover .pillar-icon {
  background: rgba(237, 110, 4, 0.35);
}

.pillar h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.pillar p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ── CONTACT ───────────────────────────────────────────────── */
.contact-section {
  padding: 120px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
  width: 100%;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(237, 110, 4, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-item span,
.contact-item a {
  font-size: 16px;
  color: var(--dark);
  transition: color var(--transition);
}

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

/* Contact Form */
.contact-form-wrapper {
  background: var(--light);
  border-radius: var(--radius-xl);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--dark);
  font-family: var(--font-main);
  font-size: 15px;
  padding: 14px 18px;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group select option {
  background: var(--dark-3);
  color: var(--white);
}

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

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  margin-top: 2px;
  padding: 0;
  background: transparent;
  border: none;
}

.form-privacy label {
  font-size: 13px;
  color: var(--gray-light);
  line-height: 1.5;
  cursor: pointer;
}

.form-privacy a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-form-submit {
  justify-content: center;
  width: 100%;
}

.form-message {
  font-size: 14px;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(39, 174, 96, 0.15);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.form-message.error {
  display: block;
  background: rgba(237, 110, 4, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(237, 110, 4, 0.3);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
  background: var(--light);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand img {
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-badge-link {
  display: inline-block;
  margin-top: 20px;
  transition: opacity var(--transition), transform var(--transition);
  opacity: 0.75;
}

.footer-badge-link:hover {
  opacity: 1;
  transform: scale(1.04);
}

.footer-badge-img {
  /* max-width: 140px; */
  height: auto;
  display: block;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--dark);
  transition: color var(--transition), padding var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--gray);
}

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

.footer-legal a {
  font-size: 13px;
  color: var(--gray);
  transition: color var(--transition);
}

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

/* ── GALLERY MODAL ─────────────────────────────────────────── */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-modal.open {
  opacity: 1;
  visibility: visible;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.gallery-modal-inner {
  position: relative;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 30px;
  box-sizing: border-box;
  gap: 20px;
  justify-items: center;
  align-items: center;
}

.gallery-close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.gallery-close:hover,
.gallery-close.kbd-active {
  color: var(--white);
  background: rgba(239, 68, 68, 0.2);
  border-color: rgba(239, 68, 68, 0.3);
  transform: rotate(90deg) scale(1.05);
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 10;
}

.gallery-prev {
  left: 30px;
}

.gallery-next {
  right: 30px;
}

.gallery-prev:hover,
.gallery-prev.kbd-active,
.gallery-next:hover,
.gallery-next.kbd-active {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(243, 156, 18, 0.4);
}

.gallery-prev:hover,
.gallery-prev.kbd-active {
  transform: translateY(-50%) scale(1.08) translateX(-2px);
}

.gallery-next:hover,
.gallery-next.kbd-active {
  transform: translateY(-50%) scale(1.08) translateX(2px);
}

.gallery-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 90vw;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

#gallery-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.96) translateY(10px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#gallery-img.loaded {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.gallery-caption {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  letter-spacing: 0.5px;
  text-align: center;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(20, 20, 20, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 100px;
  pointer-events: none;
  z-index: 5;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-thumbnails {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 8px 16px;
  max-width: 90vw;
  scrollbar-width: none;
  -ms-overflow-style: none;
  justify-content: flex-start;
  align-items: center;
}

.gallery-thumbnails::-webkit-scrollbar {
  display: none;
}

.gallery-thumb {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  border: 2px solid transparent;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-thumb.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}

.gallery-thumb:hover {
  opacity: 0.85;
  transform: scale(1.05);
}

/* ── COOKIE BANNER ─────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--gray-light);
  flex: 1;
}

.cookie-content svg {
  color: var(--primary);
  flex-shrink: 0;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: var(--primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-decline {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.cookie-accept {
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.cookie-accept:hover {
  background: var(--primary-dark);
}

/* ── BACK TO TOP ───────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 500;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), background var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

/* ── SCROLL ANIMATIONS ─────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-right"] {
  transform: translateX(-40px);
}

[data-animate="fade-left"] {
  transform: translateX(40px);
}

[data-animate].in-view {
  opacity: 1;
  transform: none;
}

/* Staggered animation delays */
[data-delay="50"] {
  transition-delay: 50ms;
}

[data-delay="100"] {
  transition-delay: 100ms;
}

[data-delay="150"] {
  transition-delay: 150ms;
}

[data-delay="200"] {
  transition-delay: 200ms;
}

[data-delay="250"] {
  transition-delay: 250ms;
}

[data-delay="300"] {
  transition-delay: 300ms;
}

[data-delay="350"] {
  transition-delay: 350ms;
}

[data-delay="400"] {
  transition-delay: 400ms;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }

  .header-inner {
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    display: block;
  }

  .about-infografia {
    margin-left: 0;
    justify-content: center;
  }

  .about-infografia img {
    width: 100%;
  }

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

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

  .portfolio-item-wide {
    grid-column: span 2;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

/* Tablet small */
@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

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

  .btn-hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

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

  .contact-form-wrapper {
    padding: 32px;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 280px;
  }

  .portfolio-item-wide {
    grid-column: span 2;
  }

  .stats-grid {
    flex-direction: column;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
    margin: 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .gallery-prev {
    left: 0;
  }

  .gallery-next {
    right: 0;
  }

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

  .dropdown-featured {
    display: none;
  }

  /* Areas carousel tablet responsive */
  .areas-carousel-container {
    padding: 0 20px;
  }

  .areas-track {
    gap: 24px;
  }

  .area-slide {
    flex: 0 0 calc((100% - 24px) / 2);
    height: 480px;
  }

  .areas-nav-left {
    left: -10px;
  }

  .areas-nav-right {
    right: -10px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 0 20px;
  }

  .hero-title {
    font-size: clamp(32px, 10vw, 52px);
  }

  .hero-content {
    padding-bottom: 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }

  .hero-nav {
    right: 16px;
    bottom: 40px;
  }

  .stats-section {
    padding: 0;
  }

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

  .about-section,
  .portfolio-section,
  .commitment-section,
  .contact-section {
    padding: 80px 0;
  }

  /* Areas carousel mobile responsive */
  .areas-carousel-container {
    padding: 0;
  }

  .areas-track-wrapper {
    width: 100%;
    overflow: hidden;
  }

  .areas-track {
    gap: 16px;
  }

  /* On mobile show 1 full card */
  .area-slide {
    flex: 0 0 100%;
    height: 440px;
  }

  .areas-nav-btn {
    width: 38px;
    height: 38px;
  }

  .areas-nav-left {
    left: 10px;
  }

  .areas-nav-right {
    right: 10px;
  }

  .areas-counter-wrapper {
    margin-top: 24px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .portfolio-item-wide {
    grid-column: span 1;
  }



  .commitment-pillars {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .pillar {
    padding: 20px 12px;
  }

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

  .contact-form-wrapper {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-top {
    padding: 60px 0 40px;
  }

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

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .cookie-inner {
    flex-direction: column;
    padding: 16px 20px;
  }

  .cookie-content {
    flex-direction: column;
  }

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

  .section-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .portfolio-filter {
    gap: 6px;
  }

  .filter-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  .back-to-top {
    bottom: 24px;
    right: 20px;
  }

  .gallery-prev,
  .gallery-next {
    display: none;
  }

  .gallery-modal-inner {
    padding: 15px;
    grid-template-rows: auto 1fr auto;
    gap: 15px;
  }

  .gallery-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }

  #gallery-img {
    max-height: 60vh;
  }

  .gallery-caption {
    width: 85%;
    white-space: normal;
    bottom: 10px;
    font-size: 13px;
    padding: 8px 16px;
  }

  .gallery-counter {
    top: 10px;
    font-size: 12px;
    padding: 4px 12px;
  }

  .gallery-thumbnails {
    max-width: 100vw;
    gap: 8px;
  }

  .gallery-thumb {
    width: 70px;
    height: 48px;
  }
}

/* ── PRINT ──────────────────────────────────────────────────── */
@media print {

  .site-header,
  .hero,
  .gallery-modal,
  .cookie-banner,
  .back-to-top {
    display: none;
  }

  body {
    background: white;
    color: black;
  }
}

/* ── REDUCED MOTION ─────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .hero-video {
    display: none;
  }

  [data-animate] {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ── FOCUS VISIBLE ─────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}


/* 1. Estilização base do botão de navegação */
.areas-nav-btn {
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  box-shadow: 0 0 10px rgb(237 110 4 / 30%);
}

/* 2. Efeito de Hover (Brilho Intenso) */
.areas-nav-btn:hover {
  box-shadow: 0 0 15px rgb(237 110 4 / 60%),
    0 0 30px rgb(237 110 4 / 40%);
}

/* --- OPCIONAL: Se quiseres que ele pulse sozinho continuamente --- */
.areas-nav-btn {
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 10px rgb(237 110 4 / 30%);
  }

  50% {
    box-shadow: 0 0 20px rgb(237 110 4 / 60%),
      0 0 35px rgb(237 110 4 / 40%);
  }

  100% {
    box-shadow: 0 0 10px rgb(237 110 4 / 30%);
  }
}


/* ============================================================
   LCE – Sobre Nós
   Estilos exclusivos da página sobre.php
   ============================================================ */

/* ── PAGE BODY OVERRIDE ──────────────────────────────────── */
.sobre-page {
  background: var(--dark);
}

/* ── ABOUT HERO ──────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 70svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--header-h) 0 80px;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url('../assets/images/LCE.webp') center / cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.about-hero:hover .about-hero-bg {
  transform: scale(1);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.88) 0%,
      rgba(13, 13, 13, 0.70) 50%,
      rgba(104, 40, 19, 0.40) 100%);
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.about-hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 86px);
  font-weight: 100;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}

.about-hero-title strong {
  color: var(--primary);
  font-weight: 700;
}

.about-hero-subtitle {
  font-size: clamp(16px, 1.4vw, 20px);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 620px;
  margin-bottom: 56px;
}

/* Hero stats bar */
.about-hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 0;
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}

.about-stat:first-child {
  padding-left: 0;
}

.about-stat-value {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about-stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ── ABOUT INTRO ─────────────────────────────────────────── */
.about-intro {
  padding: 120px 0;
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-intro-text .section-eyebrow {
  display: block;
  margin-bottom: 12px;
}

/* Commitment block */
.about-commitment {
  position: relative;
  /* margin-top: 40px; */
  padding: 28px 32px 28px 48px;
  border-left: 3px solid var(--primary);
  background: rgba(237, 110, 4, 0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.commitment-quote-mark {
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--primary);
  opacity: 0.4;
  line-height: 1;
  pointer-events: none;
}

.commitment-quote-author {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

/* Visual column */
.about-intro-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-visual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.about-visual-card:hover img {
  transform: scale(1.04);
}

.about-visual-main {
  height: 360px;
}

.about-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.badge-year {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.badge-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.about-visual-secondary {
  width: 100%;
}

.about-visual-sm {
  height: 200px;
}

.about-facts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  padding: 20px 32px;
  background: var(--light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.about-fact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.4;
}

/* ── MISSÃO VISÃO VALORES ────────────────────────────────── */
.mvv-section {
  padding: 120px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.mvv-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(237, 110, 4, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mvv-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 56px 0 64px;
}

.mvv-card {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.mvv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.mvv-card:hover {
  border-color: rgba(237, 110, 4, 0.3);
  transform: translateY(-4px);
}

.mvv-card:hover::before {
  opacity: 1;
}

.mvv-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: rgba(237, 110, 4, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}

.mvv-card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}

.mvv-card-text {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.8;
}

/* Valores */
.valores-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 56px;
}

.valores-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}

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

.valor-item {
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  cursor: default;
}

.valor-item:hover {
  border-color: rgba(237, 110, 4, 0.25);
  background: var(--light);
  transform: translateY(-3px);
}

.valor-item-wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
}

.valor-item-wide .valor-name {
  margin-bottom: 0;
}

.valor-item-wide .valor-desc {
  margin-top: 0;
}

.valor-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(237, 110, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: background var(--transition);
}

.valor-item:hover .valor-icon {
  background: rgba(237, 110, 4, 0.18);
}

.valor-item-wide .valor-icon {
  margin-bottom: 0;
}

.valor-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  white-space: nowrap;
}

.valor-desc {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.65;
  margin: 0;
}

/* ── CERTIFICAÇÕES ───────────────────────────────────────── */
.cert-section {
  padding: 120px 0;
  background: var(--white);
  position: relative;
}

.cert-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 110, 4, 0.3), transparent);
}

.cert-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.cert-text .section-title {
  margin-bottom: 20px;
}

.cert-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cert-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.cert-card:hover {
  border-color: rgba(237, 110, 4, 0.3);
  transform: translateX(6px);
}

.cert-card:hover::before {
  opacity: 1;
}

.cert-card-badge {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: rgba(237, 110, 4, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.cert-card-body {
  flex: 1;
}

.cert-norm {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.cert-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cert-desc {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
}

/* ── CAPACIDADE INDUSTRIAL ───────────────────────────────── */
.industrial-section {
  padding: 120px 0;
  background: var(--light);
  position: relative;
}

.industrial-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 110, 4, 0.3), transparent);
}

.industrial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.industrial-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.industrial-card:hover {
  border-color: rgba(237, 110, 4, 0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.industrial-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.industrial-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(237, 110, 4, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.industrial-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}

.industrial-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.industrial-list li {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  position: relative;
  padding-left: 20px;
}

.industrial-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.industrial-list li strong {
  color: var(--dark);
  font-weight: 600;
}

.industry-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: rgba(237, 110, 4, 0.08);
  padding: 2px 6px;
  border-radius: 3px;
  margin-left: 4px;
  white-space: nowrap;
}

/* ── TIMELINE ────────────────────────────────────────────── */
.timeline-section {
  padding: 120px 0 140px;
  background: var(--white);
  position: relative;
}

.timeline-section .section-header {
  margin-bottom: 80px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg,
      transparent 0%,
      rgba(237, 110, 4, 0.5) 5%,
      rgba(237, 110, 4, 0.5) 95%,
      transparent 100%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 32px;
  margin-bottom: 56px;
  align-items: start;
  position: relative;
}

.timeline-item .timeline-marker {
  grid-column: 2;
  grid-row: 1;
}

.timeline-item .timeline-content {
  grid-column: 1;
  grid-row: 1;
  text-align: right;
}

.timeline-item-right .timeline-content {
  grid-column: 3;
  text-align: left;
}

.timeline-item-right .timeline-marker {
  grid-column: 2;
}

.timeline-item-highlight {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  justify-items: center;
  text-align: center;
  margin-top: 48px;
}

.timeline-item-highlight .timeline-marker {
  grid-column: 1;
  grid-row: 1;
  margin-bottom: 36px;
  flex-direction: column-reverse;
}

.timeline-item-highlight .timeline-content {
  grid-column: 1;
  grid-row: 2;
  text-align: center;
  max-width: 500px;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  position: relative;
}

.timeline-marker::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary), 0 0 16px rgba(237, 110, 4, 0.4);
  flex-shrink: 0;
}

.timeline-item-highlight .timeline-marker::before {
  width: 22px;
  height: 22px;
  box-shadow: 0 0 0 3px var(--primary), 0 0 24px rgba(237, 110, 4, 0.6);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  white-space: nowrap;
  background: var(--white);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(237, 110, 4, 0.25);
}

.timeline-content {
  padding-top: 0;
}

.timeline-event {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-desc {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
}

.timeline-desc strong {
  color: var(--dark);
  font-weight: 600;
}


/* ── CLIENTS LOGO SLIDER ──────────────────────────────────── */
@keyframes clients-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.clients-section {
  padding: 80px 0 90px;
  background: var(--light);
  overflow: hidden;
}

.clients-header {
  text-align: center;
  margin-bottom: 52px;
  padding: 0 24px;
}

.clients-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 100;
  color: var(--dark);
  margin-top: 10px;
}

/* Wrapper clips the track and adds fade edges */
.clients-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  /* Fade logos at left and right edges */
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%);
}

/* The scrolling track – contains 2× the logo set */
.clients-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: clients-marquee 40s linear infinite;
}

/* Pause on hover / reduced motion preference */
.clients-track-wrapper:hover .clients-track {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .clients-track {
    animation: none;
  }

  .clients-track-wrapper {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Individual logo card */
.clients-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  padding: 0 32px;
  border-right: 1px solid rgba(0, 0, 0, 0.07);
}

.clients-logo-item img {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.35s ease;
}

.clients-track-wrapper:hover .clients-logo-item img {
  filter: grayscale(100%) opacity(0.7);
}

.clients-logo-item:hover img {
  filter: grayscale(0%) opacity(1) !important;
}

/* ── ABOUT CTA ───────────────────────────────────────────── */

.about-cta-section {
  padding: 100px 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

.about-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(237, 110, 4, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(104, 40, 19, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.about-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}

.about-cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-cta-text {
  font-size: 17px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 40px;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.about-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition), gap var(--transition);
}

.about-cta-secondary:hover {
  color: var(--primary);
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════
   SOBRE NÓS – RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 1200px) {
  .about-intro-grid {
    gap: 48px;
  }

  .cert-inner {
    gap: 48px;
  }
}

@media (max-width: 1024px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .about-visual-main {
    height: 300px;
  }

  .mvv-top-grid {
    grid-template-columns: 1fr;
  }

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

  .valor-item-wide {
    grid-column: span 2;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .valor-item-wide .valor-name {
    grid-column: 2;
    grid-row: 1;
    white-space: normal;
    margin-bottom: 6px;
    align-self: end;
  }

  .valor-item-wide .valor-icon {
    grid-row: 1 / 3;
    align-self: center;
    margin-bottom: 0;
  }

  .valor-item-wide .valor-desc {
    grid-column: 2;
    grid-row: 2;
  }

  .cert-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .timeline::before {
    left: 28px;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
    gap: 0 24px;
  }

  .timeline-item .timeline-marker,
  .timeline-item-right .timeline-marker {
    grid-column: 1;
    grid-row: 1;
  }

  .timeline-item .timeline-content,
  .timeline-item-right .timeline-content {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .industrial-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }

  .industrial-card {
    padding: 32px 24px;
  }

  .timeline-item-highlight {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto;
    justify-items: start;
    margin-top: 0;
  }

  .timeline-item-highlight .timeline-content {
    text-align: left;
    grid-column: 2;
    grid-row: 1;
  }

  .timeline-item-highlight .timeline-marker {
    grid-column: 1;
    grid-row: 1;
    flex-direction: column;
    margin-bottom: 0;
  }

  .timeline-item-highlight .timeline-marker::before {
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 2px var(--primary), 0 0 16px rgba(237, 110, 4, 0.4);
  }
}

/* ══════════════════════════════════════════════════════════════
   CAPABILITIES DETAILS (Area Subpages)
   ══════════════════════════════════════════════════════════════ */
.capabilities-details .commitment-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.capabilities-details .pillar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 40px 32px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.capabilities-details .pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(237, 110, 4, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.capabilities-details .pillar:hover::before {
  opacity: 1;
}

.capabilities-details .pillar:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.12);
  border-color: rgba(237, 110, 4, 0.2);
  border-top-color: var(--primary);
}

.capabilities-details .pillar-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(237, 110, 4, 0.08);
  color: var(--primary);
  border-radius: 12px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.capabilities-details .pillar:hover .pillar-icon-container {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.05) rotate(3deg);
}

.capabilities-details .pillar-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.capabilities-details .pillar-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray);
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   ALTERNATING CAPABILITIES LAYOUT
   ══════════════════════════════════════════════════════════════ */
.capabilities-alternating {
  display: flex;
  flex-direction: column;
  gap: 120px;
  max-width: 1200px;
  margin: 80px auto 0;
}

.capability-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: center;
}

.capability-row:nth-child(even) .capability-image-col {
  order: -1;
}

.capability-image-col {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.capability-image-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.capability-row:hover .capability-image-col img {
  transform: scale(1.03);
}

.capability-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.capability-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: rgba(237, 110, 4, 0.12);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.capability-row-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.capability-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 28px;
}

.capability-badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  background: rgba(237, 110, 4, 0.06);
  color: var(--primary);
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(237, 110, 4, 0.1);
}

@media (max-width: 900px) {
  .capability-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .capability-row:nth-child(even) .capability-image-col {
    order: 0;
  }

  .capabilities-alternating {
    gap: 80px;
    margin-top: 50px;
  }
}

@media (max-width: 900px) {
  .about-hero-stats {
    gap: 8px 0;
  }

  .about-stat {
    padding: 0 20px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    padding-top: var(--header-h);
    min-height: 100svh;
  }

  .about-hero-subtitle br {
    display: none;
  }

  .about-hero-stats {
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .about-stat-divider {
    display: none;
  }

  .about-stat {
    padding: 0;
    width: 50%;
  }

  .about-intro {
    padding: 80px 0;
  }

  .about-visual-secondary {
    width: 100%;
  }

  .about-facts {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }

  .about-visual-sm {
    height: 200px;
  }

  .mvv-section,
  .cert-section,
  .industrial-section,
  .timeline-section {
    padding: 80px 0;
  }

  .mvv-card {
    padding: 32px 24px;
  }

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

  .valor-item-wide {
    grid-column: 1;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .cert-card {
    flex-direction: column;
    gap: 16px;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    gap: 0 16px;
  }

  .timeline-year {
    font-size: 12px;
    padding: 3px 6px;
  }

  .about-cta-section {
    padding: 80px 0;
  }

  .about-cta-actions {
    flex-direction: column;
    gap: 16px;
  }
}

/* ── LEGAL PAGE ────────────────────────────────────────────── */
.legal-section {
  padding: 120px 0;
  background: var(--white);
}

.legal-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 60px;
  text-align: center;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
}

.legal-meta {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.legal-body {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.8;
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 48px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 12px;
}

.legal-body h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-body p {
  margin-bottom: 24px;
}

.legal-body ul,
.legal-body ol {
  margin-bottom: 32px;
  padding-left: 24px;
}

.legal-body li {
  margin-bottom: 12px;
}

.legal-body strong {
  color: var(--dark);
}

/* ── RECRUITMENT PAGE ──────────────────────────────────────── */
.recruitment-section {
  padding: 120px 0;
  background: var(--white);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.job-card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-color: rgba(237, 110, 4, 0.2);
}

.job-card:hover::before {
  transform: scaleX(1);
}

.job-header {
  margin-bottom: 24px;
}

.job-dept {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 12px;
}

.job-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.job-meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 16px;
}

.job-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-desc {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.job-req-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--dark);
  margin-bottom: 12px;
}

.job-req-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 32px 0 !important;
}

.job-req-list li {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

.job-req-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary);
}

.btn-job-apply {
  width: 100%;
  text-align: center;
}

/* Form section */
.spontaneous-section {
  padding: 100px 0;
  background: var(--light);
}

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

.spontaneous-text {
  max-width: 500px;
}

.spontaneous-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 100;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.spontaneous-desc {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}

.spontaneous-contacts {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.spontaneous-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spontaneous-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(237, 110, 4, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.spontaneous-contact-info h4 {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.4);
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.spontaneous-contact-info p {
  font-size: 15px;
  color: var(--dark);
  font-weight: 600;
  margin: 0;
}

@media (max-width: 992px) {
  .jobs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spontaneous-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .jobs-grid {
    grid-template-columns: 1fr;
  }
}

/* ── NEWS SECTION (HOMEPAGE) ───────────────────────────────── */
.news-section {
  padding: 120px 0;
  background: var(--light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.news-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(237, 110, 4, 0.2);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 16px;
}

.news-card-title a {
  color: inherit;
  transition: color var(--transition);
}

.news-card-title a:hover {
  color: var(--primary);
}

.news-card-excerpt {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding-top: 16px;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

.news-card-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.news-card-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
  text-decoration: none;
}

.news-card-link:hover {
  gap: 8px;
  color: var(--primary-dark);
}

/* ── BLOG PAGES ────────────────────────────────────────────── */
.blog-layout-section {
  padding: 80px 0 120px;
  background: var(--white);
}

.blog-grid-wrapper {
  display: grid;
  grid-template-columns: 2.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.blog-main-content {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.75);
  line-height: 1.85;
}

.blog-main-content p {
  margin-bottom: 24px;
}

.blog-main-content h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding-bottom: 10px;
}

.blog-main-content h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.blog-main-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px dashed var(--primary);
  transition: all var(--transition);
}

.blog-main-content a:hover {
  color: var(--primary-dark);
  border-bottom-style: solid;
}

.blog-breadcrumb {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-breadcrumb a {
  color: var(--primary);
  font-weight: 600;
  transition: color var(--transition);
  text-decoration: none;
}

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

.blog-meta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: sticky;
  top: calc(var(--header-h) + 32px);
}

.sidebar-widget {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

/* Recent posts widget */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item {
  display: flex;
  gap: 16px;
  align-items: center;
}

.recent-post-img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-info {
  flex: 1;
}

.recent-post-info h5 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 4px;
}

.recent-post-info h5 a {
  color: inherit;
  transition: color var(--transition);
  text-decoration: none;
}

.recent-post-info h5 a:hover {
  color: var(--primary);
}

.recent-post-date {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
}

/* Sidebar CTA widget */
.sidebar-cta-widget {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary-dark) 100%);
  color: var(--white);
  border: none;
}

.sidebar-cta-widget .widget-title {
  color: var(--white);
  border-bottom: none;
}

.sidebar-cta-widget .widget-title::after {
  background: var(--primary);
}

.sidebar-cta-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 24px;
}

.sidebar-cta-btn {
  width: 100%;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ESG PAGE ────────────────────────────────────────────── */
.esg-intro-section {
  padding: 100px 0;
  background: var(--light);
}

.esg-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.esg-quote-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 50px 40px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.esg-quote-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
}

.esg-quote-card .quote-mark {
  position: absolute;
  top: -10px;
  left: 25px;
  font-size: 120px;
  font-family: var(--font-display);
  color: rgba(224, 86, 36, 0.08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.esg-quote-card .quote-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--dark-2);
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.esg-quote-card .quote-author {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.esg-pillars-section {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.esg-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.esg-section-header .section-subtitle {
  font-size: 16px;
  color: var(--gray);
  margin-top: 16px;
  line-height: 1.6;
}

.esg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.esg-card {
  background: var(--light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  border-radius: 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.esg-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 10%, rgba(224, 86, 36, 0.02) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.esg-card:hover {
  transform: translateY(-5px);
  border-color: rgba(224, 86, 36, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.esg-card:hover::after {
  opacity: 1;
}

.esg-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(224, 86, 36, 0.06);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 1px solid rgba(224, 86, 36, 0.1);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.esg-card:hover .esg-card-icon {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.esg-card-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.esg-card-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
}

.esg-stats {
  background: var(--light) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.esg-stats .stat-item {
  padding: 80px 40px;
}

.esg-stats .stat-divider {
  background: rgba(0, 0, 0, 0.08);
}

.esg-stats .stat-label {
  color: var(--gray);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .esg-intro-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .esg-intro-section {
    padding: 70px 0;
  }

  .esg-pillars-section {
    padding: 80px 0;
  }

  .esg-stats .stat-item {
    padding: 50px 30px;
  }
}

/* ── SERVICES PAGE ────────────────────────────────────────── */
.services-intro-section {
  padding: 100px 0;
  background: var(--light);
  text-align: center;
}

.services-intro-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.services-intro-wrapper .section-text {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
}

.services-grid-section {
  padding: 120px 0;
  background: var(--white);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.service-row:last-child {
  margin-bottom: 0;
}

.service-row-reverse .service-image-column {
  order: 2;
}

.service-row-reverse .service-content-column {
  order: 1;
}

.service-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-wrapper:hover img {
  transform: scale(1.04);
}

.service-content-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.service-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 900;
  color: rgba(224, 86, 36, 0.15);
  line-height: 1;
  margin-bottom: 8px;
  user-select: none;
}

.service-row-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.service-row-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}

.service-capabilities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.service-capabilities li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.service-capabilities li span {
  font-size: 15px;
  color: var(--dark-2);
  font-weight: 500;
  line-height: 1.4;
}

.service-capabilities li .check-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
  }

  .service-row-reverse .service-image-column {
    order: 0;
  }

  .service-row-reverse .service-content-column {
    order: 0;
  }

  .service-image-wrapper {
    aspect-ratio: 16 / 9;
  }
}