:root {
  --bg: #f3f5f2;
  --bg-alt: #eef3ef;
  --surface: #ffffff;
  --surface-soft: #f7faf8;
  --text: #14242c;
  --text-soft: #5b6d73;
  --text-inverse: #edf4f0;
  --line: rgba(20, 36, 44, 0.1);
  --dark: #0a1b22;
  --dark-soft: #112d38;
  --primary: #1b9e6c;
  --primary-strong: #0f7e55;
  --secondary: #0e6fa0;
  --secondary-strong: #0a567a;
  --shadow-lg: 0 24px 60px rgba(7, 18, 24, 0.14);
  --shadow-md: 0 14px 32px rgba(7, 18, 24, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1220px;
  --topbar-height: 0px;
  --header-height: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f4f6f3 0%, #fbfcfb 100%);
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
}

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

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: #fff;
  border-radius: 12px;
}

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

.topbar {
  display: none;
}

.topbar__inner {
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar__contact,
.topbar__social {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.topbar__social a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #fff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.55rem 0;
  background: rgba(7, 18, 24, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 24px rgba(5, 14, 19, 0.12);
  backdrop-filter: blur(12px);
  transition: background-color 0.28s ease, box-shadow 0.28s ease, padding 0.28s ease, backdrop-filter 0.28s ease, border-color 0.28s ease;
}

.header.is-scrolled {
  padding: 0.4rem 0;
  background: rgba(8, 20, 27, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 30px rgba(5, 14, 19, 0.24);
  backdrop-filter: blur(18px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0;
}

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

.brand__logo {
  display: block;
  width: 180px;
  max-width: min(30vw, 180px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.brand__logo--footer {
  width: 220px;
  max-width: min(56vw, 220px);
}

.nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-menu > a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(245, 250, 247, 0.94);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.18);
}

.nav-menu > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.34rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.nav-menu > a:not(.button):hover::after,
.nav-menu > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(18, 134, 95, 0.24);
  transition: transform 0.26s ease, box-shadow 0.26s ease, background 0.26s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(18, 134, 95, 0.3);
}

.button--sm {
  min-height: 46px;
  padding: 0.82rem 1.2rem;
  box-shadow: 0 14px 30px rgba(17, 170, 111, 0.32);
}

.button--ghost,
.button--ghost-light {
  background: transparent;
  box-shadow: none;
}

.button--ghost {
  color: var(--text);
  border-color: rgba(20, 36, 44, 0.12);
}

.button--ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--topbar-height) + var(--header-height) + 3rem);
  padding-bottom: 2rem;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__media {
  background:
    url("assets/images/hero-industrial.jpg") center/cover;
  transform: scale(1.03);
}

.hero__overlay {
  background:
    linear-gradient(90deg, rgba(4, 12, 16, 0.92) 0%, rgba(5, 14, 19, 0.82) 38%, rgba(6, 16, 20, 0.6) 68%, rgba(6, 16, 20, 0.5) 100%),
    linear-gradient(180deg, rgba(8, 24, 31, 0.22), rgba(8, 24, 31, 0.62));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.62fr);
  gap: 2.4rem;
  align-items: center;
  padding-bottom: 3rem;
}

.hero__copy {
  max-width: 720px;
  color: var(--text-inverse);
}

.hero__copy h1 {
  margin: 1.1rem 0 1rem;
  max-width: 12.5ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.05rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
  text-wrap: balance;
}

.hero__copy p {
  margin: 0;
}

.hero__impact {
  max-width: 34ch;
  margin-bottom: 0.85rem !important;
  font-size: 1.18rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.hero__description {
  max-width: 50ch;
  font-size: 1.03rem;
  line-height: 1.75;
  color: rgba(237, 244, 240, 0.84);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.15rem;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2.15rem;
}

.hero__badges span,
.hero-note__tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__badges span {
  background: rgba(255, 255, 255, 0.11);
  color: #eff8f4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.eyebrow {
  gap: 0.6rem;
  padding: 0;
  color: var(--primary-strong);
  background: transparent;
}

.eyebrow::before {
  content: "";
  width: 2.6rem;
  height: 1px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.eyebrow--light {
  color: #d8efe4;
}

.eyebrow--light::before {
  background: rgba(255, 255, 255, 0.36);
}

.hero__aside {
  display: grid;
  gap: 1rem;
  align-self: end;
}

.hero-note {
  padding: 1.85rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(10, 27, 35, 0.78), rgba(10, 27, 35, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(12px);
  box-shadow: 0 28px 56px rgba(3, 11, 15, 0.24);
}

.hero-note__tag {
  background: rgba(27, 158, 108, 0.18);
  color: #cff5e3;
  border: 1px solid rgba(164, 235, 202, 0.14);
}

.hero-note h2 {
  margin: 1rem 0 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 1.34rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-note p {
  margin: 0;
  color: rgba(237, 244, 240, 0.88);
  line-height: 1.7;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.hero__stats article {
  min-width: 0;
  padding: 1.1rem 0.9rem;
  border-radius: var(--radius-md);
  background: rgba(10, 27, 35, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #fff;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(5, 14, 19, 0.12);
}

.hero__stats strong {
  display: block;
  width: 100%;
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
  line-height: 1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero__stats span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: rgba(237, 244, 240, 0.82);
}

.button--primary-hero {
  background: linear-gradient(135deg, #1dbb7b, #10976b);
  box-shadow: 0 18px 40px rgba(20, 182, 110, 0.34);
}

.button--primary-hero:hover,
.button--primary-hero:focus-visible {
  box-shadow: 0 22px 44px rgba(20, 182, 110, 0.42);
}

.section {
  padding: 5.8rem 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 2.5rem;
}

.section-heading--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-heading h2 {
  margin: 0.8rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.services-highlight {
  background: var(--bg-alt);
}

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

.service-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card__image {
  height: 250px;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.06);
}

.service-card__image--zoomable,
.about__image--zoomable,
.differentials__lead-image--zoomable {
  cursor: zoom-in;
  position: relative;
}

.service-card__image--zoomable::after,
.about__image--zoomable::after,
.differentials__lead-image--zoomable::after {
  content: "Clique para ampliar";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 19, 25, 0.74);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.service-card__image--zoomable:hover::after,
.service-card__image--zoomable:focus-visible::after,
.about__image--zoomable:hover::after,
.about__image--zoomable:focus-visible::after,
.differentials__lead-image--zoomable:hover::after,
.differentials__lead-image--zoomable:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.service-card__content {
  padding: 1.5rem;
}

.service-card__content h3 {
  margin: 0 0 0.6rem;
  font-size: 1.35rem;
}

.service-card__content p {
  margin: 0 0 1rem;
  color: var(--text-soft);
}

.service-card__content ul {
  display: grid;
  gap: 0.45rem;
  color: var(--text-soft);
}

.service-card__content a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--secondary-strong);
}

.about__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.about__content h2 {
  margin: 0.8rem 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about__content p {
  color: var(--text-soft);
}

.about__content strong {
  color: var(--primary-strong);
}

.about__visual {
  position: relative;
  min-height: 560px;
}

.about__image,
.about__frame {
  position: absolute;
  border-radius: var(--radius-xl);
}

.about__image {
  inset: 0 0 0 2.5rem;
  background:
    url("assets/images/sobre-bjp.png") center/cover;
  box-shadow: var(--shadow-lg);
}

.about__image--zoomable:hover,
.about__image--zoomable:focus-visible {
  box-shadow: 0 28px 68px rgba(7, 18, 24, 0.2);
}

.about__frame {
  inset: 2rem 2rem 2rem 0;
  border: 1px solid rgba(27, 158, 108, 0.2);
  pointer-events: none;
}

.differentials {
  background: linear-gradient(180deg, #f8faf8 0%, #eef3ef 100%);
}

.differentials__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem;
}

.differentials__lead {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.differentials__lead-image {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(8, 24, 31, 0.04), rgba(8, 24, 31, 0.14)),
    url("assets/images/diferenciais-bjp-v2.png") center/cover;
}

.differentials__lead-image--zoomable:hover,
.differentials__lead-image--zoomable:focus-visible {
  filter: saturate(1.03);
}

.differentials__lead-content {
  padding: 1.6rem;
}

.differentials__lead-content h3 {
  margin: 0 0 0.75rem;
  font-family: "Sora", sans-serif;
}

.differentials__lead-content p {
  margin: 0;
  color: var(--text-soft);
}

.differentials__list {
  display: grid;
  gap: 1rem;
}

.differentials__list div {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.differentials__list strong {
  display: block;
  margin-bottom: 0.25rem;
}

.differentials__list span {
  color: var(--text-soft);
}

.process {
  background: #fff;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  z-index: 0;
}

.timeline__item {
  position: relative;
  z-index: 1;
  padding-top: 2.8rem;
}

.timeline__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow-md);
}

.timeline__item h3 {
  margin: 0 0 0.55rem;
}

.timeline__item p {
  margin: 0;
  color: var(--text-soft);
}

.esg {
  background:
    linear-gradient(135deg, rgba(8, 24, 31, 0.95), rgba(17, 45, 56, 0.95)),
    url("assets/images/esg-governanca.jpg") center/cover;
  color: var(--text-inverse);
}

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

.esg__content h2 {
  margin: 0.8rem 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.esg__content p {
  color: rgba(237, 244, 240, 0.82);
}

.esg__topics {
  display: grid;
  gap: 1rem;
}

.esg__topics div {
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
}

.esg__topics strong {
  display: block;
  margin-bottom: 0.25rem;
}

.esg__topics span {
  color: rgba(237, 244, 240, 0.78);
}

.social-projects {
  background: linear-gradient(180deg, #f8faf8 0%, #eef3ef 100%);
}

.social-projects__intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.social-projects__intro p {
  margin-top: 0;
  color: var(--text-soft);
}

.social-projects__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.social-projects__stats span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(20, 36, 44, 0.08);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  color: var(--secondary-strong);
}

.social-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.social-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.social-card__image {
  min-height: 280px;
  background-position: center;
  background-size: cover;
}

.social-card__media {
  min-height: 280px;
  background: #0a1b22;
}

.social-card__video {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.social-card__content {
  padding: 1.4rem;
}

.social-card__content h3 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
}

.social-card__content p {
  margin: 0;
  color: var(--text-soft);
}

.social-card__content a {
  display: inline-flex;
  margin-top: 1rem;
  font-weight: 800;
  color: var(--secondary-strong);
}

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

.metric {
  display: flex;
  min-width: 0;
  min-height: 9.5rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.metric strong {
  display: block;
  width: 100%;
  font-family: "Sora", sans-serif;
  font-size: 2.65rem;
  line-height: 1;
  letter-spacing: 0;
  color: var(--secondary-strong);
  overflow-wrap: anywhere;
}

.metric span {
  display: block;
  margin-top: 0.45rem;
  color: var(--text-soft);
  font-weight: 700;
}

.partners {
  background:
    radial-gradient(circle at top left, rgba(27, 158, 108, 0.09), transparent 34%),
    linear-gradient(180deg, #f8faf8 0%, #eef3ef 100%);
}

.partners .section-heading p {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--text-soft);
  font-size: 1rem;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}

.partner-card {
  min-height: 150px;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.partner-card:hover,
.partner-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 158, 108, 0.22);
}

.partner-card img {
  width: min(100%, 180px);
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.88;
  transition: transform 0.28s ease, filter 0.28s ease, opacity 0.28s ease;
}

.partner-card:hover img,
.partner-card:focus-within img {
  transform: scale(1.04);
  filter: grayscale(0);
  opacity: 1;
}

.faq {
  background: var(--bg-alt);
}

.faq__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.faq__intro h2 {
  margin: 0.8rem 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.faq__intro p {
  color: var(--text-soft);
}

.faq__accordion {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.faq-item.is-open,
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.35rem;
  border: 0;
  background: transparent;
  text-align: left;
  font-weight: 800;
  color: var(--text);
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 1.35rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--secondary-strong);
}

.faq-item.is-open .faq-question::after {
  content: "−";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  overflow: hidden;
  margin: 0;
  padding: 0 1.35rem 0;
  color: var(--text-soft);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.25rem;
}

.contact {
  background: #fff;
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: start;
}

.contact__form-wrap h2 {
  margin: 0.8rem 0 1.2rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.contact-form {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: grid;
  gap: 0.45rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(20, 36, 44, 0.12);
  background: #fbfcfb;
  color: var(--text);
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(27, 158, 108, 0.5);
  box-shadow: 0 0 0 4px rgba(27, 158, 108, 0.11);
  background: #fff;
}

.form-group.is-error input,
.form-group.is-error textarea {
  border-color: #cd4e4e;
  box-shadow: 0 0 0 4px rgba(205, 78, 78, 0.09);
}

.error-message {
  min-height: 1em;
  color: #c84242;
  font-size: 0.84rem;
}

.contact-form__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.form-status {
  margin: 1rem 0 0;
  min-height: 1.2rem;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--primary-strong);
}

.form-status.is-error {
  color: #c84242;
}

.contact__info {
  display: grid;
  gap: 1rem;
}

.contact__image {
  min-height: 280px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(8, 24, 31, 0.12), rgba(8, 24, 31, 0.44)),
    url("assets/images/contato-industrial.jpg") center/cover;
  box-shadow: var(--shadow-lg);
}

.contact__card {
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #0d2430, #153847);
  color: var(--text-inverse);
  box-shadow: var(--shadow-lg);
}

.contact__card h3 {
  margin-top: 0;
}

.contact__card ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.contact__card p,
.contact__card li {
  color: rgba(237, 244, 240, 0.8);
}

.footer {
  padding: 3rem 0 1.5rem;
  background: linear-gradient(180deg, #08161d, #0b1d25 100%);
  color: rgba(237, 244, 240, 0.88);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 2rem;
}

.footer__text,
.footer__links li,
.footer__bottom p {
  color: rgba(237, 244, 240, 0.72);
}

.footer h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fff;
}

.footer__links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.footer__bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(237, 244, 240, 0.1);
}

.floating-whatsapp,
.back-to-top {
  position: fixed;
  right: 1.1rem;
  z-index: 980;
  border: 0;
  cursor: pointer;
  transition: transform 0.26s ease, opacity 0.26s ease, box-shadow 0.26s ease;
}

.floating-whatsapp {
  bottom: 1.1rem;
  min-height: 58px;
  padding: 0.95rem 1.15rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #18b760, #0e9850);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(18, 183, 96, 0.35);
}

.back-to-top {
  bottom: 5.7rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #0f2a36;
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.floating-whatsapp:hover,
.back-to-top:hover,
.floating-whatsapp:focus-visible,
.back-to-top:focus-visible {
  transform: translateY(-4px);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.78s ease, transform 0.78s ease;
}

.reveal--delay {
  transition-delay: 0.12s;
}

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

.service-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f4f6f3 0%, #fbfcfb 100%);
}

.service-page-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: rgba(8, 20, 27, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-hero {
  position: relative;
  min-height: 54vh;
  display: flex;
  align-items: end;
  padding: 7rem 0 3rem;
  color: var(--text-inverse);
  background-position: center;
  background-size: cover;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 19, 25, 0.82), rgba(7, 19, 25, 0.5));
}

.service-hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.service-hero__content h1 {
  margin: 1rem 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.service-hero__content p {
  max-width: 58ch;
  margin: 0;
  color: rgba(237, 244, 240, 0.84);
}

.service-hero--diagnostico {
  background-image: url("assets/images/servico-diagnostico.png");
}

.service-hero--implantacao {
  background-image: url("assets/images/servico-implantacao.png");
}

.service-hero--operacao {
  background-image: url("assets/images/servico-operacao.png");
}

.service-hero--esg {
  background-image: url("assets/images/servico-educacao-esg.png");
}

.service-hero--quadra {
  background-image: url("assets/images/escolinha-futebol-22.jpeg");
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: start;
}

.service-detail__content h2 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.service-detail__content p {
  color: var(--text-soft);
}

.service-detail__list {
  display: grid;
  gap: 0.7rem;
  margin: 1.3rem 0;
  color: var(--text-soft);
}

.service-detail__sidebar {
  display: grid;
  gap: 1rem;
}

.service-gallery {
  display: grid;
  gap: 1rem;
}

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

.service-gallery__item {
  min-height: 180px;
  border-radius: var(--radius-lg);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-md);
}

.service-gallery__item--large {
  min-height: 360px;
  border-radius: var(--radius-xl);
}

.service-gallery__video {
  display: block;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius-xl);
  background: #0a1b22;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.service-detail__image {
  min-height: 340px;
  border-radius: var(--radius-xl);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow-lg);
}

.service-detail__image--zoomable {
  position: relative;
  cursor: zoom-in;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-detail__image--zoomable::after {
  content: "Clique para ampliar";
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(7, 19, 25, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
}

.service-detail__image--zoomable:hover,
.service-detail__image--zoomable:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 26px 58px rgba(7, 18, 24, 0.22);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(5, 14, 19, 0.86);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__dialog {
  position: relative;
  width: min(94vw, 1240px);
}

.lightbox__image {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
  background: #fff;
}

.lightbox__close {
  position: absolute;
  top: -0.85rem;
  right: -0.35rem;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #0f2a36;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: #0f2a36;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.lightbox__nav--prev {
  left: -1.2rem;
}

.lightbox__nav--next {
  right: -1.2rem;
}

.service-detail__card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}

.service-detail__card h3 {
  margin-top: 0;
}

.service-detail__card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

@media (max-width: 1120px) {
  .hero__content,
  .about__grid,
  .differentials__grid,
  .esg__grid,
  .social-projects__intro,
  .faq__grid,
  .contact__grid,
  .service-detail__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy h1,
  .hero__description,
  .hero__impact {
    max-width: none;
  }

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

  .metric strong {
    font-size: 2.45rem;
  }

  .timeline::before {
    display: none;
  }

  .partners__grid {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.8rem);
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(9, 21, 28, 0.98);
    color: #f3f8f5;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu .button {
    width: 100%;
  }

  .hero__stats,
  .services-grid,
  .social-projects__grid,
  .metrics__grid,
  .form-grid,
  .service-gallery__grid {
    grid-template-columns: 1fr;
  }

  .hero__stats strong {
    font-size: 1.68rem;
  }

  .topbar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.55rem 0;
  }

  .topbar {
    display: none;
  }

  .header {
    top: 0;
  }

  .hero {
    padding-top: calc(var(--header-height) + 2.5rem);
    min-height: auto;
  }

  .hero__content {
    gap: 1.5rem;
    padding-bottom: 2.6rem;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .button {
    flex: 1 1 100%;
  }
}

@media (max-width: 720px) {
  .partners__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-card {
    min-height: 130px;
    padding: 1rem;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 4.5rem 0;
  }

  .container {
    width: min(calc(100% - 1.1rem), var(--container));
  }

  .hero__copy h1 {
    font-size: clamp(2.3rem, 11vw, 3.6rem);
    max-width: 12ch;
  }

  .hero__impact {
    font-size: 1rem;
    max-width: none;
  }

  .hero__description {
    font-size: 0.97rem;
    line-height: 1.7;
  }

  .hero__copy,
  .hero__aside {
    width: 100%;
  }

  .hero-note {
    padding: 1.35rem;
  }

  .hero-note h2 {
    font-size: 1.15rem;
  }

  .hero__badges {
    gap: 0.65rem;
  }

  .hero__badges span {
    font-size: 0.7rem;
    padding: 0.45rem 0.7rem;
  }

  .service-card__image {
    height: 220px;
  }

  .service-card__image--zoomable::after,
  .about__image--zoomable::after,
  .differentials__lead-image--zoomable::after {
    font-size: 0.72rem;
    padding: 0.45rem 0.68rem;
    right: 0.75rem;
    bottom: 0.75rem;
    opacity: 1;
    transform: none;
  }

  .about__visual {
    min-height: 380px;
  }

  .about__image {
    inset: 0 0 0 1rem;
  }

  .about__frame {
    inset: 1rem 1rem 1rem 0;
  }

  .contact-form__actions .button {
    width: 100%;
  }

  .service-page-header__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
    min-height: 54px;
    padding: 0.85rem 1rem;
  }

  .back-to-top {
    right: 0.8rem;
    bottom: 5rem;
  }

  .brand__logo {
    width: 190px;
    max-width: 52vw;
  }

  .brand__logo--footer {
    width: 180px;
    max-width: 58vw;
  }

  .lightbox {
    padding: 1rem;
  }

  .lightbox__dialog {
    width: min(96vw, 960px);
  }

  .lightbox__close {
    top: -0.6rem;
    right: -0.1rem;
  }

  .lightbox__nav {
    width: 46px;
    height: 46px;
    font-size: 1.25rem;
  }

  .lightbox__nav--prev {
    left: -0.2rem;
  }

  .lightbox__nav--next {
    right: -0.2rem;
  }
}

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

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
