:root {
  --light: #eaeaea;
  --lighter: #e6ebf2;
  --dark: #1f2127;
  --accent: #33353c;
  --text: #2a2c32;
  --muted: #5a5d66;
  --font-heading: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-hero: 'Krona One', 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Work Sans', 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--light);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1400px, 94%);
  margin: 0 auto;
}

.header {
  background: var(--light);
  padding: 0 0 36px;
  position: relative;
  overflow: hidden;
}

.sticky-bar {
  position: relative;
  background: var(--light);
  width: 100%;
  padding: 22px 0 12px;
  transition: none;
}

.sticky-bar.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(236, 232, 227, 0.9);
}

.sticky-placeholder {
  height: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #1b1b1b;
}

.menu-toggle svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: currentColor;
}

.menu-toggle .icon-close {
  display: none;
  stroke: currentColor;
  fill: none;
}

.menu-toggle.open .icon-open {
  display: none;
}

.menu-toggle.open .icon-close {
  display: block;
}

.social-row {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  font-size: 24px;
}

.nav-menu {
  display: flex;
  gap: 34px;
  justify-content: flex-start;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  color: #1b1b1b;
  flex: 1;
}

.nav-menu .home-icon svg {
  width: 32px;
  height: 32px;
  vertical-align: middle;
}

.nav-menu a:hover {
  color: var(--text);
}

.nav-menu a {
  position: relative;
  padding-bottom: 2px;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: #1b1b1b;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.nav-menu a.active {
  color: var(--text);
  position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  opacity: 1;
}

.nav-menu .with-caret span {
  font-size: 11px;
  margin-left: 4px;
}

.top-social {
  justify-content: flex-end;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 30;
  display: none;
  flex-direction: column;
  padding: 18px 24px 32px;
  gap: 26px;
  height: 66vh;
  max-height: 66vh;
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  margin: -53px 0 10px;
}

.logo {
  width: 76px;
  height: auto;
  filter: invert(12%) sepia(6%) saturate(518%) hue-rotate(185deg) brightness(92%) contrast(91%);
}

.mobile-menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.mobile-menu .menu-toggle {
  color: #f2f3f5;
}

.mobile-menu-header .menu-toggle {
  position: absolute;
  left: 0;
}

.mobile-menu .logo {
  width: 78px;
  filter: brightness(0) invert(1);
}

.mobile-nav {
  display: grid;
  gap: 22px;
  font-size: 20px;
  color: #f2f3f5;
}

.mobile-nav a {
  position: relative;
  padding-bottom: 6px;
}

.mobile-nav .mobile-home-link {
  display: inline-flex;
  align-items: center;
}

.mobile-nav .mobile-home-link svg {
  width: 38px;
  height: 38px;
}

.mobile-nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: currentColor;
}

.mobile-nav .with-caret span {
  font-size: 14px;
  margin-left: 6px;
}

.mobile-social {
  justify-content: flex-start;
  gap: 16px;
  font-size: 30px;
  margin-top: auto;
  color: #f2f3f5;
}

.hero {
  margin: 14px auto 70px;
}

.hero-social {
  display: flex;
  gap: 20px;
  font-size: 28px;
  justify-content: flex-start;
  margin: 0 0 26px 10px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
}

.hero-text {
  text-align: left;
  padding-left: 0;
  max-width: 1180px;
  margin: 0 auto 0 10px;
  position: relative;
  z-index: 2;
}

.hero-image {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: clamp(-120px, -8vw, 0px);
  position: relative;
  z-index: 0;
}

.hero-image img {
  width: 760px;
  max-width: 35vw;
  height: auto;
  filter: grayscale(90%) brightness(95%) contrast(95%);
  position: relative;
  z-index: 0;
}

.eyebrow {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
}

.eyebrow.dark {
  color: var(--muted);
}

.hero h1 {
  font-family: var(--font-hero);
  font-size: 110px;
  letter-spacing: -0.6px;
  line-height: 104px;
  font-weight: 700;
  margin: 12px 0 18px;
  text-transform: uppercase;
}

.lead-block {
  max-width: 520px;
  margin: 8px 0 0 0;
  text-align: left;
}

.lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.line {
  display: block;
  width: 68px;
  height: 5px;
  background: var(--text);
  margin-top: 8px;
}

.hero-cta {
  margin-top: 26px;
}

.button.cta {
  background: linear-gradient(120deg, #1f2127 0%, #2f3442 50%, #1f2127 100%);
  color: #fff;
  padding: 14px 26px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 4px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.button.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.18) 45%, rgba(255, 255, 255, 0) 90%);
  transform: translateX(-100%);
  animation: shimmer 2.6s infinite;
}

.button.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  60% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.services {
  background: var(--dark);
  color: #fff;
  padding: 22px 0 90px;
}

.services-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.services h2,
.projects h2,
.process h2,
.team h2,
.partners h2,
.contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 50px);
  letter-spacing: 0.05em;
  line-height: 1.05;
  text-transform: uppercase;
}

.services h2 {
  margin-bottom: 0;
}
.services .line {
  background: #ffffff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 38px;
  margin-top: 0;
}

.service-card {
  display: grid;
  gap: 10px;
  color: #cdd2dc;
  font-size: 14px;
  justify-items: start;
  align-content: start;
}

.service-card h3 {
  display: inline-flex;
  align-items: center;
}

.title-icon {
  font-size: 22px;
  color: #ffffff;
  display: block;
  margin-top: 45px;
  margin-bottom: 6px;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.08em;
}

.projects {
  background: var(--lighter);
  padding: 78px 0 90px;
}

.projects-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 34px;
}

.projects-header h2 {
  margin-top: 8px;
}

.featured-project {
  background: #fff;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
  gap: 28px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  border-radius: 6px;
  margin-bottom: 56px;
}

.featured-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}

.main-image {
  grid-row: span 3;
  border-radius: 4px;
  height: 100%;
  object-fit: cover;
}

.thumbs {
  display: grid;
  gap: 12px;
}

.thumbs img {
  border-radius: 4px;
  height: 140px;
  object-fit: cover;
}

.project-info {
  display: grid;
  align-content: center;
  gap: 14px;
  color: var(--muted);
  font-size: 14px;
}

.project-info h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--text);
}

.price {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #4f5c73;
}

.button {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  padding: 12px 22px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
  border: none;
  text-transform: uppercase;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.button.dark {
  background: var(--accent);
}

.other-projects {
  display: grid;
  gap: 22px;
}

.other-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.other-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.other-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.other-body {
  padding: 14px 16px 18px;
}

.other-body h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--text);
}

.process {
  background: var(--lighter);
  padding: 70px 0 80px;
  border-top: 3px solid #d5dce4;
}

.process-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.process-steps {
  display: grid;
  gap: 18px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.step h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.step p {
  color: var(--muted);
  font-size: 14px;
}

.team {
  background: var(--light);
  padding: 72px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  align-items: stretch;
}

.team-info {
  max-width: 320px;
}

.team-info p {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 12px;
}


.member-card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 309px;
  overflow: hidden;
  margin: 0;
  display: block;        /* remove flex */
}

.member-card img {
  width: 100%;
  aspect-ratio: 1 / 1; /* quadrada */
  object-fit: cover;
  display: block;
}


.member-body {
  padding: 12px 14px 16px;
}

.member-body h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.member-body p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.partners {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}












.clients {
  padding: 70px 0;
  background: #0f0f0f;
  color: #fff;
  text-align: center;
}

.clients h2 {
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}

.clients p {
  max-width: 720px;
  margin: 0 auto 40px;
  opacity: 0.8;
}

/* FEED */
.logos-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

/* LOGOS */
.logos-track a {
  display: flex;
  align-items: center;
}

.logos-track img {
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* logo branca */
  opacity: 0.85;
  transition: opacity .3s, transform .3s;
}

.logos-track a:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* 🔥 ANIMAÇÃO CONTÍNUA REAL */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.logos-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #0f0f0f, transparent);
}

.logos-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #0f0f0f, transparent);
}














.partners p {
  max-width: 540px;
  margin: 14px auto 10px;
  color: #c9ced8;
  font-size: 14px;
}

.contact {
  background: var(--light);
  padding: 76px 0 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.contact-info p {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 10px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row label {
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 600;
}

input,
textarea {
  padding: 12px 14px;
  border: 1px solid #d2d6de;
  background: #fff;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}

input:focus,
textarea:focus {
  outline: 2px solid #b7c2d3;
}

.footer {
  background: var(--dark);
  color: #cfd3dd;
  padding: 52px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: center;
}

.footer-logo img {
  width: 70px;
  filter: brightness(0) invert(1);
}

.footer-logo {
  margin-left: 236px;
}

.footer-info {
  display: grid;
  gap: 6px;
}

.footer-info p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  color: #cfd3dd;
  flex-shrink: 0;
}

.footer-icon svg {
  width: 100%;
  height: 100%;
}
.footer-social {
  justify-content: flex-start;
  gap: 18px;
  font-size: 24px;
}

.footer h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 8px;
}

.footer p {
  font-size: 13px;
  color: #cfd3dd;
}

.footer-bottom {
  margin-top: 12px;
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: #cfd3dd;
}
.burst {
  width: 90px;
  height: 90px;
  background: conic-gradient(#1f2127 0deg 15deg, transparent 15deg 30deg);
  border-radius: 50%;
  mask-image: radial-gradient(circle at center, black 55%, transparent 56%);
  opacity: 0.82;
}

.burst.small {
  width: 64px;
  height: 64px;
}

.burst.large {
  width: 100px;
  height: 100px;
}

.burst-left {
  justify-self: center;
}

.burst-right {
  justify-self: center;
}

@media (max-width: 1000px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }

  .hero-text {
    padding-left: 0;
    margin: 0 auto;
  }

  .hero-social {
    margin-left: 0;
    justify-content: center;
  }

  .hero-image {
    margin-left: 0;
    justify-content: center;
  }

  .hero-image img {
    max-width: min(82vw, 560px);
  }

  .featured-project {
    grid-template-columns: 1fr;
  }

  .projects-header,
  .other-header {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .top-nav {
    justify-content: space-between;
  }

  .nav-menu {
    display: none;
  }

  .top-social {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero h1 {
    font-size: clamp(52px, 18vw, 88px);
    line-height: 1.05;
  }

  .featured-images {
    grid-template-columns: 1fr;
  }

  .main-image {
    grid-row: auto;
    height: 260px;
  }

  .thumbs {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .service-grid,
  .team-grid,
  .other-grid {
    grid-template-columns: 1fr;
  }

  .logos-track {
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: auto 1fr;
    align-items: start;
    justify-items: start;
    gap: 14px 16px;
  }

  .footer-logo {
    grid-column: 1;
    grid-row: 1 / span 2;
    justify-self: start;
    margin-left: 60px;
  }

  .footer-col {
    grid-column: 2;
    padding-left: 40px;
  }

  .footer-col h4 {
    margin-bottom: 4px;
  }

  .footer-col p {
    margin-top: 2px;
    margin-bottom: 4px;
  }

  .footer .footer-social {
    grid-column: 1 / span 2;
    margin-top: 6px;
    justify-content: center;
    width: 100%;
    text-align: center;
    font-size: 28px;
    gap: 21px;
  }
}

@media (max-width: 540px) {
  .header {
    padding-bottom: 24px;
  }

  .sticky-bar {
    padding: 16px 0 8px;
  }

  .nav-menu {
    font-size: 15px;
    gap: 10px;
  }

  .hero {
    margin: 10px auto 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 70px);
  }

  .lead {
    font-size: 15px;
  }

  .process,
  .projects,
  .services,
  .contact,
  .team,
  .partners {
    padding-left: 0;
    padding-right: 0;
  }

  .member-card {
    margin: 0 auto;
  }

  .logos-track {
    gap: 28px;
  }
}

body.menu-open {
  overflow: hidden;
}
