:root {
  /* Títulos = mesma família da hero; corpo = Outfit (body) */
  --font-heading: 'DM Sans', 'Outfit', system-ui, sans-serif;
  --green-dark:  #1a3a2a;
  --green-mid:   #2d6a4f;
  --green-main:  #3a8f66;
  --green-light: #52b788;
  --green-pale:  #d8f3dc;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --off-white:   #f7f5f0;
  --warm-white:  #fdfcfa;
  --charcoal:    #1c1c1c;
  --mid-gray:    #6b7280;
  --border:      rgba(42,110,79,0.15);
  --shadow-g:    0 8px 40px rgba(29,90,60,0.12);
  --shadow-soft: 0 20px 50px rgba(26, 58, 42, 0.08);
  --radius-pill: 9999px;
  --radius-lg:   22px;
  --radius-xl:   28px;
  --radius-md:   16px;
  --accent-mesh: radial-gradient(ellipse 100% 80% at 10% 0%, rgba(82, 183, 136, 0.12), transparent 50%),
    radial-gradient(ellipse 80% 60% at 90% 100%, rgba(201, 168, 76, 0.08), transparent 45%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--warm-white);
  background-image:
    radial-gradient(ellipse 100% 50% at 50% -8%, rgba(82, 183, 136, 0.07), transparent 52%),
    radial-gradient(ellipse 70% 40% at 100% 20%, rgba(201, 168, 76, 0.04), transparent 50%);
  color: var(--charcoal);
  overflow-x: hidden;
}

#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10040;
  padding: 16px 4% 0;
  min-height: 0;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
  background: transparent;
  transition: padding 0.35s ease, background 0.4s ease;
  pointer-events: auto;
  isolation: isolate;
}
#navbar:not(.scrolled) {
  background: transparent;
  box-shadow: none;
}

#navbar.scrolled {
  padding: 10px 4% 10px;
}

.nav-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  min-height: 64px;
  min-width: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px 12px 26px;
  border-radius: var(--radius-pill);
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease, transform 0.35s ease;
  flex-wrap: wrap;
}
#navbar:not(.scrolled) .nav-bar-inner {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#navbar.scrolled .nav-bar-inner {
  background: rgba(253, 252, 250, 0.92);
  border-color: rgba(42, 110, 79, 0.1);
  box-shadow: 0 4px 32px rgba(0,0,0,0.08), 0 1px 0 rgba(255,255,255,0.8) inset;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

#navbar.scrolled .nav-link { color: var(--green-dark); }
#navbar.scrolled .nav-link:hover { color: var(--green-main); }
#navbar.scrolled .nav-logo .logo-img-symbol { display: none; }
#navbar.scrolled .nav-logo .logo-img-word {
  display: block;
  filter: none;
  height: auto;
  max-height: 44px;
  width: auto;
  max-width: min(260px, 72vw);
}
#navbar:not(.scrolled) .nav-logo .logo-img-word { display: none; }
#navbar:not(.scrolled) .nav-logo .logo-img-symbol { display: block; }
.nav-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 0;
  max-width: min(280px, 58vw);
  flex-shrink: 1;
}
.logo-img { transition: filter 0.45s ease, transform 0.3s ease; }
.nav-logo .logo-img-symbol {
  height: 40px;
  width: auto;
  max-width: 100%;
  filter: brightness(0) invert(1) drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}
.nav-logo .logo-img-word {
  display: none;
  height: auto;
  max-height: 44px;
  width: auto;
  max-width: min(260px, 72vw);
  filter: none;
}
#navbar.scrolled .nav-logo:hover .logo-img-word { transform: scale(1.02); }
.nav-logo:hover .logo-img-symbol { transform: scale(1.02); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.2vw, 36px);
  list-style: none;
}

.nav-link {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--green-light);
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 12px;
  cursor: pointer;
  touch-action: manipulation;
  color: #fff;
  background: rgba(0, 0, 0, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
  transition: background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
#navbar.scrolled .menu-toggle {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(42, 110, 79, 0.28);
  color: var(--green-dark);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}
#navbar.scrolled .menu-toggle.is-open {
  background: var(--green-dark);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.menu-toggle .hl { transition: transform 0.3s ease, opacity 0.3s ease; transform-origin: 12px 12px; }
.menu-toggle.is-open .b1 { transform: translate(0, 5px) rotate(45deg); }
.menu-toggle.is-open .b2 { opacity: 0; }
.menu-toggle.is-open .b3 { transform: translate(0, -5px) rotate(-45deg); }

body.site-menu-open {
  overflow: hidden;
  touch-action: none;
}

.site-menu {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 100px 6% 48px;
  background:
    linear-gradient(165deg, rgba(10, 28, 20, 0.97) 0%, rgba(13, 31, 22, 0.99) 45%, #0a1812 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  -webkit-tap-highlight-color: transparent;
}
.site-menu.is-open {
  display: flex !important;
  opacity: 1;
  pointer-events: all;
}
/* Reforça abertura com id (especificidade > .site-menu sozinha) */
#siteMenu.is-open {
  display: flex !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}
.site-menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(58, 143, 102, 0.15), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(201, 168, 76, 0.08), transparent 45%);
  pointer-events: none;
}
.site-menu-nav {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 32px);
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: thin;
}
.site-menu .nav-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s, transform 0.2s;
}
.site-menu .nav-link:hover {
  color: var(--green-light);
  background: rgba(255, 255, 255, 0.05);
  transform: translateX(4px);
}
.site-menu-close {
  position: absolute;
  top: 24px;
  right: 5%;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  padding: 10px 22px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.site-menu-close:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
}

.float-cta-cluster {
  position: fixed;
  z-index: 10030;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(20px, calc(8px + env(safe-area-inset-bottom, 0px)));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.float-cta-cluster > a {
  pointer-events: auto;
}

.li-float {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: min(280px, calc(100vw - 32px));
  padding: 10px 14px 10px 10px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(10, 102, 194, 0.2);
  border-radius: 100px 20px 20px 100px;
  text-decoration: none;
  color: var(--charcoal);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 0 rgba(255, 255, 255, 0.8) inset;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.li-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(10, 102, 194, 0.35);
}
.li-float-avatar-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  background: var(--off-white);
}
.li-float-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.li-float-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  min-width: 0;
  padding-right: 4px;
}
.li-float-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}
.li-float-cta {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #0a66c2;
  text-transform: uppercase;
}
.li-float-arrow {
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #0a66c2;
  opacity: 0.7;
  margin-left: 4px;
}

.wa-float {
  position: relative;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  background: #20c55a;
}
.wa-float-icon { display: block; }
body.site-menu-open .float-cta-cluster {
  opacity: 0.3;
  pointer-events: none;
}
@media (max-width: 400px) {
  .li-float-name { max-width: 120px; font-size: 0.82rem; }
  .li-float-cta { font-size: 0.65rem; }
}

#hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  overflow: hidden;
  padding-bottom: 48px;
  background: #0a1812;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 35%;
  will-change: transform, background-position;
  animation: hero-ken 28s ease-in-out infinite alternate;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 90% at 10% 15%, rgba(58, 143, 102, 0.45), transparent 52%),
    radial-gradient(ellipse 90% 70% at 88% 25%, rgba(201, 168, 76, 0.18), transparent 48%),
    radial-gradient(ellipse 80% 60% at 45% 95%, rgba(10, 35, 22, 0.5), transparent 55%);
  mix-blend-mode: soft-light;
  animation: hero-mesh-move 22s ease-in-out infinite alternate;
}
@keyframes hero-mesh-move {
  0% { opacity: 0.85; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.04) translate(1%, -1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
}
@keyframes hero-ken {
  0% {
    transform: scale(1.04);
    background-position: 48% 32%;
  }
  100% {
    transform: scale(1.1);
    background-position: 55% 40%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(135deg, rgba(10,35,22,0.78) 0%, rgba(10,35,22,0.42) 55%, rgba(0,0,0,0.18) 100%);
}
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: calc(100px + env(safe-area-inset-top, 0px)) clamp(24px, 6%, 64px) 48px;
  max-width: 800px;
  margin: 0;
  width: 100%;
  align-self: flex-start;
}
@media (min-width: 1024px) {
  .hero-content {
    padding-top: calc(120px + env(safe-area-inset-top, 0px));
    max-width: 880px;
  }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 16px;
  max-width: 100%;
  opacity: 0;
  animation: fade-up 0.8s 0.3s both;
}
.hero-eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--green-light);
}

.hero-h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.05rem, 5vw, 3.45rem);
  font-weight: 600;
  font-optical-sizing: auto;
  letter-spacing: -0.035em;
  color: #fff;
  line-height: 1.1;
  max-width: min(30rem, 94vw);
  text-wrap: balance;
  margin: 0 0 20px 0;
  opacity: 0;
  animation: fade-up 0.9s 0.5s both;
  display: block;
}
.hero-h1 .hero-accent {
  color: #b8e8d1;
  font-weight: 700;
  font-style: normal;
  background: linear-gradient(120deg, #b8e8d1 0%, #52b788 50%, #c9e4d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@supports not (-webkit-background-clip: text) {
  .hero-h1 .hero-accent { color: var(--green-light); -webkit-text-fill-color: unset; }
}

.hero-sub {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 32rem;
  line-height: 1.65;
  margin: 0 0 32px 0;
  padding-right: 8px;
  opacity: 0;
  animation: fade-up 0.9s 0.7s both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 0.9s 0.9s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--green-main);
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  transition: all 0.3s ease;
  border: 2px solid var(--green-main);
}
.btn-primary:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(58,143,102,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.45);
  transition: all 0.3s ease;
}
.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: max(32px, env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 4;
  opacity: 0;
  animation: fade-up 1s 1.2s both;
  pointer-events: none;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

#numeros {
  background:
    linear-gradient(165deg, rgba(13, 31, 22, 0.98) 0%, #122a1f 42%, #152f22 100%);
  padding: 64px 5% 72px;
  position: relative;
  z-index: 2;
  margin-top: -20px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  box-shadow: 0 -12px 48px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}
#numeros::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 65% at 12% 22%, rgba(82, 183, 136, 0.18), transparent 52%),
    radial-gradient(ellipse 70% 50% at 88% 68%, rgba(201, 168, 76, 0.09), transparent 48%);
  opacity: 1;
}
.numeros-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.numero-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: transform 0.35s ease;
}
.numero-item:hover { transform: translateY(-3px); }
.numero-item:last-child { border-right: none; }
.numero-val {
  font-family: var(--font-heading);
  font-size: 2.65rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
  background: linear-gradient(135deg, #e8fff2 0%, #7fd4a8 38%, #52b788 72%, #b8e8d1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 22px rgba(82, 183, 136, 0.28));
  animation: numero-breathe 5.5s ease-in-out infinite;
}
@supports not (-webkit-background-clip: text) {
  .numero-val { color: var(--green-light); -webkit-text-fill-color: unset; filter: none; }
}
@keyframes numero-breathe {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(82, 183, 136, 0.22)); }
  50% { filter: drop-shadow(0 0 28px rgba(201, 168, 76, 0.2)); }
}
@media (prefers-reduced-motion: reduce) {
  .numero-val { animation: none; }
}
.numero-val.is-counting {
  transform: translateZ(0);
  backface-visibility: hidden;
}
.numero-unit {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.numero-desc { font-size: 0.75rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

section { padding: 96px 5%; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-main);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green-main);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.85vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-body { font-size: 1rem; color: var(--mid-gray); line-height: 1.78; max-width: 620px; }
.section-inner { max-width: 1200px; margin: 0 auto; }

#quem-somos {
  background: linear-gradient(180deg, rgba(253, 252, 250, 1) 0%, #f2f7f3 55%, var(--warm-white) 100%);
}
.quem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #fff 0%, #f8fcf9 100%);
  border: 1px solid rgba(42, 110, 79, 0.1);
  box-shadow: var(--shadow-soft), 0 1px 0 rgba(255, 255, 255, 0.95) inset;
}
.quem-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.patricia-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.5s;
}
.patricia-photo:hover { filter: grayscale(0%); }
.quem-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(26,58,42,0.6), transparent);
}
.patricia-caption { position: absolute; bottom: 24px; left: 24px; z-index: 2; color: #fff; }
.patricia-caption strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-style: normal;
}
.patricia-caption span {
  font-size: 0.75rem;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.quem-text .section-body { max-width: 100%; margin-bottom: 24px; }

.diferenciais-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.diferencial-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  background: var(--off-white);
  border-left: 3px solid var(--green-main);
  border-radius: 0 12px 12px 0;
}
.dif-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.dif-text strong { display: block; font-size: 0.88rem; font-weight: 600; color: var(--green-dark); margin-bottom: 3px; }
.dif-text span { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.5; }

#jornada { background: var(--green-dark); color: #fff; overflow: hidden; }
#jornada .section-label { color: var(--green-light); }
#jornada .section-label::before { background: var(--green-light); }
#jornada .section-title { color: #fff; }

.timeline-container { position: relative; margin-top: 60px; }
.timeline-line {
  position: absolute; top: 50px; left: 0; right: 0;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, transparent, rgba(82, 183, 136, 0.2), var(--green-light), rgba(201, 168, 76, 0.35), var(--green-light), rgba(82, 183, 136, 0.2), transparent);
  background-size: 200% 100%;
  animation: timeline-shimmer 14s ease-in-out infinite;
  opacity: 0.85;
  box-shadow: 0 0 24px rgba(82, 183, 136, 0.15);
}
@keyframes timeline-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .timeline-line { animation: none; }
}
.timeline-track {
  display: flex; gap: 0;
  overflow-x: auto; padding-bottom: 20px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--green-mid) transparent;
  cursor: grab; user-select: none;
}
.timeline-track.is-autoscroll {
  cursor: default;
}
.timeline-track::-webkit-scrollbar { height: 4px; }
.timeline-track::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 2px; }
.timeline-item { flex: 0 0 280px; padding: 0 20px; position: relative; text-align: center; }
.tl-dot-wrap { display: flex; align-items: center; justify-content: center; height: 100px; position: relative; z-index: 1; }
.tl-dot {
  width: 14px; height: 14px;
  background: var(--green-dark);
  border: 2px solid var(--green-light);
  border-radius: 50%;
  position: relative; z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}
.tl-dot::before {
  content: '';
  position: absolute; inset: -5px; border-radius: 50%;
  background: var(--green-light);
  opacity: 0; transform: scale(0.5);
  transition: all 0.3s;
}
.timeline-item:hover .tl-dot { transform: scale(1.4); border-color: var(--gold); }
.timeline-item:hover .tl-dot::before { opacity: 0.2; transform: scale(1); }

.tl-year {
  font-family: var(--font-heading);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 700;
  color: var(--green-light);
  text-align: center;
  margin: 0 auto 18px;
  display: inline-block;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(82, 183, 136, 0.28);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
  opacity: 0.65;
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.3s ease;
}
.timeline-item:hover .tl-year { opacity: 1; transform: translateY(-2px); border-color: rgba(201, 168, 76, 0.45); }
.tl-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 22px 22px 20px;
  transition: all 0.35s ease;
}
.timeline-item:hover .tl-card {
  background: rgba(255,255,255,0.09);
  border-color: rgba(82,183,136,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.3);
}
.tl-tag {
  display: inline-block;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.tl-card h4 { font-size: 0.95rem; font-weight: 600; color: #fff; margin-bottom: 8px; line-height: 1.4; text-align: left; }
.tl-card p { font-size: 0.8rem; color: rgba(255,255,255,0.55); line-height: 1.6; text-align: left; }

#servicos {
  background: linear-gradient(180deg, var(--off-white) 0%, #e9f3ec 42%, rgba(247, 245, 240, 0.96) 100%);
}
.servicos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 56px;
}
.servico-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
  cursor: default;
}
.servico-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--green-main), var(--green-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.servico-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-g); }
.servico-card:hover::before { transform: scaleX(1); }
.servico-num {
  font-family: var(--font-heading); font-size: 3rem; font-weight: 700;
  color: var(--green-pale); line-height: 1; margin-bottom: 16px; transition: color 0.3s;
}
.servico-card:hover .servico-num { color: rgba(58,143,102,0.15); }
.servico-title { font-size: 1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 12px; line-height: 1.3; }
.servico-desc { font-size: 0.83rem; color: var(--mid-gray); line-height: 1.7; }

#publicos { background: var(--warm-white); padding: 80px 5%; }
.publicos-title-wrap { text-align: center; max-width: 1200px; margin: 0 auto 56px; }
.publicos-title-wrap .section-label { justify-content: center; }
.publicos-title-wrap .section-label::before { display: none; }
.publicos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.publico-card {
  padding: 32px 24px; background: var(--off-white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--green-main);
  transition: all 0.3s ease;
}
.publico-card:nth-child(2) { border-color: var(--gold); }
.publico-card:nth-child(3) { border-color: var(--green-light); }
.publico-card:nth-child(4) { border-color: var(--green-dark); }
.publico-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-g); }
.publico-icon { font-size: 1.8rem; margin-bottom: 14px; }
.publico-title { font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green-dark); margin-bottom: 14px; }
.publico-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.publico-list li { font-size: 0.8rem; color: var(--mid-gray); padding-left: 14px; position: relative; line-height: 1.5; }
.publico-list li::before { content: '→'; position: absolute; left: 0; color: var(--green-main); font-size: 0.7rem; }

#equipe {
  position: relative;
  background: linear-gradient(178deg, #f7faf7 0%, #eaf3ec 52%, var(--warm-white) 100%);
  overflow: hidden;
}
#equipe::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 12% -8%, rgba(82, 183, 136, 0.15), transparent 52%),
    radial-gradient(ellipse 70% 45% at 92% 20%, rgba(201, 168, 76, 0.08), transparent 50%);
}
.equipe-shell { position: relative; z-index: 1; }
.equipe-intro { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 60px); align-items: start; margin-bottom: clamp(44px, 8vw, 72px); }
.equipe-intro .section-body + .section-body { margin-top: 0; opacity: 1; font-size: 1rem; max-width: 100%; }
#equipe .section-label { color: var(--green-mid); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: clamp(18px, 2.8vw, 26px);
  align-items: stretch;
}
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(42, 110, 79, 0.12);
  border-radius: clamp(18px, 3vw, 24px);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(26, 58, 42, 0.08), 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  backdrop-filter: blur(10px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
  cursor: pointer;
}
.team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-light));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(58, 143, 102, 0.28);
  box-shadow:
    0 24px 52px rgba(26, 58, 42, 0.16),
    0 12px 32px rgba(82, 183, 136, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}
.team-card:hover::before { opacity: 1; }
.team-photo-wrap {
  position: relative;
  flex: 1 1 auto;
  overflow: hidden;
  aspect-ratio: 4/5;
  min-height: 0;
  background: linear-gradient(155deg, #e8eef0 0%, #cfd9d8 100%);
}
.team-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s ease;
  background: linear-gradient(180deg, transparent 35%, rgba(13, 31, 22, 0.72) 100%);
}
.team-card:hover .team-photo-wrap::after { opacity: 1; }
.team-photo-wrap .team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
  filter: grayscale(18%);
}
.team-card:hover .team-photo {
  transform: scale(1.06);
  filter: grayscale(0%);
}
.team-info {
  flex: 0 0 auto;
  padding: 18px 18px 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fafcfb 100%);
}
.team-name {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.85vw, 1rem);
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
  line-height: 1.38;
}
.team-role {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--green-mid);
  background: linear-gradient(180deg, rgba(216, 243, 220, 0.65), rgba(82, 183, 136, 0.12));
  border: 1px solid rgba(58, 143, 102, 0.15);
  line-height: 1.45;
  max-width: 100%;
}

.team-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,25,18,0.85); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 20px;
}
.team-modal-overlay.open { display: flex; }
.team-modal {
  background: var(--warm-white);
  border-radius: 12px; max-width: 620px; width: 100%;
  overflow: hidden; display: grid; grid-template-columns: 200px 1fr;
  max-height: 90vh;
}
.modal-photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.modal-body { padding: 32px; overflow-y: auto; }
.modal-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--mid-gray); float: right; line-height: 1; margin-bottom: 16px; }
.modal-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--green-dark); margin-bottom: 4px; }
.modal-role { font-size: 0.8rem; color: var(--green-main); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.modal-bio { font-size: 0.87rem; color: var(--mid-gray); line-height: 1.78; }

#cases { background: var(--warm-white); }
.cases-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 20px; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card { background: var(--off-white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all 0.35s; }
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-g); }
.case-header {
  height: 180px; background: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.case-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.25; transition: opacity 0.4s; }
.case-card:hover .case-bg { opacity: 0.4; }
.case-sector {
  position: relative; z-index: 2; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-light);
  background: rgba(0,0,0,0.4);
  padding: 8px 16px; border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.case-body { padding: 24px; }
.case-title { font-size: 1rem; font-weight: 600; color: var(--green-dark); margin-bottom: 10px; line-height: 1.35; }
.case-desc { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.65; margin-bottom: 16px; }
.case-result {
  display: flex; gap: 8px; align-items: flex-start;
  padding: 12px 14px; background: var(--warm-white);
  border-left: 3px solid var(--green-main);
  font-size: 0.78rem; color: var(--green-dark);
  line-height: 1.5;
  border-radius: 0 8px 8px 0;
}

#insights { background: var(--green-dark); color: #fff; }
#insights .section-label { color: var(--green-light); }
#insights .section-label::before { background: var(--green-light); }
#insights .section-title { color: #fff; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.insight-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.35s;
  cursor: default;
}
.insight-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(82,183,136,0.35);
  transform: translateY(-4px);
}
.insight-tag { display: inline-block; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); background: rgba(201,168,76,0.12); padding: 4px 10px; border-radius: 20px; margin-bottom: 16px; }
.insight-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 500; color: #fff; margin-bottom: 12px; line-height: 1.4; }
.insight-excerpt { font-size: 0.82rem; color: rgba(255,255,255,0.56); line-height: 1.7; margin-bottom: 0; }

#contato { background: var(--warm-white); }
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; min-width: 0; max-width: 100%; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; min-width: 0; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; min-width: 0; }
.contact-item > div:last-child { min-width: 0; flex: 1; }
.contact-icon { width: 44px; height: 44px; background: var(--green-pale); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--green-main); }
.contact-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 3px; }
.contact-value { font-size: 0.95rem; color: var(--green-dark); font-weight: 500; text-decoration: none; transition: color 0.2s; overflow-wrap: anywhere; word-break: break-word; max-width: 100%; }
.contact-value:hover { color: var(--green-main); }
.contact-item, .contact-item a { min-width: 0; }
.social-links { display: flex; gap: 12px; margin-top: 32px; }
.social-link-item {
  width: 40px; height: 40px; background: var(--off-white);
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--green-dark);
  text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: all 0.25s;
}
.social-link-item:hover { background: var(--green-main); border-color: var(--green-main); color: #fff; transform: translateY(-3px); }

.contato-form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-dark);
  margin-bottom: 28px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green-dark); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px; background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif; font-size: 0.9rem; color: var(--charcoal);
  outline: none; transition: border-color 0.25s, box-shadow 0.25s;
}
.form-textarea { border-radius: 16px; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green-main);
  box-shadow: 0 0 0 3px rgba(58,143,102,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px; background: var(--green-main);
  color: #fff; border: none; border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; margin-top: 8px;
}
.btn-submit:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,143,102,0.35); }

.whatsapp-cta {
  margin-top: 20px; display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: #e8f5e9;
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 12px; text-decoration: none; transition: all 0.3s;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.wa-text { min-width: 0; overflow-wrap: anywhere; }
.whatsapp-cta:hover { background: #d0eedb; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.2); }
.wa-icon {
  width: 42px; height: 42px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; flex-shrink: 0;
}
.wa-text strong { display: block; font-size: 0.9rem; color: var(--green-dark); font-weight: 600; }
.wa-text span { font-size: 0.78rem; color: var(--mid-gray); }

.contato-form-card {
  background: var(--off-white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

footer {
  background: linear-gradient(180deg, #0f241b 0%, #08140f 100%);
  color: rgba(255,255,255,0.55);
  padding: 48px 5% 28px;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 90% 70% at 15% 0%, rgba(82, 183, 136, 0.12), transparent 55%);
  opacity: 0.9;
}
.footer-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px; flex-wrap: wrap; gap: 20px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.footer-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.footer-logo {
  height: auto;
  max-height: 82px;
  width: auto;
  max-width: min(340px, 82vw);
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0, 0, 0, 0.35));
}
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-link { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-decoration: none; letter-spacing: 0.08em; text-transform: uppercase; transition: color 0.2s; }
.footer-link:hover { color: var(--green-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.75rem; }
.footer-badge { font-size: 0.72rem; color: var(--green-light); opacity: 0.6; letter-spacing: 0.08em; }
.footer-credit {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-tsg {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s, opacity 0.2s;
}
.footer-tsg:hover { color: var(--green-light); }
.footer-heart {
  color: #e86a8c;
  font-size: 0.95rem;
  line-height: 1;
  display: inline-block;
}

.reveal {
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.92s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal:not(.visible) {
  opacity: 0;
  transform: translate3d(0, min(40px, 8vw), 0);
}
.reveal.rx-up:not(.visible) {
  transform: translate3d(0, min(54px, 12vw), 0);
}
.reveal.rx-l:not(.visible) {
  transform: translate3d(clamp(-52px, -7vw, -24px), 36px, 0);
}
.reveal.rx-r:not(.visible) {
  transform: translate3d(clamp(28px, 7vw, 52px), 36px, 0);
}
.reveal.rx-s:not(.visible) {
  transform: translate3d(0, 34px, 0) scale(0.92);
}
.reveal.rx-num:not(.visible) {
  transform: translate3d(0, min(38px, 8vw), 0);
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 1024px) {
  .numeros-grid { grid-template-columns: repeat(3, 1fr); }
  .numero-item:nth-child(3) { border-right: none; }
  .servicos-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(176px, 1fr)); }
  .publicos-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 769px) {
  .menu-toggle { margin-left: 4px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { margin-left: auto; }
  #numeros { margin-top: -14px; padding: 48px 5% 56px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .numero-val { font-size: 2.15rem; }
  .quem-grid { grid-template-columns: 1fr; padding: 22px 20px; gap: 36px; }
  .contato-grid { grid-template-columns: 1fr; }
  .equipe-intro { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(auto-fill, minmax(152px, 1fr)); }
  .servicos-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .publicos-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .numero-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .form-grid { grid-template-columns: 1fr; }
  section { padding: 64px 5%; }
  .team-modal { grid-template-columns: 1fr; }
  .modal-photo { height: 220px; width: 100%; }
  #parcerias.partners-section { padding: 64px 0 56px; }
  .parcerias-marquee-outer {
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }
  .partner-badge { min-height: 64px; padding: 10px 14px; }
  .partner-badge img { max-height: 44px; max-width: min(132px, 34vw); }
}

/* Parcerias — faixa infinita */
#parcerias.partners-section {
  padding: 88px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--warm-white) 0%, #f3f9f5 42%, #eef5f0 100%);
}
#parcerias::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-mesh);
  pointer-events: none;
  opacity: 0.85;
}
.parcerias-head { position: relative; z-index: 1; margin-bottom: 8px; text-align: center; }
.parcerias-head .section-body { margin-inline: auto !important; }
.parcerias-marquee-outer {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 8px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 11%, #000 89%, transparent 100%);
}
.parcerias-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  animation: parcerias-marquee 52s linear infinite;
  will-change: transform;
}
@media (prefers-reduced-motion: reduce) {
  .parcerias-track { animation: none; justify-content: center; flex-wrap: wrap; width: 100%; max-width: 1100px; margin: 0 auto; }
  .parcerias-strip { flex-wrap: wrap; justify-content: center; }
}
@keyframes parcerias-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.parcerias-strip {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(1.75rem, 3.8vw, 2.85rem);
  padding-right: clamp(1.75rem, 3.8vw, 2.85rem);
  flex-shrink: 0;
}
.partner-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  min-height: 72px;
  max-height: 88px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(42, 110, 79, 0.14);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(26, 58, 42, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.25s;
}
.partner-badge:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 22px 50px rgba(29, 90, 60, 0.15);
  border-color: rgba(58, 143, 102, 0.25);
}
.partner-badge img {
  max-height: 52px;
  max-width: min(148px, 26vw);
  width: auto;
  height: auto;
  object-fit: contain;
  vertical-align: middle;
}

/* Modo edição (editor.js) */
body.edit-mode [data-eid] { outline: 1px dashed rgba(58, 143, 102, 0.5); border-radius: 4px; }
body.edit-mode [data-eid="img-"]:not([data-eid^="img-"]):empty,
body.edit-mode img[data-eid] { cursor: pointer; }
body.edit-mode .edit-mode-pulse { box-shadow: 0 0 0 2px var(--green-main); }

.no-export, #site-editor-root { }
body.edit-mode { padding-bottom: 72px; }
