:root {
  --orange: #ff7300;
  --orange-dark: #c94f00;
  --black: #050505;
  --graphite: #1e1c1b;
  --graphite-2: #161514;
  --cream: #fff2d4;
  --white: #fff;
  --muted: #b9b0a2;
  --line: rgba(255, 242, 212, 0.18);
  --line-strong: rgba(255, 115, 0, 0.48);
  --font-display: "Arial Black", Impact, Haettenschweiler, sans-serif;
  --font-body: "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --max: 1500px;
  --radius: 14px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 115, 0, 0.05), transparent 26rem),
    #050505;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

::selection {
  background: var(--orange);
  color: var(--black);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--cream);
  color: var(--black);
  text-decoration: none;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 96px), var(--max));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.93;
  text-transform: uppercase;
}

.orange {
  color: var(--orange);
}

.cream {
  color: var(--cream);
}

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

/* Header comum */
.site-header {
  position: relative;
  z-index: 40;
  min-height: 104px;
  border-bottom: 1px solid transparent;
}

.site-header.is-sticky {
  position: sticky;
  top: 0;
  background: rgba(5, 5, 5, 0.9);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-link img {
  width: clamp(174px, 16vw, 252px);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.5vw, 45px);
  margin-left: auto;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--cream);
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 5px;
  height: 1px;
  background: var(--orange);
  transition: right 220ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--orange);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  right: 0;
}

.nav-pending {
  cursor: not-allowed;
  opacity: 0.62;
}

.client-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0.72;
}

.mobile-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.mobile-toggle span,
.mobile-toggle::before,
.mobile-toggle::after {
  content: "";
  width: 20px;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.mobile-toggle span {
  margin-block: 5px;
}

.mobile-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.mobile-toggle[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.mobile-toggle[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  padding: 12px 20px 26px;
  border-bottom: 1px solid var(--line);
  background: #080808;
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu .nav-link {
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

/* Página em construção */
.construction-page {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
}

.construction-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.construction-page::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.16) 0 40%, rgba(0, 0, 0, 0) 64%);
  pointer-events: none;
}

.construction-content {
  width: min(calc(100% - 8vw), 2300px);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(52px, 6vh, 94px) 0 clamp(44px, 7vh, 100px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.construction-logo {
  width: clamp(210px, 20vw, 390px);
}

.construction-copy {
  width: min(780px, 52vw);
  margin-top: clamp(40px, 8vh, 130px);
}

.construction-title {
  font-family: Impact, "Arial Narrow", var(--font-display);
  letter-spacing: -0.018em;
  font-size: clamp(4rem, 7.2vw, 9.4rem);
}

.construction-title span {
  display: block;
}

.construction-rule {
  width: 84px;
  height: 2px;
  margin: 40px 0 34px;
  background: var(--orange);
}

.construction-lead {
  width: min(720px, 100%);
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 2.05rem);
  line-height: 1.35;
}

.construction-soon {
  margin: 18px 0 36px;
  color: var(--orange);
  font-size: clamp(1rem, 1.45vw, 1.75rem);
  font-weight: 750;
}

.owner-card {
  width: fit-content;
  min-width: min(100%, 630px);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 30px;
  border: 1px solid var(--orange);
}

.owner-symbol {
  width: 66px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 2rem;
}

.owner-copy {
  font-size: clamp(0.82rem, 1vw, 1.12rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.owner-copy strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.1rem, 1.35vw, 1.55rem);
  letter-spacing: 0.02em;
}

.construction-socials {
  margin-top: 42px;
}

.construction-socials-title {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 22px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.construction-socials-title::after {
  content: "";
  width: 170px;
  height: 1px;
  background: var(--orange);
}

.construction-social-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
}

.construction-social {
  min-width: 220px;
  display: grid;
  grid-template-columns: 52px auto;
  align-items: center;
  gap: 16px;
  padding: 4px 36px 4px 0;
  margin-right: 36px;
  border-right: 1px solid rgba(255, 242, 212, 0.58);
  color: var(--cream);
  text-decoration: none;
}

.construction-social:last-child {
  border-right: 0;
}

.construction-social img {
  width: 52px;
  height: 52px;
}

.construction-social span {
  display: block;
  color: var(--orange);
}

.construction-sidewords {
  position: absolute;
  right: 3.4vw;
  top: 50%;
  display: flex;
  gap: 24px;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
  color: var(--cream);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.construction-sidewords b {
  color: var(--orange);
  font-weight: 400;
}

/* Árvore de links */
.links-page {
  min-height: 100svh;
  padding: 22px 0 30px;
  background:
    linear-gradient(120deg, transparent 0 18%, rgba(255, 115, 0, 0.03) 18.1% 18.6%, transparent 18.7%),
    radial-gradient(circle at 50% 8%, rgba(255, 115, 0, 0.09), transparent 26rem),
    #111;
}

.links-card {
  position: relative;
  width: min(calc(100% - 24px), 520px);
  margin-inline: auto;
  padding: 24px 22px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 46px;
  background:
    radial-gradient(circle at 50% 13%, rgba(255, 115, 0, 0.1), transparent 16rem),
    linear-gradient(180deg, #0b0b0b, #111);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56), inset 0 0 0 5px #242424;
}

.links-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 250px;
  top: -106px;
  left: -88px;
  background: url("/assets/brand/simbolo-laranja.svg") center / contain no-repeat;
  opacity: 0.98;
  transform: rotate(-2deg);
}

.links-diagonals {
  position: absolute;
  top: 28px;
  right: 30px;
  width: 4px;
  height: 98px;
  background: var(--orange);
  transform: rotate(28deg);
  box-shadow: 18px 0 0 -1px var(--orange);
  opacity: 0.9;
}

.links-hero {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.links-logo {
  width: 206px;
  margin: 0 0 12px auto;
}

.links-portrait {
  width: 108px;
  aspect-ratio: 1;
  margin-top: 4px;
  padding: 4px;
  overflow: hidden;
  border: 2px solid var(--cream);
  border-radius: 50%;
  background: var(--orange);
}

.links-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.links-name {
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 7vw, 2rem);
  line-height: 1.1;
}

.links-role {
  margin: 4px 0 10px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
}

.links-intro {
  max-width: 360px;
  margin: 0 0 18px;
  color: #ddd3c2;
  font-size: 0.88rem;
  line-height: 1.45;
}

.link-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.link-item {
  min-height: 62px;
  display: grid;
  grid-template-columns: 42px 1fr 24px;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.055));
  color: var(--cream);
  text-decoration: none;
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.link-item:hover {
  transform: translateY(-2px);
  border-color: var(--orange);
  background: rgba(255, 115, 0, 0.09);
}

.link-item:active {
  transform: scale(0.988);
}

.link-item.primary {
  border-color: rgba(255, 115, 0, 0.7);
  background: linear-gradient(100deg, rgba(255, 115, 0, 0.2), rgba(255, 115, 0, 0.05));
}

.link-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 115, 0, 0.58);
  border-radius: 9px;
  color: var(--orange);
  font-weight: 800;
}

.link-copy strong,
.link-copy span {
  display: block;
}

.link-copy strong {
  font-size: 0.9rem;
  line-height: 1.2;
}

.link-copy span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.69rem;
  line-height: 1.25;
}

.link-arrow {
  color: var(--cream);
  font-size: 1.15rem;
  transition: transform 220ms ease, color 220ms ease;
}

.link-item:hover .link-arrow {
  color: var(--orange);
  transform: translateX(3px);
}

.link-item.pending {
  cursor: not-allowed;
  opacity: 0.62;
}

.follow-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 18px 0 12px;
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.follow-title::before,
.follow-title::after {
  content: "";
  height: 1px;
  background: var(--orange);
}

.social-orbit {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
}

.social-orbit a {
  min-height: 64px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 5px;
  color: var(--cream);
  font-size: 0.6rem;
  text-decoration: none;
}

.social-orbit img,
.social-orbit .mail-orbit {
  width: 36px;
  height: 36px;
}

.mail-orbit {
  display: grid;
  place-items: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1rem;
}

.featured-link-project {
  display: grid;
  grid-template-columns: 43% 1fr;
  gap: 14px;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(130deg, rgba(255, 115, 0, 0.06), transparent 60%);
}

.featured-link-project img {
  width: 100%;
  height: 100%;
  min-height: 122px;
  object-fit: cover;
  border-radius: 8px;
}

.featured-link-project h2 {
  margin: 2px 0 5px;
  font-size: 1rem;
  line-height: 1.15;
}

.featured-link-project p {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.project-cta {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--orange);
  font-size: 0.7rem;
  text-decoration: none;
}

.links-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--cream);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.links-footer b {
  color: var(--orange);
  font-size: 1.2rem;
}

/* Blog */
.blog-page {
  background: #050505;
}

.blog-hero {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  inset: -2px 0 0;
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.96) 37%, rgba(5, 5, 5, 0.16) 72%, #050505 100%),
    url("/assets/photos/rodrigo-hero-desktop.webp") center / cover no-repeat;
}

.blog-hero-inner {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 62px 0 72px;
}

.blog-hero-copy {
  width: min(670px, 54%);
}

.blog-title {
  font-family: Impact, "Arial Narrow", var(--font-display);
  letter-spacing: -0.012em;
  font-size: clamp(4.4rem, 7.1vw, 8.9rem);
}

.blog-title span {
  display: block;
}

.blog-lead {
  max-width: 560px;
  margin: 34px 0 0;
  font-size: clamp(1.05rem, 1.4vw, 1.38rem);
}

.blog-lead::after {
  content: "";
  width: 56px;
  height: 2px;
  display: block;
  margin-top: 30px;
  background: var(--orange);
}

.blog-content {
  padding: 0 0 42px;
}

.blog-tools {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-top: 1px solid var(--line);
}

.filter-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 26px;
}

.filter-label {
  margin-right: 8px;
  color: var(--cream);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.filter-button {
  min-height: 44px;
  padding: 0 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
  font-size: 0.73rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button.is-active {
  border-bottom-color: var(--orange);
  color: var(--orange);
}

.search-wrap {
  position: relative;
  flex: 0 1 320px;
}

.search-wrap::before {
  content: "⌕";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cream);
  font-size: 1.25rem;
}

.search-input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px 0 46px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
}

.search-input::placeholder {
  color: #8e877d;
}

.featured-article {
  min-height: 438px;
  display: grid;
  grid-template-columns: 47% 53%;
  margin-top: 10px;
  border: 1px solid var(--line);
  background: #080808;
}

.featured-article-copy {
  align-self: center;
  padding: clamp(34px, 5vw, 68px);
}

.draft-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 18px;
  padding: 0 9px;
  border: 1px solid rgba(255, 115, 0, 0.48);
  color: var(--orange);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.featured-article h2 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.03;
}

.featured-article p {
  max-width: 500px;
  margin: 20px 0;
  color: #c9c0b2;
  font-size: 1.02rem;
}

.article-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 18px;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 220ms ease, background 220ms ease;
}

.article-button:hover {
  border-color: var(--orange);
  background: rgba(255, 115, 0, 0.08);
}

.article-meta {
  margin-top: 16px;
  color: #9e968b;
  font-size: 0.76rem;
}

.featured-article-media {
  min-height: 100%;
  overflow: hidden;
}

.featured-article-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-heading {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 42px 0 28px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.recent-heading::after {
  content: "";
  height: 1px;
  flex: 1;
  order: 1;
  background: var(--line);
}

.recent-heading > span {
  order: 0;
}

.recent-heading a {
  order: 2;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  color: var(--orange);
  font-size: 0.74rem;
  text-decoration: none;
}

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

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #0b0b0b, #080808);
}

.article-card[hidden] {
  display: none;
}

.article-card-media {
  aspect-ratio: 1.45;
  overflow: hidden;
}

.article-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.article-card:hover .article-card-media img {
  transform: scale(1.025);
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 26px 20px;
}

.article-category {
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 12px 0 14px;
  font-size: clamp(1.34rem, 1.8vw, 1.8rem);
  line-height: 1.08;
}

.article-card p {
  margin: 0 0 24px;
  color: #beb5a8;
  font-size: 0.91rem;
}

.article-card-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  color: #9e968b;
  font-size: 0.74rem;
}

.article-card-footer a {
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-size: 1.5rem;
  text-decoration: none;
}

.empty-results {
  display: none;
  padding: 38px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.empty-results.is-visible {
  display: block;
}

.newsletter {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 44px;
  align-items: center;
  margin-top: 32px;
  padding: 28px 42px;
  border: 1px solid var(--line);
}

.newsletter-message {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 26px;
  align-items: center;
}

.newsletter-icon {
  width: 70px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-size: 1.7rem;
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  line-height: 1.14;
}

.newsletter p {
  margin: 0 0 14px;
  color: #c3baad;
  font-size: 0.85rem;
}

.newsletter-form-row {
  display: grid;
  grid-template-columns: 1fr 56px;
  gap: 6px;
}

.newsletter input,
.newsletter button {
  min-height: 48px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--cream);
}

.newsletter input {
  padding-inline: 16px;
}

.newsletter button {
  color: var(--orange);
  font-size: 1.2rem;
}

.newsletter input:disabled,
.newsletter button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.newsletter-note {
  margin-top: 8px !important;
  color: #8e877d !important;
  font-size: 0.72rem !important;
}

.site-footer {
  min-height: 100px;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer-symbol {
  width: 42px;
}

.footer-phrase {
  justify-self: center;
  margin: 0;
  letter-spacing: 0.36em;
  text-align: center;
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.footer-socials img {
  width: 40px;
  height: 40px;
}

/* Artigo */
.article-page {
  min-height: 100svh;
}

.article-hero {
  padding: 72px 0 38px;
  border-bottom: 1px solid var(--line);
}

.article-hero-inner {
  width: min(calc(100% - 40px), 980px);
  margin-inline: auto;
}

.article-back {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--orange);
  text-decoration: none;
}

.article-hero h1 {
  margin: 12px 0 20px;
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 6.5vw, 5.8rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.article-hero p {
  max-width: 760px;
  margin: 0;
  color: #c8bfb1;
  font-size: 1.1rem;
}

.article-cover {
  width: min(calc(100% - 40px), 1120px);
  margin: 40px auto;
  border: 1px solid var(--line);
}

.article-cover img {
  width: 100%;
}

.article-body {
  width: min(calc(100% - 40px), 760px);
  margin: 0 auto 90px;
}

.draft-warning {
  margin-bottom: 30px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 115, 0, 0.5);
  background: rgba(255, 115, 0, 0.06);
  color: var(--cream);
}

.article-body h2 {
  margin: 42px 0 14px;
  font-size: 1.8rem;
}

.article-body p,
.article-body li {
  color: #d5cbbc;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body blockquote {
  margin: 34px 0;
  padding: 8px 0 8px 24px;
  border-left: 3px solid var(--orange);
  color: var(--cream);
  font-size: 1.35rem;
}

@media (max-width: 980px) {
  .desktop-nav,
  .client-button {
    display: none;
  }

  .mobile-toggle {
    display: grid;
  }

  .construction-bg {
    object-position: 62% center;
  }

  .construction-page::after {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.05));
  }

  .construction-copy {
    width: min(620px, 62vw);
  }

  .construction-social {
    min-width: 190px;
    padding-right: 18px;
    margin-right: 18px;
  }

  .construction-sidewords {
    display: none;
  }

  .blog-hero {
    min-height: 690px;
  }

  .blog-hero::before {
    background:
      linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.88) 50%, rgba(5, 5, 5, 0.1) 100%),
      url("/assets/photos/rodrigo-hero-desktop.webp") 62% center / cover no-repeat;
  }

  .blog-hero-inner {
    min-height: 690px;
  }

  .blog-hero-copy {
    width: 66%;
  }

  .blog-tools {
    align-items: stretch;
    flex-direction: column;
    padding: 20px 0;
  }

  .search-wrap {
    flex-basis: auto;
    width: min(100%, 440px);
  }

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

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .site-header,
  .header-inner {
    min-height: 82px;
  }

  .brand-link img {
    width: 184px;
  }

  .construction-page {
    min-height: 100svh;
  }

  .construction-bg {
    height: 58svh;
    object-position: 66% top;
    opacity: 0.72;
  }

  .construction-page::after {
    background: linear-gradient(180deg, transparent 0 36%, #000 58%);
  }

  .construction-content {
    width: calc(100% - 36px);
    padding: 28px 0 34px;
  }

  .construction-logo {
    width: 190px;
  }

  .construction-copy {
    width: 100%;
    margin-top: 42svh;
  }

  .construction-title {
    font-size: clamp(3.35rem, 15vw, 5.5rem);
  }

  .construction-rule {
    margin: 28px 0 24px;
  }

  .owner-card {
    min-width: 0;
    width: 100%;
    gap: 16px;
    padding: 16px;
  }

  .owner-symbol {
    width: 54px;
  }

  .construction-social-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .construction-social {
    width: 100%;
    margin: 0;
    padding: 0;
    border-right: 0;
  }

  .links-page {
    padding: 0;
    background: #111;
  }

  .links-card {
    width: 100%;
    min-height: 100svh;
    padding: 22px 20px 20px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .links-logo {
    width: 190px;
  }

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

  .blog-hero {
    min-height: 710px;
  }

  .blog-hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.15) 0 32%, #050505 68% 100%),
      url("/assets/photos/rodrigo-hero-mobile.webp") center top / cover no-repeat;
  }

  .blog-hero-inner {
    min-height: 710px;
    align-items: end;
    padding-bottom: 54px;
  }

  .blog-hero-copy {
    width: 100%;
  }

  .blog-title {
    font-size: clamp(3.4rem, 16vw, 5.8rem);
  }

  .blog-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .filter-wrap {
    gap: 4px 18px;
  }

  .filter-label {
    width: 100%;
  }

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

  .featured-article-copy {
    order: 2;
    padding: 30px 24px;
  }

  .featured-article-media {
    min-height: 250px;
    order: 1;
  }

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

  .newsletter {
    gap: 28px;
    padding: 26px 20px;
  }

  .newsletter-message {
    grid-template-columns: 58px 1fr;
    gap: 16px;
  }

  .newsletter-icon {
    width: 56px;
    height: 46px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 28px 0;
  }

  .footer-phrase {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
  }
}

@media (max-width: 420px) {
  .links-card {
    padding-inline: 16px;
  }

  .links-card::before {
    width: 220px;
    left: -86px;
  }

  .links-logo {
    width: 176px;
  }

  .social-orbit {
    gap: 0;
  }

  .social-orbit a {
    font-size: 0.55rem;
  }

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

  .featured-link-project img {
    max-height: 170px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
