﻿:root {
  --bg: #f3f6fa;
  --bg-soft: #f6f9fc;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #0d4f8b;
  --surface-dark-soft: #165795;
  --text: #163454;
  --muted: #58708b;
  --line: rgba(13, 79, 139, 0.12);
  --accent: #f17b22;
  --accent-strong: #de6510;
  --accent-soft: rgba(241, 123, 34, 0.12);
  --teal: #4f9e99;
  --shadow-lg: 0 28px 80px rgba(14, 44, 80, 0.14);
  --shadow-md: 0 18px 42px rgba(14, 44, 80, 0.1);
  --shadow-sm: 0 12px 26px rgba(14, 44, 80, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1240px;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-heading: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(241, 123, 34, 0.14), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(79, 158, 153, 0.12), transparent 24%),
    linear-gradient(180deg, #f6f9fc 0%, #eef4fa 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--surface-dark);
  color: #fff;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(13, 79, 139, 0.08);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 18px;
  align-items: center;
  min-height: 90px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 166px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(13, 79, 139, 0.82);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-strong), var(--teal));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.28s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--surface-dark);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-wa-btn,
.btn,
.btn-outline,
.btn-whatsapp {
  border-radius: 999px;
}

.header-wa-btn {
  position: relative;
  width: 62px;
  height: 62px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-shadow: none;
  transition: transform 0.22s ease, filter 0.22s ease;
}

.header-wa-btn:hover,
.header-wa-btn:focus-visible {
  transform: translateY(-2px) scale(1.04);
  filter: saturate(1.06);
}

.header-wa-icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(20, 146, 70, 0.28));
}

.cta-pulse {
  position: relative;
  isolation: isolate;
  animation: whatsapp-nudge 1.85s ease-in-out infinite;
}

.cta-pulse::before,
.cta-pulse::after {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(40, 191, 98, 0.22);
}

.cta-pulse::before {
  animation: whatsapp-halo 1.85s ease-out infinite;
}

.cta-pulse::after {
  animation: whatsapp-halo 1.85s ease-out infinite 0.55s;
}

@keyframes whatsapp-nudge {
  0%,
  100% {
    transform: scale(1);
  }

  12% {
    transform: scale(1.06);
  }

  24% {
    transform: scale(0.98);
  }

  36% {
    transform: scale(1.09);
  }

  48% {
    transform: scale(1);
  }
}

@keyframes whatsapp-halo {
  0% {
    opacity: 0.42;
    transform: scale(0.86);
  }

  70% {
    opacity: 0;
    transform: scale(1.42);
  }

  100% {
    opacity: 0;
    transform: scale(1.46);
  }
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--surface-dark);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.hero {
  position: relative;
  padding-bottom: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left top, rgba(241, 123, 34, 0.16), transparent 30%),
    radial-gradient(circle at right center, rgba(79, 158, 153, 0.16), transparent 22%);
  pointer-events: none;
}

.hero-slider {
  position: relative;
  min-height: calc(100svh - 90px);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transition: opacity 0.7s ease;
  background-image:
    linear-gradient(180deg, rgba(8, 29, 55, 0.2) 0%, rgba(8, 29, 55, 0.4) 100%),
    linear-gradient(90deg, rgba(9, 40, 76, 0.78) 0%, rgba(9, 40, 76, 0.42) 50%, rgba(9, 40, 76, 0.26) 100%),
    var(--hero);
  background-size: cover;
  background-position: var(--hero-position, center);
}

.hero-slide-panorama {
  background: #0a2c4d;
}

.hero-slide-panorama::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 29, 55, 0.06) 0%, rgba(8, 29, 55, 0.18) 100%),
    linear-gradient(90deg, rgba(9, 40, 76, 0.28) 0%, rgba(9, 40, 76, 0.08) 48%, rgba(9, 40, 76, 0.04) 100%);
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide-video {
  background: #0a2c4d;
}

.hero-slide-buildings {
  background: #0a2c4d;
}

.hero-slide-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 29, 55, 0.16) 0%, rgba(8, 29, 55, 0.42) 100%),
    linear-gradient(90deg, rgba(9, 40, 76, 0.72) 0%, rgba(9, 40, 76, 0.38) 50%, rgba(9, 40, 76, 0.26) 100%);
}

.hero-slide-buildings::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(8, 29, 55, 0.14) 0%, rgba(8, 29, 55, 0.34) 100%),
    linear-gradient(90deg, rgba(9, 40, 76, 0.66) 0%, rgba(9, 40, 76, 0.28) 48%, rgba(9, 40, 76, 0.18) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.hero-image-buildings {
  object-position: center center;
}

.hero-shell {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 90px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

.hero-copy {
  max-width: 880px;
  color: #fff;
  margin-inline: auto;
  text-align: center;
}

.hero-copy-impact {
  max-width: 1040px;
}

.hero-shell-impact {
  justify-items: center;
  padding-bottom: 72px;
}

.hero-copy-impact h1,
.hero-copy-impact h2 {
  max-width: 15ch;
  margin-inline: auto;
  text-shadow: 0 8px 24px rgba(7, 27, 49, 0.32);
}

.hero-copy-impact p {
  max-width: 760px;
  margin-inline: auto;
  text-shadow: 0 4px 18px rgba(7, 27, 49, 0.28);
}

.eyebrow,
.panel-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.eyebrow {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(241, 123, 34, 0.2);
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.panel-kicker {
  background: rgba(13, 79, 139, 0.08);
  color: var(--surface-dark);
}

.hero h1,
.hero h2,
.section-head h2,
.section-intro h2,
.story-card h2,
.feature-card h3,
.cta-wide h2,
.contact-overlay h2,
.contact-card h3 {
  margin: 18px 0 0;
  font-family: var(--font-heading);
  letter-spacing: -0.04em;
}

.hero h1,
.hero h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 6vw, 5.3rem);
  line-height: 0.96;
}

.hero p {
  margin: 20px 0 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-points,
.feature-list,
.panel-contact-list,
.contact-link-list,
.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.hero-points li::before,
.feature-list li::before,
.contact-link-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 5px rgba(241, 123, 34, 0.12);
}

.hero-actions,
.cta-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.btn,
.btn-outline,
.btn-whatsapp {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn:hover,
.btn:focus-visible,
.btn-outline:hover,
.btn-outline:focus-visible,
.btn-whatsapp:hover,
.btn-whatsapp:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-strong), var(--accent));
  color: #fff;
  box-shadow: 0 18px 34px rgba(222, 101, 16, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(13, 79, 139, 0.16);
  color: var(--surface-dark);
}

.btn-whatsapp {
  background: linear-gradient(180deg, #28bf62, #149246);
  color: #fff;
  box-shadow: 0 18px 34px rgba(20, 146, 70, 0.22);
}

.btn.full {
  width: 100%;
}

.hero-panel,
.hero-detail-card,
.feature-card,
.story-card,
.story-visual,
.value-card,
.stat-card,
.service-card,
.service-media-card,
.step-card,
.project-card,
.supplier-box,
.normas-box,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.hero-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.hero-detail-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.hero-panel h2 {
  margin-top: 16px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.05;
  color: var(--surface-dark);
}

.hero-panel p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.panel-badges,
.pill-group,
.supplier-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.panel-badges {
  margin-top: 22px;
}

.panel-badges span,
.pill-group span,
.supplier-pills span,
.service-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-weight: 800;
}

.panel-badges span,
.pill-group span,
.supplier-pills span {
  background: rgba(13, 79, 139, 0.08);
  color: var(--surface-dark);
}

.panel-contact-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.panel-contact-list a {
  color: var(--surface-dark);
  font-weight: 700;
}

.panel-contact-list a:hover,
.panel-contact-list a:focus-visible {
  color: var(--accent);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 3;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(7, 27, 49, 0.3);
  backdrop-filter: blur(14px);
  transform: translateX(-50%);
}

.dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
  transition: width 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.dot.is-active {
  width: 42px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.56));
}

.dot:hover,
.dot:focus-visible {
  transform: scale(1.05);
}

.hero-trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -78px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hero-support {
  padding: 34px 0 48px;
}

.hero-support-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 22px;
  align-items: start;
}

.hero-detail-card h2 {
  margin: 16px 0 0;
  color: var(--surface-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-detail-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero-trust-grid-static {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-trust-grid-static .trust-card {
  min-height: 100%;
}

.trust-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
}

.trust-card strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--surface-dark);
  font-size: 1.08rem;
}

.trust-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.positioning,
.empresa,
.servicos,
.processo,
.projetos,
.fornecedores-normas,
.contato,
.cta-wide,
.stats-band {
  padding: 112px 0;
}

.section-light {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.72));
}

.intro-grid,
.company-grid,
.contact-grid,
.split-grid,
.process-shell {
  display: grid;
  gap: 30px;
}

.intro-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
}

.section-intro h2,
.section-head h2,
.story-card h2,
.cta-wide h2,
.contact-overlay h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  line-height: 1.02;
  color: var(--surface-dark);
}

.section-intro p,
.section-head p,
.story-card p,
.feature-card p,
.value-card p,
.stat-card p,
.service-card p,
.service-media-card figcaption,
.step-card p,
.project-card p,
.supplier-box p,
.norm-card p,
.contact-card p,
.contact-link-list span,
.form-note,
.form-status,
.site-footer p,
.footer-list a,
.footer-list span {
  color: var(--muted);
  line-height: 1.8;
}

.feature-card {
  padding: 34px;
  border-radius: var(--radius-xl);
}

.feature-card,
.value-card,
.service-card,
.step-card,
.project-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-card:hover,
.value-card:hover,
.service-card:hover,
.step-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 123, 34, 0.18);
  box-shadow: 0 18px 30px rgba(14, 44, 80, 0.12);
}

.feature-card h3 {
  font-size: 1.85rem;
  line-height: 1.08;
  color: var(--surface-dark);
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 22px 0 26px;
}

.feature-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.75;
}

.empresa-banner {
  max-width: 1360px;
  margin: 0 auto 42px;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.empresa-banner img {
  width: 100%;
  height: auto;
}

.empresa-overview {
  max-width: 900px;
  margin-bottom: 34px;
}

.empresa-overview h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.15rem);
  line-height: 1.04;
  color: var(--surface-dark);
}

.empresa-overview p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.empresa-story-stack {
  display: grid;
  gap: 26px;
}

.empresa-story-item {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 32px;
  align-items: center;
}

.empresa-story-item.is-reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.92fr);
}

.empresa-story-text {
  padding: 16px 6px 16px 0;
}

.empresa-story-text h3 {
  margin: 0;
  color: var(--surface-dark);
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  line-height: 1.08;
}

.empresa-story-text p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.empresa-story-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
}

.empresa-story-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.empresa-story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.empresa-story-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(13, 79, 139, 0.08);
  color: var(--surface-dark);
  font-weight: 800;
}

.company-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: stretch;
}

.story-card,
.story-visual,
.value-card,
.service-card,
.service-media-card,
.step-card,
.project-card,
.supplier-box,
.normas-box,
.contact-card,
.stat-card {
  border-radius: var(--radius-xl);
}

.story-card,
.value-card,
.service-card,
.step-card,
.supplier-box,
.normas-box,
.contact-card,
.stat-card {
  padding: 34px;
}

.pill-group {
  margin-top: 24px;
}

.story-visual {
  position: relative;
  overflow: hidden;
  padding: 0;
}

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

.story-highlight {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 22px;
  border-radius: var(--radius-lg);
  background: rgba(13, 79, 139, 0.84);
  color: #fff;
  backdrop-filter: blur(14px);
}

.story-highlight strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.story-highlight p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.values-grid,
.stats-grid,
.services-grid,
.service-media-grid,
.process-grid,
.projects-grid {
  display: grid;
  gap: 22px;
}

.values-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.value-card h3,
.service-card h3,
.step-card h3,
.project-card h3,
.norm-card h3,
.contact-card h3,
.site-footer h4 {
  margin: 0 0 12px;
  color: var(--surface-dark);
  font-family: var(--font-heading);
}

.stats-band {
  position: relative;
  background:
    linear-gradient(180deg, rgba(13, 79, 139, 0.92), rgba(11, 74, 130, 0.94)),
    url("../img/cta-bg.jpg") center/cover no-repeat;
}

.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(241, 123, 34, 0.12), transparent 34%);
}

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

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

.stat-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.stat-card strong,
.stat-card span {
  display: block;
  color: #fff;
}

.stat-card strong {
  font-family: var(--font-heading);
  font-size: 1.8rem;
}

.stat-card span {
  margin-top: 10px;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.stat-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.8);
}

.section-head {
  max-width: 860px;
  margin-bottom: 34px;
}

.section-head.compact-head {
  margin-inline: auto;
  text-align: center;
}

.section-head.compact-head p {
  max-width: 760px;
  margin: 14px auto 0;
}

.section-head.narrow {
  max-width: 720px;
}

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

.service-card {
  position: relative;
  min-height: 236px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-strong), var(--teal));
}

.service-index,
.step-number {
  background: var(--accent-soft);
  color: var(--accent);
}

.service-card h3 {
  margin-top: 20px;
  font-size: 1.22rem;
}

.service-media-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.service-media-card {
  overflow: hidden;
  padding: 0;
}

.service-media-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-media-card figcaption {
  padding: 20px 22px 24px;
}

.process-shell {
  gap: 34px;
}

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

.step-card {
  position: relative;
}

.step-number {
  min-width: 42px;
}

.step-card h3 {
  margin-top: 18px;
}

.projects-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.project-card {
  overflow: hidden;
  padding: 0;
  border-radius: 28px;
}

.project-card-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  color: inherit;
}

.project-card-button:focus-visible {
  outline: 3px solid rgba(241, 123, 34, 0.42);
  outline-offset: -3px;
}

.project-card-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 320px;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.35s ease;
}

.project-card:hover img,
.project-card:focus-within img {
  transform: scale(1.06);
  filter: saturate(1.06);
}

.project-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(7, 27, 49, 0.04) 12%, rgba(7, 27, 49, 0.6) 72%, rgba(7, 27, 49, 0.88) 100%);
}

.project-card-body {
  display: grid;
  gap: 10px;
  width: 100%;
  padding: 0;
}

.project-type {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 34px;
  padding: 0 12px;
  margin-bottom: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: #ffd2af;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.74rem;
}

.project-card h3,
.project-modal h3 {
  margin: 0;
}

.project-card h3 {
  max-width: 18ch;
  color: #fff;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.08;
  text-shadow: 0 10px 22px rgba(7, 27, 49, 0.24);
}

.project-card-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.project-modal[hidden] {
  display: none;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: grid;
  place-items: center;
  padding: 20px;
}

.project-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 27, 49, 0.56);
  backdrop-filter: blur(12px);
}

.project-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: calc(100svh - 40px);
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 32px 90px rgba(7, 27, 49, 0.24);
}

.project-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(13, 79, 139, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--surface-dark);
  font-size: 1.9rem;
  line-height: 1;
  box-shadow: var(--shadow-sm);
}

.project-modal-close:hover,
.project-modal-close:focus-visible {
  transform: scale(1.04);
}

.project-modal-media {
  min-height: 100%;
  background: linear-gradient(180deg, rgba(13, 79, 139, 0.12), rgba(79, 158, 153, 0.1));
}

.project-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-modal-content {
  padding: 36px 34px 38px;
  overflow: auto;
}

.project-modal-type {
  background: rgba(241, 123, 34, 0.1);
  border-color: rgba(241, 123, 34, 0.18);
  color: var(--accent);
}

#project-modal-title {
  margin-top: 14px;
  color: var(--surface-dark);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1.02;
}

.project-modal-summary {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.project-modal-detail {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.project-detail-block {
  padding: 18px 20px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 79, 139, 0.06), rgba(13, 79, 139, 0.03));
  border: 1px solid rgba(13, 79, 139, 0.1);
}

.project-detail-block strong {
  display: block;
  margin-bottom: 12px;
  color: var(--surface-dark);
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

.project-detail-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.project-detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.project-detail-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(13, 79, 139, 0.08);
  color: var(--surface-dark);
  font-weight: 800;
}

.project-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.project-page-hero {
  padding: 54px 0 42px;
}

.project-page-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 32px;
  align-items: center;
}

.project-page-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(13, 79, 139, 0.08);
  color: var(--surface-dark);
  font-weight: 800;
}

.project-page-copy h1 {
  margin: 18px 0 0;
  color: var(--surface-dark);
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.02;
}

.project-page-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
}

.project-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.project-page-media {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-lg);
}

.project-page-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-page-details {
  padding-top: 10px;
  padding-bottom: 112px;
}

.project-page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.split-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: stretch;
}

.supplier-pills {
  margin-top: 22px;
}

.supplier-intro {
  display: grid;
  gap: 6px;
  margin-top: 24px;
}

.supplier-intro strong {
  color: var(--surface-dark);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.supplier-intro span {
  color: var(--muted);
  line-height: 1.75;
}

.supplier-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.supplier-logo-card {
  margin: 0;
  min-height: 158px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  padding: 18px 16px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 246, 250, 0.92));
  border: 1px solid rgba(13, 79, 139, 0.1);
  box-shadow: 0 12px 22px rgba(14, 44, 80, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.supplier-logo-card:hover,
.supplier-logo-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(241, 123, 34, 0.24);
  box-shadow: 0 16px 28px rgba(14, 44, 80, 0.12);
}

.supplier-logo-card img {
  width: 100%;
  max-width: 150px;
  max-height: 54px;
  object-fit: contain;
  filter: saturate(1.02);
}

.supplier-logo-card figcaption {
  color: var(--surface-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

.norm-card {
  display: grid;
  gap: 8px;
  align-content: start;
  height: 100%;
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(13, 79, 139, 0.05);
  border: 1px solid rgba(13, 79, 139, 0.08);
}

.normas-box {
  display: grid;
  gap: 16px;
  height: 100%;
  padding: 30px;
  grid-template-rows: auto auto auto 1fr;
}

.normas-box h2 {
  font-size: clamp(1.55rem, 2.7vw, 2.15rem);
  line-height: 1.08;
  color: var(--surface-dark);
}

.normas-lead {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.norm-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-height: 100%;
  align-content: stretch;
  grid-auto-rows: 1fr;
}

.norm-card h3 {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.2;
  color: var(--surface-dark);
}

.norm-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cta-wide {
  background:
    radial-gradient(circle at top right, rgba(79, 158, 153, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.78));
}

.cta-wide-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.cta-stack {
  flex-direction: column;
  align-items: stretch;
  min-width: 280px;
}

.contact-top-banner {
  position: relative;
  max-width: 1360px;
  margin: 0 auto 38px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-top-banner img {
  width: 100%;
  aspect-ratio: 923 / 271;
  object-fit: cover;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 24px;
  text-align: center;
  background: linear-gradient(90deg, rgba(13, 79, 139, 0.72), rgba(13, 79, 139, 0.38));
}

.contact-overlay h2 {
  max-width: 900px;
  color: #fff;
}

.contact-grid {
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
}

.contact-link-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.contact-link-list li {
  position: relative;
  padding-left: 22px;
}

.contact-link-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--surface-dark);
}

.contact-link-list a {
  color: var(--surface-dark);
  font-weight: 700;
}

.contact-link-list a:hover,
.contact-link-list a:focus-visible {
  color: var(--accent);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.contact-social-link {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  transform: translateY(-2px) scale(1.03);
  filter: saturate(1.05);
}

.contact-social-link img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.contact-social-link.is-disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.contact-social-link.is-disabled:hover,
.contact-social-link.is-disabled:focus-visible {
  transform: none;
  filter: none;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--surface-dark);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  border: 1px solid rgba(13, 79, 139, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(243, 246, 250, 0.78);
  color: var(--text);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.contact-form textarea {
  min-height: 170px;
  resize: vertical;
  padding: 16px;
}

.contact-form input:focus-visible,
.contact-form textarea:focus-visible,
.contact-form select:focus-visible {
  outline: none;
  border-color: rgba(241, 123, 34, 0.82);
  box-shadow: 0 0 0 4px rgba(241, 123, 34, 0.14);
  background: #fff;
}

.form-note,
.form-status {
  margin: 0;
}

.form-status {
  min-height: 24px;
  font-weight: 700;
}

.site-footer {
  padding: 64px 0 118px;
  background:
    radial-gradient(circle at center top, rgba(241, 123, 34, 0.08), transparent 30%),
    linear-gradient(180deg, #0d4f8b 0%, #0b467b 100%);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.8fr;
  gap: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  width: 100px;
  height: auto;
  margin-bottom: 18px;
}

.site-footer h4 {
  color: #fff;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: #fff;
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 24px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 700;
}

.fixed-contact-ribbon {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 91;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.fixed-contact-ribbon-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px 16px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(13, 79, 139, 0.96), rgba(11, 70, 123, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 42px rgba(7, 27, 49, 0.24);
  backdrop-filter: blur(18px);
}

.fixed-contact-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 10px 12px;
  border-radius: 18px;
  color: #fff;
  transition: background 0.22s ease, transform 0.22s ease;
}

.fixed-contact-item:hover,
.fixed-contact-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.fixed-contact-item img {
  width: 28px;
  height: 28px;
}

.fixed-contact-item strong {
  display: block;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fixed-contact-item span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
}

body.is-on-final-section .fixed-contact-ribbon {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 116px;
  z-index: 90;
  width: 72px;
  height: 72px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.floating-whatsapp img {
  width: 72px;
  height: 72px;
}

body.is-on-final-section .floating-whatsapp {
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
}

.mobile-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  display: none;
  grid-template-columns: 1fr;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(13, 79, 139, 0.1);
  box-shadow: 0 -16px 28px rgba(14, 44, 80, 0.08);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.mobile-cta-bar a {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
}

.mobile-wa-btn {
  background: linear-gradient(180deg, #28bf62, #149246);
  color: #fff;
}

.mobile-wa-btn.cta-pulse {
  animation: whatsapp-bar-pulse 1.85s ease-in-out infinite;
}

.mobile-wa-btn.cta-pulse::before,
.mobile-wa-btn.cta-pulse::after {
  display: none;
}

.mobile-wa-btn img {
  width: 28px;
  height: 28px;
}

body.is-on-final-section .mobile-cta-bar {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

@keyframes whatsapp-bar-pulse {
  0%,
  100% {
    filter: brightness(1);
    box-shadow: none;
  }

  50% {
    filter: brightness(1.08);
    box-shadow: 0 -6px 18px rgba(20, 146, 70, 0.22);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  .hero-shell,
  .hero-support-grid,
  .intro-grid,
  .company-grid,
  .split-grid,
  .contact-grid,
  .cta-wide-inner {
    grid-template-columns: 1fr;
  }

  .hero-trust-grid,
  .hero-trust-grid-static,
  .values-grid,
  .stats-grid,
  .services-grid,
  .supplier-logo-grid,
  .service-media-grid,
  .process-grid,
  .projects-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell {
    align-items: center;
    padding: 0;
  }

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

  .hero-detail-card,
  .hero-panel {
    max-width: 100%;
  }

  .cta-stack {
    min-width: 0;
  }

  .fixed-contact-ribbon-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .empresa-story-item,
  .empresa-story-item.is-reverse {
    grid-template-columns: 1fr;
  }

  .empresa-story-text {
    padding: 0;
  }

  .empresa-story-item.is-reverse .empresa-story-media {
    order: -1;
  }

  .project-page-hero-grid,
  .project-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 18px 20px 20px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(13, 79, 139, 0.08);
    box-shadow: 0 18px 38px rgba(14, 44, 80, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(13, 79, 139, 0.08);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .hero-slider {
    min-height: calc(100svh - 90px);
  }

  .hero-shell {
    min-height: calc(100svh - 90px);
  }

  .project-modal-dialog {
    grid-template-columns: 1fr;
  }

  .project-modal-media {
    max-height: 280px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .brand img {
    width: 144px;
  }

  .hero,
  .positioning,
  .empresa,
  .servicos,
  .processo,
  .projetos,
  .fornecedores-normas,
  .contato,
  .cta-wide,
  .stats-band {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .hero-slider,
  .hero-shell {
    min-height: calc(100svh - 90px);
  }

  .hero-shell {
    padding: 0;
  }

  .hero-shell-impact {
    padding-bottom: 64px;
  }

  .hero-copy-impact h1,
  .hero-copy-impact h2 {
    max-width: 13ch;
  }

  .hero-copy-impact p {
    font-size: 1rem;
  }

  .hero-dots {
    bottom: 22px;
    padding: 8px 12px;
  }

  .dot.is-active {
    width: 34px;
  }

  .hero h1,
  .hero h2,
  .section-intro h2,
  .section-head h2,
  .story-card h2,
  .cta-wide h2,
  .contact-overlay h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .hero-actions,
  .cta-stack {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-outline,
  .btn-whatsapp {
    width: 100%;
  }

  .hero-trust-grid,
  .hero-trust-grid-static,
  .values-grid,
  .stats-grid,
  .services-grid,
  .service-media-grid,
  .process-grid,
  .projects-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .supplier-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fixed-contact-ribbon {
    display: none;
  }

  .hero-support {
    padding: 26px 0 42px;
  }

  .empresa-overview {
    margin-bottom: 26px;
  }

  .empresa-story-stack {
    gap: 20px;
  }

  .project-page-hero {
    padding-top: 28px;
    padding-bottom: 26px;
  }

  .project-page-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .project-page-details {
    padding-bottom: 84px;
  }

  .norm-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .hero-detail-card,
  .story-card,
  .value-card,
  .service-card,
  .step-card,
  .supplier-box,
  .normas-box,
  .contact-card,
  .stat-card,
  .hero-panel {
    padding: 26px;
  }

  .service-media-card figcaption {
    padding: 18px 18px 22px;
  }

  .project-card-visual {
    min-height: 280px;
  }

  .project-modal {
    padding: 12px;
  }

  .project-modal-dialog {
    max-height: calc(100svh - 24px);
    border-radius: 24px;
  }

  .project-modal-content {
    padding: 22px 20px 24px;
  }

  .project-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .project-modal-close {
    top: 14px;
    right: 14px;
  }

  .story-highlight {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .contact-top-banner {
    margin-bottom: 26px;
  }

  .site-footer {
    padding-bottom: 148px;
  }

  .contact-socials {
    gap: 14px;
  }

  .floating-whatsapp {
    display: none;
  }

  .mobile-cta-bar {
    display: grid;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

