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

:root {
  --verde: #9CCB4C;
  --verde-apoio: #AED36E;
  --verde-hover: #8BBB3C;
  --verde-dark: #6A9A2A;
  --escuro: #373435;
  --escuro-80: rgba(55, 52, 53, .8);
  --escuro-60: rgba(55, 52, 53, .6);
  --branco: #FFFFFF;
  --cinza-bg: #F5F5F3;
  --cinza-card: #EAEAE8;
  --cinza-borda: #D6D6D4;
  --cinza-texto: #6B6B6B;
  --erro: #D94F4F;
  --sucesso: #4CAF50;

  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'DM Serif Display', Georgia, serif;
  --fs-display: clamp(2rem, 5vw, 3.5rem);
  --fs-h1: clamp(1.75rem, 4vw, 2.75rem);
  --fs-h2: clamp(1.4rem, 3vw, 2rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: .875rem;
  --fs-xs: .75rem;
  --lh: 1.65;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semib: 600;
  --fw-bold: 700;

  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --max-w: 1200px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow: 0 2px 12px rgba(55, 52, 53, .08);
  --shadow-md: 0 4px 24px rgba(55, 52, 53, .12);
  --shadow-lg: 0 8px 40px rgba(55, 52, 53, .15);

  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur: .3s;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

body {
  font-family: var(--font);
  font-weight: 300;
  font-size: var(--fs-body);
  line-height: var(--lh);
  color: var(--escuro);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-y: none;
  overscroll-behavior: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

ul,
ol {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: var(--space-xl) 0;
}

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

.section--dark {
  background: var(--escuro);
  color: var(--branco);
}

.section--dark-gradient {
  background: linear-gradient(135deg, var(--escuro) 0%, #2A2728 100%);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.section--dark-gradient::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(156, 203, 76, 0.03) 0%, transparent 70%);
  
  border-radius: 50%;
  pointer-events: none;
}

.section--dark .section-title,
.section--dark-gradient .section-title {
  color: var(--branco);
}

.section--dark .section-subtitle,
.section--dark-gradient .section-subtitle {
  color: rgba(255, 255, 255, .7);
}

.section--verde-light {
  background: rgba(156, 203, 76, 0.05);
  
}

.text-center {
  text-align: center;
}

.text-verde {
  color: var(--verde);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semib);
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--verde);
  margin-bottom: var(--space-xs);
}

.label::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--verde);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}

.section-title {
  font-size: var(--fs-h2);
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: var(--space-xs);
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: var(--fs-body);
  color: var(--cinza-texto);
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: var(--fw-semib);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
  text-align: center;
  justify-content: center;
  line-height: 1.2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-dark) 100%);
  color: var(--branco);
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
  transform: skewX(-15deg);
  transition: left 0.5s var(--ease);
}

.btn--primary:hover::after {
  left: 160%;
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: linear-gradient(135deg, var(--verde-hover) 0%, var(--verde-dark) 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(156, 203, 76, .45);
}

.btn--secondary {
  background: transparent;
  color: var(--escuro);
  border: 2px solid var(--escuro);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  background: var(--escuro);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--branco);
  border: 2px solid var(--branco);
}

.btn--outline-white:hover,
.btn--outline-white:focus-visible {
  background: var(--branco);
  color: var(--escuro);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--fs-small);
}

.btn--lg {
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon-whatsapp {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: all var(--dur) var(--ease);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow);
}

.navbar__link:hover {
  color: var(--verde);
}

.navbar__link:hover::after {
  width: 100%;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar__logo img {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--dur) var(--ease);
}

.navbar.scrolled .navbar__logo img {
  filter: none;
}

.navbar__logo span {
  font-size: 1.25rem;
  font-weight: var(--fw-bold);
  color: var(--escuro);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.navbar__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--branco);
  position: relative;
  padding: 4px 0;
  transition: color var(--dur) var(--ease);
}

.navbar.scrolled .navbar__link {
  color: var(--escuro);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--verde);
  transition: width var(--dur) var(--ease);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link.active {
  color: var(--verde);
}

.navbar__cta {
  padding: 10px 22px;
  font-size: var(--fs-small);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  transition: all var(--dur) var(--ease);
  border-radius: 2px;
}

.navbar.scrolled .navbar__toggle span {
  background: var(--escuro);
}

.navbar__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.navbar__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(31, 30, 30, 0.85) 0%, rgba(42, 39, 40, 0.7) 60%, rgba(31, 30, 30, 0.9) 100%), url('images/hero/banner-mobile.webp') center/cover no-repeat;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .hero {
    background: linear-gradient(135deg, rgba(31, 30, 30, 0.85) 0%, rgba(42, 39, 40, 0.7) 60%, rgba(31, 30, 30, 0.9) 100%), url('images/hero/banner-tablet.webp') center/cover no-repeat;
  }
}

@media (min-width: 1024px) {
  .hero {
    background: linear-gradient(135deg, rgba(31, 30, 30, 0.85) 0%, rgba(42, 39, 40, 0.7) 60%, rgba(31, 30, 30, 0.9) 100%), url('images/hero/banner-desktop.webp') center/cover no-repeat;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156, 203, 76, .18) 0%, transparent 65%);
  top: -20%;
  right: -10%;
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
  will-change: transform;
}

.hero__glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(174, 211, 110, .10) 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  pointer-events: none;
  animation: float-orb 12s ease-in-out infinite reverse;
  will-change: transform;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  text-align: center;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(156, 203, 76, .15);
  color: var(--verde-apoio);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semib);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(156, 203, 76, .25);
}

.hero__title {
  font-size: var(--fs-display);
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--branco);
  line-height: 1.12;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(120deg, var(--verde) 0%, var(--verde-apoio) 50%, #D4F07A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, .7);
  margin-bottom: var(--space-lg);
  max-width: 540px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.hero__stats {
  display: flex;
  gap: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.hero__stat-number {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--verde);
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.hero__image {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 100%;
  overflow: hidden;
  display: none;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .25;
  filter: grayscale(40%);
}

.hero {
  user-select: none;
  -webkit-user-select: none;
}

.accordion-services {
  display: flex;
  height: 520px;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.accordion-panel {
  position: relative;
  flex: 1;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-right: 2px solid var(--verde);
}

.accordion-panel:last-child {
  border-right: none;
}

.accordion-panel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.25) 60%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.55s var(--ease);
  z-index: 1;
}

.accordion-panel--active .accordion-panel__overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.8) 35%, rgba(0, 0, 0, 0.35) 65%, rgba(0, 0, 0, 0) 100%);
}

.accordion-panel__number {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--verde);
  opacity: 0.9;
  z-index: 2;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.accordion-panel--active .accordion-panel__number {
  opacity: 0;
  transform: translate(-50%, 50%) scale(0.5);
}

.accordion-panel__title-rotated {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  writing-mode: vertical-lr;
  transform: rotate(180deg) translateX(50%);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--branco);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  opacity: 1;
  transition: opacity 0.3s var(--ease);
}

.accordion-panel--active .accordion-panel__title-rotated {
  opacity: 0;
}

.accordion-panel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  max-width: 90vw;
  padding: var(--space-lg) var(--space-md);
  z-index: 3;
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion-panel--active .accordion-panel__content {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s;
}

.accordion-panel__title {
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--verde);
  margin-bottom: 8px;
}

.accordion-panel__desc {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 12px;
  max-width: 320px;
}

.accordion-panel__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-small);
  font-weight: var(--fw-semib);
  color: var(--verde);
  transition: gap 0.3s var(--ease);
}

.accordion-panel__link:hover {
  gap: 10px;
  color: var(--verde-apoio);
}

.accordion-panel--active {
  flex: 5;
}

.services-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.service-card {
  position: relative;
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-md);
  transition: all 0.35s var(--ease);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--verde), var(--verde-apoio));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to top, rgba(156, 203, 76, .04), transparent);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(156, 203, 76, .4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(55, 52, 53, .12), 0 2px 8px rgba(156, 203, 76, .15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(156, 203, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  color: var(--verde);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.service-card:hover .service-card__icon {
  background: var(--verde);
  color: var(--branco);
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(156, 203, 76, .4);
}

.service-card__icon svg {
  width: 26px;
  height: 26px;
  transition: transform 0.3s var(--ease);
}

.service-card:hover .service-card__icon svg {
  transform: scale(0.9);
}

.service-card__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.service-card__link {
  font-size: var(--fs-small);
  font-weight: var(--fw-semib);
  color: var(--verde);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.service-card__link:hover {
  gap: 8px;
}

.service-card__link svg {
  width: 16px;
  height: 16px;
}

.diff-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.diff-card {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius);
  background: rgba(156, 203, 76, .04);
  border: 1px solid rgba(156, 203, 76, .12);
  transition: all var(--dur) var(--ease);
}

.diff-card:hover {
  background: rgba(156, 203, 76, .08);
}

.diff-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
}

.diff-card__icon svg {
  width: 24px;
  height: 24px;
}

.diff-card__title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semib);
  margin-bottom: 4px;
}

.diff-card__desc {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.5;
}

.section--verde-light .diff-card {
  background: var(--branco);
  border-color: rgba(156, 203, 76, .2);
  box-shadow: 0 4px 20px rgba(156, 203, 76, .08);
}

.projects-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--cinza-bg);
  transition: all var(--dur) var(--ease);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-card__image {
  position: relative;
  width: 100%;
  padding-top: 65%;
  overflow: hidden;
}

.project-card__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.project-card:hover .project-card__image img {
  transform: scale(1.05);
}

.project-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--verde);
  color: var(--branco);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semib);
  padding: 4px 12px;
  border-radius: 50px;
  z-index: 2;
}

.project-card__body {
  padding: var(--space-md);
}

.project-card__category {
  font-size: var(--fs-xs);
  color: var(--verde);
  font-weight: var(--fw-semib);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.project-card__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: 4px;
}

.project-card__location {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  margin-bottom: var(--space-sm);
}

.project-card__cta {
  font-size: var(--fs-small);
  font-weight: var(--fw-semib);
  color: var(--verde);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border: 1px solid var(--cinza-borda);
  border-radius: 50px;
  background: var(--branco);
  font-family: var(--font);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--cinza-texto);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform .5s var(--ease);
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  padding: 0 var(--space-sm);
}

.testimonial-card__inner {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  height: 100%;
  
  display: flex;
  flex-direction: column;
}

.testimonial-card__text {
  flex-grow: 1;
  
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: var(--space-sm);
  color: #F5A623;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-card__text {
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--escuro);
  margin-bottom: var(--space-md);
  font-style: italic;
}

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

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cinza-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  color: var(--verde);
  font-size: var(--fs-body);
}

.testimonial-card__name {
  font-weight: var(--fw-semib);
  font-size: var(--fs-small);
  color: var(--escuro);
}

.testimonial-card__role {
  font-size: var(--fs-xs);
  color: var(--cinza-texto);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: var(--space-md);
}

.testimonials-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--cinza-borda);
  background: var(--branco);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}

.testimonials-nav button:hover {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--branco);
}

.testimonials-nav button svg {
  width: 18px;
  height: 18px;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-sm);
}

.testimonials-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cinza-borda);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}

.testimonials-dots span.active {
  background: var(--verde);
  width: 24px;
  border-radius: 4px;
}

.steps-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
  counter-reset: step;
  position: relative;
  
}

.steps-connecting-line {
  display: none;
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 0;
  pointer-events: none;
}

.steps-connecting-line path {
  fill: none;
  stroke: var(--verde);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  transition: stroke-dashoffset 2s ease-out;
}

.steps-grid.visible .steps-connecting-line path {
  
  animation: drawLine 1.5s forwards ease-in-out;
  animation-delay: 0.3s;
  
}

@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.step-card {
  text-align: center;
  padding: var(--space-md);
  counter-increment: step;
}

.step-card__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  position: relative;
  z-index: 1;
  
}

.step-card__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: var(--space-xs);
}

.step-card__desc {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.6;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--cinza-borda);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--space-md) 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: var(--fw-semib);
  color: var(--escuro);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  transition: color var(--dur) var(--ease);
}

.faq-question:hover {
  color: var(--verde);
}

.faq-question__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform var(--dur) var(--ease);
}

.faq-item.open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-question {
  color: var(--verde);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .4s var(--ease);
}

.faq-answer__inner {
  padding: 0 0 var(--space-md);
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.cta-section {
  background: linear-gradient(135deg, var(--escuro) 0%, #2A2728 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section .label {
  color: var(--verde-apoio);
}

.cta-section .section-title {
  color: var(--branco);
}

.cta-section .section-subtitle {
  color: rgba(255, 255, 255, .6);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer {
  background: var(--escuro);
  color: rgba(255, 255, 255, .7);
  padding: var(--space-xl) 0 var(--space-md);
}

.footer__grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
  margin-bottom: var(--space-lg);
}

.footer__col-title {
  font-size: var(--fs-body);
  font-weight: var(--fw-semib);
  color: var(--branco);
  margin-bottom: var(--space-sm);
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, .6);
  transition: color var(--dur) var(--ease);
}

.footer__links a:hover {
  color: var(--verde);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: var(--fs-small);
}

.footer__contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--verde);
  margin-top: 2px;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-xs);
  text-align: center;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  transition: all var(--dur) var(--ease);
}

.footer__social a:hover {
  background: var(--verde);
  border-color: var(--verde);
  color: var(--branco);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  margin-bottom: 6px;
  color: var(--escuro);
}

.form-group label .required {
  color: var(--erro);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: var(--fs-body);
  color: var(--escuro);
  background: var(--branco);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--verde);
  box-shadow: 0 0 0 3px rgba(156, 203, 76, .15);
}

.form-control::placeholder {
  color: var(--cinza-texto);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-xl);
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(76, 175, 80, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  color: var(--sucesso);
}

.form-success__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: var(--space-xs);
}

.form-success__desc {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
}

.team-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(5, 1fr);
}

.team-card {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--dur) var(--ease);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-card__photo {
  width: 100%;
  padding-top: 100%;
  background: var(--cinza-bg);
  position: relative;
  overflow: hidden;
}

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

.team-card__photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cinza-texto);
}

.team-card__photo-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: .3;
}

.team-card__info {
  padding: var(--space-md);
}

.team-card__name {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: var(--fs-small);
  color: var(--verde);
  font-weight: var(--fw-medium);
  margin-bottom: 4px;
}

.team-card__credentials {
  font-size: var(--fs-xs);
  color: var(--cinza-texto);
}

.methodology-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.method-card {
  text-align: center;
  padding: var(--space-md);
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-borda);
  transition: all var(--dur) var(--ease);
}

.method-card:hover {
  border-color: var(--verde);
  box-shadow: var(--shadow);
}

.method-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--verde);
  color: var(--branco);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.method-card__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: var(--space-xs);
}

.method-card__desc {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.6;
}

.service-detail {
  background: var(--branco);
  border: 1px solid var(--cinza-borda);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  transition: all var(--dur) var(--ease);
}

.service-detail:hover {
  box-shadow: var(--shadow);
}

.service-detail__header {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.service-detail__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(156, 203, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
}

.service-detail__icon svg {
  width: 28px;
  height: 28px;
}

.service-detail__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: 4px;
}

.service-detail__audience {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
}

.service-detail__content {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.service-detail__deliverables {
  margin-bottom: var(--space-md);
}

.service-detail__deliverables h4 {
  font-size: var(--fs-small);
  font-weight: var(--fw-semib);
  margin-bottom: var(--space-xs);
}

.service-detail__deliverables li {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.5;
}

.service-detail__deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verde);
}

.contact-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--cinza-bg);
  border-radius: var(--radius);
}

.contact-info-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--verde);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--branco);
}

.contact-info-card__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card__title {
  font-weight: var(--fw-semib);
  margin-bottom: 2px;
}

.contact-info-card__text {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
}

.contact-info-card__text a {
  color: var(--verde);
  font-weight: var(--fw-medium);
}

.contact-info-card__text a:hover {
  text-decoration: underline;
}

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  background: var(--cinza-bg);
  margin-top: var(--space-lg);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

#contato-mapa .map-container {
  border-radius: 0;
  margin-top: 0;
  height: 45vh !important;
  
  min-height: 300px;
  
}

#contato-mapa .map-container iframe {
  height: 100% !important;
}

.page-header {
  background: linear-gradient(135deg, var(--escuro) 0%, #2A2728 100%);
  padding: calc(72px + var(--space-xl)) 0 var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

.page-header .label {
  color: var(--verde-apoio);
}

.page-header .section-title {
  color: var(--branco);
  margin-bottom: var(--space-xs);
}

.page-header .section-subtitle {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 0;
}

.page-header__grid-bg {
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.breadcrumb {
  padding: var(--space-sm) 0;
  font-size: var(--fs-xs);
  color: var(--cinza-texto);
}

.breadcrumb a {
  color: var(--verde);
  font-weight: var(--fw-medium);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(55, 52, 53, .85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: var(--branco);
  border-radius: var(--radius-lg);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--cinza-bg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--dur) var(--ease);
}

.modal__close:hover {
  background: var(--escuro);
  color: var(--branco);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal__image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal__content {
  padding: var(--space-lg);
}

.modal__category {
  font-size: var(--fs-xs);
  color: var(--verde);
  font-weight: var(--fw-semib);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--space-xs);
}

.modal__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.modal__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--cinza-borda);
}

.modal__meta-item {
  font-size: var(--fs-small);
}

.modal__meta-label {
  font-weight: var(--fw-semib);
  display: block;
  margin-bottom: 2px;
}

.modal__meta-value {
  color: var(--cinza-texto);
}

.modal__description {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.modal__update-notice {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(156, 203, 76, .08);
  border-radius: var(--radius);
  font-size: var(--fs-xs);
  color: var(--verde-dark);
  margin-bottom: var(--space-md);
}

.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4), 0 2px 8px rgba(0, 0, 0, .15);
  z-index: 9999;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, .5), 0 4px 12px rgba(0, 0, 0, .2);
}

.whatsapp-float:active {
  transform: scale(.95);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes whatsapp-pulse {

  0%,
  100% {
    box-shadow: 0 4px 16px rgba(37, 211, 102, .4), 0 2px 8px rgba(0, 0, 0, .15);
  }

  50% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, .6), 0 2px 12px rgba(0, 0, 0, .2);
  }
}

.no-select {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

img.protected {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: transform, opacity;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: transform, opacity;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
  will-change: transform, opacity;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-children .fade-in:nth-child(1) {
  transition-delay: .05s;
}

.stagger-children .fade-in:nth-child(2) {
  transition-delay: .1s;
}

.stagger-children .fade-in:nth-child(3) {
  transition-delay: .15s;
}

.stagger-children .fade-in:nth-child(4) {
  transition-delay: .2s;
}

.stagger-children .fade-in:nth-child(5) {
  transition-delay: .25s;
}

.stagger-children .fade-in:nth-child(6) {
  transition-delay: .3s;
}

.values-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

.value-card {
  padding: var(--space-md);
  background: var(--branco);
  border-radius: var(--radius-lg);
  border: 1px solid var(--cinza-borda);
  text-align: center;
  transition: all var(--dur) var(--ease);
}

.value-card:hover {
  border-color: var(--verde);
  box-shadow: var(--shadow);
}

.value-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(156, 203, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--verde);
}

.value-card__icon svg {
  width: 26px;
  height: 26px;
}

.value-card__title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semib);
  margin-bottom: var(--space-xs);
}

.value-card__desc {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  line-height: 1.6;
}

.service-category {
  margin-bottom: var(--space-xl);
}

.service-category__title {
  font-size: var(--fs-h2);
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.01em;
}

.service-category__title svg {
  width: 28px;
  height: 28px;
  color: var(--verde);
}

.service-category__desc {
  font-size: var(--fs-small);
  color: var(--cinza-texto);
  margin-bottom: var(--space-md);
  max-width: 640px;
}

.hours-list {
  font-size: var(--fs-small);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 8px 0;
  border-bottom: 1px solid var(--cinza-borda);
}

.hours-list li:last-child {
  border-bottom: none;
}

.hours-list .day {
  font-weight: var(--fw-medium);
}

.hours-list .time {
  color: var(--cinza-texto);
}

.navbar__inner {
  justify-content: space-between;
}

@media (min-width: 480px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }

  .navbar__menu {
    display: flex !important;
  }

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

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    
    text-align: left;
  }

  .footer__grid>div:first-child {
    grid-column: span 1;
    display: block;
    
  }

  .footer__grid>div:nth-child(4) {
    grid-column: span 1;
    margin-top: 0;
    border-top: none;
    padding-top: 0;
    text-align: left;
  }

  .footer__contact-item {
    justify-content: flex-start;
  }

  .footer__social {
    justify-content: flex-start;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    flex: 0 0 50%;
    min-width: 50%;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .hero__content {
    text-align: center;
    margin: 0 auto;
  }

  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .cta-section {
    padding: var(--space-xl) 0;
  }

  .cta-section__actions {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-md);
  }

  .cta-section__actions .btn {
    width: auto;
  }

  .page-header {
    padding: calc(72px + var(--space-lg)) 0 var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .steps-connecting-line {
    display: block;
    top: 50px;

  }

  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }

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

  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-card {
    flex: 0 0 33.333%;
    min-width: 33.333%;
  }

  .hero {
    min-height: 100vh;
  }

  .hero__content {
    text-align: left;
    margin: 0;
  }

  .hero__actions {
    justify-content: flex-start;
  }

  .hero__stats {
    justify-content: flex-start;
  }

  .hero__subtitle {
    margin-left: 0;
  }
}

@media (max-width: 767px) {

  .accordion-services {
    flex-direction: column;
    height: auto;
  }

  .accordion-panel {
    flex: none !important;
    height: 80px;
    border-right: none;
    border-bottom: 2px solid var(--verde);
    transition: height 0.4s var(--ease);
  }

  .accordion-panel:last-child {
    border-bottom: none;
  }

  .accordion-panel--active {
    height: 280px;
  }

  .accordion-panel__number {
    bottom: auto;
    top: 16px;
    left: 20px;
    transform: none !important;
    font-size: 2rem;
    opacity: 1 !important;
  }

  .accordion-panel--active .accordion-panel__number {
    opacity: 0 !important;
  }

  .accordion-panel__title-rotated {
    writing-mode: horizontal-tb;
    transform: translateY(-50%) !important;
    bottom: auto;
    top: 50%;
    left: 80px;
    font-size: 1.1rem;
    opacity: 1 !important;
  }

  .accordion-panel--active .accordion-panel__title-rotated {
    opacity: 0 !important;
  }

  .accordion-panel__content {
    padding: var(--space-md);
    opacity: 0 !important;
    transform: translateY(20px) !important;
    pointer-events: none;
  }

  .accordion-panel--active .accordion-panel__content {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
  }

  .accordion-panel__desc {
    max-width: none;
  }

  body {
    padding-bottom: 0;
  }

  .navbar__inner {
    height: 60px;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--branco);
    flex-direction: column;
    padding: var(--space-sm) var(--space-md);
    gap: 0;
    border-top: 1px solid var(--cinza-borda);
    box-shadow: var(--shadow-lg);
  }

  .navbar__menu.open {
    display: flex;
  }

  .navbar__link {
    padding: 12px 0;
    border-bottom: 1px solid var(--cinza-borda);
    width: 100%;
    text-align: center;
    font-size: var(--fs-body);
    color: var(--escuro) !important;
  }

  .navbar__link:last-child {
    border-bottom: none;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 80px;
    padding-bottom: var(--space-xl);
  }

  .hero__content {
    text-align: center;
    padding: var(--space-md) 0;
  }

  .hero__title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    line-height: 1.2;
  }

  .hero__subtitle {
    font-size: var(--fs-small);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
  }

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

  .hero__actions .btn {
    width: 100%;
  }

  .hero__stats {
    flex-direction: row;
    gap: var(--space-md);
    justify-content: center;
    text-align: center;
  }

  .hero__stat-number {
    font-size: var(--fs-h3);
  }

  .hero__stat-label {
    font-size: .65rem;
  }

  .section {
    padding: var(--space-lg) 0;
  }

  .section-title {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .section-subtitle {
    font-size: var(--fs-small);
    margin-bottom: var(--space-md);
  }

  .page-header {
    padding: calc(60px + var(--space-md)) 0 var(--space-md);
  }

  .page-header .section-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
  }

  .page-header .section-subtitle {
    font-size: var(--fs-small);
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .service-card {
    padding: var(--space-md);
  }

  .diff-grid {
    gap: var(--space-sm);
  }

  .diff-card {
    flex-direction: column;
    text-align: center;
    padding: var(--space-sm);
  }

  .diff-card__icon {
    margin: 0 auto;
    width: 42px;
    height: 42px;
  }

  .diff-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .diff-card__title {
    font-size: var(--fs-small);
  }

  .diff-card__desc {
    font-size: var(--fs-xs);
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .project-card__body {
    padding: var(--space-sm);
  }

  .testimonial-card__inner {
    padding: var(--space-md);
  }

  .testimonial-card__text {
    font-size: var(--fs-small);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .step-card {
    padding: var(--space-sm);
  }

  .step-card__number {
    width: 44px;
    height: 44px;
    font-size: var(--fs-body);
  }

  .faq-question {
    font-size: var(--fs-small);
    padding: var(--space-sm) 0;
  }

  .cta-section {
    padding: var(--space-xl) 0;
  }

  .cta-section__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-section__actions .btn {
    width: 100%;
  }

  .footer {
    padding: var(--space-lg) 0 var(--space-sm);
    text-align: left;
  }

  .footer__grid {
    gap: var(--space-md) var(--space-sm);
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid>div:first-child {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 60px 1fr;
    
    gap: var(--space-xs) var(--space-md);
    margin-bottom: var(--space-sm);
    text-align: left;
    align-items: center;
  }

  .footer__grid>div:first-child .footer__logo {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0 !important;
    width: 60px;
    flex-shrink: 0;
  }

  .footer__grid>div:first-child .footer__logo img {
    height: auto;
    width: 100%;
  }

  .footer__grid>div:first-child p {
    grid-column: 2;
    grid-row: 1 / span 2;
    
    margin-bottom: 0 !important;
    font-size: 0.75rem;
    line-height: 1.4;
    align-self: center;
  }

  .footer__grid>div:first-child .footer__social {
    grid-column: 1;
    grid-row: 2;
    justify-content: flex-start;
    margin-top: 0;
  }

  .footer__grid>div:first-child .footer__social a {
    width: 32px;
    height: 32px;
  }

  .footer__grid>div:first-child .footer__social a svg {
    width: 14px;
    height: 14px;
  }

  .footer__grid>div:nth-child(2),
  .footer__grid>div:nth-child(3) {
    grid-column: span 1;
    text-align: center;
  }

  .footer__col-title {
    font-size: var(--fs-small);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-xs);
  }

  .footer__links a {
    font-size: var(--fs-xs);
  }

  .footer__grid>div:nth-child(4) {
    grid-column: span 2;
    margin-top: var(--space-xs);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: var(--space-md);
    text-align: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__social {
    justify-content: center;
    margin-top: var(--space-sm);
  }

  .footer__bottom {
    font-size: .7rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-control {
    font-size: var(--fs-small);
    padding: 10px 14px;
  }

  .team-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: var(--space-sm);
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .methodology-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 250px;
    margin-top: var(--space-md);
  }

  .modal__image {
    height: 180px;
  }

  .modal__content {
    padding: var(--space-md);
  }

  .modal__title {
    font-size: var(--fs-h3);
  }

  .service-detail {
    padding: var(--space-md);
    margin-bottom: var(--space-sm);
  }

  .service-detail__header {
    flex-direction: column;
    text-align: center;
  }

  .service-detail__icon {
    margin: 0 auto var(--space-xs);
  }

  .service-category__title {
    font-size: var(--fs-h3);
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .service-category__title svg {
    margin: 0 auto;
  }

  .service-category__desc {
    text-align: center;
  }

  .btn {
    padding: 12px 22px;
    font-size: var(--fs-small);
  }

  .btn--lg {
    padding: 14px 28px;
    font-size: var(--fs-body);
  }

  .btn--sm {
    padding: 8px 16px;
    font-size: var(--fs-xs);
  }

  .breadcrumb {
    text-align: center;
  }

  html {
    scroll-padding-top: 60px;
  }
}

@media (max-width: 359px) {
  .container {
    width: 94%;
  }

  .hero__title {
    font-size: 1.3rem;
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: transform, opacity;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.steps-grid.visible .fade-in:nth-of-type(1) {
  transition-delay: 0.1s;
}

.steps-grid.visible .fade-in:nth-of-type(2) {
  transition-delay: 0.4s;
}

.steps-grid.visible .fade-in:nth-of-type(3) {
  transition-delay: 0.7s;
}

.steps-grid.visible .fade-in:nth-of-type(4) {
  transition-delay: 1.0s;
}

@media print {

  .navbar,
  .modal-overlay {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: var(--space-lg) 0;
  }

  body {
    padding-bottom: 0;
  }
}

:focus-visible {
  outline: 2px solid var(--verde);
  outline-offset: 2px;
}

@supports (scrollbar-width: thin) {
  html {
    scrollbar-width: thin;
    scrollbar-color: var(--verde) var(--cinza-bg);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cinza-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--verde);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--verde-hover);
}

.team-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(5, minmax(200px, 1fr));
  margin-top: var(--space-lg);
  overflow-x: auto;
  padding-bottom: var(--space-sm);
}

.team-card {
  position: relative;
  background: var(--branco);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cinza-borda);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--verde);
}

.team-card__photo {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background: var(--cinza-bg);
  overflow: hidden;
}

.team-card__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s var(--ease);
}

.team-card:hover .team-card__img {
  transform: scale(1.05);
}

.team-card__info {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.team-card__name {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--escuro);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: var(--fs-small);
  font-weight: var(--fw-semib);
  color: var(--verde);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  border-bottom: 1px solid var(--cinza-borda);
  padding-bottom: var(--space-sm);
}

.team-card__credentials {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-card__credentials li {
  font-size: var(--fs-xs);
  color: var(--cinza-texto);
  position: relative;
  padding-left: 14px;
  margin-bottom: 6px;
  line-height: var(--lh);
}

.team-card__credentials li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--verde);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl) var(--space-2xl);
  margin-top: var(--space-lg);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur) var(--ease);
}

.partner-logo:hover {
  transform: scale(1.08);
}

.partner-logo img {
  max-width: 320px;
  max-height: 140px;
  object-fit: contain;
}

.form-row {
  display: grid;
  gap: var(--space-md);
}

@media (max-width: 767px) {
  .form-row {
    grid-template-columns: 1fr !important;
  }
}

.whatsapp-widget {
  position: fixed;
  bottom: var(--space-md);
  right: var(--space-md);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.whatsapp-form-popup {
  background: var(--branco);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-sm);
  width: 300px;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s var(--ease);
}

.whatsapp-form-popup.active {
  transform: scale(1);
  opacity: 1;
  pointer-events: all;
}

.whatsapp-form-header {
  background: var(--verde);
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#wa-form {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#wa-form input,
#wa-form select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--cinza-borda);
  border-radius: 6px;
  font-family: inherit;
  font-size: var(--fs-small);
  transition: border-color 0.3s ease;
}

#wa-form input:focus,
#wa-form select:focus {
  outline: none;
  border-color: var(--verde);
}

#wa-form select {
  cursor: pointer;
  appearance: none;
  background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%23333" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M6 9l6 6 6-6"></path></svg>') no-repeat right 12px center;
  background-size: 16px;
}

@keyframes float-orb {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }

  33% {
    transform: translateY(-30px) translateX(15px) scale(1.04);
  }

  66% {
    transform: translateY(20px) translateX(-10px) scale(0.97);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(156, 203, 76, 0.5);
  }

  50% {
    opacity: 0.85;
    transform: scale(1.2);
    box-shadow: 0 0 0 5px rgba(156, 203, 76, 0);
  }
}

@keyframes hero-enter {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__badge {
  animation: hero-enter 0.6s var(--ease) both;
  animation-delay: 0.1s;
}

.hero__title {
  animation: hero-enter 0.7s var(--ease) both;
  animation-delay: 0.25s;
}

.hero__subtitle {
  animation: hero-enter 0.7s var(--ease) both;
  animation-delay: 0.4s;
}

.hero__actions {
  animation: hero-enter 0.7s var(--ease) both;
  animation-delay: 0.55s;
}

.hero__stats {
  animation: hero-enter 0.7s var(--ease) both;
  animation-delay: 0.7s;
}

.portfolio-grid-flex {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
}
.portfolio-grid-flex .project-card {
  width: 100%;
}
@media (min-width: 640px) {
  .portfolio-grid-flex .project-card {
    width: calc(50% - var(--space-md) / 2);
  }
}
@media (min-width: 1024px) {
  .portfolio-grid-flex .project-card {
    width: calc(33.333% - (var(--space-md) * 2 / 3));
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 80px;
  }
  .hero__title {
    font-size: 2.8rem;
    line-height: 1.1;
  }

  .accordion-panel__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 40%, rgba(0, 0, 0, 0.4) 100%);
  }
  .accordion-panel--active .accordion-panel__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.85) 50%, rgba(0, 0, 0, 0.5) 100%);
  }
  .accordion-panel__link {
    margin: 0 auto;
    display: flex;
    width: fit-content;
    justify-content: center;
    text-align: center;
  }

  .service-detail {
    text-align: left;
    overflow: hidden;
    word-wrap: break-word;
  }
  .service-detail .btn {
    display: flex;
    width: fit-content;
    margin: var(--space-sm) auto 0;
  }
  .service-detail__deliverables {
    text-align: left;
  }
  .service-detail__content {
    text-align: left;
  }

  #team-carousel-wrapper {
    position: relative;
    overflow: hidden;
  }
  #team-carousel-wrapper .team-grid {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 0 !important;
    transition: transform 0.6s var(--ease);
    overflow: visible;
    grid-template-columns: none !important;
    justify-content: flex-start !important;
  }
  #team-carousel-wrapper .team-card {
    flex: 0 0 100% !important;
    min-width: 100%;
    width: 100% !important;
    box-sizing: border-box;
    padding: 0 12px;
    height: auto;
    border: none;
  }
  #team-carousel-wrapper .team-card > * {
    border-radius: var(--radius-lg);
  }
  #team-carousel-wrapper .team-card .team-card__photo {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    margin: 0;
  }
  #team-carousel-wrapper .team-card__photo {
    padding-top: 80%;
  }
  #team-carousel-wrapper .team-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  #team-carousel-wrapper .team-card__info {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .team-nav-mobile-only {
    display: flex;
  }
  .team-dots-mobile-only {
    display: flex;
  }

}

@media (min-width: 768px) {
  .team-nav-mobile-only {
    display: none !important;
  }
  .team-dots-mobile-only {
    display: none !important;
  }
  #team-carousel-wrapper .team-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: var(--space-md) !important;
    transform: none !important;
  }
  #team-carousel-wrapper .team-card {
    flex: none !important;
    min-width: 0 !important;
    width: auto !important;
    padding: 0 !important;
  }
}

@media (min-width: 1024px) {
  #team-carousel-wrapper .team-grid {
    grid-template-columns: repeat(5, 1fr) !important;
  }
}

@media (max-width: 767px) {
  .methodology-grid {
    overflow: hidden;
  }
  .method-card {
    overflow: hidden;
  }
  
  .cta-section {
    overflow: visible;
    position: relative;
    z-index: 1;
  }
  
  .footer {
    position: relative;
    z-index: 1;
  }

}

.partners-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-xl);
}
.partners-marquee {
  display: none;
}

.partners-desktop .partner-logo,
.partners-marquee .partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-desktop .partner-logo img,
.partners-marquee .partner-logo img {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.8;
  transition: all 0.3s ease;
}
.partners-desktop .partner-logo img:hover,
.partners-marquee .partner-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 767px) {
  .partners-desktop {
    display: none !important;
  }
  .partners-marquee {
    display: block;
    overflow: hidden;
    width: 100%;
    touch-action: pan-y;
  }
  .partners-marquee__track {
    display: flex;
    gap: var(--space-md);
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
  }
  .partners-marquee .partner-logo {
    flex: 0 0 auto;
    width: 150px;
  }
  .partners-marquee .partner-logo img {
    max-height: 70px;
  }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
