/* ============================================================
   URUZ TRADE — rebuilt 1:1 from Figma
   Pure HTML/CSS/JS — zero libraries
   ============================================================ */

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

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

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

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

/* Variables */
:root {
  --green: #236C5B;
  --green-dk: #162925;
  --black: #0A0A0A;
  --bg: #F0F0F0;
  --white: #FFFFFF;
  --muted: #6B6B6B;
  --mid: #ADB3AB;
  --fh: 'Space Grotesk', sans-serif;
  --fb: 'Inter', sans-serif;
  --max-w: 1200px;
  --hh: 101px;
  --r: 8px;
  --rb: 4px;
}

html {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--black);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  animation: pageIn .4s ease-out;
}

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

/* Page wrapper — 2px vertical gaps between sections */
.page {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Diagonal crosshatch pattern (inspired by AbacatePay)
   Compound selectors ensure specificity beats base component backgrounds */
.hatch,
.hatch.hero__side,
.hatch.row__side,
.hatch.row__side-half,
.hatch.sobre-block {
  background:
    var(--white)
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 9px,
      rgba(0, 0, 0, .045) 9px,
      rgba(0, 0, 0, .045) 10px
    );
}

/* Stacked side panels (2 blocks with 2px gap) */
.row__side-stack {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.row__side-stack--l .row__side-half {
  border-radius: 0 var(--r) var(--r) 0;
}

.row__side-stack--r .row__side-half {
  border-radius: var(--r) 0 0 var(--r);
}

.row__side-half {
  flex: 1;
  background: var(--white);
}

/* .row__side-half.hatch — inherits from .hatch */

/* Gradient text */
.g-text {
  color: #5A5A5A;
}

/* ── Row pattern ─────────────────────────────────────────── */
.row {
  display: flex;
  gap: 2px;
  width: 100%;
  background: var(--bg);
}

.row__side {
  flex: 1;
  min-width: 0;
  background: var(--white);
}

.row__side--l {
  border-radius: 0 var(--r) var(--r) 0;
}

.row__side--r {
  border-radius: var(--r) 0 0 var(--r);
}

/* .row__side.hatch — inherits from .hatch */

.row__center {
  width: var(--max-w);
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
}

/* ── HEADER ─────────────────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: var(--max-w);
  margin: 0 auto 2px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: 0 4px 150.8px rgba(0, 0, 0, .10);
  height: var(--hh);
  display: flex;
  align-items: center;
  padding: 0 60px;
  justify-content: space-between;
  gap: 16px;
}

.header__logo {
  flex-shrink: 0;
}

.header__logo img {
  height: 41px;
  width: auto;
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .14px;
  color: #232323;
  white-space: nowrap;
  border-radius: var(--rb);
  transition: background .2s, color .2s;
}

.nav-link:hover {
  background: #F8F8F8;
}

.nav-link--active {
  background: #F8F8F8;
}

.nav-link--disabled {
  color: #CACACA;
  pointer-events: none;
}

.nav-badge {
  background: #67837C;
  color: #E0E0E0;
  font-size: 8px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 300px;
  line-height: 17px;
}

.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--green);
  color: var(--white);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .14px;
  border-radius: var(--rb);
  width: 225px;
  max-width: 100%;
  height: 49px;
  flex-shrink: 0;
  transition: background .2s;
  white-space: nowrap;
}

.btn-cta:hover {
  background: var(--green-dk);
}

.btn-cta img {
  width: 16px;
  height: 16px;
}

/* Mobile CTA inside nav — hidden on desktop */
.btn-cta--mob {
  display: none;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 201;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

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

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

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

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  display: flex;
  gap: 2px;
  background: var(--bg);
  height: 840px;
}

.hero__side {
  flex: 1;
  min-width: 0;
  background: var(--white);
}

/* .hero__side.hatch — inherits from .hatch */

.hero__side--l {
  border-radius: 0 var(--r) var(--r) 0;
}

.hero__side--r {
  border-radius: var(--r) 0 0 var(--r);
}

.hero__center {
  width: var(--max-w);
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--r);
  position: relative;
  z-index: 1;
  height: 840px;
  display: flex;
  align-items: center;
  /* overflow: visible so absolute children extend beyond */
}

/* Decorative absolute children — positioned relative to hero__center */
.hero__vector {
  position: absolute;
  left: 420px;
  top: -777px;
  width: 2227px;
  height: 1550px;
  pointer-events: none;
  z-index: 1;
}

.hero__container {
  position: absolute;
  left: 576px;
  top: -103px;
  width: 708px;
  height: 710px;
  pointer-events: none;
  z-index: 2;
  object-fit: cover;
}

.hero__card {
  position: absolute;
  background: #F1F1F1;
  border: 0.74px solid var(--green);
  border-radius: 5.89px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  z-index: 7;
  box-shadow: 8px 8px 24px rgba(0, 0, 0, .05);
}

.hero__card--eff {
  left: 676px;
  top: 228px;
}

.hero__card--gama {
  left: 998px;
  top: 580px;
}

.hero__card img {
  width: 42px;
  height: 29px;
  flex-shrink: 0;
}

.hero__card-text {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 10.3px;
  color: #2C2C2C;
  text-transform: uppercase;
  line-height: 1.2;
  width: 63px;
}

.hero__content {
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 5;
  max-width: 640px;
}

.hero__loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.hero__loc-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.hero__loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 16px;
  flex: 0 0 auto;
  position: relative;
  align-self: stretch;
  background: rgba(10, 10, 10, .06);
  border-radius: var(--rb);
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .96px;
  line-height: 18px;
  text-transform: uppercase;
  color: #6B6B6B;
  white-space: nowrap;
}

.hero__main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero__h1 {
  font-family: var(--fh);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -3.14px;
  text-transform: uppercase;
  color: var(--black);
  max-width: 583px;
}

.hero__p {
  font-family: var(--fb);
  font-size: 20px;
  line-height: 1.5;
  color: #5A5A5A;
  max-width: 506px;
}

.hero__p strong {
  font-weight: 800;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14px;
  border-radius: var(--rb);
  width: 225px;
  max-width: 100%;
  height: 49px;
  flex-shrink: 0;
  transition: background .2s;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--green-dk);
}

.btn-primary img {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 33px;
  border: 1.16px solid rgba(10, 10, 10, .15);
  border-radius: var(--rb);
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14px;
  color: var(--black);
  height: 51px;
  transition: background .2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, .04);
}

/* ── GALLERY ────────────────────────────────────────────── */
.gallery {
  display: flex;
  height: 498px;
  width: 100%;
  overflow: hidden;
}

.gallery__item {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
}

.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ── SECTION 2 — SOBRE NÓS ──────────────────────────────── */
.sobre-nos__inner {
  padding: 84px 96px 120px;
  position: relative;
}

.sobre-nos__inner::before {
  content: '';
  position: absolute;
  top: 93px;
  left: 96px;
  right: 96px;
  height: 1px;
  background: rgba(0, 0, 0, .08);
}

.sobre-nos__cols {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.sobre-nos__col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.sobre-nos__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sobre-nos__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #ADB3AB;
  background: var(--white);
  flex-shrink: 0;
}

.sobre-nos__col--hi .sobre-nos__dot {
  background: var(--green);
  border: 1.16px solid var(--white);
  box-shadow: 0 0 0 1.16px var(--green);
}

.sobre-nos__year {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.13px;
  color: #ACACAC;
  line-height: 1;
}

.sobre-nos__col--hi .sobre-nos__year {
  font-size: 32px;
  color: var(--green);
}

.sobre-nos__text {
  font-family: var(--fb);
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 270px;
}

/* removed: .sobre-nos__text p+p — never applies, <p> are direct children */

.sobre-nos__col--hi .sobre-nos__body {
  padding: 0 12px 20px;
  border-bottom: 1px solid #F1F1F1;
}

.sobre-nos__col--hi .sobre-nos__text {
  color: var(--green);
}

.ml {
  color: #C09000;
  font-weight: 700;
}

.shopee {
  color: #E76800;
  font-weight: 700;
}

/* ── VIDEO ──────────────────────────────────────────────── */
.video-sec {
  width: 100%;
  height: 664px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.video-sec video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── ATUAÇÃO ────────────────────────────────────────────── */
.atuacao__inner {
  padding: 120px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.atuacao__hdr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 980px;
  max-width: 100%;
}

.atuacao__tag {
  font-family: var(--fb);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: #2F2F2F;
}

.atuacao__h2 {
  font-family: var(--fh);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.32px;
  color: var(--black);
  text-align: center;
}

.atuacao__desc {
  font-family: var(--fb);
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
  width: 980px;
  max-width: 100%;
  margin-top: 24px;
}

.atuacao__grid {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-top: 60px;
  align-items: flex-start;
}

.atuacao__item {
  flex: 1;
  min-width: 0;
  border-top: 1px solid rgba(0, 0, 0, .15);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.atuacao__num {
  font-family: var(--fh);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -.13px;
  color: var(--black);
}

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

.atuacao__icon {
  width: 40px;
  height: 40px;
  background: rgba(10, 10, 10, .04);
  border-radius: var(--rb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.atuacao__icon img {
  width: 18px;
  height: 18px;
}

.atuacao__txt {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.atuacao__title {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -.56px;
  color: var(--black);
  line-height: 1.2;
}

.atuacao__sub {
  font-family: var(--fb);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .72px;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  width: 100%;
  padding: 60px 24px 21px;
  display: flex;
  flex-direction: column;
  gap: 68px;
  align-items: center;
}

.footer__main {
  max-width: 1393px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.footer__brand {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.footer__brand-top {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer__logo img {
  height: 41px;
  width: auto;
}

.footer__nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
  padding-right: 48px;
}

.footer__nav-links a {
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -.4px;
  color: var(--mid);
  transition: color .2s;
  white-space: nowrap;
  line-height: 1.2;
}

.footer__nav-links a:hover {
  color: var(--white);
}

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

.footer__social-lbl {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: #A9A9A9;
}

.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fh);
  font-size: 20px;
  font-weight: 500;
  color: var(--mid);
  transition: color .2s;
}

.footer__social-link:hover {
  color: var(--white);
}

.footer__social-link img {
  width: 30px;
  height: 30px;
}

.footer__right {
  display: flex;
  gap: 41px;
  align-items: flex-end;
}

.footer__map-col {
  display: flex;
  flex-direction: column;
  gap: 41px;
}

.footer__map-box {
  width: 288px;
  height: 184px;
  background: #D9D9D9;
  border-radius: var(--rb);
  overflow: hidden;
  flex-shrink: 0;
}

.footer__map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

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

.footer__info-col {
  width: 349px;
  min-height: 271px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}

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

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

.footer__lbl {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: #A9A9A9;
  white-space: nowrap;
}

.footer__val {
  font-family: var(--fh);
  font-size: 16px;
  font-weight: 400;
  color: var(--mid);
  line-height: 1.4;
  white-space: nowrap;
}

.footer__val a {
  color: inherit;
  transition: color .2s;
}

.footer__val a:hover {
  color: var(--white);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer__company {
  font-family: var(--fb);
  font-size: 14px;
  font-weight: 500;
  color: #989898;
  line-height: 1.3;
}

.footer__copy {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: #959595;
  line-height: 1.3;
}

.footer__made {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: #989898;
  line-height: 1.3;
  margin-top: 16px;
}

.footer__made strong {
  text-decoration: underline;
  font-weight: 700;
}

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

.footer__banner {
  max-width: 1392px;
  width: 100%;
  background: rgba(255, 255, 255, .2);
  border-radius: var(--rb);
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.footer__banner-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px 64px;
  height: 160px;
}

.footer__banner-content {
  display: flex;
  gap: 36px;
  align-items: center;
}

.footer__wa {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 238px;
}

.footer__contact-lbl {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
}

.footer__phone-row {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 28px;
  line-height: 1.2;
}

.footer__copy-btn {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--rb);
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .15s;
}

.footer__copy-btn:hover {
  background: rgba(255, 255, 255, .3);
  transform: scale(1.1);
}

.footer__copy-btn.copied {
  background: rgba(255, 255, 255, .35);
  white-space: nowrap;
}

.footer__paren {
  font-weight: 300;
  color: #A5A5A5;
}

.footer__phone-num {
  font-family: var(--fh);
  font-weight: 400;
  color: #ECEEEC;
  letter-spacing: -.56px;
}

.footer__banner-arrow {
  width: 180px;
  height: 160px;
  flex-shrink: 0;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════
   SOBRE PAGE
   ═══════════════════════════════════════════════════════════ */
/* Grid garante alinhamento entre colunas — linhas cruzam ambas.
   Rows: [1fr hatch-R / text-top] [491px img / text-bottom] [auto mission / caption-top] [324px hatch-L / caption-bottom] */
.sobre-hero__center {
  width: var(--max-w);
  flex-shrink: 0;
  background: var(--bg);
  border-radius: var(--r);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 491px auto 324px;
  gap: 2px;
  height: 1199px;
}

.sobre-hero__col {
  display: contents;
}

.sobre-block {
  background: var(--white);
  border-radius: var(--r);
}

/* Left column grid placement */
.sobre-block--text {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 36px;
  justify-content: center;
  padding: 60px;
}

.sobre-block--mission {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  align-items: center;
  padding: 60px;
}

.sobre-hero__col:first-child .sobre-block--grow {
  grid-column: 1;
  grid-row: 4;
}

/* Right column grid placement */
.sobre-hero__col:last-child .sobre-block--grow {
  grid-column: 2;
  grid-row: 1;
}

.sobre-block--img {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  overflow: hidden;
}

.sobre-block--img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sobre-block--caption {
  grid-column: 2;
  grid-row: 3 / 5;
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px;
  justify-content: center;
}

.sobre-tag {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre-tag__line {
  width: 32px;
  height: 1px;
  background: #6F6F6F;
  flex-shrink: 0;
}

.sobre-tag__text {
  font-family: var(--fb);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.32px;
  text-transform: uppercase;
  color: #6F6F6F;
}

.sobre-h1 {
  font-family: var(--fh);
  font-size: 44px;
  font-weight: 700;
  letter-spacing: -1.32px;
  line-height: 1.1;
  color: #5A5A5A;
}

.sobre-sub {
  font-family: var(--fh);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--muted);
}

.sobre-mission {
  font-family: var(--fh);
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(to bottom, #236C5B, #162925);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.sobre-caption-h2 {
  font-family: var(--fh);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.32px;
  line-height: 1.2;
}

.sobre-caption-p {
  font-family: var(--fb);
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
}

.compromisso__inner {
  padding: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

.compromisso__h2 {
  font-family: var(--fh);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.32px;
  line-height: 1.2;
  width: 980px;
  max-width: 100%;
}

.compromisso__p {
  font-family: var(--fb);
  font-size: 20px;
  line-height: 1.5;
  color: var(--muted);
  width: 980px;
  max-width: 100%;
}

/* removed: .compromisso__p p+p — never applies, <p> are siblings not nested */

/* ═══════════════════════════════════════════════════════════
   MICRO-INTERACTIONS
   ═══════════════════════════════════════════════════════════ */

/* Parallax — GPU-accelerated, only transform/opacity */
.hero__container,
.hero__card {
  will-change: transform;
}

/* Scroll-reveal: elements start hidden, animate in */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

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

/* Stagger delays for children */
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* Hero content entrance — on page load */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__loc      { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .2s both; }
.hero__h1       { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .35s both; }
.hero__p        { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .5s both; }
.hero__actions  { animation: heroFadeUp .8s cubic-bezier(.16,1,.3,1) .6s both; }

/* Container + cards entrance */
@keyframes heroSlideIn {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__container { animation: heroSlideIn 1s cubic-bezier(.16,1,.3,1) .4s both; }
.hero__card--eff { animation: heroSlideIn .8s cubic-bezier(.16,1,.3,1) .7s both; }
.hero__card--gama { animation: heroSlideIn .8s cubic-bezier(.16,1,.3,1) .9s both; }

/* Container gentle sway — applied after entrance via JS (el.style.animation = 'none' clears entrance,
   then JS parallax controls transform; sway uses a separate property via CSS custom property) */
@keyframes containerSway {
  0%, 100% { rotate: 0deg; }
  25%      { rotate: .6deg; }
  75%      { rotate: -.6deg; }
}

.hero__container.sway {
  animation: containerSway 6s ease-in-out infinite;
}

/* Card float — subtle hovering motion */
@keyframes cardFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -6px; }
}

/* Card border beam — green glow pulse on border */
@keyframes cardGlow {
  0%, 100% { border-color: var(--green); box-shadow: 8px 8px 24px rgba(0,0,0,.05); }
  50%      { border-color: rgba(35,108,91,.6); box-shadow: 0 0 12px rgba(35,108,91,.2), 8px 8px 24px rgba(0,0,0,.05); }
}

.hero__card.float {
  animation-name: cardFloat, cardGlow;
  animation-duration: 3.5s, 3s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
}

.hero__card--gama.float {
  animation-name: cardFloat, cardGlow;
  animation-duration: 4s, 3.5s;
  animation-timing-function: ease-in-out, ease-in-out;
  animation-iteration-count: infinite, infinite;
  animation-delay: .8s, .4s;
}

/* Gallery hover: subtle zoom already exists (.gallery__item:hover img scale 1.04) */

/* Button micro-interactions — subtle lift on hover */
.btn-primary,
.btn-cta,
.btn-ghost {
  transition: background .2s, transform .2s, box-shadow .2s;
}

.btn-primary:hover,
.btn-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(35, 108, 91, .25);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.btn-primary:active,
.btn-cta:active,
.btn-ghost:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Timeline dots — pulse on reveal */
@keyframes dotPulse {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.3); }
  100% { transform: scale(1); opacity: 1; }
}

.sobre-nos__dot {
  transition: none;
}

.reveal.visible .sobre-nos__dot {
  animation: dotPulse .5s cubic-bezier(.16,1,.3,1) forwards;
}

/* Footer banner — subtle glow on hover */
.footer__banner-main {
  transition: box-shadow .3s;
}

.footer__banner:hover .footer__banner-main {
  box-shadow: 0 0 20px rgba(35, 108, 91, .15);
}

/* Sobre page — blocks reveal */
.sobre-block {
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}

/* ── Timeline beam ─────────────────────────────────────── */
@keyframes beamSlide {
  0%   { left: -80px; }
  100% { left: 100%; }
}

.sobre-nos__inner::after {
  content: '';
  position: absolute;
  top: 93px;
  left: -80px;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  pointer-events: none;
}

.sobre-nos__inner.beam-active::after {
  opacity: 1;
  animation: beamSlide 3s ease-in-out infinite;
}

/* ── Atuação beam ──────────────────────────────────────── */
@keyframes beamLine {
  0%   { left: -60px; }
  100% { left: 100%; }
}

.atuacao__item {
  position: relative;
  overflow: hidden;
}

.atuacao__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60px;
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  pointer-events: none;
}

.atuacao__item.beam-active::after {
  opacity: 1;
  animation: beamLine 2.5s ease-in-out infinite;
}

.atuacao__item:nth-child(2).beam-active::after { animation-delay: .8s; }
.atuacao__item:nth-child(3).beam-active::after { animation-delay: 1.6s; }

/* ── Shimmer/glint on headings ─────────────────────────── */
@keyframes shimmerSlide {
  0%, 100% { left: -100%; }
  50%      { left: 100%; }
}

.shimmer-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.shimmer-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  animation: shimmerSlide 5s ease-in-out infinite;
  pointer-events: none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  body { animation: none !important; }
  .reveal,
  .hero__loc, .hero__h1, .hero__p, .hero__actions,
  .hero__container, .hero__card--eff, .hero__card--gama,
  .sobre-block {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero__container, .hero__card { will-change: auto; }
  .hero__container.sway,
  .hero__card.float { animation: none !important; }
  .sobre-nos__inner::after,
  .atuacao__item::after,
  .shimmer-wrap::after { animation: none !important; opacity: 0 !important; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — Senior audit across all breakpoints
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (≤1280px) ──────────────────────────────────── */
@media (max-width: 1280px) {

  .hero__vector,
  .hero__card {
    display: none;
  }

  /* Hero: container visível, reposicionado em flow */
  .hero__container {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 40px auto 0;
    display: block;
    pointer-events: none;
    z-index: 2;
  }

  .hero__center {
    overflow: hidden;
    flex-direction: column;
    align-items: center;
  }

  /* Header: fit dentro da viewport */
  .header {
    width: calc(100% - 48px);
    max-width: var(--max-w);
    padding: 0 36px;
  }

  /* Row center panels: não estourar */
  .row__center,
  .hero__center,
  .sobre-hero__center {
    max-width: 100%;
    flex-shrink: 1;
  }

  /* Hero: conteúdo cabe mesmo sem decorativos */
  .hero__content {
    padding: 40px 40px 60px;
    max-width: 560px;
  }

  .hero__h1 {
    font-size: 56px;
    max-width: 100%;
  }

  /* Hero: height flexível */
  .hero {
    height: auto;
  }

  .hero__center {
    height: auto;
  }

  /* Sobre hero: revert grid → flex column stack */
  .sobre-hero__center {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-rows: none;
    height: auto;
  }

  .sobre-hero__col {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .sobre-block--grow {
    display: none;
  }

  .sobre-block--text,
  .sobre-block--mission,
  .sobre-block--img,
  .sobre-block--caption {
    grid-column: auto;
    grid-row: auto;
  }

  .sobre-block--img {
    height: 360px;
  }

  .sobre-block--text {
    padding: 48px 40px;
  }

  .sobre-block--mission {
    padding: 40px;
  }

  .sobre-block--caption {
    padding: 40px;
    gap: 36px;
  }

  .sobre-h1 {
    font-size: 36px;
  }

  .sobre-sub {
    font-size: 26px;
  }

  .sobre-mission {
    font-size: 28px;
  }

  .sobre-caption-h2 {
    font-size: 32px;
  }

  /* Timeline: paddings menores */
  .sobre-nos__inner {
    padding: 60px 48px 80px;
  }

  .sobre-nos__inner::before {
    left: 48px;
    right: 48px;
  }

  /* Atuação: padding menor */
  .atuacao__inner {
    padding: 80px 36px;
  }

  /* Compromisso: padding menor */
  .compromisso__inner {
    padding: 80px 48px;
  }
}

/* ── Mobile (≤960px) ───────────────────────────────────── */
@media (max-width: 960px) {

  /* ─ Header ─ */
  .header {
    width: calc(100% - 24px);
    padding: 0 24px;
    height: 64px;
  }

  .header__logo img {
    height: 30px;
  }

  .btn-cta--desk {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header__nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px;
  }

  .header__nav.open {
    display: flex;
  }

  .header__nav .nav-link {
    font-size: 20px;
    padding: 14px 24px;
  }

  .header__nav .btn-cta--mob {
    display: flex;
    margin-top: 24px;
    width: 100%;
    max-width: 300px;
  }

  /* ─ Layout: esconde painéis laterais ─ */
  .row__side,
  .row__side-stack,
  .hero__side {
    display: none;
  }

  .row__center,
  .hero__center {
    width: 100%;
    border-radius: 0;
  }

  /* ─ Hero ─ */
  .hero {
    height: auto;
  }

  .hero__center {
    height: auto;
  }

  .hero__container {
    max-width: 340px;
    margin: 32px auto 0;
  }

  .hero__content {
    padding: 32px 24px 48px;
    max-width: 100%;
  }

  .hero__h1 {
    font-size: clamp(32px, 8vw, 48px);
    letter-spacing: -2px;
    max-width: 100%;
  }

  .hero__p {
    font-size: 16px;
    max-width: 100%;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .hero__actions .btn-ghost {
    width: 100%;
  }

  /* ─ Gallery ─ */
  .gallery {
    flex-wrap: wrap;
    height: auto;
  }

  .gallery__item {
    flex: 0 0 50%;
    aspect-ratio: 4/3;
  }

  /* ─ Sobre Nós (timeline) ─ */
  .sobre-nos__inner {
    padding: 48px 24px 60px;
  }

  .sobre-nos__inner::before {
    left: 24px;
    right: 24px;
  }

  .sobre-nos__cols {
    flex-direction: column;
    gap: 32px;
  }

  .sobre-nos__text {
    height: auto;
  }

  /* ─ Video ─ */
  .video-sec {
    height: clamp(220px, 56vw, 664px);
  }

  /* ─ Atuação ─ */
  .atuacao__inner {
    padding: 60px 24px;
  }

  .atuacao__h2 {
    font-size: clamp(24px, 6vw, 40px);
  }

  .atuacao__desc {
    font-size: 16px;
  }

  .atuacao__grid {
    flex-direction: column;
  }

  .atuacao__hdr,
  .atuacao__desc {
    width: 100%;
  }

  .atuacao__title {
    font-size: 22px;
  }

  /* ─ Footer ─ */
  .footer {
    gap: 40px;
    padding: 48px 20px 16px;
  }

  .footer__main {
    flex-direction: column;
    gap: 40px;
    align-items: stretch;
  }

  .footer__brand {
    width: 100%;
    gap: 40px;
  }

  .footer__brand-top {
    gap: 32px;
  }

  .footer__nav-links {
    padding-right: 0;
  }

  .footer__right {
    flex-direction: column;
    gap: 32px;
    align-items: stretch;
  }

  .footer__map-col {
    gap: 20px;
  }

  .footer__map-box {
    width: 100%;
    height: 200px;
  }

  .footer__info-col {
    width: 100%;
    min-height: auto;
  }

  .footer__val {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .footer__company {
    word-break: break-word;
  }

  .footer__banner {
    width: 100%;
  }

  .footer__banner-main {
    padding: 24px 20px;
    height: auto;
  }

  .footer__banner-content {
    gap: 16px;
  }

  .footer__contact-info {
    width: auto;
  }

  .footer__phone-row {
    font-size: 22px;
  }

  .footer__banner-arrow {
    display: none;
  }

  /* ─ Sobre page ─ */
  .sobre-hero__center {
    width: 100%;
    border-radius: 0;
  }

  .sobre-block--text {
    padding: 48px 24px;
    gap: 24px;
  }

  .sobre-block--mission {
    padding: 36px 24px;
  }

  .sobre-block--img {
    height: 300px;
  }

  .sobre-block--caption {
    padding: 36px 24px;
    gap: 32px;
  }

  .sobre-h1 {
    font-size: clamp(28px, 7vw, 44px);
  }

  .sobre-sub {
    font-size: clamp(20px, 5vw, 32px);
  }

  .sobre-mission {
    font-size: clamp(22px, 5.5vw, 36px);
  }

  .sobre-caption-h2 {
    font-size: clamp(24px, 6vw, 40px);
  }

  .sobre-caption-p {
    font-size: 16px;
  }

  .compromisso__inner {
    padding: 60px 24px;
    gap: 12px;
  }

  .compromisso__h2 {
    font-size: clamp(24px, 6vw, 40px);
    width: 100%;
  }

  .compromisso__p {
    font-size: 16px;
    width: 100%;
  }
}

/* ── Small mobile (≤480px) ─────────────────────────────── */
@media (max-width: 480px) {

  .gallery__item {
    flex: 0 0 100%;
  }

  .hero__container {
    max-width: 280px;
    margin: 24px auto 0;
  }

  .hero__loc-badge {
    font-size: 10px;
    padding: 6px 12px;
    letter-spacing: .6px;
  }

  .footer__phone-row {
    font-size: 18px;
    gap: 4px;
  }

  .footer__social-link img {
    width: 24px;
    height: 24px;
  }

  .atuacao__body {
    flex-direction: column;
  }
}