/* ============================================================
   GALILEU — Visual estilo Apple (claro + escuro alternados)
   Accent: vermelho Galileu #F04A3C
   ============================================================ */

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

:root {
  /* Accent */
  --red: #F04A3C;
  --red-dark: #d8392c;

  /* Light surfaces (Apple) */
  --white: #ffffff;
  --light: #f5f5f7;
  --light-2: #fbfbfd;

  /* Dark surfaces (Apple) */
  --black: #000000;
  --dark: #1d1d1f;
  --dark-2: #161617;

  /* Text */
  --ink: #1d1d1f;            /* texto sobre claro */
  --ink-soft: #6e6e73;       /* texto secundário sobre claro */
  --snow: #f5f5f7;           /* texto sobre escuro */
  --snow-soft: #a1a1a6;      /* texto secundário sobre escuro */

  --border-light: #e3e3e8;
  --border-dark: rgba(255,255,255,0.12);

  --radius: 20px;
  --radius-lg: 28px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

html {
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.47;
  font-size: 17px;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--red); color: #fff; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #c7c7cc; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #aeaeb2; }

/* ============================================================
   NAVBAR — Apple translucent (sempre escura)
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

#navbar.scrolled {
  background: rgba(0, 0, 0, 0.86);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

/* grade 1fr auto 1fr → links sempre centralizados na barra (estilo Apple) */
.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 22px;
  height: 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-logo { grid-column: 1; justify-self: start; display: flex; align-items: center; }

.logo-img {
  height: 22px;
  width: auto;
  display: block;
  transition: opacity 0.25s var(--ease);
}
.nav-logo:hover .logo-img { opacity: 0.75; }

.nav-links {
  grid-column: 2;
  justify-self: center;
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: rgba(245, 245, 247, 0.8);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover { color: #fff; }

.nav-right {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-nav {
  white-space: nowrap;
  background: var(--red);
  color: #fff;
  padding: 5px 12px;
  border-radius: 980px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0;
  transition: background 0.25s var(--ease);
}
.btn-nav:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: all 0.3s var(--ease);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  padding: 0 24px;
}
.mobile-menu li { width: 100%; }
.mobile-menu a {
  display: block;
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--snow);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s var(--ease);
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-cta {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 980px;
  font-size: 17px;
  margin-top: 20px;
  padding: 14px 0;
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 10px 22px;
  border-radius: 980px;
  border: none;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.btn-primary:hover { background: var(--red-dark); }
.btn-primary svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  padding: 10px 22px;
  border-radius: 980px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

.btn-large { font-size: 19px; padding: 16px 36px; }
.btn-full { width: 100%; padding: 15px; font-size: 17px; }

/* ============================================================
   SEÇÕES — base + temas claro/escuro
   ============================================================ */
section { padding: clamp(88px, 12vw, 160px) 0; }

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.section-subtitle,
.section-text {
  font-size: clamp(17px, 1.8vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 600px;
  margin-bottom: 48px;
}
.instagram .section-text { color: var(--snow-soft); }
.servicos .section-subtitle { color: var(--ink-soft); }

/* Tema ESCURO */
.theme-dark { background: var(--black); color: var(--snow); }
.theme-dark .section-subtitle,
.theme-dark .section-text { color: var(--snow-soft); }

/* Tema CLARO */
.theme-light { background: var(--light); color: var(--ink); }
.theme-light .section-subtitle,
.theme-light .section-text { color: var(--ink-soft); }

/* Tema BRANCO */
.theme-white { background: var(--white); color: var(--ink); }
.theme-white .section-subtitle,
.theme-white .section-text { color: var(--ink-soft); }

/* Sem animações de entrada — tudo visível direto */
/* Reveal suave estilo Apple — sutil, sem blur, sem exagero */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger — cards em grids entram um a um */
.reveal-stagger > .reveal {
  transition-delay: calc(var(--i, 0) * 0.1s);
}

/* Linha divisória que cresce do centro */
.line-reveal {
  position: relative;
}
.line-reveal::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  margin: 0 auto;
  background: var(--border-light);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.line-reveal.visible::after {
  width: 100%;
}
.theme-dark .line-reveal::after,
.faq .line-reveal::after,
.portfolio .line-reveal::after {
  background: rgba(255,255,255,0.1);
}

/* Texto manifesto — cada palavra surge em sequência */
.word-reveal .word {
  display: inline-block;
  opacity: 0.15;
  transition: opacity 0.5s ease;
}
.word-reveal .word.lit {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .fade-up { opacity: 1; transform: none; transition: none; }
  .word-reveal .word { opacity: 1; }
  .line-reveal::after { width: 100%; }
}

/* ============================================================
   HERO — preto Apple
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
  background: radial-gradient(120% 90% at 50% 0%, #161617 0%, #000 60%);
  color: var(--snow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.74) 42%, rgba(0,0,0,0.35) 72%, rgba(0,0,0,0.48) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 38%, rgba(0,0,0,0.72) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #050505 url("assets/portfolio/wsb-comunicacoes.jpg") center / cover no-repeat;
  transition: opacity 0.4s ease;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.06);
  transform: scale(1.01) translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
}

/* remove os enfeites antigos para um hero limpo */
.hero-bg-shapes,
.hero-keywords { display: none; }

.hero-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 920px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.42);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--snow-soft);
  margin-bottom: 26px;
}
.dot {
  width: 7px; height: 7px;
  background: var(--red);
  border-radius: 50%;
  display: inline-block;
}

.hero-title {
  font-size: clamp(44px, 7.2vw, 88px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title .red-text { display: block; color: var(--red); }

.hero-subtitle {
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--snow-soft);
  max-width: 600px;
  margin-bottom: 40px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll-indicator { display: none; }

/* ============================================================
   PROBLEMA — claro
   ============================================================ */
.problema { background: var(--white); color: var(--ink); }
.problema .section-text { color: var(--ink-soft); }

/* ===== Carrossel automático de dores (estilo Apple Fitness+) ===== */
.dores-carousel { margin-top: 48px; }

/* área visível em tela cheia, com bordas que desvanecem */
.dores-viewport {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  padding: 6px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

/* trilho que anda sozinho — loop perfeito via translateX(-50%) */
.dores-track {
  display: flex;
  width: max-content;
  animation: doresScroll 48s linear infinite;
}
.dores-track.paused { animation-play-state: paused; }

@keyframes doresScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-33.3333%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .dores-track { animation: none; }
  .hero-video { display: none; }
}

.dor-card {
  flex: 0 0 300px;
  margin-right: 22px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.dor-cat {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.dor-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink);
}
.dor-icon {
  margin-top: auto;
  width: 64px; height: 64px;
  border-radius: 18px;
  background: rgba(240,74,60,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
}
.dor-icon svg { width: 30px; height: 30px; }

/* botão pausar/retomar */
.dores-controls {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}
.carousel-pause {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #e3e3e8;
  color: #1d1d1f;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.carousel-pause:hover { background: #d2d2d7; }
.carousel-pause svg { width: 20px; height: 20px; }
.carousel-pause .icon-play { display: none; }
.carousel-pause.is-paused .icon-pause { display: none; }
.carousel-pause.is-paused .icon-play { display: block; }

/* ============================================================
   SERVIÇOS — branco
   ============================================================ */
.servicos { background: var(--light); color: var(--ink); }

/* ===== Carrossel estilo Apple ===== */
.servicos-carousel { margin-top: 16px; }

.servicos-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px 4px 22px;
  margin: 0 -4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.servicos-track::-webkit-scrollbar { display: none; }

.servico-card {
  flex: 0 0 320px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.servico-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.08);
}
.servico-cat {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-bottom: 10px;
}
.servico-title {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 16px;
}
.servico-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.servico-foot {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.servico-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--red);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.servico-icon svg { width: 24px; height: 24px; }
.servico-add {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s var(--ease);
}
.servico-add svg { width: 20px; height: 20px; }
.servico-add:hover { background: var(--red); }

/* Setas de navegação */
.servicos-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: #e3e3e8;
  color: #1d1d1f;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s var(--ease), opacity 0.2s var(--ease);
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-btn:hover { background: #d2d2d7; }
.carousel-btn:disabled { opacity: 0.4; cursor: default; }

/* ============================================================
   PORTFÓLIO — preto, cards com imagem/prova visual
   ============================================================ */
.portfolio {
  background: #161617;
  color: var(--snow);
}

.portfolio-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 52px;
}

.portfolio-head .section-title { margin-bottom: 0; }

.portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s var(--ease);
}
.portfolio-link:hover { color: #fff; }
.portfolio-link svg {
  width: 18px; height: 18px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-link:hover svg {
  transform: translateX(4px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.portfolio-card {
  background: #111113;
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: none;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}
.portfolio-card:hover {
  transform: translateY(-3px);
}

.portfolio-card--wide {
  grid-column: 1 / -1;
}

.portfolio-media {
  position: relative;
  min-height: 330px;
  aspect-ratio: 1.47 / 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151517;
}

.portfolio-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.08), transparent 40%);
  pointer-events: none;
}

.portfolio-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.portfolio-card:hover .portfolio-media img {
  transform: scale(1.04);
}

.portfolio-media--contain img {
  object-fit: contain;
  background: #050505;
}

.portfolio-social-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding: 32px 34px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.portfolio-social-head h3 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.portfolio-social-head p {
  max-width: 650px;
  color: var(--snow-soft);
  font-size: 17px;
  line-height: 1.55;
}

.portfolio-social-count {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--snow-soft);
}

.portfolio-social-count strong {
  color: var(--red);
  font-size: 38px;
  line-height: 1;
}

.portfolio-social-count span {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: uppercase;
}

.portfolio-social-gallery {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 16px;
  background: #09090a;
}

.portfolio-social-item {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
}

.portfolio-social-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #050505;
}

.portfolio-social-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.portfolio-social-item figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.portfolio-social-item figcaption strong {
  color: var(--snow);
  font-size: 14px;
  font-weight: 600;
}

.portfolio-social-item figcaption span {
  color: var(--snow-soft);
  font-size: 11px;
  text-align: right;
}

.portfolio-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--red);
  color: #fff;
  border-radius: 980px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.portfolio-media--identity {
  background:
    linear-gradient(135deg, rgba(240,74,60,0.92) 0 22%, transparent 22% 100%),
    linear-gradient(145deg, #242426, #0b0b0c);
}

.mockup-logo {
  position: relative;
  z-index: 1;
  width: 150px;
  height: 150px;
  border-radius: 34px;
  background: #080808;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 74px;
  font-weight: 800;
  transform: rotate(-12deg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.mockup-lines {
  position: absolute;
  right: 54px;
  top: 70px;
  z-index: 1;
  width: 145px;
  padding: 22px;
  border-radius: 26px;
  background: rgba(255,255,255,0.92);
  display: grid;
  gap: 12px;
  transform: rotate(-8deg);
}
.mockup-lines span {
  height: 10px;
  border-radius: 10px;
  background: #c9c9cf;
}
.mockup-lines span:nth-child(1) { width: 86%; background: var(--red); }
.mockup-lines span:nth-child(2) { width: 64%; }
.mockup-lines span:nth-child(3) { width: 78%; }

.portfolio-media--site {
  background: linear-gradient(145deg, #f5f5f7, #dfe2e8);
}
.portfolio-media--site::before { opacity: 0.32; filter: invert(1); }

.browser-mockup {
  position: relative;
  z-index: 1;
  width: min(76%, 440px);
  min-height: 220px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 22px;
  padding: 58px 28px 28px;
  box-shadow: 0 34px 100px rgba(16,24,40,0.18);
}
.browser-mockup span {
  position: absolute;
  top: 22px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--red);
}
.browser-mockup span:nth-child(1) { left: 24px; }
.browser-mockup span:nth-child(2) { left: 43px; background: #ffbd2e; }
.browser-mockup span:nth-child(3) { left: 62px; background: #28c840; }
.browser-mockup strong {
  display: block;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.portfolio-media--traffic {
  background: linear-gradient(145deg, #1d1d1f, #09090a);
}
.chart-mockup {
  position: relative;
  z-index: 1;
  width: min(70%, 360px);
  height: 220px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 18px;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.chart-mockup span {
  width: 46px;
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, var(--red), #8f2018);
}

.portfolio-media--social {
  background: linear-gradient(145deg, #2a1412, #101011);
}
.feed-mockup {
  position: relative;
  z-index: 1;
  width: min(72%, 360px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  transform: rotate(-5deg);
}
.feed-mockup span {
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
}
.feed-mockup span:nth-child(1),
.feed-mockup span:nth-child(4) { background: var(--red); }

.portfolio-body {
  padding: 22px 24px 26px;
}

.portfolio-type {
  display: block;
  color: var(--snow-soft);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.portfolio-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.portfolio-body p {
  color: var(--snow-soft);
  font-size: 15px;
  line-height: 1.5;
  max-width: 520px;
}

/* ============================================================
   MÉTODO — preto, timeline fluida que se preenche no scroll
   funde com o claro do "Sobre" logo abaixo
   ============================================================ */
/* ===== MÉTODO — claro, cards estilo Apple ===== */
.metodo {
  background: var(--light);
  color: var(--ink);
}

.metodo-intro {
  max-width: 540px;
  margin-top: 22px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--ink-soft);
}

.metodo-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.metodo-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border-radius: 24px;
  padding: 32px 24px 34px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.metodo-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.09);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240, 74, 60, 0.1);
  color: var(--red);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}

.metodo-step h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.metodo-step p {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* ============================================================
   SOBRE — editorial claro, tipografia e ritmo inspirados na Apple
   ============================================================ */
.sobre {
  background: var(--light-2);
  color: var(--ink);
  position: relative;
  z-index: 1;
  padding: 150px 0 140px;
}

.sobre-intro {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.sobre-intro .section-tag {
  margin-bottom: 34px;
}

.sobre-title {
  font-size: 84px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.sobre-title span {
  color: var(--red);
}

.sobre-lead {
  max-width: 760px;
  margin: 48px auto 0;
  font-size: 25px;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.42;
}

.sobre-manifesto {
  max-width: 980px;
  margin: 128px auto 0;
  padding: 68px 0;
  border-top: 1px solid #d2d2d7;
}

.sobre-manifesto p {
  max-width: 900px;
  font-size: 46px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.sobre-manifesto strong {
  color: var(--ink);
  font-weight: 600;
}

.sobre-principios {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 86px;
  border-top: 1px solid #d2d2d7;
}

.sobre-principio {
  min-width: 0;
  padding: 34px 40px 42px 0;
}

.sobre-principio + .sobre-principio {
  padding-left: 40px;
  border-left: 1px solid #d2d2d7;
}

.sobre-index {
  display: block;
  color: var(--red);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 52px;
}

.sobre-principio h3 {
  max-width: 270px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.sobre-principio p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.55;
}

.sobre-numeros {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
  padding: 0;
}

.sobre-numeros div {
  min-width: 0;
  padding-right: 36px;
}

.sobre-numeros div + div {
  padding-left: 40px;
  border-left: 1px solid #d2d2d7;
}

.sobre-numeros strong {
  display: block;
  color: var(--ink);
  font-size: 66px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 14px;
}

.sobre-numeros span {
  display: block;
  max-width: 210px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.35;
}

/* ============================================================
   FUNDADOR — preto com foto em destaque
   ============================================================ */
.fundador {
  background: #111112;
  color: var(--snow);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.fundador-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) 1fr;
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.fundador-photo-card {
  position: relative;
  max-width: 520px;
}

.fundador-photo {
  width: 100%;
  min-height: 620px;
  max-height: 680px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 28px 80px rgba(0,0,0,0.28);
}

.fundador-badge {
  position: absolute;
  right: 28px;
  bottom: -34px;
  background: var(--red);
  color: #fff;
  border-radius: 22px;
  padding: 22px 26px;
  min-width: 210px;
  box-shadow: 0 22px 52px rgba(240,74,60,0.22);
}
.fundador-badge strong {
  display: block;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}
.fundador-badge span {
  display: block;
  font-size: 15px;
  line-height: 1.25;
}

.fundador-content p {
  color: var(--snow-soft);
  font-size: 18px;
  line-height: 1.65;
  max-width: 620px;
  margin-bottom: 22px;
}
.fundador-subtitle {
  color: var(--snow-soft);
  font-size: 19px;
  margin-top: -8px;
  margin-bottom: 28px;
}

.fundador-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin: 42px 0 38px;
}
.fundador-stats strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.fundador-stats span {
  display: block;
  color: var(--snow-soft);
  font-size: 15px;
  line-height: 1.25;
}

.fundador-cta svg { margin-left: 2px; }

/* ============================================================
   FAQ — perguntas em acordeão
   ============================================================ */
.faq {
  background: #111112;
  color: var(--snow);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.faq-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.faq-head .section-title { margin-bottom: 16px; }
.faq-head p {
  color: var(--snow-soft);
  font-size: 19px;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #070707;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 78px;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: none;
  background: transparent;
  color: var(--snow);
  font: inherit;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--snow-soft);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s ease,
              padding 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer p {
  color: var(--snow-soft);
  font-size: 17px;
  line-height: 1.58;
  max-width: 720px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding: 0 30px 28px;
}
.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: #fff;
}

/* ============================================================
   INSTAGRAM — preto
   ============================================================ */
.instagram { background: var(--black); color: var(--snow); }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 48px;
}
.insta-card {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease);
}
.insta-card:hover { filter: brightness(1.05); }
.insta-content {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.insta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.insta-bg.bg1 { background: linear-gradient(145deg, #2a2a2c, #1d1d1f); }
.insta-bg.bg2 { background: linear-gradient(145deg, #3a1410, var(--red)); }
.insta-bg.bg3 { background: linear-gradient(145deg, #1d1d1f, #2a2a2c); }
.insta-bg.bg4 { background: linear-gradient(145deg, var(--red), #7a1d15); }
.insta-content p {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #fff;
}
.insta-cta { display: flex; }

/* ============================================================
   GOOGLE MEU NEGÓCIO — claro (card escuro)
   ============================================================ */
.gmn { background: var(--light); color: var(--ink); }
.gmn-card {
  margin-top: 48px;
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.gmn-info { color: var(--snow); }
.gmn-logo { margin-bottom: 20px; }
.logo-img--gmn { height: 30px; }
.gmn-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.stars { display: flex; gap: 2px; }
.gmn-rating span { font-size: 14px; color: var(--snow-soft); }
.gmn-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  color: var(--snow-soft);
  max-width: 420px;
  line-height: 1.45;
}
.gmn-address svg { flex-shrink: 0; margin-top: 2px; color: var(--red); }
.gmn-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.gmn-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-radius: 980px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.25s var(--ease);
}
.gmn-btn:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   CTA PRINCIPAL — fechamento editorial claro
   ============================================================ */
.cta-principal {
  background: var(--light);
  color: var(--ink);
  text-align: center;
  padding: 150px 0 144px;
}

.cta-content {
  max-width: 980px;
  margin: 0 auto;
}

.cta-pre {
  font-size: 15px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 30px;
}

.cta-title {
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 34px;
}

.cta-title span {
  color: var(--red);
}

.cta-sub {
  max-width: 680px;
  margin: 0 auto 38px;
  color: var(--ink-soft);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.45;
}

.cta-apple-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 980px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  transition: background 0.2s var(--ease);
}

.cta-apple-button:hover {
  background: var(--red-dark);
}

.cta-apple-button svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cta-apple-button:hover svg {
  transform: translateX(4px);
}

.cta-note {
  margin-top: 18px;
  color: #86868b;
  font-size: 13px;
  line-height: 1.3;
}

/* ============================================================
   CONTATO — branco
   ============================================================ */
/* ===== CONTATO — estilo Apple, centralizado ===== */
.contato { background: var(--white); color: var(--ink); }

.contato-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.contato-lead {
  font-size: 17px;
  color: var(--ink-soft);
  margin-top: 16px;
  line-height: 1.5;
}

.contato-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Formulário simples estilo Apple */
.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.contato-form input,
.contato-form select,
.contato-form textarea {
  width: 100%;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 16px 18px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.contato-form input::placeholder,
.contato-form textarea::placeholder {
  color: #aeaeb2;
}

.contato-form select {
  color: var(--ink);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23aeaeb2' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--light);
}

.contato-form input:focus,
.contato-form select:focus,
.contato-form textarea:focus {
  border-color: var(--red);
}

.contato-form textarea {
  resize: vertical;
  min-height: 110px;
}

.contato-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 400;
  padding: 11px 24px;
  border: none;
  border-radius: 980px;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.contato-submit:hover { background: var(--red); }
.contato-submit svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.contato-submit:hover svg {
  transform: translateX(4px);
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  text-align: center;
  padding: 48px 24px;
  background: var(--light);
  border-radius: 20px;
}
.form-success-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success p { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.form-success p strong { display: block; font-size: 22px; font-weight: 600; letter-spacing: -0.02em; color: var(--ink); margin-bottom: 6px; }

/* Canais de contato — cards verticais */
.contato-canais {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contato-canal {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
  transition: color 0.2s var(--ease);
}
.contato-canal:last-child { border-bottom: none; }
.contato-canal svg { flex-shrink: 0; color: var(--red); }
.contato-canal div { display: flex; flex-direction: column; gap: 2px; }
.contato-canal strong { font-size: 15px; font-weight: 600; color: var(--ink); }
.contato-canal span { font-size: 14px; color: var(--ink-soft); }
a.contato-canal:hover { color: var(--red); }
a.contato-canal:hover strong { color: var(--red); }
.contato-canal--loc { cursor: default; }

/* ============================================================
   FOOTER — escuro
   ============================================================ */
.footer {
  background: var(--dark);
  color: var(--snow-soft);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-brand .logo-img--footer { height: 30px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 280px;
}
.footer-links h5,
.footer-contato h5 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a,
.footer-contato a {
  font-size: 14px;
  color: var(--snow-soft);
  transition: color 0.2s var(--ease);
}
.footer-links a:hover,
.footer-contato a:hover { color: #fff; }
.footer-contato {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contato p { font-size: 14px; line-height: 1.5; margin-top: 4px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 28px;
}
.footer-bottom p { font-size: 13px; color: #86868b; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 11px; }
  .portfolio-grid { gap: 20px; }
  .fundador-grid { grid-template-columns: 1fr; }
  .fundador-photo-card { max-width: 620px; }
  .sobre-title { font-size: 64px; }
  .sobre-lead { font-size: 22px; }
  .sobre-manifesto p { font-size: 40px; }
  .cta-title { font-size: 56px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 120px 0 90px; min-height: 100svh; }
  .hero::before {
    background:
      linear-gradient(90deg, rgba(0,0,0,0.84), rgba(0,0,0,0.62)),
      linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.16) 42%, rgba(0,0,0,0.78) 100%);
  }
  .hero-video { object-position: 58% center; }
  .hero-title { font-size: clamp(38px, 11vw, 60px); }

  .servico-card { flex: 0 0 80%; min-height: 340px; }
  .dor-card { flex: 0 0 260px; min-height: 320px; margin-right: 16px; }
  .portfolio-head { align-items: flex-start; flex-direction: column; margin-bottom: 36px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-media { min-height: 260px; }
  .portfolio-social-head { padding: 26px 24px; }
  .sobre { padding: 110px 0 100px; }
  .sobre-intro { text-align: left; }
  .sobre-intro .section-tag { margin-bottom: 26px; }
  .sobre-title { font-size: 44px; line-height: 1.02; }
  .sobre-lead { margin-top: 34px; font-size: 20px; }
  .sobre-manifesto { margin-top: 82px; padding: 46px 0; }
  .sobre-manifesto p { font-size: 34px; }
  .sobre-principios { grid-template-columns: 1fr; margin-top: 64px; }
  .sobre-principio { padding: 28px 0 38px; }
  .sobre-principio + .sobre-principio {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #d2d2d7;
  }
  .sobre-index { margin-bottom: 30px; }
  .sobre-principio h3 { max-width: none; font-size: 28px; }
  .sobre-numeros { margin-top: 56px; padding-top: 0; grid-template-columns: 1fr; }
  .sobre-numeros div { padding: 34px 0; }
  .sobre-numeros div + div {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid #d2d2d7;
  }
  .sobre-numeros strong { font-size: 56px; }
  .fundador-photo { min-height: 480px; max-height: 560px; }
  .fundador-badge { right: 20px; bottom: -26px; }
  .fundador-content { padding-top: 16px; }
  .fundador-stats { grid-template-columns: 1fr; gap: 18px; }
  .faq-head { text-align: left; margin-bottom: 36px; }
  .faq-question { min-height: 70px; padding: 0 20px; font-size: 16px; }
  .faq-answer { padding: 0 20px 22px; }
  .cta-principal { padding: 110px 0 106px; }
  .cta-title { font-size: 48px; }
  .cta-sub { font-size: 20px; }
  .contato-body { grid-template-columns: 1fr; gap: 48px; }

  .metodo-steps {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 76%;
    gap: 14px;
    margin-top: 44px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .metodo-steps::-webkit-scrollbar { display: none; }
  .metodo-step { padding: 28px 24px 30px; }

  .gmn-card { flex-direction: column; align-items: flex-start; padding: 32px; }
  .gmn-btns { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; }
  .portfolio-body { padding: 22px; }
  .portfolio-media { min-height: 230px; }
  .portfolio-social-head { align-items: flex-start; padding: 24px 22px; }
  .portfolio-social-head h3 { font-size: 24px; }
  .portfolio-social-count { display: none; }
  .portfolio-social-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-social-item:first-of-type { grid-column: 1 / -1; }
  .portfolio-social-item figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    min-height: 66px;
    padding: 10px;
  }
  .portfolio-social-item figcaption strong { font-size: 12px; }
  .portfolio-social-item figcaption span { font-size: 10px; text-align: left; }
  .sobre-title { font-size: 38px; }
  .sobre-lead { font-size: 19px; }
  .sobre-manifesto p { font-size: 30px; }
  .cta-principal { padding: 92px 0 88px; }
  .cta-pre { margin-bottom: 24px; }
  .cta-title { font-size: 38px; margin-bottom: 28px; }
  .cta-sub { font-size: 18px; margin-bottom: 32px; }
  .cta-apple-button { min-height: 48px; padding: 0 20px; font-size: 16px; }
  .mockup-logo { width: 108px; height: 108px; font-size: 52px; border-radius: 26px; }
  .mockup-lines { right: 22px; top: 56px; width: 108px; padding: 16px; }
  .browser-mockup { width: 82%; min-height: 178px; }
  .chart-mockup { width: 82%; height: 178px; gap: 12px; }
  .chart-mockup span { width: 34px; }
  .fundador-photo { min-height: 380px; max-height: 460px; }
  .fundador-badge { position: relative; right: auto; bottom: auto; margin: -32px 18px 0 auto; }
  .insta-grid { grid-template-columns: 1fr 1fr; }
  .gmn-btns { grid-template-columns: 1fr; }
  .contato-body { grid-template-columns: 1fr; gap: 44px; }
}
