/* ============================================
   LEON ALVES — BLOG v2
   Estética: Editorial noir, cultura de rua
   ============================================ */

:root {
  --black:      #080808;
  --off-black:  #0f0f0f;
  --dark:       #161616;
  --border:     #222222;
  --mid:        #333333;
  --muted:      #666666;
  --light:      #aaaaaa;
  --cream:      #f0ece3;
  --white:      #ffffff;
  --gold:       #f5c518;
  --gold-dim:   rgba(245, 197, 24, 0.15);

  --ff-display: 'Bebas Neue', sans-serif;
  --ff-serif:   'Playfair Display', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;

  --ease:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease2: cubic-bezier(0.65, 0, 0.35, 1);

  --header-h: 64px;
  --ticker-h: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--mid); border-radius: 2px; }

/* ══════════════════════════════════════
   TICKER
══════════════════════════════════════ */
.ticker-bar {
  height: var(--ticker-h);
  background: var(--gold);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 40px;
  animation: tickerMove 40s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  flex-shrink: 0;
}
.ticker-track .dot { font-size: 8px; }

@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-12.5%); }
}
.ticker-bar:hover .ticker-track { animation-play-state: paused; }

/* ══════════════════════════════════════
   HEADER
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  height: var(--header-h);
  background: rgba(8, 8, 8, 0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
}
.logo-l    { font-family: var(--ff-display); font-size: 36px; color: var(--gold); line-height: 1; }
.logo-rest { font-family: var(--ff-display); font-size: 36px; color: var(--white); line-height: 1; }
.logo-sep  { color: var(--muted); font-size: 20px; }
.logo-sub  { font-family: var(--ff-body); font-size: 11px; font-weight: 400; color: var(--muted); letter-spacing: 0.05em; }

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--ff-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: var(--dark); }

.nav-social { display: flex; gap: 10px; margin-left: 16px; padding-left: 16px; border-left: 1px solid var(--border); }
.social-link { display: flex; align-items: center; color: var(--muted); transition: color 0.2s; }
.social-link:hover { color: var(--gold); }
.social-link svg { width: 18px; height: 18px; }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h) - var(--ticker-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 32px;
}

.hero-bg-text {
  position: absolute;
  right: -0.05em;
  top: 50%;
  transform: translateY(-55%);
  font-family: var(--ff-display);
  font-size: clamp(180px, 25vw, 360px);
  color: rgba(245, 197, 24, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.02em;
}

.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--ff-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--light);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--white); transform: translateY(-2px); }

.btn-ghost {
  display: inline-block;
  border: 1px solid var(--mid);
  color: var(--light);
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 28px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }

.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-n { font-family: var(--ff-display); font-size: 36px; color: var(--white); line-height: 1; }
.stat-l { font-size: 11px; font-weight: 500; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; }
.stat-div { width: 1px; height: 40px; background: var(--border); }

/* ══════════════════════════════════════
   SOBRE / QUEM SOU
══════════════════════════════════════ */
.sobre-section {
  padding: 100px 32px;
  border-top: 1px solid var(--border);
  background: var(--off-black);
}
.sobre-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-foto { position: relative; }
.foto-frame {
  position: relative;
  width: 280px;
}
.minha-foto {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
}
.foto-deco {
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  border: 2px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.sobre-title {
  font-family: var(--ff-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.sobre-title .gold { color: var(--gold); }

.sobre-texto p {
  font-size: 15px;
  color: var(--light);
  margin-bottom: 16px;
  line-height: 1.75;
}

.sobre-social { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  color: var(--light);
  font-size: 12px;
  font-weight: 500;
  padding: 10px 20px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-pill svg { width: 16px; height: 16px; }
.social-pill:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }

/* ══════════════════════════════════════
   CATEGORIAS
══════════════════════════════════════ */
.cat-section {
  padding: 80px 32px;
  border-top: 1px solid var(--border);
}
.cat-header {
  max-width: 1300px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cat-title {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--muted);
  white-space: nowrap;
}
.cat-line { flex: 1; height: 1px; background: var(--border); }

.cat-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  text-align: center;
  cursor: pointer;
}
.cat-card:hover, .cat-card.active {
  border-color: var(--cat-color, var(--gold));
  background: color-mix(in srgb, var(--cat-color, var(--gold)) 8%, var(--dark));
  transform: translateY(-4px);
}
.cat-icon { font-size: 28px; }
.cat-name { font-family: var(--ff-body); font-size: 13px; font-weight: 600; color: var(--white); }
.cat-count { font-size: 10px; font-weight: 500; letter-spacing: 0.08em; color: var(--muted); }

/* ══════════════════════════════════════
   SEÇÕES DE POSTS
══════════════════════════════════════ */
.posts-section {
  padding: 64px 32px 80px;
  border-top: 1px solid var(--border);
}
.destaque-section { background: var(--off-black); }

.ps-header {
  max-width: 1300px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.ps-icon { font-size: 22px; }
.ps-title {
  font-family: var(--ff-serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
}
.ps-line { flex: 1; height: 1px; background: var(--border); }

/* POSTS ROW — slider horizontal */
.posts-row-wrap {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
}

.posts-row {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  flex: 1;
  min-width: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.posts-row::-webkit-scrollbar,
.posts-row::-webkit-scrollbar-track,
.posts-row::-webkit-scrollbar-thumb {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}

.posts-row > .post-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  max-width: 440px;
  scroll-snap-align: start;
  overflow: hidden;
}

/* Row navigation buttons */
.row-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--dark);
  border: 1px solid var(--mid);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
  border-radius: 50%;
  opacity: 0.5;
}
.row-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); opacity: 1; }
.row-prev { margin-right: 12px; }
.row-next { margin-left: 12px; }
.row-btn:disabled { opacity: 0.15; pointer-events: none; }

@media (max-width: 900px) {
  .posts-row > .post-card { flex: 0 0 calc(50% - 12px); }
}

@media (max-width: 600px) {
  .posts-row > .post-card { flex: 0 0 100%; min-width: 0; max-width: 100%; }
  .row-btn { width: 32px; height: 32px; font-size: 18px; }
  .row-prev { margin-right: 8px; }
  .row-next { margin-left: 8px; }
}

/* ══════════════════════════════════════
   POST CARD
══════════════════════════════════════ */
.post-card {
  background: var(--dark);
  border: 1px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    border-color 0.3s;
}
.post-card.visible { opacity: 1; transform: translateY(0); }
.post-card:hover   { border-color: var(--mid); }

/* Thumb — proporção 1080×1440 (3:4) */
.card-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  max-height: 520px;
}

.thumb-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px;
  position: relative;
  z-index: 2;
}
.thumb-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.1) 70%);
}
.thumb-label-top {
  position: relative;
  z-index: 2;
  font-family: var(--ff-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.thumb-title-big {
  position: relative;
  z-index: 2;
  font-family: var(--ff-serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  display: block;
  margin-bottom: 8px;
}
.thumb-title-big.italic { font-style: italic; }
.thumb-sub {
  position: relative;
  z-index: 2;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  display: block;
}
.thumb-slides-count {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 10px;
  font-weight: 600;
  color: var(--black);
  background: var(--gold);
  padding: 3px 8px;
  z-index: 5;
}

/* Em breve */
.em-breve { opacity: 0.6 !important; }
.em-breve:hover { opacity: 0.8 !important; }
.eb-thumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}
.eb-label {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
}
.eb-icon { font-size: 40px; opacity: 0.4; }

/* Card body */
.card-body { padding: 20px 20px 18px; overflow: hidden; }
.card-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; overflow: hidden; }
.ctag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--c, #888);
  padding: 3px 8px;
}
.card-title {
  font-family: var(--ff-serif);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 8px;
}
.card-excerpt { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; }
.card-date { font-size: 11px; color: var(--muted); }
.card-btn {
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  transition: background 0.2s;
}
.card-btn:hover { background: var(--white); }

/* ══════════════════════════════════════
   INLINE CAROUSEL (card MJ)
══════════════════════════════════════ */
/* inline carousel fills the thumb naturally */

.inline-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.ic-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s var(--ease);
}
.ic-slide {
  flex: 0 0 100%;
  height: 100%;
}
.ic-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.ic-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  opacity: 0;
}
.inline-carousel:hover .ic-btn { opacity: 1; }
.ic-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.ic-prev { left: 8px; }
.ic-next { right: 8px; }

.ic-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 10;
}
.ic-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.ic-dot.active { background: var(--white); }

.ic-counter {
  position: absolute;
  top: 8px;
  right: 8px;
  font-family: var(--ff-body);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.45);
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 10;
}

/* ══════════════════════════════════════
   MODAL
══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.modal.open { opacity: 1; pointer-events: all; }

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px; height: 40px;
  background: var(--dark);
  border: 1px solid var(--mid);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
  border-radius: 50%;
}
.modal-close:hover { background: #c0392b; border-color: #c0392b; }

/* Phone mockup */
.modal-phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  width: 100%;
  height: 100%;
}
.modal-phone {
  width: min(420px, 88vw);
  background: #111;
  border-radius: 28px;
  border: 2px solid #333;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8);
  display: flex;
  flex-direction: column;
}
.phone-notch {
  height: 28px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone-notch::after {
  content: '';
  width: 80px; height: 12px;
  background: #000;
  border-radius: 8px;
}

.modal-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #000;
}
.mc-track {
  display: flex;
  height: 100%;
  transition: transform 0.45s var(--ease);
}
.mc-slide {
  flex: 0 0 100%;
  height: 100%;
}

.mc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  border-radius: 50%;
}
.mc-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.mc-prev { left: 8px; }
.mc-next { right: 8px; }

.mc-dots {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.mc-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mc-dot.active { background: var(--white); transform: scale(1.3); }

.mc-counter {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  z-index: 10;
}

.phone-bar {
  height: 52px;
  background: #111;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.phone-bar-logo {
  font-family: var(--ff-serif);
  font-size: 13px;
  color: var(--white);
  font-weight: 700;
}
.phone-bar-ig {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.phone-bar-ig:hover { color: var(--white); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 32px 40px;
  background: var(--off-black);
}
.footer-inner { max-width: 960px; margin: 0 auto; text-align: center; }
.footer-top { margin-bottom: 40px; }
.footer-logo { font-family: var(--ff-display); font-size: 40px; letter-spacing: 0.08em; color: var(--white); margin-bottom: 12px; }
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.footer-social { display: flex; justify-content: center; gap: 12px; }

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}
.footer-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy { font-size: 11px; color: var(--border); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 900px) {
  .sobre-inner { grid-template-columns: 1fr; gap: 40px; }
  .sobre-foto { display: flex; justify-content: center; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); }
  .main-nav .nav-link:not(:last-child) { display: none; }
}

@media (max-width: 720px) {
  .header-inner { padding: 0 20px; }
  .logo-sub { display: none; }
  .logo-sep { display: none; }

  .burger { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--off-black);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-link { display: block; padding: 10px 12px; width: 100%; }
  .nav-social { margin: 12px 0 0; padding: 12px 0 0; border-left: none; border-top: 1px solid var(--border); width: 100%; }

  .hero { padding: 48px 20px; }
  .hero-bg-text { display: none; }
  .posts-section { padding: 48px 20px 64px; }
  .cat-section { padding: 48px 20px; }
  .sobre-section { padding: 64px 20px; }
  .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .cat-card { padding: 18px 8px; }
  .cat-icon { font-size: 22px; }
  .cat-name { font-size: 11px; }
  .modal-phone { border-radius: 20px; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 16px; }
  .stat-n { font-size: 28px; }
  .cat-grid .cat-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc(50% - 6px);
    margin: 0 auto;
  }
}

/* ── Ícones SVG ── */
.cat-icon img {
  width: 32px;
  height: 32px;
  filter: brightness(0) saturate(100%) invert(68%) sepia(79%) saturate(600%) hue-rotate(5deg) brightness(103%);
}