/* ============================================================
   W2 Tradução Simultânea — style.css
   Mobile-first · #5b2d8e · #f7931e
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple:       #5b2d8e;
  --purple-dark:  #3e1d63;
  --purple-light: #7a4aaa;
  --orange:       #f7931e;
  --orange-dark:  #d97a10;
  --white:        #ffffff;
  --off-white:    #f8f6fb;
  --grey-light:   #f0edf5;
  --grey:         #9e8fb0;
  --text:         #1a1228;
  --text-muted:   #5c5070;

  --font-serif:   'Playfair Display', Georgia, serif;
  --font-sans:    'Inter', system-ui, sans-serif;

  --radius:       8px;
  --radius-lg:    16px;
  --shadow:       0 4px 24px rgba(91,45,142,.10);
  --shadow-lg:    0 12px 48px rgba(91,45,142,.18);

  --nav-h:        116px;
  --section-v:    72px;
  --max-w:        1160px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CONTAINER ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.2; }

h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; }

p  { color: var(--text-muted); line-height: 1.75; }
p + p { margin-top: .9rem; }

.lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.8;
}

strong { color: var(--text); font-weight: 600; }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: .02em;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(247,147,30,.35);
}
.btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 8px 28px rgba(247,147,30,.45);
}

.btn--secondary {
  background: rgba(255,255,255,.18);
  color: var(--white);
  border: 2px solid rgba(255,255,255,.55);
  backdrop-filter: blur(4px);
}
.btn--secondary:hover {
  background: rgba(255,255,255,.28);
  border-color: var(--white);
}

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

.btn--full { width: 100%; justify-content: center; }

/* ── SECTION SKELETON ─────────────────────────────────────── */
.section { padding-block: var(--section-v); }
.section--alt  { background: var(--off-white); }
.section--dark { background: var(--purple-dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,.8); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header--light .section-label { color: var(--orange); }
.section-header--light .section-title { color: var(--white); }
.section-header--light .section-subtitle { color: rgba(255,255,255,.75); }

.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title { color: var(--purple); margin-bottom: 14px; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  margin-inline: auto;
}

/* ── FADE-IN ANIMATION ────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-in--delay { transition-delay: .18s; }
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── NAVBAR ───────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(91,45,142,.1);
  backdrop-filter: blur(10px);
  transition: transform .35s ease, box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow); }

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

.navbar__logo img { height: 92px; width: auto; }

.navbar__nav {
  display: none;
  gap: 6px;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-link:hover, .nav-link.active { color: var(--purple); background: var(--grey-light); }

.nav-link--en {
  color: var(--purple);
  border: 1.5px solid var(--purple);
  padding: 5px 14px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-link--en:hover {
  background: var(--purple);
  color: var(--white);
}

/* Hamburger */
.navbar__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open */
.navbar__nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--grey-light);
  padding: 16px 20px 24px;
  box-shadow: var(--shadow-lg);
  gap: 4px;
}
.navbar__nav.open .nav-link { padding: 10px 16px; font-size: .95rem; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  background:
    linear-gradient(135deg, var(--purple-dark) 0%, var(--purple) 55%, #8b44c0 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(247,147,30,.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(255,255,255,.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Subtle grid texture */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-block: 64px 80px;
}

.hero__eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

.hero__headline {
  color: var(--white);
  max-width: 700px;
  text-shadow: 0 2px 20px rgba(0,0,0,.2);
}

.hero__subheadline {
  color: rgba(255,255,255,.85);
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 560px;
  margin-top: 16px;
  line-height: 1.7;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.hero__clients { border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px; }

.hero__clients-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

.hero__clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero__clients-list span {
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  padding: 5px 14px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero__scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.55);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── QUEM SOMOS ───────────────────────────────────────────── */
.quem-somos__grid {
  display: grid;
  gap: 48px;
}

.quem-somos__text { display: flex; flex-direction: column; gap: 18px; }
.quem-somos__text .btn { align-self: flex-start; margin-top: 8px; }

.quem-somos__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--white);
  border: 1px solid rgba(91,45,142,.12);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow);
  transition: box-shadow .25s, transform .25s;
}
.stat-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.stat-card__number {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  line-height: 1;
}

.stat-card__label {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ── SERVIÇOS ─────────────────────────────────────────────── */
.servicos__grid {
  display: grid;
  gap: 20px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(91,45,142,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
  transform: translateY(-3px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--purple);
  opacity: 0;
  transition: opacity .25s;
}
.service-card:hover::before { opacity: 1; }

.service-card--highlight {
  border-color: var(--orange);
  background: linear-gradient(135deg, #fff9f3 0%, #fff 100%);
}
.service-card--highlight::before { background: var(--orange); opacity: 1; }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--purple);
  transition: background .25s, color .25s;
}
.service-card:hover .service-card__icon {
  background: var(--purple);
  color: var(--white);
}
.service-card--highlight .service-card__icon {
  background: #ffeedd;
  color: var(--orange);
}
.service-card--highlight:hover .service-card__icon {
  background: var(--orange);
  color: var(--white);
}

.service-card__title { color: var(--purple); margin-bottom: 10px; }
.service-card__text  { font-size: .92rem; }

.service-card__badge {
  display: inline-block;
  margin-top: 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange-dark);
  background: #ffeedd;
  padding: 4px 12px;
  border-radius: 50px;
}

.servicos__cta { text-align: center; margin-top: 48px; }

/* ── PORTFOLIO ────────────────────────────────────────────── */
.portfolio__grid {
  display: grid;
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid rgba(91,45,142,.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.portfolio-card__img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--grey-light);
}
.portfolio-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-card:hover .portfolio-card__img-wrap img { transform: scale(1.04); }

.portfolio-card__img-wrap--dual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  aspect-ratio: 16/7;
}
.portfolio-card__img-wrap--dual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__img-wrap--triple {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  aspect-ratio: 16/7;
}
.portfolio-card__img-wrap--triple img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__img-wrap--quad {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  aspect-ratio: 4/3;
}
.portfolio-card__img-wrap--quad img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card__body { padding: 24px; }

.portfolio-card__tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--grey-light);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.portfolio-card__tag--pioneer {
  color: var(--orange-dark);
  background: #ffeedd;
}

.portfolio-card__title { color: var(--purple); margin-bottom: 8px; }
.portfolio-card p      { font-size: .92rem; }

.portfolio-card--featured .portfolio-card__img-wrap { aspect-ratio: 16/8; }

/* Outros clientes */
.outros-clientes {
  margin-top: 56px;
  text-align: center;
}

.outros-clientes__title {
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.outros-clientes__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.outros-clientes__list span {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--grey-light);
  border: 1px solid rgba(91,45,142,.1);
  padding: 6px 16px;
  border-radius: 50px;
}

/* ── COP30 ────────────────────────────────────────────────── */
.cop30__cards {
  display: grid;
  gap: 24px;
}

.cop30-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: background .25s, border-color .25s;
}
.cop30-card:hover {
  background: rgba(255,255,255,.11);
  border-color: rgba(247,147,30,.5);
}

.cop30-card__header {
  background: rgba(0,0,0,.25);
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.cop30-card__date {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.cop30-card__title {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.3rem;
}

.cop30-card__body { padding: 24px 28px; }
.cop30-card__body p { color: rgba(255,255,255,.8); }
.cop30-card__body p + p { margin-top: 12px; }
.cop30-card__body strong { color: var(--white); }

.cop30-card__details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cop30-card__details li {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  padding-left: 20px;
  position: relative;
}
.cop30-card__details li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* ── FAQ ──────────────────────────────────────────────────── */
.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(91,45,142,.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] {
  border-color: var(--purple-light);
  box-shadow: var(--shadow);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--purple);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s;
}
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question:hover { background: var(--off-white); }

.faq-item__question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item[open] .faq-item__question::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 24px 22px;
  border-top: 1px solid var(--grey-light);
}
.faq-item__answer p { font-size: .93rem; }
.faq-item__answer ol {
  list-style: decimal;
  padding-left: 20px;
  margin-block: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.faq-item__answer ol li { font-size: .93rem; color: var(--text-muted); }

.faq-item__cta {
  display: inline-block;
  margin-top: 14px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s;
}
.faq-item__cta:hover { color: var(--orange-dark); }

/* ── CONTATO ──────────────────────────────────────────────── */
.contato__grid {
  display: grid;
  gap: 48px;
}

.contato__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.contact-item__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--grey-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.contact-item__icon--whatsapp {
  background: #e8f9ef;
  color: #25d366;
}

.contact-item__label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 3px;
  line-height: 1;
}

.contact-item__value {
  font-size: .98rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  transition: color .2s;
}
a.contact-item__value:hover { color: var(--purple); }

/* Quote box */
.quote-box {
  background: var(--white);
  border: 1px solid rgba(91,45,142,.14);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}

.quote-box__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 22px;
}

.quote-box__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
  counter-reset: quote;
}

.quote-box__list li {
  display: flex;
  flex-direction: column;
  padding-left: 36px;
  position: relative;
  counter-increment: quote;
}
.quote-box__list li::before {
  content: counter(quote);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-box__list li strong {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.3;
}
.quote-box__list li span {
  font-size: .82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.quote-box__footer {
  font-size: .88rem;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

/* ── FOOTER ───────────────────────────────────────────────── */
.footer {
  background: var(--purple-dark);
  color: rgba(255,255,255,.75);
  padding-block: 56px 24px;
}

.footer__inner {
  display: grid;
  gap: 40px;
}

.footer__brand img { margin-bottom: 12px; }
.footer__brand p { font-size: .88rem; line-height: 1.6; }

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.footer__nav a {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer__nav a:hover { color: var(--orange); }

.footer__ethics {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 24px;
}
.footer__ethics-text {
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
  max-width: 680px;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
}
.footer__bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
}

/* ── WHATSAPP FAB ─────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 900;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37,211,102,.55);
}

/* Pulse ring */
.whatsapp-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: pulse-ring 2.5s ease-out infinite;
  opacity: 0;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);    opacity: .6; }
  80%  { transform: scale(1.4);  opacity: 0; }
  100% { opacity: 0; }
}

/* ── TABLET (≥ 640px) ─────────────────────────────────────── */
@media (min-width: 640px) {
  :root { --section-v: 88px; }

  .servicos__grid   { grid-template-columns: 1fr 1fr; }
  .portfolio__grid  { grid-template-columns: 1fr 1fr; }
  .cop30__cards     { grid-template-columns: 1fr 1fr; }
  .contato__grid    { grid-template-columns: 1fr 1fr; }

  .portfolio-card--featured { grid-column: span 2; }

  .quem-somos__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ── DESKTOP (≥ 1024px) ───────────────────────────────────── */
@media (min-width: 1024px) {
  :root { --section-v: 104px; }

  /* Navbar */
  .navbar__toggle { display: none; }
  .navbar__nav    { display: flex !important; position: static; box-shadow: none; padding: 0; border: none; }

  /* Hero */
  .hero__content { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .hero__text    { flex: 1; }
  .hero__clients { flex: 0 0 280px; border-top: none; border-left: 1px solid rgba(255,255,255,.15); padding-top: 0; padding-left: 40px; }

  /* Serviços 3-col */
  .servicos__grid  { grid-template-columns: repeat(3, 1fr); }

  /* Portfolio */
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-card--featured { grid-column: span 1; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* ── LARGE DESKTOP (≥ 1280px) ────────────────────────────── */
@media (min-width: 1280px) {
  .container { padding-inline: 32px; }
}

/* ── REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .fade-in { opacity: 1; transform: none; }
}
