/* ============================================
   GOOD STORE GROUP — Design System
   ============================================ */

:root {
  /* Core palette — dark editorial tech */
  --bg: #0a0e14;
  --bg-2: #0f141c;
  --bg-3: #141b26;
  --surface: #1a2330;
  --surface-hi: #222d3d;

  --ink: #ecebe6;        /* off-white cremoso */
  --ink-dim: #a8a59b;
  --ink-mute: #6b6962;

  --accent: #ff7a1a;     /* laranja queimado */
  --accent-soft: #ffb26b;
  --accent-deep: #c7520b;

  --cream: #f3ede1;
  --olive: #3a4238;

  --border: rgba(236, 235, 230, 0.08);
  --border-hi: rgba(236, 235, 230, 0.16);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Sizing */
  --radius: 14px;
  --radius-lg: 22px;
  --max-w: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

/* Subtle noise overlay on body */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================
   TIPOGRAFIA UTIL
   ============================================ */
.mono {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  color: var(--ink-dim);
}

.tag-sm {
  color: var(--accent);
}

em {
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--accent-soft);
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  background: rgba(10, 14, 20, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}

.nav.is-scrolled {
  border-bottom-color: var(--border);
  padding: 14px var(--gutter);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.logo-mark {
  width: 175px;
  height: auto;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__links a {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.2s;
  position: relative;
}

.nav__links a:hover { color: var(--ink); }

.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }

.nav__cta {
  padding: 9px 18px;
  background: var(--accent);
  color: var(--bg) !important;
  border-radius: 100px;
  font-weight: 500;
  transition: background 0.2s, transform 0.2s;
}
.nav__cta:hover { background: var(--accent-soft); transform: translateY(-1px); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 40px 40px;
  z-index: 2;
}

.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 40%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 40%, black 30%, transparent 70%);
  z-index: -1;
}

.hero__noise {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 800px 500px at 80% 20%, rgba(255, 122, 26, 0.08), transparent 70%);
  z-index: -1;
}

.hero__meta {
  grid-column: 1 / -1;
  animation: fadeUp 0.8s ease both;
}

.hero__title {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0.05em;
}

.hero__line1 {
  animation: fadeUp 0.8s 0.1s ease both;
}
.hero__line2 {
  padding-left: clamp(30px, 8vw, 120px);
  animation: fadeUp 0.8s 0.25s ease both;
}
.hero__line3 {
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero__line2 em {
  font-weight: 400;
  color: var(--cream);
}

.hero__accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero__bottom {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 560px;
  animation: fadeUp 0.8s 0.6s ease both;
}

.hero__lede {
  font-size: 1.08rem;
  color: var(--ink-dim);
  line-height: 1.65;
}

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

.hero__ficha {
  grid-column: 2 / 3;
  align-self: end;
  padding: 18px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(26, 35, 48, 0.4);
  backdrop-filter: blur(10px);
  min-width: 220px;
  animation: fadeIn 1s 0.9s ease both;
}

.ficha-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.72rem;
}
.ficha-line:last-child { border-bottom: none; }
.ficha-line span:first-child { color: var(--ink-mute); }
.ficha-line span:last-child { color: var(--ink); }

.status-dot {
  position: relative;
  padding-left: 14px;
  color: #6bd97b !important;
}
.status-dot::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #6bd97b;
  box-shadow: 0 0 8px #6bd97b;
  animation: pulse 2s ease-in-out infinite;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -8px rgba(255, 122, 26, 0.5);
}
.btn--primary svg { transition: transform 0.25s; }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border-hi);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(255,255,255,0.03);
}

.btn--large {
  padding: 18px 32px;
  font-size: 1.05rem;
}

/* ============================================
   STATS
   ============================================ */
.stats {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 60px var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats__item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stats__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--cream);
  line-height: 1;
}

.stats__label {
  font-size: 0.88rem;
  color: var(--ink-dim);
  max-width: 220px;
}

/* ============================================
   SECTION HEAD (reused)
   ============================================ */
.section-head {
  max-width: 780px;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  align-items: center;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 620px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.3s, box-shadow 0.4s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hi);
  box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6);
}
.service-card:hover::before { opacity: 1; }

.service-card__num {
  color: var(--ink-mute);
  font-size: 0.8rem;
  align-self: flex-start;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border-hi);
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(255, 122, 26, 0.04);
}
.service-card__icon svg { width: 28px; height: 28px; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--ink-dim);
  font-size: 0.98rem;
  line-height: 1.6;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px dashed var(--border-hi);
}

.service-card__list li {
  font-size: 0.88rem;
  color: var(--ink-dim);
  padding-left: 20px;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--font-mono);
}

.service-card--accent {
  background: linear-gradient(180deg, rgba(255, 122, 26, 0.08), var(--bg-2));
  border-color: rgba(255, 122, 26, 0.2);
}

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diff {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 100px var(--gutter);
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.diff::before, .diff::after {
  content: '';
  position: absolute;
  left: calc(var(--gutter) * -1);
  right: calc(var(--gutter) * -1);
  height: 1px;
  background: var(--border);
}
.diff::before { top: 0; }
.diff::after { bottom: 0; }

.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

.diff__item {
  padding-top: 24px;
  border-top: 1px solid var(--border-hi);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.diff__item::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 40px; height: 1px;
  background: var(--accent);
}

.diff__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.2em;
}

.diff__item h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--cream);
}

.diff__item p {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================
   PORTFOLIO
   ============================================ */
.portfolio {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--gutter);
}

.portfolio__category {
  margin-bottom: 80px;
}
.portfolio__category:last-child { margin-bottom: 0; }

.portfolio__category-head {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.portfolio__category-head h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  color: var(--cream);
  letter-spacing: -0.015em;
}

/* --- Apps --- */
.portfolio__apps {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}

.app-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, border-color 0.3s;
}
.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hi);
}

.app-card--featured {
  grid-row: span 1;
}

.app-card__badge {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 3;
  padding: 5px 11px;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
}

.app-card__visual {
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.app-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.app-card:hover .app-card__visual img {
  transform: scale(1.03);
}

.app-card__info {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-card__info h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.app-card__desc {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.app-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.app-card__tags span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-dim);
  padding: 4px 9px;
  border: 1px solid var(--border-hi);
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--accent);
  margin-top: 8px;
  font-weight: 500;
  transition: gap 0.2s;
}
.app-card__link:hover { gap: 10px; }

/* --- Sites grid --- */
.portfolio__sites {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.site-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  transition: transform 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.site-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.site-card__browser {
  background: var(--surface);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.site-card__chrome {
  display: flex;
  gap: 5px;
}
.site-card__chrome span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-hi);
}
.site-card__chrome span:first-child { background: #ff5f56; }
.site-card__chrome span:nth-child(2) { background: #ffbd2e; }
.site-card__chrome span:last-child { background: #27c93f; }

.site-card__url {
  font-size: 0.7rem;
  color: var(--ink-dim);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.site-card__preview {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.site-card__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}
.site-card:hover .site-card__preview img {
  transform: scale(1.04);
}
.site-card__meta {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.site-card__meta h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.site-card__tag {
  font-size: 0.78rem;
  color: var(--ink-dim);
}

/* ============================================
   PROCESSO
   ============================================ */
.process {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--gutter);
}

.process__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.process__step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.process__step:hover {
  background: rgba(255, 122, 26, 0.02);
}
.process__step:hover .process__num {
  color: var(--accent);
}

.process__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  color: var(--ink-mute);
  line-height: 1;
  transition: color 0.3s;
}

.process__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process__content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.55rem;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.process__content p {
  color: var(--ink-dim);
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.6;
}

.process__duration {
  color: var(--accent);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  position: relative;
  z-index: 2;
  padding: 120px var(--gutter);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 122, 26, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 178, 107, 0.08) 0%, transparent 50%),
    var(--bg-2);
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,122,26,0.12), transparent 70%);
  pointer-events: none;
  animation: drift 20s ease-in-out infinite;
}

.contact__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.contact__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cream);
  margin-top: 8px;
}

.contact__lede {
  font-size: 1.08rem;
  color: var(--ink-dim);
  max-width: 560px;
  line-height: 1.65;
}

.contact__channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  margin: 30px 0 10px;
}

.contact__channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 24px;
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  background: rgba(10, 14, 20, 0.5);
  backdrop-filter: blur(10px);
  text-align: left;
  transition: border-color 0.3s, transform 0.3s;
}
.contact__channel:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.contact__channel-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(255, 122, 26, 0.1);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__channel-icon svg { width: 24px; height: 24px; }

.contact__channel-label {
  font-size: 0.7rem;
  color: var(--ink-mute);
  margin-bottom: 3px;
}

.contact__channel-value {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
}

.contact__channel-hint {
  font-size: 0.78rem;
  color: var(--ink-mute);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-display);
}

.contact__cta-row {
  margin-top: 10px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  z-index: 2;
  padding: 70px var(--gutter) 30px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer__top {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 360px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--cream);
}

.footer__brand p {
  color: var(--ink-dim);
  font-size: 0.92rem;
  line-height: 1.6;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col h5 {
  font-size: 0.72rem !important;
  color: var(--accent) !important;
  margin-bottom: 8px;
}

.footer__col a {
  color: var(--ink-dim);
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--ink); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem !important;
  color: var(--ink-mute) !important;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bottom .mono { color: var(--ink-mute); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateY(-50%) scale(1); }
  50% { opacity: 0.6; transform: translateY(-50%) scale(1.3); }
}

@keyframes timerBar {
  from { width: 100%; }
  to { width: 0%; }
}

@keyframes drift {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(50px, 30px); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid .service-card:last-child { grid-column: span 2; max-width: calc(50% - 12px); margin: 0 auto; }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .portfolio__apps { grid-template-columns: 1fr 1fr; }
  .app-card--featured { grid-column: span 2; }
  .portfolio__sites { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .hero {
    grid-template-columns: 1fr;
    padding: 120px var(--gutter) 60px;
  }
  .hero__ficha {
    grid-column: 1;
    justify-self: start;
    width: 100%;
    max-width: 300px;
  }

  .stats { grid-template-columns: 1fr; gap: 22px; padding: 40px var(--gutter); }
  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card:last-child { grid-column: 1; max-width: none; }
  .diff__grid { grid-template-columns: 1fr; gap: 32px; }

  .portfolio__apps { grid-template-columns: 1fr; }
  .app-card--featured { grid-column: 1; }
  .portfolio__sites { grid-template-columns: 1fr; }

  .process__step { grid-template-columns: 70px 1fr; gap: 20px; padding: 32px 0; }
  .process__num { font-size: 2.2rem; }

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

  .footer__cols { grid-template-columns: 1fr; gap: 30px; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .services, .diff, .portfolio, .process, .contact { padding-left: var(--gutter); padding-right: var(--gutter); }
}
