/* NorteClima Manutenções & Ghati Inovações — Design System */
:root {
  color-scheme: light;

  /* Primitive Palette: Petrol (Deep Architectural Foundation) */
  --petrol-950: #041419;
  --petrol-900: #082228;
  --petrol-800: #0d323b;
  --petrol-700: #134651;

  /* Primitive Palette: Glacial Air (Thermal & Engineering Accents) */
  --air-700: #0a737d;
  --air-600: #0c8a95;
  --air-500: #14a2ad;
  --air-400: #25beca;
  --air-300: #6fd1cb;
  --air-100: #dcf2ee;
  --air-50: #f0faf8;

  /* Primitive Palette: Pure Ice & Slate Canvas */
  --ice-50: #f6faf9;
  --ice-100: #edf5f3;
  --ice-200: #e2edea;
  --white: #ffffff;

  /* Primitive Palette: Signal Copper & Terracotta (High Contrast WCAG AA) */
  --signal-600: #c4430e;
  --signal-500: #d44a14;
  --signal-400: #f2652b;

  /* Semantic Typography & Neutral Roles */
  --ink: #0c2024;
  --muted: #526c71;
  --muted-light: #7a9499;

  /* Semantic Status & Thermal Telemetry Tokens */
  --status-success: #0e6e4a;
  --status-success-bg: rgba(14, 110, 74, 0.1);
  --status-info: var(--air-700);
  --status-info-bg: rgba(10, 115, 125, 0.1);
  --status-warning: #9c5204;
  --status-warning-bg: rgba(156, 82, 4, 0.1);
  --status-error: #b93825;
  --status-error-bg: rgba(185, 56, 37, 0.1);

  /* Semantic Surface Roles */
  --surface-canvas: var(--ice-50);
  --surface-card: var(--white);
  --surface-subtle: var(--ice-100);
  --surface-dark: var(--petrol-950);
  --surface-dark-elevated: var(--petrol-900);

  /* Semantic Action Gradients (WCAG AA Certified) */
  --action-primary-start: #07525a;
  --action-primary-end: #0a737d;
  --action-primary-hover-start: #09636d;
  --action-primary-hover-end: #0d7f8a;
  --action-signal-start: #be3f0c;
  --action-signal-end: #9d3105;
  --action-signal-hover-start: #c6430d;
  --action-signal-hover-end: #a83507;

  /* Lines & Separators */
  --line-dark: rgb(6 28 34 / 8%);
  --line-medium: rgb(6 28 34 / 14%);
  --line-light: rgb(255 255 255 / 12%);

  /* Depth & Shadows */
  --shadow-sm: 0 1px 3px rgb(6 28 34 / 6%);
  --shadow-md: 0 8px 24px rgb(6 28 34 / 8%);
  --shadow-lg: 0 16px 36px rgb(6 28 34 / 12%);
  --shadow-glow: 0 0 32px -4px rgb(20 162 173 / 25%);
  --shadow-signal: 0 0 28px -4px rgba(196, 67, 14, 0.35);

  --radius-sm: 0.35rem;
  --radius-md: 0.55rem;
  --radius-lg: 0.8rem;
  --radius-xl: 1rem;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;

  --content-max: 76rem;
  --page-inline: clamp(1.2rem, 4.5vw, 4rem);

  --transition-fast: 160ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition: 280ms cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  min-width: 0;
  margin: 0;
  color: var(--ink);
  background: var(--ice-50);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, p {
  margin-top: 0;
}

h1, h2, h3, h4 {
  color: var(--petrol-950);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1 {
  margin-bottom: var(--space-5);
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
  font-weight: 750;
}

h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.9rem, 3.6vw, 3.25rem);
  font-weight: 700;
}

h3 {
  margin-bottom: var(--space-3);
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  font-weight: 680;
}

p {
  margin-bottom: var(--space-4);
}

:focus-visible {
  outline: 2px solid #c4430e;
  outline-offset: 3px;
}

.theme-dark :focus-visible,
[data-theme="dark"] :focus-visible {
  outline: 2px solid var(--air-400);
}

::selection {
  color: var(--white);
  background: var(--air-700);
}

/* Browser surface theming & Tabular Numbers */
html {
  caret-color: var(--air-600);
  scrollbar-color: var(--air-700) var(--petrol-950);
}

.hero-stat strong,
.project-meta,
.table-data,
.tab-pill .pill-number {
  font-variant-numeric: tabular-nums;
}

/* Text Wrapping & Flex/Grid Safety */
h1, h2, h3, h4, h5, h6,
.project-card,
.portfolio-card,
.service-card,
.value-card,
.zone-item,
.team-card {
  min-width: 0;
  overflow-wrap: break-word;
}

/* ========================================================================= */
/* LAYOUT UTILITIES & SURFACES                                               */
/* ========================================================================= */

.container {
  width: min(calc(100% - (var(--page-inline) * 2)), var(--content-max));
  margin-inline: auto;
}

.narrow {
  max-width: 52rem;
}

.section {
  position: relative;
  padding-block: var(--space-9);
}

.theme-dark {
  position: relative;
  overflow: hidden;
  color: rgb(255 255 255 / 78%);
  background: var(--petrol-950);
}

.theme-dark h2,
.theme-dark h3,
.theme-dark h4 {
  color: var(--white);
}

.theme-dark::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1.25rem;
  color: var(--white);
  background: var(--petrol-950);
  border: 1px solid var(--air-500);
  border-radius: var(--radius-sm);
  transform: translateY(-200%);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-md);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

/* ========================================================================= */
/* HEADER & NAVIGATION (GLASSMORPHIC FLOATING APP BAR)                       */
/* ========================================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  color: var(--white);
  background: rgba(4, 20, 25, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-light);
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.is-scrolled {
  background: rgba(4, 20, 25, 0.96);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.16);
}

.header-inner {
  display: flex;
  min-height: 4.6rem;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  transition: opacity var(--transition-fast);
}

.brand:hover {
  opacity: 0.9;
}

.brand-mark {
  display: block;
  width: 2.35rem;
  aspect-ratio: 1;
  overflow: hidden;
  color: transparent;
  background: url("logo-mark.svg") center / contain no-repeat;
  font-size: 0;
  filter: drop-shadow(0 0 10px rgba(117, 209, 207, 0.35));
  transition: transform var(--transition);
}

.brand:hover .brand-mark {
  transform: rotate(-6deg) scale(1.05);
}

.brand-copy {
  display: grid;
  line-height: 1;
  text-transform: uppercase;
}

.brand-copy strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-copy small {
  margin-top: 0.3rem;
  color: var(--air-300);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0;
  color: rgb(255 255 255 / 72%);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color var(--transition-fast);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
}

.desktop-nav a[aria-current="page"]::after {
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--signal-500);
  border-radius: 2px;
  box-shadow: 0 0 8px var(--signal-500);
}

.menu-toggle {
  display: none;
  min-height: 2.75rem;
  min-width: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.55rem 0.95rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  transition: background var(--transition-fast);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.14);
}

.menu-icon {
  position: relative;
  width: 1.15rem;
  height: 0.75rem;
  border-block: 2px solid currentColor;
}

.menu-icon::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
  transform: translateY(-50%);
}

.mobile-nav {
  padding: 1.25rem var(--page-inline) 1.75rem;
  background: var(--petrol-900);
  border-top: 1px solid var(--line-light);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.mobile-nav a:not(.button) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line-light);
  color: rgb(255 255 255 / 85%);
  font-size: 1rem;
  font-weight: 650;
}

.mobile-nav a:not(.button):hover,
.mobile-nav a[aria-current="page"] {
  color: var(--air-300);
}

.mobile-nav .button {
  width: 100%;
  margin-top: 1.25rem;
}

/* ========================================================================= */
/* BUTTONS & ACTIONS (MAGNETIC & TACTILE ACCENTS)                            */
/* ========================================================================= */

.button {
  position: relative;
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
  overflow: hidden;
}

.button:active {
  transform: scale(0.98);
}

.button-primary {
  color: var(--white);
  background: var(--action-primary-start);
  border-color: #086069;
  box-shadow: 0 4px 14px -2px rgba(10, 115, 125, 0.35);
}

.button-primary:hover {
  background: var(--action-primary-hover-start);
  box-shadow: 0 6px 20px -2px rgba(10, 115, 125, 0.45);
  transform: translateY(-2px);
}

.button-signal {
  color: var(--white);
  background: var(--action-signal-start);
  box-shadow: 0 4px 14px -2px rgba(162, 51, 6, 0.4);
  font-weight: 800;
}

.button-signal:hover {
  background: var(--action-signal-hover-start);
  box-shadow: 0 8px 24px -2px rgba(162, 51, 6, 0.5);
  transform: translateY(-2px);
}

.button-quiet {
  color: var(--petrol-950);
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--line-medium);
  backdrop-filter: blur(10px);
}

.button-quiet:hover {
  color: var(--white);
  background: var(--petrol-900);
  border-color: var(--petrol-900);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-outline {
  color: var(--petrol-950);
  background: transparent;
  border-color: var(--petrol-700);
}

.button-outline:hover {
  color: var(--white);
  background: var(--petrol-900);
  border-color: var(--petrol-900);
  transform: translateY(-2px);
}

.header-cta {
  min-height: 2.65rem;
  padding-inline: 1.1rem;
  font-size: 0.82rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 750;
  color: var(--air-700);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.text-link:hover {
  color: var(--signal-500);
  gap: 0.75rem;
}

.text-link span {
  color: var(--signal-500);
  transition: transform var(--transition-fast);
}

.text-link:hover span {
  transform: translateX(3px);
}

/* ========================================================================= */
/* TYPOGRAPHY HEADINGS & EYEBROWS                                            */
/* ========================================================================= */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: var(--air-700);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.5rem;
  height: 2px;
  content: "";
  background: var(--signal-500);
  border-radius: 2px;
}

.eyebrow-light {
  color: var(--air-300);
}

.eyebrow-light::before {
  background: var(--signal-400);
}

.section-heading {
  max-width: 50rem;
  margin-bottom: var(--space-7);
}

.section-heading > p:last-child {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.theme-dark .section-heading > p:last-child {
  color: rgb(255 255 255 / 68%);
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-6);
}

.split-heading > * {
  min-width: 0;
}

.split-heading > div {
  max-width: 46rem;
}

.split-heading > p {
  max-width: 28rem;
  margin-bottom: var(--space-4);
  color: var(--muted);
}

.centered {
  margin-inline: auto;
  text-align: center;
}

.centered .eyebrow {
  justify-content: center;
}

/* ========================================================================= */
/* 1. HOME HERO (PRECISION INDUSTRIAL CLIMATIZATION)                         */
/* ========================================================================= */

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--ice-50);
  border-bottom: 1px solid var(--line-medium);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 38rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.hero-copy {
  display: flex;
  max-width: 38rem;
  flex-direction: column;
  align-items: flex-start;
  padding-block: var(--space-8);
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 4.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero-copy h1 span {
  color: var(--air-700);
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: var(--space-6);
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.6;
}

.hero-footnote {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: var(--space-6);
  margin-bottom: 0;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line-medium);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.hero-footnote span {
  width: 0.6rem;
  aspect-ratio: 1;
  background: var(--status-success);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(14, 110, 74, 0.2);
  animation: beacon 2s infinite ease-out;
}

@keyframes beacon {
  0% { box-shadow: 0 0 0 0 rgba(14, 110, 74, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(14, 110, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(14, 110, 74, 0); }
}

.hero-media {
  position: relative;
  min-width: 0;
  padding: 2rem 0;
}

.media-placeholder {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: var(--petrol-700);
  background: var(--ice-100);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.media-placeholder > img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
}

.media-hero {
  min-height: 30rem;
  aspect-ratio: 5 / 5;
  border-radius: var(--radius-sm);
}

.media-tall { min-height: 35rem; }
.media-page-hero { min-height: 28rem; }
.media-story { min-height: 26rem; }
.media-wide { min-height: 28rem; }
.media-service { min-height: 32rem; }
.media-project { aspect-ratio: 16 / 11; }
.media-portfolio { min-height: 23rem; }
.media-person { aspect-ratio: 4 / 5; }

.media-cta {
  min-height: 18rem;
  background: linear-gradient(135deg, var(--petrol-800), #104e57);
}

/* Floating Technical Notes */
.hero-note {
  position: absolute;
  right: -1rem;
  bottom: 3.5rem;
  width: min(20rem, 80%);
  padding: 1.4rem;
  color: var(--white);
  background: rgba(8, 34, 40, 0.95);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg), 0 0 20px -4px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition);
}

.hero-note:hover {
  transform: translateY(-4px);
}

.hero-note p {
  margin-bottom: 0.4rem;
  color: var(--air-300);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.45;
  font-weight: 650;
}

/* Dynamic Airflow Graphic Vectors */
.airflow {
  position: absolute;
  display: block;
  width: clamp(18rem, 36vw, 36rem);
  height: 9rem;
  color: rgb(20 162 173 / 22%);
  border-block: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(-8deg);
  pointer-events: none;
  animation: airflowFloat 8s ease-in-out infinite alternate;
}

.airflow::before,
.airflow::after {
  position: absolute;
  right: 5%;
  left: -5%;
  height: 1px;
  content: "";
  background: currentColor;
  transform: rotate(4deg);
}

.airflow::before { top: 30%; }
.airflow::after { bottom: 30%; }

.airflow-a { top: 6%; right: -6rem; }
.airflow-b { bottom: 6%; left: -8rem; color: rgb(242 101 43 / 16%); transform: rotate(10deg); }
.airflow-c { top: 12%; left: -6rem; color: rgb(111 209 203 / 16%); }

@keyframes airflowFloat {
  0% { transform: translateY(0) rotate(-8deg); }
  100% { transform: translateY(14px) rotate(-6deg); }
}

/* ========================================================================= */
/* 2. TRUST STRIP (METRICS & HIGHLIGHTS)                                     */
/* ========================================================================= */

.trust-strip {
  color: var(--white);
  background: var(--petrol-900);
  border-bottom: 3px solid var(--signal-500);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

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

.trust-item {
  display: flex;
  min-width: 0;
  gap: 1.1rem;
  padding: 1.75rem 1.4rem;
  border-right: 1px solid var(--line-light);
  transition: background var(--transition-fast);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { padding-right: 0; border-right: 0; }

.trust-index {
  color: var(--signal-500);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.05em;
}

.trust-item p {
  margin: 0;
  line-height: 1.35;
}

.trust-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 750;
  color: var(--white);
}

.trust-item small {
  display: block;
  margin-top: 0.35rem;
  color: rgb(255 255 255 / 62%);
  font-size: 0.74rem;
}

/* ========================================================================= */
/* 3. SERVICES OVERVIEW (BENTO GLASS CARDS)                                  */
/* ========================================================================= */

/* Standards and Brands Strip */
.tech-standards-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line-medium);
  padding: 0.95rem 0;
  font-size: 0.85rem;
}

.tech-standards-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.tech-compliance {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.compliance-badge {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  background: #eef7f8;
  color: var(--air-800);
  border: 1px solid var(--air-200);
  border-radius: var(--radius-xs);
}

.tech-compliance p {
  margin: 0;
  color: var(--ink-light);
}

.tech-compliance p strong {
  color: var(--petrol-950);
}

.tech-brands {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  min-width: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.tech-brands strong {
  color: var(--petrol-900);
  font-weight: 700;
}

.services-overview {
  background: var(--ice-50);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: var(--space-6);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 22rem;
  flex-direction: column;
  padding: 2.2rem 1.8rem;
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.service-card::before {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 2.8rem;
  aspect-ratio: 1;
  content: "";
  background: center / contain no-repeat;
  transition: transform var(--transition);
}

.service-card:nth-child(1)::before { background-image: url("icon-installation.svg"); }
.service-card:nth-child(2)::before { background-image: url("icon-preventive.svg"); }
.service-card:nth-child(3)::before { background-image: url("icon-corrective.svg"); }
.service-card:nth-child(4)::before { background-image: url("icon-cleaning.svg"); }

.service-card:hover {
  background: var(--white);
  border-color: var(--air-500);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 24px -4px rgba(20, 162, 173, 0.2);
}

.service-card:hover::before {
  transform: scale(1.15) rotate(4deg);
}

.service-number {
  display: grid;
  width: 2.6rem;
  aspect-ratio: 1;
  place-items: center;
  margin-bottom: 2.5rem;
  color: var(--air-700);
  background: var(--air-100);
  border: 1px solid rgba(10, 115, 125, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 850;
}

.service-card h3 {
  font-size: 1.35rem;
  font-weight: 750;
  margin-bottom: 0.6rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.service-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-medium);
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--petrol-950);
  transition: color var(--transition-fast);
}

.service-card a:hover {
  color: var(--signal-500);
}

.service-card a span {
  color: var(--signal-500);
  transition: transform var(--transition-fast);
}

.service-card:hover a span {
  transform: translateX(4px);
}


/* ========================================================================= */
/* 5. WHY US & EDITORIAL SECTION                                             */
/* ========================================================================= */

.why-us {
  background: 
    radial-gradient(circle at 18% 55%, rgb(20 162 173 / 10%), transparent 28rem),
    var(--ice-50);
  border-block: 1px solid var(--line-medium);
}

.editorial-grid {
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6rem);
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
}

.media-wrap {
  position: relative;
}

.media-badge {
  position: absolute;
  right: -1rem;
  bottom: 2rem;
  padding: 1.1rem 1.4rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--signal-500), #e85317);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg), var(--shadow-signal);
}

.media-badge strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.media-badge span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.check-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.75rem 0 2rem;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--ink);
}

.check-list li::before {
  position: absolute;
  top: 0.25rem;
  left: 0;
  display: grid;
  width: 1.25rem;
  aspect-ratio: 1;
  place-items: center;
  content: "";
  background-color: var(--air-700);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23ffffff'%3E%3Cpath d='M229.66,77.66l-128,128a8,8,0,0,1-11.32,0l-56-56a8,8,0,0,1,11.32-11.32L96,188.69,218.34,66.34a8,8,0,0,1,11.32,11.32Z'/%3E%3C/svg%3E");
  background-size: 0.75rem;
  background-position: center;
  background-repeat: no-repeat;
}

/* ========================================================================= */
/* 6. PROCESS SECTION (CONNECTED RAIL TIMELINE)                              */
/* ========================================================================= */

.process-section {
  background: linear-gradient(135deg, var(--petrol-950), #081d23);
}

.process-list {
  position: relative;
  display: grid;
  margin: 4.5rem 0 0;
  padding: 0;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  border-top: 1px solid var(--line-light);
}

.process-step {
  min-width: 0;
  padding: 2rem 1.4rem 0;
  border-left: 1px solid var(--line-light);
  transition: transform var(--transition);
}

.process-step:hover {
  transform: translateY(-4px);
}

.process-step:last-child {
  border-right: 1px solid var(--line-light);
}

.process-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -3.5rem;
  margin-bottom: 2.2rem;
  width: 2.8rem;
  aspect-ratio: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--signal-500), #e85317);
  border: 3px solid var(--petrol-950);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 850;
  box-shadow: 0 0 16px rgba(242, 101, 43, 0.4);
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 750;
  margin-bottom: 0.6rem;
}

.process-step p {
  color: rgb(255 255 255 / 66%);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* ========================================================================= */
/* 7. PROJECTS PREVIEW & PORTFOLIO                                           */
/* ========================================================================= */

.projects-preview {
  background: var(--ice-100);
}

.project-preview-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.project-card {
  position: relative;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  display: flex;
  flex-direction: column;
}

.project-card .media-placeholder,
.project-card .media-project,
.portfolio-card .media-placeholder,
.portfolio-card .media-portfolio {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  width: 100% !important;
  margin: 0 !important;
  aspect-ratio: 16 / 10 !important;
  min-height: auto !important;
}

.project-card .media-placeholder > img,
.project-card .media-project > img,
.portfolio-card .media-placeholder > img,
.portfolio-card .media-portfolio > img {
  border-radius: 0 !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: var(--air-500);
  box-shadow: var(--shadow-lg);
}

.project-card-wide {
  grid-row: auto;
}

.project-card-wide .media-project {
  aspect-ratio: 16 / 10;
  min-height: auto;
}

.project-copy {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-copy h3 {
  font-size: 1.15rem;
  line-height: 1.35;
  margin-bottom: 0.65rem;
}

.project-copy p:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: auto;
}

.project-type {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--air-700);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-copy h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 750;
}

.disclaimer {
  margin: 1.75rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

/* ========================================================================= */
/* 8. REVIEWS & TESTIMONIALS                                                 */
/* ========================================================================= */

.reviews-section {
  background: 
    radial-gradient(circle at 50% 15%, rgb(111 209 203 / 14%), transparent 24rem),
    var(--white);
}

.review-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr);
}

.review-card {
  position: relative;
  min-height: 15rem;
  padding: 2rem;
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.quote-mark {
  display: block;
  height: 2.2rem;
  color: var(--signal-500);
  font-size: 3.5rem;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-card p {
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--ink);
  line-height: 1.5;
  margin-bottom: 1rem;
}

.review-card small {
  display: inline-block;
  color: var(--air-700);
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.demo-label {
  width: fit-content;
  margin: 1.75rem auto 0;
  padding: 0.45rem 0.85rem;
  color: var(--muted);
  background: var(--ice-200);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ========================================================================= */
/* 9. FINAL CALL TO ACTION                                                   */
/* ========================================================================= */

.final-cta {
  position: relative;
  overflow: hidden;
  color: rgb(255 255 255 / 75%);
  background: linear-gradient(110deg, var(--petrol-950) 0%, #0a3038 100%);
  border-top: 1px solid var(--line-light);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 75% 50%, rgb(20 162 173 / 22%), transparent 30rem);
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 4rem;
  padding-block: 4rem;
  grid-template-columns: 1.15fr 0.85fr;
}

.final-cta h2 {
  max-width: 44rem;
  color: var(--white);
  font-size: clamp(2.1rem, 3.8vw, 3.5rem);
}

.final-cta p:not(.eyebrow) {
  max-width: 38rem;
  font-size: 1.05rem;
}

/* ========================================================================= */
/* 10. SITE FOOTER & GHATI AGENCY SHOWCASE                                   */
/* ========================================================================= */

.site-footer {
  color: rgb(255 255 255 / 62%);
  background: #020c0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  padding-block: 4.5rem;
  grid-template-columns: 1.6fr repeat(3, 1fr);
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.footer-grid h2 {
  margin-bottom: 0.75rem;
  color: var(--white);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
}

.footer-grid a:not(.brand) {
  font-size: 0.86rem;
  color: rgb(255 255 255 / 70%);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer-grid a:not(.brand):hover {
  color: var(--air-300);
  transform: translateX(3px);
}

.footer-grid p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.55;
}

.footer-brand p {
  max-width: 20rem;
  margin-top: 1.25rem;
}

/* ========================================================================= */
/* 10B. DEDICATED GHATI INOVAÇÕES AGENCY FOOTER (GRAND SECOND FOOTER)        */
/* ========================================================================= */

.ghati-agency-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: 
    radial-gradient(ellipse at 85% 20%, rgba(20, 162, 173, 0.22), transparent 32rem),
    radial-gradient(ellipse at 15% 80%, rgba(242, 101, 43, 0.12), transparent 28rem),
    linear-gradient(180deg, #030d11 0%, #041419 100%);
  border-top: 1px solid rgba(20, 162, 173, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.ghati-agency-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.ghati-brand-column {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ghati-logo-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ghati-agency-logo {
  height: 2.8rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(20, 162, 173, 0.4));
}

.ghati-agency-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--air-300);
  background: rgba(20, 162, 173, 0.15);
  border: 1px solid rgba(20, 162, 173, 0.35);
  border-radius: 999px;
}

.ghati-brand-column h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--white);
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin: 0;
}

.ghati-agency-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
  margin: 0;
}

.ghati-agency-desc strong {
  color: var(--white);
}

.ghati-agency-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.ghati-agency-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xs);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

.ghati-cta-card {
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.ghati-cta-card h3 {
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 800;
}

.ghati-cta-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.ghati-button-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ghati-button-group .button {
  width: 100%;
  justify-content: center;
}

.button-outline-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  font-weight: 750;
  transition: all var(--transition-fast);
}

.button-outline-light:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--air-400);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line-light);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.74rem;
}

/* ========================================================================= */
/* 11. SUBPAGE DETAILS: SOBRE, SERVIÇOS, PROJETOS, CONTATO                   */
/* ========================================================================= */

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  background: var(--ice-50);
  border-bottom: 1px solid var(--line-medium);
}

.page-hero-grid {
  display: grid;
  align-items: center;
  gap: 4rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.page-hero-copy {
  max-width: 58rem;
}

.page-lead {
  max-width: 48rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.6;
}

/* Services page details */
.service-jumps {
  display: grid;
  margin-top: 4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.service-jumps a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 750;
  transition: all var(--transition-fast);
}

.service-jumps a:hover {
  background: var(--air-50);
  border-color: var(--air-500);
  transform: translateY(-2px);
  color: var(--air-700);
}

.service-jumps span {
  color: var(--signal-500);
  font-weight: 850;
}

.service-detail {
  background: var(--white);
  border-bottom: 1px solid var(--line-medium);
  scroll-margin-top: 4.75rem;
}

.service-detail-alt {
  background: var(--ice-100);
}

.service-detail-grid {
  display: grid;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(22rem, 0.9fr);
}

.service-detail-alt .service-content {
  order: 2;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--air-700);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.service-kicker span {
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  background: var(--signal-500);
  border-radius: var(--radius-sm);
}

.service-intro {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.service-facts {
  display: grid;
  margin: 2rem 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  border-top: 1px solid var(--line-medium);
  padding-top: 1.5rem;
}

.service-facts > div {
  padding: 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-sm);
}

.service-facts > div:last-child {
  grid-column: 1 / -1;
}

.service-facts h3 {
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--air-700);
}

.service-facts p,
.service-facts ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-facts p {
  padding-left: 0;
}

/* Portfolio Filters & Grid */
.portfolio-section {
  background: var(--ice-50);
}

.project-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line-medium);
}

.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-button {
  min-height: 2.5rem;
  padding: 0.5rem 1.15rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  transition: all var(--transition-fast);
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  background: var(--petrol-900);
  border-color: var(--petrol-900);
  box-shadow: var(--shadow-sm);
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.portfolio-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
}

.portfolio-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
}

.portfolio-wide .portfolio-copy {
  order: -1;
}

.portfolio-copy {
  padding: 2.2rem;
}

.portfolio-copy h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 750;
  margin-bottom: 0.75rem;
}

.portfolio-copy dl {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portfolio-copy dl div {
  padding: 0.85rem;
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-sm);
}

.portfolio-copy dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-copy dd {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--petrol-950);
}

.demo-chip {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  color: var(--signal-600);
  background: #fff0eb;
  border: 1px solid rgba(242, 101, 43, 0.2);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================================================= */
/* 11B. SOBRE A NORTECLIMA (STORY, PURPOSE, VALUES & TEAM)                  */
/* ========================================================================= */

.page-hero-media {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.media-page-hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-medium);
  aspect-ratio: 16 / 9;
}

.media-page-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-section {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.story-number {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: rgba(10, 115, 125, 0.05);
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  font-family: var(--font-display);
}

.editorial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.editorial-copy p {
  color: var(--ink-light);
  line-height: 1.7;
  font-size: 1.02rem;
  margin: 0;
}

.media-story {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-medium);
  aspect-ratio: 4 / 3;
}

.media-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Purpose Section */
.purpose-section {
  background: linear-gradient(135deg, var(--petrol-950), #061c22);
  color: var(--white);
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.purpose-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.purpose-grid h2 {
  color: var(--white);
  margin-top: 0.5rem;
  margin-bottom: 1.25rem;
}

.purpose-grid p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.65;
}

.principle-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.principle-list li {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.15rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  font-weight: 750;
  color: var(--white);
  font-size: 1.02rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}

.principle-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--air-400);
  transform: translateX(6px);
}

.principle-list li span {
  font-family: var(--font-mono);
  color: var(--air-300);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.25rem 0.6rem;
  background: rgba(20, 162, 173, 0.2);
  border-radius: var(--radius-xs);
}

/* Work Mode */
.work-mode {
  background: var(--ice-50);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.value-item {
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  border-color: var(--air-500);
  box-shadow: var(--shadow-md);
}

.value-item span {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--air-600);
  margin-bottom: 0.75rem;
}

.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
  color: var(--petrol-950);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--ink-light);
  line-height: 1.5;
  margin: 0;
}

/* Values in practice */
.values-section {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.value-card {
  padding: 2rem 1.75rem;
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}


.value-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--air-400);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
  color: var(--petrol-950);
}

.value-card p {
  font-size: 0.92rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin: 0;
}

/* Team section */
.team-section {
  background: var(--ice-50);
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line-medium);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.team-card {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--air-400);
}

.media-person {
  width: 6.5rem;
  height: 6.5rem;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--air-200);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.media-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: var(--petrol-950);
}

.team-card p {
  font-size: 0.95rem;
  color: var(--air-700);
  font-weight: 650;
  margin: 0;
}

.team-card small {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--ice-100);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-xs);
}

/* Commitment section */
.commitment-section {
  background: var(--white);
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line-medium);
}

.media-wide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-medium);
  aspect-ratio: 16 / 10;
}

.media-wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================================================= */
/* 11C. CONTATO & ATENDIMENTO LOCAL                                         */
/* ========================================================================= */

.contact-hero {
  padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.contact-section {
  background: var(--ice-50);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 1.75rem;
  grid-template-columns: minmax(0, 1.45fr) minmax(20rem, 0.75fr);
}

.form-panel {
  padding: clamp(1.75rem, 4vw, 3.5rem);
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--petrol-950);
}

.field input:not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  min-height: 3.1rem;
  padding: 0.8rem 1rem;
  color: var(--ink);
  background: var(--ice-50);
  border: 1px solid #b5c4c6;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--air-700);
  outline: 2px solid var(--air-700);
  outline-offset: 1px;
  box-shadow: 0 0 0 3px rgba(10, 115, 125, 0.2);
}

.field [aria-invalid="true"] {
  border-color: #b93825 !important;
  outline: 2px solid #b93825 !important;
  outline-offset: 1px;
  box-shadow: 0 0 0 3px rgba(185, 56, 37, 0.2) !important;
}

.field small {
  color: var(--muted);
  font-size: 0.74rem;
}

.field-error {
  min-height: 1.1rem;
  color: #b93825;
  font-size: 0.74rem;
  font-weight: 700;
}

.checkbox-field {
  display: grid;
  align-items: start;
  gap: 0.75rem;
  grid-template-columns: auto 1fr;
}

.checkbox-field input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.2rem;
  accent-color: var(--air-700);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.form-actions p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-summary {
  margin-bottom: 1.5rem;
  padding: 1.1rem 1.3rem;
  color: var(--status-error);
  background: var(--status-error-bg);
  border: 1px solid rgba(185, 56, 37, 0.3);
  border-radius: var(--radius-sm);
  font-weight: 700;
}

.form-success {
  padding: 3.5rem 1rem;
  text-align: center;
}

.form-success > span {
  display: grid;
  width: 3.5rem;
  aspect-ratio: 1;
  place-items: center;
  margin: 0 auto 1.25rem;
  color: var(--white);
  background: var(--air-700);
  border-radius: 50%;
  font-size: 1.6rem;
  box-shadow: 0 0 24px rgba(10, 115, 125, 0.4);
}

.contact-aside {
  padding: 2.2rem;
  color: rgb(255 255 255 / 75%);
  background: var(--petrol-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-aside h2,
.contact-aside h3 {
  color: var(--white);
}

.contact-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  margin-top: 0.85rem;
  padding: 1.1rem;
  text-align: left;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.contact-option strong {
  overflow-wrap: anywhere;
}

.contact-option:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--air-400);
  transform: translateY(-2px);
}

.contact-option span {
  color: var(--air-300);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-option strong {
  margin-block: 0.25rem;
  font-size: 1.05rem;
}

.contact-option small {
  color: rgb(255 255 255 / 55%);
}

.contact-meta {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-meta h3 {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--air-300);
  margin-bottom: 0.35rem;
}

.contact-meta p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
  margin: 0;
}

.contact-meta small {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Location Section */
.location-section {
  background: var(--ice-100);
  padding: clamp(4rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line-medium);
}

.location-section.theme-dark {
  background: var(--petrol-950) !important;
  color: rgba(255, 255, 255, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.location-section.theme-dark h2,
.location-section.theme-dark h3,
.location-section.theme-dark strong {
  color: var(--white) !important;
}

.location-section.theme-dark p,
.location-section.theme-dark li {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Map Embed Wrapper & Google Maps Frame */
.map-embed-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-lg);
  background: var(--petrol-900);
}

.google-maps-frame {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.map-demo {
  position: relative;
  aspect-ratio: 4 / 3;
  background: 
    radial-gradient(circle at center, rgba(20, 162, 173, 0.22), transparent 70%),
    var(--petrol-950);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-light);
}

.map-demo p {
  position: absolute;
  bottom: 1.25rem;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--air-300);
  margin: 0;
}

.map-pin {
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(135deg, var(--signal-500), #e85317);
  color: var(--white);
  font-weight: 900;
  font-size: 1.5rem;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(242, 101, 43, 0.5);
  z-index: 2;
  line-height: 0;
}

.map-pin::after {
  content: "N";
  transform: rotate(45deg);
  font-family: var(--font-display);
}

.map-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(20, 162, 173, 0.45);
  animation: mapPulse 3.5s infinite cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.map-ring-one {
  width: 8.5rem;
  height: 8.5rem;
}

.map-ring-two {
  width: 15rem;
  height: 15rem;
  animation-delay: 1.75s;
}

@keyframes mapPulse {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* FAQ Accordion */
.faq-section {
  background: var(--ice-50);
  padding: clamp(4rem, 7vw, 6rem) 0;
}

.faq-list {
  border-top: 1px solid var(--line-medium);
}

.faq-item {
  border-bottom: 1px solid var(--line-medium);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--petrol-950);
  transition: color var(--transition-fast);
}

.faq-item button:hover {
  color: var(--air-700);
}

.faq-item button span {
  color: var(--signal-500);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform var(--transition);
}

.faq-item button[aria-expanded="true"] span {
  transform: rotate(45deg);
}

.faq-item > div {
  max-width: 50rem;
  padding-bottom: 1.4rem;
  color: var(--muted);
  line-height: 1.6;
}

.toast {
  position: fixed;
  z-index: 60;
  right: 1.25rem;
  bottom: 1.25rem;
  max-width: 25rem;
  padding: 1.1rem 1.3rem;
  color: var(--white);
  background: var(--petrol-900);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg), 0 0 24px -4px rgba(0, 0, 0, 0.5);
  font-size: 0.88rem;
  font-weight: 650;
  animation: slideInUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideInUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* ========================================================================= */
/* 12. INTERACTIVE MODAL DIALOGS                                             */
/* ========================================================================= */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 20, 25, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow-y: auto;
  animation: fadeIn 0.25s ease-out;
}

.modal-dialog {
  position: relative;
  width: min(100%, 38rem);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: scaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  width: 2.2rem;
  aspect-ratio: 1;
  place-items: center;
  background: var(--ice-100);
  border-radius: 50%;
  color: var(--petrol-950);
  font-size: 1.2rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--petrol-900);
  color: var(--white);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleUp {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ========================================================================= */
/* 12B. ADVANCED INTERACTIVE COMPONENTS & HEADQUARTERS                       */
/* ========================================================================= */

.case-showcase-bar {
  display: none !important;
}

/* Status Chips & Indicators - AI Slop removed */
.status-chip {
  display: none !important;
}

.chip-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--status-success);
  box-shadow: 0 0 0 3px rgba(14, 110, 74, 0.25);
}

.hero-indicators {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid var(--line-medium);
  width: 100%;
}

.indicator-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--petrol-950);
}

.indicator-item small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.4;
  margin-top: 0.15rem;
}

/* Telemetry HUD on Hero Image */
.telemetry-hud {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(4, 20, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-family: inherit;
}

.hud-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.55rem;
  margin-bottom: 0.75rem;
}

.hud-status {
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  color: #10b981;
}

.hud-model {
  font-size: 0.75rem;
  color: var(--air-300);
  font-weight: 650;
}

.hud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.hud-stat span {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.15rem;
}

.hud-stat strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
}

.hud-footer {
  margin-top: 0.65rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.72rem;
  color: var(--air-300);
}

/* ========================================================================= */
/* INTERACTIVE SERVICES EXPLORER (SEGMENTED CONTROLLER)                      */
/* ========================================================================= */

.services-explorer-section {
  padding-block: var(--space-8);
  background: var(--white);
  border-bottom: 1px solid var(--line-medium);
}

.service-segmented-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ice-100);
  padding: 0.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-medium);
  margin-bottom: var(--space-6);
  overflow-x: auto;
}

.tab-pill {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 1.3rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--muted);
  background: transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
  border: 0;
  cursor: pointer;
}

.tab-pill:hover {
  color: var(--petrol-950);
}

.tab-pill.is-active {
  background: var(--white);
  color: var(--petrol-950);
  box-shadow: 0 4px 16px -2px rgba(6, 28, 34, 0.1);
}

.pill-number {
  font-size: 0.75rem;
  font-weight: 850;
  color: var(--signal-600);
  background: rgba(196, 67, 14, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

.tab-pill.is-active .pill-number {
  background: var(--action-signal-start);
  color: var(--white);
}

.service-pane {
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pane-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
}

.pane-content {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pane-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--air-700);
  background: var(--air-100);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: var(--space-3);
  width: fit-content;
}

.pane-content h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-3);
}

.pane-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

.pane-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: var(--space-6);
  padding: 1.4rem;
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-md);
}

.spec-col h4 {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--petrol-900);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.6rem;
}

.spec-col ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.spec-col li {
  margin-bottom: 0.35rem;
}

.pane-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.pane-media {
  position: relative;
  overflow: hidden;
  background: var(--petrol-950);
  min-height: 25rem;
}

.pane-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(4, 20, 25, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.12);
}


.control-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--air-300);
  background: rgba(20, 162, 173, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

/* ========================================================================= */
/* PHYSICAL HEADQUARTERS & INTERACTIVE TACTICAL MAP                          */
/* ========================================================================= */

.headquarters-map-section {
  padding-block: var(--space-9);
  background: var(--petrol-950);
}

.hq-map-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: stretch;
}

.hq-facility-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-hq {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

.media-hq img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hq-badge-live {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(4, 20, 25, 0.85);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hq-details {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.hq-address-block {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.hq-pin-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.hq-address-block strong {
  display: block;
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 800;
}

.hq-address-block p {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}

.hq-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding: 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hq-feature-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--air-300);
}

.hq-feature-item small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.15rem;
}

.hq-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Interactive Map Panel */
.hq-interactive-map {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.map-controls-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.map-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--air-400);
  display: block;
  margin-bottom: 0.2rem;
}

.map-controls-header h4 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.fleet-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.map-zone-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}

.zone-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.85rem;
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.zone-pill span {
  display: block;
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--white);
}

.zone-pill small {
  display: block;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.2rem;
}

.zone-pill:hover {
  background: rgba(255, 255, 255, 0.09);
}

.zone-pill.is-active {
  background: rgba(20, 162, 173, 0.2);
  border-color: var(--air-400);
  box-shadow: 0 0 20px rgba(37, 190, 202, 0.2);
}

.zone-pill.is-active span {
  color: var(--air-300);
}

.tactical-map-viewport {
  position: relative;
  background: #030e12;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 19rem;
}

.tactical-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.map-ring-svg {
  fill: none;
  stroke: rgba(20, 162, 173, 0.25);
  stroke-width: 1.5;
  transition: all 0.4s ease;
}

.map-ring-inner {
  stroke: rgba(242, 101, 43, 0.6);
  stroke-dasharray: 4, 4;
}

.map-radar-pulse {
  fill: none;
  stroke: rgba(242, 101, 43, 0.4);
  stroke-width: 2;
  transform-origin: 310px 210px;
  animation: radarRing 3s infinite ease-out;
}

@keyframes radarRing {
  0% { transform: scale(0.3); opacity: 0.9; }
  100% { transform: scale(3.2); opacity: 0; }
}

.map-legend-overlay {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  background: rgba(4, 20, 25, 0.92);
  backdrop-filter: blur(12px);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.legend-badge {
  font-size: 0.76rem;
  color: var(--air-300);
  margin-bottom: 0.25rem;
}

.legend-badge strong {
  color: var(--white);
}

.map-legend-overlay p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.45;
}

/* Map Quick Check Input Widget */
.map-check-widget {
  background: rgba(255, 255, 255, 0.04);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-check-widget label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.map-check-input-row {
  display: flex;
  gap: 0.6rem;
}

.map-check-input-row input {
  flex: 1;
  background: rgba(4, 20, 25, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  font-size: 0.88rem;
}

.map-check-input-row input:focus {
  outline: 2px solid var(--air-400);
  border-color: var(--air-400);
}

.map-check-feedback {
  margin-top: 0.65rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
  background: rgba(20, 162, 173, 0.15);
  color: var(--air-300);
  border: 1px solid rgba(20, 162, 173, 0.3);
}

/* ========================================================================= */
/* TRABALHE CONOSCO & CAREERS SYSTEM                                         */
/* ========================================================================= */

.careers-spotlight-section {
  padding-block: var(--space-8);
  background: var(--white);
}

.careers-spotlight-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: linear-gradient(135deg, var(--petrol-950), var(--petrol-900));
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: var(--white);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.careers-spotlight-copy {
  padding: clamp(2rem, 4vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  box-sizing: border-box;
}

.spotlight-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--signal-400);
  background: rgba(242, 101, 43, 0.15);
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  margin-bottom: var(--space-3);
  width: fit-content;
}

.careers-spotlight-copy h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.careers-spotlight-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: var(--space-6);
}

.careers-spotlight-media {
  position: relative;
  background: var(--petrol-950);
  overflow: hidden;
  min-height: 22rem;
  width: 100%;
  max-width: 100%;
}

.careers-spotlight-media img,
.media-careers img,
.media-page-hero img[src*="careers-team"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42% !important;
}

.media-careers {
  min-height: auto !important;
  aspect-ratio: 4 / 3 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* Full Careers Page Styles */
.careers-hero {
  background: linear-gradient(135deg, var(--ice-50), #ebf5f3);
}

.careers-culture {
  background: var(--white);
}

.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-6);
}

.culture-card {
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}

.culture-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.culture-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.culture-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.culture-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.benefits-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-6);
}

.benefit-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.6rem;
}

.benefit-item strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--air-300);
  margin-bottom: 0.5rem;
}

.benefit-item p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

/* Open Positions Job Board */
.open-positions {
  background: var(--ice-50);
}

.positions-counter {
  font-size: 1rem;
  color: var(--muted);
}

.positions-counter strong {
  color: var(--petrol-950);
}

.job-list {
  display: grid;
  gap: 1.5rem;
  margin-top: var(--space-6);
}

.job-card {
  background: var(--white);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.job-card:hover {
  border-color: var(--air-500);
  box-shadow: var(--shadow-md);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.job-tags {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}

.tag-badge {
  font-size: 0.72rem;
  font-weight: 750;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--ice-100);
  color: var(--petrol-800);
  border: 1px solid var(--line-medium);
}

.job-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-weight: 800;
  margin: 0;
}

.job-salary {
  text-align: right;
  background: var(--ice-50);
  padding: 0.75rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-medium);
}

.job-salary span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.job-salary strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 850;
  color: var(--petrol-950);
}

.job-salary small {
  display: block;
  font-size: 0.72rem;
  color: var(--signal-600);
  font-weight: 700;
}

.job-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.job-requirements {
  font-size: 0.85rem;
  color: var(--petrol-800);
  margin-bottom: 1.5rem;
  padding: 0.85rem 1.1rem;
  background: var(--ice-50);
  border-radius: var(--radius-sm);
}

.job-requirements strong {
  color: var(--petrol-950);
  margin-right: 0.5rem;
}

.job-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.job-loc {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 650;
}

/* Careers Application Form */
.careers-form-section {
  padding-block: var(--space-8);
  background: var(--white);
  border-block: 1px solid var(--line-medium);
}

.careers-form-wrap {
  max-width: 52rem;
  margin-inline: auto;
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
}

.careers-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  margin-top: 1.5rem;
}

/* Hiring Steps */
.hiring-steps {
  padding-block: var(--space-8);
  background: var(--white);
}

.steps-matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: var(--space-6);
}

.step-card {
  background: var(--ice-50);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.step-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 850;
  color: var(--signal-500);
  line-height: 1;
  margin-bottom: 0.85rem;
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.step-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Reviews Stars & Ghati Modal */
.review-stars {
  color: #f59e0b;
  font-size: 1.15rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.review-author strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--petrol-950);
}

.review-author small {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

.ghati-modal-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.modal-hl-item {
  background: var(--ice-100);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line-medium);
}

.modal-hl-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--petrol-950);
  margin-bottom: 0.35rem;
}

.modal-hl-item p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Location Card Media (contato.html) */
.location-card-media {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.media-location-hq {
  aspect-ratio: 16 / 10;
  position: relative;
}

.location-spec-box {
  padding: 1.75rem;
}

.location-spec-box strong {
  display: block;
  font-size: 1.1rem;
  color: var(--white);
}

.location-spec-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0.35rem 0 1rem;
}

.location-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.location-tags span {
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
  color: var(--air-300);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-zones-list {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}

.zone-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.zone-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}

.zone-item strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
}

.zone-item p {
  margin: 0.2rem 0 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.aside-career-callout {
  margin-top: 1.5rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.aside-career-callout h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.aside-career-callout p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

/* Facility in Sobre */
.about-facility-section {
  padding-block: var(--space-9);
}

.about-facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: var(--space-6);
}

.media-about-hq {
  aspect-ratio: 16 / 11;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.facility-specs-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.f-spec-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--air-300);
}

.f-spec-item p {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.team-careers-cta {
  margin-top: var(--space-7);
  padding: 1.75rem 2rem;
  background: var(--ice-100);
  border: 1px solid var(--line-medium);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.team-careers-cta p {
  margin: 0;
  font-size: 1rem;
  color: var(--petrol-900);
}

/* ========================================================================= */
/* 13. RESPONSIVE BREAKPOINTS                                                */
/* ========================================================================= */

@media (max-width: 66rem) {
  .desktop-nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { padding: 0 0 2rem; }
  .media-hero { min-height: 0; aspect-ratio: 16 / 9; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-heading { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .split-heading > p { max-width: 42rem; }
  .service-jumps { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 2rem; }
  .service-detail-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .portfolio-featured, .portfolio-wide { grid-template-columns: minmax(0, 1fr); }
  .portfolio-wide .portfolio-copy { order: 0; }
  .pane-grid { grid-template-columns: 1fr; }
  .pane-media { min-height: 18rem; order: -1; }
  .hq-map-grid { grid-template-columns: 1fr; }
  .map-zone-pills { grid-template-columns: 1fr; }
  .careers-spotlight-banner { grid-template-columns: 1fr; width: 100%; max-width: 100%; }
  .careers-spotlight-media { min-height: 18rem; aspect-ratio: 4 / 3; width: 100%; }
  .project-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .culture-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-matrix { grid-template-columns: repeat(2, 1fr); }
  .about-facility-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line-light); }
  .process-list { overflow-x: auto; grid-template-columns: repeat(5, minmax(14rem, 1fr)); scroll-snap-type: x mandatory; }
  .process-step { scroll-snap-align: start; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
  .service-segmented-nav { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 0.5rem; }
  .tab-pill { flex-shrink: 0; }
}

@media (max-width: 48rem) {
  :root { --page-inline: clamp(1rem, 5vw, 1.2rem); --space-9: 4rem; }
  h1 { font-size: clamp(2.2rem, 9vw, 3.2rem); line-height: 1.12; }
  .header-inner { min-height: 4.2rem; }
  .home-hero .hero-copy { padding-block: 3rem 1.75rem; }
  .hero-copy h1 { font-size: clamp(2.4rem, 10vw, 3.6rem); line-height: 1.08; }
  .hero-lead { margin-bottom: 1.5rem; font-size: 1rem; }
  .media-hero { aspect-ratio: 4 / 3; }
  .page-hero { padding-block: 3.5rem; }
  .tech-standards-inner { gap: 1rem; }
  .tech-compliance { align-items: flex-start; flex-direction: column; gap: 0.35rem; }
  .tech-brands { display: none; }
  .service-jumps, .service-facts, .portfolio-grid, .portfolio-copy dl { grid-template-columns: minmax(0, 1fr); }
  .service-jumps a { padding: 0.8rem 1rem; }
  .portfolio-copy { padding: 1.35rem; }
  .project-toolbar { align-items: flex-start; flex-direction: column; }
  .contact-grid > *, .purpose-grid > *, .service-detail-grid > * { min-width: 0; }
  .form-panel, .contact-aside { padding: 1.35rem; min-width: 0; }
  .field input:not([type="checkbox"]), .field select, .field textarea { min-width: 0; }
  .principle-list li { min-width: 0; overflow-wrap: anywhere; }
  .hero-indicators { grid-template-columns: 1fr; gap: 0.85rem; }
  .telemetry-hud { display: none; }
  .service-segmented-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); overflow: visible; }
  .tab-pill { min-width: 0; min-height: 3.5rem; justify-content: flex-start; white-space: normal; text-align: left; font-size: 0.8rem; padding: 0.65rem; }
  .pane-specs { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line-light); padding: 1.25rem 0; }
  .editorial-grid, .page-hero-grid, .service-detail-grid, .contact-grid, .purpose-grid, .location-grid, .team-grid, .ghati-agency-inner { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; }
  .value-row { grid-template-columns: 1fr; }
  .contact-form, .careers-form { grid-template-columns: 1fr; }
  .culture-grid, .benefits-spec-grid, .steps-matrix { grid-template-columns: 1fr; }
  .team-card { flex-direction: column; text-align: center; }
  .contact-meta { grid-template-columns: 1fr; }
  .project-preview-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .project-card-wide { grid-row: auto; }
  .project-card-wide .media-project { min-height: auto; aspect-ratio: 16 / 10; }
  .review-grid { grid-template-columns: 1fr; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .careers-spotlight-banner {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    margin-inline: auto;
    border-radius: var(--radius-lg);
  }
  .careers-spotlight-copy {
    padding: 1.75rem 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }
  .careers-spotlight-media {
    min-height: 15rem;
    max-height: 22rem;
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .media-page-hero,
  .media-careers {
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    aspect-ratio: 4 / 3 !important;
    box-sizing: border-box;
  }
  .hero-note { right: 0.5rem; bottom: 1.5rem; }
  .media-badge { right: 0.5rem; bottom: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .case-showcase-bar { display: none !important; }
  .button-row { flex-direction: column; width: 100%; gap: 0.75rem; }
  .button-row .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    justify-content: center;
  }
  .map-embed-wrapper { height: 300px; }
  .ghati-agency-badges { flex-direction: column; align-items: flex-start; gap: 0.6rem; }
  .hero-media { padding: 0; }
  .media-hero { min-height: 20rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .button,
  .button-primary,
  .button-signal,
  .button-quiet,
  .brand:hover .brand-mark,
  .value-card:hover {
    transform: none !important;
  }
}
