/* ============================================
   RJ VALE — Design System
   ============================================ */

:root {
  --green: #19B85A;
  --green-dark: #007A3D;
  --green-700: #15a14f;
  --black: #111111;
  --gray-900: #1a1a1a;
  --gray-800: #2E2E2E;
  --gray-700: #3a3a3a;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #F5F6F7;
  --white: #ffffff;
  --yellow: #E5A900;
  --yellow-2: #F2B705;

  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 8px 24px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 20px 50px rgba(17, 17, 17, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-pill: 999px;

  --container: 1240px;
  --pad-x: 24px;

  --font: 'Montserrat', system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

/* ============== TYPOGRAPHY HELPERS ============== */
h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(28px, 3.4vw, 44px); }
h3 { font-size: 20px; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow--green { color: var(--green); }
.eyebrow--dark  { color: var(--gray-900); }
.eyebrow--white { color: var(--white); }

.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(25, 184, 90, 0.25);
}
.btn--primary:hover { background: var(--green-700); transform: translateY(-2px); }

.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover { background: #000; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.link-arrow:hover { color: var(--green-700); }
.link-arrow--btn { padding: 14px 0; }

/* ============== TOP BAR ============== */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}
.top-bar__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 42px;
  gap: 32px;
  padding: 0 32px;
}
.top-bar__contact, .top-bar__social { display: flex; gap: 24px; align-items: center; }
.top-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
  color: inherit;
}
.top-bar a:hover { color: var(--green); }
.top-bar i { color: var(--green); }

/* ============== HEADER ============== */
.header {
  background: var(--white);
  position: absolute;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 50;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.header.is-stuck {
  position: fixed;
  top: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  animation: slideDown .35s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}
.header__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
  padding-left: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: center;
}
.logo__mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text strong {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: var(--black);
}
.logo__text strong span { color: var(--green); }
.logo__text small {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 600;
}

.nav { flex: 1; align-self: center; }
.nav > ul {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.nav > ul > li > a {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
  font-weight: 700;
}
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--green); }
.nav .has-dropdown { position: relative; }
.nav .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all .25s ease;
  border-top: 3px solid var(--green);
}
.nav .has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav .dropdown a {
  display: block;
  padding: 10px 14px;
  font-size: 13.5px;
  white-space: nowrap;
}
.nav .dropdown a:hover { background: var(--gray-100); color: var(--green); }

.nav__cta-item { display: none; }

.header__cta {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--green);
  color: var(--white);
  padding: 0 36px;
  height: 100%;
  min-width: 180px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background .2s;
  border-radius: 0;
  flex-shrink: 0;
}
.header__cta:hover { background: var(--green-700); }
.header__cta:hover i { transform: translateX(4px); }
.header__cta i { transition: transform .25s; }
.header__cta i { font-size: 14px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--black);
  transition: transform .25s, opacity .25s;
  border-radius: 2px;
}

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.55) 100%),
    url('../../assets/images/hero.png') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}
.hero--slider {
  background: #111;
}
.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .8s ease;
}
.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__media--image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero--slider .hero__overlay {
  z-index: 1;
}
.hero--slider .hero__content {
  z-index: 2;
  width: 100%;
}
.hero--slider .hero__scroll {
  z-index: 3;
}
.hero > .container,
.hero__slide > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero__content {
  position: relative;
  z-index: 1;
  padding: 200px 0 100px;
}
.hero__title {
  font-size: clamp(40px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: 0.045em;
  line-height: 1.05;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.hero__eyebrow {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: none;
  margin-bottom: 18px;
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.6);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 6px;
}
.hero__scroll span {
  width: 3px;
  height: 8px;
  background: var(--white);
  border-radius: 3px;
  animation: scroll 1.6s infinite;
}
.hero__control {
  position: absolute;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 50%;
  background: rgba(0,0,0,.22);
  color: var(--white);
  font-size: 18px;
  transform: translateY(-50%);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.hero__control:hover,
.hero__control:focus-visible {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-50%) scale(1.04);
  outline: none;
}
.hero__control--prev {
  left: max(24px, calc((100vw - var(--container)) / 2 - 72px));
}
.hero__control--next {
  right: max(24px, calc((100vw - var(--container)) / 2 - 72px));
}
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

/* ============== SERVICES ============== */
.services { padding: 90px 0 70px; }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card__media {
  height: 200px;
  overflow: hidden;
}
.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card__media img { transform: scale(1.06); }

.service-card__icon {
  position: absolute;
  top: 168px;
  left: 24px;
  width: 64px;
  height: 64px;
  background: var(--white);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card__icon--solid {
  background: var(--green);
  color: var(--white);
}

.service-card__body {
  padding: 40px 24px 28px;
}
.service-card__body h3 {
  margin-bottom: 10px;
  font-weight: 800;
}
.service-card__body p {
  color: var(--gray-500);
  font-size: 14px;
  margin: 0 0 18px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: background .25s, width .25s;
}
.dot--active {
  background: var(--green);
  width: 30px;
  border-radius: 6px;
}

/* ============== AUTHORITY ============== */
.authority {
  position: relative;
  padding: 80px 0;
  color: var(--white);
  overflow: hidden;
  background:
    url('../../assets/images/bg-30.png') center/cover fixed;
}
.authority__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(229 159 0 / 66%) 0%, rgb(242 143 5 / 78%) 60%, rgb(229 148 0 / 65%) 100%);
}
.authority__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.authority__copy h2 { color: var(--black); margin-bottom: 18px; }
.authority__copy p {
  color: var(--white);
  max-width: 580px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 26px;
}
.authority .eyebrow { color: var(--white); }

.authority__seal { display: grid; place-items: center; }
.seal {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  text-align: center;
  color: var(--gray-900);
}
.seal__big {
  font-size: 88px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.seal__small {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: absolute;
}
.seal__small:first-child { top: 22px; left: 50%; transform: translateX(-50%); }
.seal__small:nth-child(3) { bottom: 22px; left: 50%; transform: translateX(-50%); }
.seal__icon {
  position: absolute;
  bottom: 46px;
  right: 36px;
  font-size: 24px;
  color: var(--gray-900);
  opacity: .35;
}

/* ============== MACHINES ============== */
.machines { padding: 90px 0 70px; background: var(--white); }

.tabs {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 44px;
  padding-bottom: 4px;
}
.tab {
  padding: 12px 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: color .2s, border-color .2s;
}
.tab:hover { color: var(--gray-900); }
.tab--active {
  color: var(--green);
  border-bottom-color: var(--green);
}

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

.machine-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: none;
  overflow: visible;
  position: relative;
  transition: transform .3s;
}
.machine-card:hover { transform: translateY(-4px); }

.machine-card__brand {
  position: absolute;
  top: 16px;
  right: 0;
  padding: 6px 18px 6px 16px;
  font-size: 12px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
  border-radius: 4px 0 0 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
}
.machine-card__brand--yellow { background: var(--yellow-2); color: var(--gray-900); }
.machine-card__brand--green  { background: var(--green); }

.machine-card__media {
  height: 200px;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.machine-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.machine-card__body { padding: 22px 4px 4px; }
.machine-card__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
}
.machine-card__cat { color: var(--green); }
.machine-card__price { color: var(--green-dark); }

.machine-card h3 {
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--black);
}

.machine-card__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  padding-top: 4px;
}
.machine-card__details li {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-500);
}
.machine-card__details strong { color: var(--gray-900); font-weight: 700; }

.machine-card__link {
  margin-top: 18px;
  font-size: 13px;
}
.machine-card__link i { transition: transform .2s ease; }
.machine-card:hover .machine-card__link { color: var(--green-700); }
.machine-card:hover .machine-card__link i { transform: translateX(4px); }

/* ============== STATS ============== */
.stats {
  padding: 80px 0 50px;
  background: var(--gray-100);
  border-top: 1px solid var(--gray-200);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.stat__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green);
  color: #000;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  overflow: visible;
}
.stat__icon i {
  position: absolute;
  font-size: 68px;
  font-weight: 900;
  line-height: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.stat__txt { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.stat__value {
  font-size: 40px;
  font-weight: 900;
  color: #000;
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__label {
  font-size: 13px;
  color: #1a1a1a;
  font-weight: 700;
  white-space: nowrap;
  margin-top: 6px;
}

/* ============== ABOUT ============== */
.about { padding: 100px 0 0; background: var(--gray-100); overflow: hidden; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin-inline: auto;
}
.about__media {
  margin-left: calc(50% - 50vw);
  width: calc(100% + 50vw - 50%);
}
.about__media img {
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__copy { padding-right: var(--pad-x); }
.about__copy h2 { margin-bottom: 22px; }
.about__copy p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}

/* ============== CLIENTS ============== */
.clients { padding: 80px 0 90px; background: var(--white); }
.clients__bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 30px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 24px;
}
.client-logo {
  display: grid;
  place-items: center;
  font-size: 18px;
  filter: grayscale(20%);
  opacity: .85;
  transition: opacity .25s, filter .25s;
}
.client-logo:hover { opacity: 1; filter: none; }

.client-logo img{
  max-height: 35px;
}

/* ============== CONTACT ============== */
.contact { padding: 0; background: var(--gray-100); overflow: hidden; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: stretch;
  max-width: var(--container);
  margin-inline: auto;
}
.contact__media {
  border-radius: 0;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 520px;
  margin-left: calc(50% - 50vw);
  width: calc(100% + 50vw - 50%);
}
.contact__media img { width: 100%; height: 100%; object-fit: cover; }
.contact__form-wrap { padding: 90px var(--pad-x) 90px 0; }

.contact__form-wrap h2 { margin-bottom: 12px; }
.contact__form-wrap > p { color: var(--gray-500); margin: 0 0 26px; max-width: 480px; }

.form { background: transparent; padding: 0; box-shadow: none; border-radius: 0; }
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form__field { display: flex; flex-direction: column; margin-bottom: 18px; }
.form__field:last-child { margin-bottom: 0; }
.form__row .form__field { margin-bottom: 0; }
.form__row { margin-bottom: 18px; }

.form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--black);
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  background: var(--white);
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(25, 184, 90, .15);
}
.form textarea { resize: vertical; min-height: 110px; }

.select-wrap { position: relative; }
.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.select-wrap i {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 12px;
  pointer-events: none;
}

.form__actions {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 24px;
}

.form__msg {
  margin-top: 18px;
  font-size: 14px;
  color: var(--green);
  font-weight: 600;
}

.form__optional {
  font-weight: 500;
  text-transform: none;
  color: var(--gray-500);
  letter-spacing: 0;
}

.field-error {
  display: block;
  margin-top: 6px;
  min-height: 14px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  color: #ef4444;
}
.form input.input-error,
.form select.input-error,
.form textarea.input-error {
  border-color: #ef4444;
  background: #fef2f2;
}
.form input.input-error:focus,
.form select.input-error:focus,
.form textarea.input-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .15);
}

.btn[disabled],
.btn.is-loading {
  opacity: .65;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============== FOOTER ============== */
.footer {
  background: var(--gray-800);
  color: #cfcfcf;
  padding: 70px 0 50px;
  font-size: 14px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
}
.logo--footer .logo__text strong { color: var(--white); }
.logo--footer .logo__text small { color: var(--gray-400); }

.footer__col h4 {
  font-size: 18px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer__col p { line-height: 1.7; color: #b8b8b8; margin: 14px 0 18px; }
.footer__col a { color: var(--green); transition: color .2s; }
.footer__col a:hover { color: var(--white); }

.footer__address {
  font-style: normal;
  line-height: 1.7;
  color: #b8b8b8;
  margin: 22px 0 18px;
}

.footer__maps {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  align-items: center;
}
.footer__maps a {
  display: inline-grid;
  place-items: center;
  color: var(--green) !important;
  font-size: 26px;
  background: transparent;
  transition: color .2s, transform .2s;
}
.footer__maps a:hover { color: var(--white) !important; transform: translateY(-2px); }

.footer__col--policy { display: flex; flex-direction: column; }
.footer__policy-title { margin-bottom: 14px; }
.footer__policy-title a {
  color: var(--green) !important;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-weight: 500;
}
.footer__policy-title a:hover { text-decoration: underline; }

.footer__copy {
  font-size: 13px;
  color: #b8b8b8;
  margin: 0 0 22px;
  line-height: 1.6;
}

.footer__dev { min-height: 48px; }
.footer__dev svg, .footer__dev img { max-height: 48px; width: auto; }

/* ============== REVEAL ANIMATION ============== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
  .services__grid,
  .machines__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clients__bar { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 900px) {
  .top-bar__contact a:first-child { display: none; }
  .top-bar__inner { padding: 0 18px; gap: 18px; }
  .nav-toggle { display: flex; order: 3; align-self: center; margin-right: 18px; }
  .header__cta { display: none; }
  .header__inner { padding-left: 18px; padding-right: 0; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    pointer-events: none;
    transition:
      opacity .3s ease,
      transform .45s cubic-bezier(.16, 1, .3, 1),
      visibility .45s;
  }
  .nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav > ul { flex-direction: column; padding: 16px; gap: 0; }
  .nav > ul > li {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .nav.is-open > ul > li { opacity: 1; transform: translateY(0); }
  .nav.is-open > ul > li:nth-child(1) { transition-delay: .05s; }
  .nav.is-open > ul > li:nth-child(2) { transition-delay: .10s; }
  .nav.is-open > ul > li:nth-child(3) { transition-delay: .15s; }
  .nav.is-open > ul > li:nth-child(4) { transition-delay: .20s; }
  .nav.is-open > ul > li:nth-child(5) { transition-delay: .25s; }
  .nav.is-open > ul > li:nth-child(6) { transition-delay: .30s; }
  .nav.is-open > ul > li:nth-child(7) { transition-delay: .35s; }
  .nav .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: var(--gray-100);
    margin-top: 8px;
    display: none;
    border-top: none;
  }
  .nav .has-dropdown.is-open .dropdown { display: block; }

  .nav__cta-item { display: block; padding: 12px 4px 4px; }
  .nav__cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--green);
    color: var(--white) !important;
    padding: 14px 28px !important;
    border-radius: var(--radius-pill);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    width: 100%;
  }
  .nav__cta:hover { background: var(--green-700); }

  .hero { min-height: 520px; }
  .hero__content { padding: 170px 0 70px; }
  .hero__title { font-size: clamp(34px, 8vw, 52px); }
  .hero__control {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }
  .hero__control--prev { left: 14px; }
  .hero__control--next { right: 14px; }

  .authority__inner { grid-template-columns: 1fr; text-align: center; }
  .authority__copy p { margin-inline: auto; }

  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-inline: var(--pad-x);
  }
  .about__media,
  .contact__media {
    margin-left: 0;
    width: 100%;
    border-radius: 0;
  }
  .about__media img {
    border-radius: 0;
    height: 360px;
  }
  .contact__media { min-height: 320px; }
  .about__copy,
  .contact__form-wrap { padding-right: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 640px) {
  .services__grid,
  .machines__grid {
    grid-template-columns: 1fr;
  }
  .clients__bar { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: 1fr; gap: 28px; }
  .stat {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .stat__icon { width: 38px; height: 38px; }
  .stat__icon i { font-size: 44px; }
  .stat__txt { align-items: center; }
  .stat__label { white-space: normal; }
  .form__row { grid-template-columns: 1fr; }
  .tabs { gap: 14px; }
  .tab { font-size: 13px; }
  .seal { width: 200px; height: 200px; }
  .seal__big { font-size: 72px; }
}

.logo-menu{
  width: 220px;
}
.service-icon{
  border-radius: 999%;
}

@media screen and (max-width:767px) {
  .logo-menu{
    width: 140px;
  }
}

/* ============================================
   SERVIÇO — PÁGINA INTERNA
   ============================================ */
.servico-hero {
  position: relative;
  padding: 184px 0 78px;
  background: var(--gray-900);
  color: var(--white);
  overflow: hidden;
}
.servico-hero__bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.22;
  transform: scale(1.06);
}
.servico-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17, 17, 17, .96) 0%, rgba(17, 17, 17, .74) 46%, rgb(38 61 50 / 62%) 100%);
}
.servico-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.servico-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,.62);
  margin-bottom: 22px;
}
.servico-breadcrumb a { color: rgba(255,255,255,.62); transition: color .2s; }
.servico-breadcrumb a:hover { color: var(--green); }
.servico-breadcrumb i { font-size: 8px; color: var(--green); }
.servico-breadcrumb span[aria-current] { color: var(--white); }
.servico-hero h1 {
  font-size: clamp(22px, 4.4vw, 54px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.08;
}
.servico-hero__lead {
  margin: 18px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,.82);
  max-width: 640px;
}

/* ---- LAYOUT ---- */
.servico-main { padding: 80px 0 92px; background: var(--white); }
.servico-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 56px;
  align-items: start;
}

/* ---- FIGURA + ÍCONE ---- */
.servico-figura {
  position: relative;
  margin-bottom: 62px;
  margin-right: 0px;
  margin-left: 0px;
}
.servico-figura .img-servico {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.servico-figura__icon {
  position: absolute;
  left: 28px;
  bottom: -34px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  z-index: 2;
}
.servico-figura__icon img {
  width: 100%;
  height: 100%;
  border-radius: 999px;
  object-fit: contain;
  box-shadow: none;
}

/* ---- CORPO ---- */
.servico-corpo .eyebrow { margin-bottom: 10px; }
.servico-corpo h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 20px;
}
.servico-conteudo {
  color: var(--gray-500);
  font-size: 15.5px;
  line-height: 1.85;
}
.servico-conteudo p { margin: 0 0 18px; }
.servico-conteudo p:last-child { margin-bottom: 0; }
.servico-conteudo h2,
.servico-conteudo h3,
.servico-conteudo h4 {
  color: var(--black);
  margin: 34px 0 14px;
}
.servico-conteudo h3 { font-size: 21px; }
.servico-conteudo h4 { font-size: 17px; }
.servico-conteudo strong { color: var(--black); }
.servico-conteudo a { color: var(--green); font-weight: 700; }
.servico-conteudo a:hover { color: var(--green-700); }
.servico-conteudo img { border-radius: var(--radius-md); margin: 8px 0; }
.servico-conteudo ul,
.servico-conteudo ol {
  margin: 0 0 22px;
  display: grid;
  gap: 11px;
}
.servico-conteudo ul li {
  position: relative;
  padding-left: 30px;
}
.servico-conteudo ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 12px;
  color: var(--green);
  position: absolute;
  left: 0;
  top: 3px;
}
.servico-conteudo ol {
  list-style: decimal;
  padding-left: 22px;
}

.servico-corpo__rodape {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-200);
}

/* ---- ASIDE ---- */
.servico-aside {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 110px;
}
.servico-box {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.servico-box__title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
}
.servico-box__title::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  background: var(--green);
  border-radius: 3px;
  margin-top: 12px;
}

.servico-lista {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}
.servico-lista a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-radius: var(--radius-md);
  transition: background .2s ease, transform .2s ease;
}
.servico-lista a:hover { background: var(--gray-100); transform: translateX(3px); }
.servico-lista__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  transition: background .2s ease;
}
.servico-lista a:hover .servico-lista__icon { background: rgba(25,184,90,.12); }
.servico-lista__icon img {     border-radius: 99px; object-fit: contain; }
.servico-lista__nome {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.servico-lista__seta {
  margin-left: auto;
  font-size: 11px;
  color: var(--gray-400);
  transition: color .2s ease, transform .2s ease;
}
.servico-lista a:hover .servico-lista__seta { color: var(--green); transform: translateX(2px); }

/* ---- CARD CTA (ASIDE) ---- */
.servico-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0,122,61,.28);
}
.servico-cta-card::before {
  content: "\f0ad";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -14px;
  bottom: -22px;
  font-size: 130px;
  color: rgba(255,255,255,.10);
  pointer-events: none;
}
.servico-cta-card h3 {
  position: relative;
  font-size: 20px;
  margin-bottom: 10px;
}
.servico-cta-card p {
  position: relative;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.88);
  margin: 0 0 22px;
}
.servico-cta-card .btn { position: relative; width: 100%; justify-content: center; }
.btn--white { background: var(--white); color: var(--green-dark); }
.btn--white:hover { background: var(--gray-100); transform: translateY(-2px); }
.servico-cta-card__phone {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}
.servico-cta-card__phone i { color: var(--white); }

/* ---- FAIXA FINAL ---- */
.servico-faixa {
  position: relative;
  padding: 74px 0;
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.servico-faixa::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25,184,90,.30) 0%, rgba(25,184,90,0) 70%);
  top: -180px;
  right: -120px;
}
.servico-faixa__inner { position: relative; z-index: 1; }
.servico-faixa h2 {
  font-size: clamp(24px, 3vw, 38px);
  margin-bottom: 24px;
}
.servico-faixa h2 span { color: var(--green); }

/* ---- SERVIÇO NÃO ENCONTRADO ---- */
.servico-vazio {
  padding: 210px 0 130px;
  text-align: center;
}
.servico-vazio i {
  font-size: 60px;
  color: var(--green);
  margin-bottom: 22px;
}
.servico-vazio h1 {
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
}
.servico-vazio p {
  color: var(--gray-500);
  max-width: 460px;
  margin: 0 auto 28px;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 980px) {
  .servico-layout { grid-template-columns: 1fr; gap: 44px; }
  .servico-aside { position: static; }
}
@media (max-width: 640px) {
  .servico-hero { padding: 156px 0 58px; }
  .servico-main { padding: 60px 0 72px; }
  .servico-figura {
    margin-bottom: 56px;
  }
  .servico-figura .img-servico { height: 260px; max-width:100%; border-radius: 10px; }
  .servico-figura__icon { width: 70px; height: 70px; left: 20px; bottom: -30px; }
  .servico-vazio { padding: 170px 0 100px; }
}

/* ============================================
   EQUIPAMENTO — PÁGINA INTERNA
   (reaproveita .servico-hero / .servico-layout /
    .servico-aside / .servico-box / .servico-lista)
   ============================================ */

/* ---- META DO HERO (chips) ---- */
.equipamento-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.equipamento-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
}
.equipamento-hero__chip i { font-size: 12px; color: var(--green); }
.equipamento-hero__chip--tipo {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.equipamento-hero__chip--tipo i { color: var(--white); }

/* ---- FIGURA DO PRODUTO ---- */
.equipamento-figura { margin-bottom: 40px; }
.equipamento-figura .img-servico {
  height: 440px;
  object-fit: contain;
  background: var(--gray-100);
  padding: 28px;
}
.equipamento-figura__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(0, 122, 61, .3);
}
.equipamento-figura__badge--venda {
  background: var(--yellow-2);
  color: var(--gray-900);
  box-shadow: 0 8px 18px rgba(229, 169, 0, .3);
}

/* ---- FICHA TÉCNICA ---- */
.equipamento-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 4px 0 44px;
}
.equipamento-spec {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.equipamento-spec:hover {
  border-color: rgba(25, 184, 90, .45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.equipamento-spec__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(25, 184, 90, .1);
  color: var(--green);
  font-size: 16px;
}
.equipamento-spec__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.equipamento-spec__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
}
.equipamento-spec__value {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  word-break: break-word;
}

/* ---- CARD DE PREÇO (ASIDE) ---- */
.equipamento-preco-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(0, 122, 61, .28);
}
.equipamento-preco-card::before {
  content: "\f0d6";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -16px;
  bottom: -26px;
  font-size: 124px;
  color: rgba(255, 255, 255, .1);
  pointer-events: none;
}
.equipamento-preco-card__tag {
  position: relative;
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .18);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.equipamento-preco-card__label {
  position: relative;
  display: block;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
}
.equipamento-preco-card__value {
  position: relative;
  display: block;
  margin: 4px 0 22px;
  font-size: clamp(23px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.2;
}
.equipamento-preco-card .btn { position: relative; width: 100%; justify-content: center; }
.equipamento-preco-card__phone {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  font-weight: 800;
  font-size: 15px;
  color: var(--white);
}
.equipamento-preco-card__phone i { color: var(--white); }

/* ---- LISTA "OUTROS EQUIPAMENTOS" ---- */
.equipamento-lista__thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--gray-100);
}
.equipamento-lista__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.equipamento-lista__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.equipamento-lista__preco {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
}

/* ---- GALERIA DO EQUIPAMENTO ---- */
.equipamento-galeria { margin-top: 52px; }
.equipamento-galeria .eyebrow { margin-bottom: 10px; }
.equipamento-galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4px;
}
.equipamento-galeria__item {
  margin: 0;
  min-width: 0;
}
.equipamento-galeria__botao {
  position: relative;
  display: block;
  width: 100%;
  height: 196px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.equipamento-galeria__botao img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.equipamento-galeria__botao:hover img,
.equipamento-galeria__botao:focus-visible img { transform: scale(1.06); }
.equipamento-galeria__botao:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

/* ícone de ampliar (aparece no hover) */
.equipamento-galeria__zoom {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 18px;
  color: var(--white);
  background: rgba(17, 17, 17, .34);
  opacity: 0;
  transition: opacity .3s ease;
}
.equipamento-galeria__botao:hover .equipamento-galeria__zoom,
.equipamento-galeria__botao:focus-visible .equipamento-galeria__zoom { opacity: 1; }

/* "+N ver galeria" na última miniatura */
.equipamento-galeria__mais {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 2px;
  color: var(--white);
  background: rgba(17, 17, 17, .58);
  backdrop-filter: blur(2px);
  transition: background .3s ease;
}
.equipamento-galeria__botao:hover .equipamento-galeria__mais { background: rgba(17, 17, 17, .68); }
.equipamento-galeria__mais strong {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.1;
}
.equipamento-galeria__mais small {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, .82);
}
.equipamento-galeria__item figcaption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--gray-500);
}

/* ---- LIGHTBOX ---- */
body.lightbox-aberto { overflow: hidden; }
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  padding: 64px 24px 22px;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, .95);
}
.lightbox > *:not(.lightbox__backdrop) { position: relative; }

.lightbox__palco {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0;
  min-height: 0;
}
.lightbox__img {
  max-width: 100%;
  max-height: calc(100vh - 250px);
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .5);
}
.lightbox__legenda {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.lightbox__titulo {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.lightbox__titulo[hidden] { display: none; }
.lightbox__contador {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
}

.lightbox__close,
.lightbox__nav {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 16px;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.06);
}
.lightbox .lightbox__close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
}
.lightbox__nav--prev { grid-column: 1; grid-row: 1; justify-self: start; }
.lightbox__nav--next { grid-column: 3; grid-row: 1; justify-self: end; }
.lightbox__nav[hidden] { display: none; }

.lightbox__thumbs {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  padding: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.25) transparent;
}
.lightbox__thumbs::-webkit-scrollbar { height: 6px; }
.lightbox__thumbs::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, .25);
  border-radius: var(--radius-pill);
}
.lightbox__thumbs[hidden] { display: none; }
.lightbox__thumb {
  flex: 0 0 auto;
  width: 74px;
  height: 54px;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-sm);
  opacity: .45;
  border: 2px solid transparent;
  transition: opacity .25s ease, border-color .25s ease;
}
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; }
.lightbox__thumb:hover { opacity: .85; }
.lightbox__thumb.is-ativo {
  opacity: 1;
  border-color: var(--green);
}

/* ---- RESPONSIVO ---- */
@media (max-width: 900px) {
  .equipamento-galeria__botao { height: 160px; }
}

@media (max-width: 640px) {
  .equipamento-figura { margin-bottom: 32px; }
  .equipamento-figura .img-servico { height: auto; padding: 0px 0px; width:100%}
  .equipamento-specs { grid-template-columns: 1fr; }

  .equipamento-figura__badge{
    display: none;
  }

  .equipamento-galeria { margin-top: 40px; }
  .equipamento-galeria__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .equipamento-galeria__item:nth-child(3) { grid-column: span 2; }
  .equipamento-galeria__botao { height: 140px; }
  .equipamento-galeria__item:nth-child(3) .equipamento-galeria__botao { height: 116px; }

  .lightbox {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: minmax(0, 1fr) auto auto;
    padding: 60px 14px 16px;
    gap: 14px;
  }
  .lightbox__palco { grid-column: 1; }
  .lightbox__img { max-height: calc(100vh - 260px); }
  .lightbox__nav {
    grid-column: 1;
    grid-row: 3;
    width: 42px;
    height: 42px;
  }
  .lightbox__nav--prev { justify-self: center; transform: translateX(-34px); }
  .lightbox__nav--next { justify-self: center; transform: translateX(34px); }
  .lightbox__nav--prev:hover { transform: translateX(-34px) scale(1.06); }
  .lightbox__nav--next:hover { transform: translateX(34px) scale(1.06); }
  .lightbox__thumbs { grid-column: 1; grid-row: 2; }
  .lightbox__thumb { width: 58px; height: 44px; }
}

/* ============================================
   HELP — PÁGINA NÃO ENCONTRADA (404)
   ============================================ */
.help {
  padding: 210px 0 130px;
  text-align: center;
}
.help__inner {
  max-width: 540px;
  margin-inline: auto;
}
.help__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--green);
  background: rgba(25, 184, 90, .12);
}
.help__code {
  display: block;
  font-size: clamp(96px, 17vw, 180px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(150deg, var(--green) 0%, var(--green-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.help__eyebrow { margin-bottom: 12px; }
.help h1 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 14px;
}
.help__text {
  color: var(--gray-500);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 auto 26px;
  max-width: 440px;
}
.help__redirect {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 12px;
}
.help__redirect strong {
  display: inline-block;
  min-width: 2em;
  padding: 2px 9px;
  margin: 0 2px;
  border-radius: var(--radius-sm);
  background: rgba(25, 184, 90, .12);
  color: var(--green-dark);
  font-weight: 900;
}
.help__bar {
  width: 100%;
  max-width: 300px;
  height: 6px;
  margin: 0 auto 32px;
  border-radius: var(--radius-pill);
  background: var(--gray-200);
  overflow: hidden;
}
.help__bar span {
  display: block;
  height: 100%;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  transform-origin: left center;
  animation: helpCountdown linear forwards;
}
@keyframes helpCountdown {
  from { transform: scaleX(1); }
  to   { transform: scaleX(0); }
}
@media (max-width: 640px) {
  .help { padding: 168px 0 96px; }
}

/* ============================================
   ESG — PÁGINA INTERNA
   ============================================ */
.esg-hero {
  background: linear-gradient(140deg, #0d1a12 0%, var(--gray-900) 55%, #0f2418 100%);
}
.esg-hero__glow {
  position: absolute;
  top: -280px;
  right: -260px;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(25, 184, 90, .13) 0%, rgba(25, 184, 90, .05) 45%, rgba(25, 184, 90, 0) 72%);
  pointer-events: none;
}
.esg-hero .servico-hero__overlay {
  background: linear-gradient(115deg, rgba(17, 17, 17, .82) 0%, rgba(17, 17, 17, .42) 55%, rgba(17, 17, 17, 0) 100%);
}
.esg-hero .servico-hero__lead strong { color: var(--white); }

/* ---- BLOCOS DOS PILARES ---- */
.esg-bloco { padding: 92px 0; scroll-margin-top: 96px; background: var(--white); }
.esg-bloco--claro { background: var(--gray-100); }

.esg-bloco__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}
.esg-bloco__aside {
  position: sticky;
  top: 118px;
}
.esg-bloco__aside h2 {
  font-size: clamp(28px, 3.2vw, 42px);
  margin-top: 22px;
}
.esg-bloco__num {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.16em;
  color: var(--green);
}
.esg-bloco__num::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin-top: 12px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
}
.esg-bloco__badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--white);
  background: linear-gradient(140deg, var(--green) 0%, var(--green-dark) 100%);
  box-shadow: 0 10px 24px rgba(25, 184, 90, .28);
}

.esg-bloco__texto {
  color: var(--gray-500);
  font-size: 16.5px;
  line-height: 1.9;
  max-width: 760px;
}
.esg-bloco__texto p { margin: 0 0 24px; }
.esg-bloco__texto p:last-child { margin-bottom: 0; }
.esg-bloco__texto strong { color: var(--black); }

.esg-destaque {
  position: relative;
  padding: 22px 24px 22px 58px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(25, 184, 90, .28);
  color: var(--gray-700);
  font-size: 15px;
  line-height: 1.75;
}
.esg-bloco:not(.esg-bloco--claro) .esg-destaque { background: var(--gray-100); }
.esg-destaque > i {
  position: absolute;
  left: 22px;
  top: 24px;
  font-size: 20px;
  color: var(--green);
}

/* ---- PROJETO IMPACTANDO VIDAS ---- */
.esg-projeto {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  margin-bottom: 30px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, #f2fbf5 0%, #eaf7ef 100%);
  border: 1px solid rgba(25, 184, 90, .22);
}
.esg-projeto__logo {
  width: 100%;
  mix-blend-mode: multiply;
}
.esg-projeto p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15.5px;
  line-height: 1.8;
}
.esg-projeto p strong { color: var(--green-dark); }

/* ---- SELOS ---- */
.esg-selos {
  padding: 96px 0;
  background: var(--white);
  scroll-margin-top: 96px;
}
.esg-selos .section-head { margin-bottom: 44px; }
.esg-selos .section-head .eyebrow { margin-bottom: 0; }
.esg-selos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.esg-selo {
  margin: 0;
  padding: 34px 28px 30px;
  text-align: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.esg-selo:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(25, 184, 90, .3);
}
.esg-selo__img {
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  margin: 0 auto 22px;
}
.esg-selo__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.esg-selo figcaption { display: grid; gap: 6px; }
.esg-selo figcaption strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
}
.esg-selo figcaption span {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ---- RESPONSIVO ---- */
@media (max-width: 980px) {
  .esg-bloco__grid { grid-template-columns: 1fr; gap: 32px; }
  .esg-bloco__aside { position: static; }
  .esg-bloco__aside h2 { margin-top: 16px; }
  .esg-bloco__texto { max-width: none; }
  .esg-selos__grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

@media (max-width: 640px) {
  .esg-hero { padding: 156px 0 58px; }
  .esg-hero h1 br { display: none; }
  .esg-bloco { padding: 68px 0; }
  .esg-bloco__badge { width: 52px; height: 52px; font-size: 20px; }
  .esg-bloco__texto { font-size: 15.5px; line-height: 1.85; }
  .esg-projeto {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 26px 22px;
    text-align: center;
  }
  .esg-projeto__logo { max-width: 260px; margin-inline: auto; }
  .esg-projeto p { text-align: left; }
  .esg-selos { padding: 68px 0; }
  .esg-selos__grid { grid-template-columns: 1fr; max-width: 340px; margin-inline: auto; }
  .esg-selo__img { width: 150px; height: 150px; }
}
