/* Tema LifeSite — port do layout lifesite.com.br (Next.js) para Firesite.
   Paleta ivory/laranja/grafite, tipografia Inter, cantos grandes. */

:root {
  --ivory: #f7f2e9;
  --ivory-deep: #ece3d5;
  --paper: #fffdf8;
  --orange: #f4510b;
  --orange-dark: #d83d00;
  --orange-soft: #ffd6c4;
  --graphite: #232320;
  --muted: #65635d;
  --line: rgba(35, 35, 32, 0.16);
  --line-light: rgba(255, 253, 248, 0.19);
  --shadow: 0 32px 80px rgba(63, 48, 37, 0.16);
  --radius-large: 32px;
  --radius-medium: 22px;
  --font-sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--graphite);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

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

a:focus-visible,
summary:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 100;
  padding: 11px 16px;
  border-radius: 10px;
  background: var(--graphite);
  color: var(--paper);
  font-weight: 750;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.container {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

/* ===== Header ===== */

.site-header {
  position: relative;
  z-index: 30;
  background: rgba(247, 242, 233, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  min-height: 102px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 178px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.desktop-nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: right 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.ativo {
  color: var(--graphite);
}

.desktop-nav a:hover::after,
.desktop-nav a.ativo::after {
  right: 0;
}

.header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  padding: 0 19px;
  border: 1px solid var(--graphite);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.header-cta:hover {
  background: var(--graphite);
  color: var(--paper);
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
}

/* ===== Hero ===== */

.hero {
  display: grid;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
  align-items: center;
  gap: clamp(54px, 7vw, 100px);
  padding-block: 72px 82px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px var(--orange-soft);
  content: "";
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(4rem, 6vw, 5.8rem);
  font-weight: 760;
  letter-spacing: -0.067em;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--orange);
  font-weight: 500;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.14rem, 1.55vw, 1.4rem);
  letter-spacing: -0.025em;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 38px;
}

.primary-button,
.secondary-button,
.dark-button {
  display: inline-flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 17px 0 28px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 820;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.primary-button {
  background: var(--orange);
  color: #161614;
  box-shadow: 0 14px 32px rgba(244, 81, 11, 0.22);
}

.primary-button:hover,
.secondary-button:hover,
.dark-button:hover {
  transform: translateY(-3px);
}

.primary-button:hover {
  background: #ff6420;
  box-shadow: 0 20px 40px rgba(244, 81, 11, 0.3);
}

.button-arrow {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--graphite);
  color: var(--paper);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.primary-button:hover .button-arrow,
.secondary-button:hover .button-arrow,
.dark-button:hover .button-arrow {
  transform: rotate(45deg);
}

.response-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.response-note strong {
  display: block;
  color: var(--graphite);
  font-size: 0.92rem;
}

/* ===== Composição decorativa do hero ===== */

.site-composition {
  position: relative;
  min-height: 540px;
  isolation: isolate;
}

.composition-orbit {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
}

.composition-orbit-one {
  top: 40px;
  right: -74px;
  width: 420px;
  height: 420px;
  background: var(--orange-soft);
  opacity: 0.75;
}

.composition-orbit-two {
  bottom: 18px;
  left: -45px;
  width: 185px;
  height: 185px;
  border: 1px solid rgba(35, 35, 32, 0.2);
}

.browser-card {
  position: absolute;
  top: 8px;
  right: 0;
  width: min(530px, 100%);
  height: 440px;
  overflow: hidden;
  border: 1px solid rgba(35, 35, 32, 0.08);
  border-radius: var(--radius-large);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
  transition: transform 0.35s ease;
}

.browser-card:hover {
  transform: rotate(0.4deg) translateY(-5px);
}

.browser-bar {
  display: flex;
  height: 74px;
  align-items: center;
  gap: 10px;
  padding-inline: 28px;
  border-bottom: 1px solid var(--line);
}

.browser-brand {
  width: 82px;
  height: 19px;
  margin-right: auto;
  border-radius: 99px;
  background: var(--graphite);
}

.browser-link {
  width: 36px;
  height: 7px;
  border-radius: 99px;
  background: var(--ivory-deep);
}

.browser-link-active {
  width: 66px;
  background: var(--orange);
}

.browser-body {
  display: grid;
  height: 366px;
  grid-template-columns: 1.15fr 0.85fr;
}

.browser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 38px 18px 38px 38px;
}

.browser-copy span {
  display: block;
  border-radius: 99px;
}

.browser-kicker {
  width: 70px;
  height: 8px;
  margin-bottom: 25px;
  background: var(--orange);
}

.browser-title {
  height: 18px;
  margin-bottom: 10px;
  background: var(--graphite);
}

.browser-title-long {
  width: 96%;
}

.browser-title-short {
  width: 70%;
  margin-bottom: 24px;
}

.browser-text {
  width: 62%;
  height: 8px;
  margin-bottom: 9px;
  background: #d5d0c7;
}

.browser-text-long {
  width: 86%;
}

.browser-button {
  width: 130px;
  height: 48px;
  margin-top: 25px;
  background: var(--orange);
}

.browser-art {
  position: relative;
  margin: 42px 26px 42px 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--graphite);
}

.art-circle {
  position: absolute;
  top: 66px;
  right: -46px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--orange);
}

.art-ring {
  position: absolute;
  right: -22px;
  bottom: -36px;
  width: 178px;
  height: 178px;
  border: 20px solid var(--paper);
  border-radius: 50%;
}

.update-card {
  position: absolute;
  right: 8px;
  bottom: 15px;
  display: flex;
  width: 300px;
  min-height: 118px;
  align-items: center;
  gap: 17px;
  padding: 18px 20px;
  border: 1px solid rgba(35, 35, 32, 0.1);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 20px 44px rgba(63, 48, 37, 0.18);
  transform: rotate(-2deg);
}

.check-mark {
  display: grid;
  width: 55px;
  height: 55px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  font-size: 1.35rem;
  font-weight: 900;
}

.update-card > span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.28;
}

.update-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--graphite);
  font-size: 0.98rem;
}

/* ===== Números (prova social) ===== */

.proof-section {
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  justify-content: center;
  padding: 24px 34px;
  border-right: 1px solid var(--line);
}

.proof-item:first-child {
  border-left: 1px solid var(--line);
}

.proof-item strong {
  font-size: clamp(1.65rem, 2.4vw, 2.2rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.proof-item span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== Seções ===== */

.section {
  padding-block: 128px;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2,
.subscription-copy h2,
.process-intro h2,
.closing-card h2 {
  margin: 0;
  font-size: clamp(2.7rem, 4.8vw, 4.8rem);
  font-weight: 710;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 70px;
}

.split-heading > p,
.centered-heading > p,
.process-intro > p,
.closing-action > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

/* ===== Serviços ===== */

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

.service-card {
  min-height: 355px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: rgba(255, 253, 248, 0.58);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.service-card:hover {
  background: var(--paper);
  box-shadow: 0 24px 50px rgba(63, 48, 37, 0.1);
  transform: translateY(-7px);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 82px;
  color: var(--orange-dark);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-topline span:last-child {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--graphite);
  font-size: 1.05rem;
}

.service-card h3,
.deliverable-card h3,
.subscription-points h3,
.process-list h3 {
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.service-card p,
.deliverable-card p,
.subscription-points p,
.process-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

/* ===== Assinatura (seção escura) ===== */

.subscription-section {
  position: relative;
  overflow: hidden;
  padding-block: 128px;
  background: var(--graphite);
  color: var(--paper);
}

.subscription-section::after {
  position: absolute;
  top: -240px;
  right: -150px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(244, 81, 11, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(244, 81, 11, 0.04),
    0 0 0 140px rgba(244, 81, 11, 0.03);
  content: "";
}

.subscription-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: 100px;
}

.eyebrow-light {
  color: rgba(255, 253, 248, 0.68);
}

.subscription-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 253, 248, 0.7);
  font-size: 1.12rem;
  line-height: 1.7;
}

.secondary-button {
  margin-top: 38px;
  background: var(--orange);
  color: #161614;
}

.subscription-points {
  display: grid;
  align-content: center;
}

.subscription-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding-block: 27px;
  border-bottom: 1px solid var(--line-light);
}

.subscription-points article:first-child {
  border-top: 1px solid var(--line-light);
}

.subscription-points article > span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.subscription-points p {
  color: rgba(255, 253, 248, 0.62);
}

/* ===== Entregas ===== */

.centered-heading {
  max-width: 810px;
  margin-inline: auto;
  text-align: center;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.centered-heading > p {
  max-width: 630px;
  margin: 24px auto 0;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.deliverable-card {
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper);
}

/* Classes por item (campo `classe` na lista JSON `entregas`) */
.deliverable-card.destaque {
  grid-column: span 2;
  background: var(--orange);
}

.deliverable-card.larga {
  grid-column: span 2;
  background: var(--ivory-deep);
}

.deliverable-icon {
  display: grid;
  width: 45px;
  height: 45px;
  margin-bottom: 60px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
}

.deliverable-card.destaque .deliverable-icon {
  color: var(--graphite);
}

.deliverable-card.destaque p {
  color: rgba(22, 22, 20, 0.72);
}

/* ===== Processo ===== */

.process-section {
  padding-block: 128px;
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: 100px;
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 50px;
}

.process-intro > p:not(.eyebrow) {
  margin-top: 26px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 26px;
  padding: 28px 0 34px;
  border-bottom: 1px solid var(--line);
}

.process-list li:first-child {
  border-top: 1px solid var(--line);
}

.process-date {
  color: var(--orange-dark);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-list p {
  max-width: 490px;
}

/* ===== Clientes ===== */

.client-heading h2 {
  max-width: 720px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.client-grid a {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--graphite);
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  text-decoration: none;
  transition:
    background 0.2s ease,
    padding 0.2s ease;
}

.client-grid a:nth-child(even) {
  border-right: 0;
}

.client-grid a:hover {
  padding-inline: 34px 22px;
  background: var(--paper);
}

.client-grid a span:last-child {
  color: var(--orange-dark);
}

/* ===== Fechamento ===== */

.closing-section {
  padding-bottom: 64px;
}

.closing-card {
  display: grid;
  min-height: 430px;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 80px;
  padding: 66px;
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 253, 248, 0.25), transparent 23rem),
    var(--orange);
}

.closing-card h2 {
  max-width: 780px;
}

.closing-action > p {
  color: rgba(22, 22, 20, 0.7);
}

.dark-button {
  margin-top: 26px;
  background: var(--graphite);
  color: var(--paper);
}

.dark-button .button-arrow {
  background: var(--paper);
  color: var(--graphite);
}

/* ===== Rodapé ===== */

.site-footer {
  padding-block: 58px 36px;
  background: var(--graphite);
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.7fr;
  align-items: center;
  gap: 32px;
}

.footer-brand img {
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-grid > p,
.footer-grid > a:not(.brand) {
  margin: 0;
  color: rgba(255, 253, 248, 0.7);
  text-decoration: none;
}

.footer-grid > a:not(.brand):hover {
  color: var(--paper);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
  font-size: 0.78rem;
}

/* ===== Páginas internas (texto, blog, contato) ===== */

.page-main {
  padding-block: 64px 110px;
}

.page-header {
  max-width: 810px;
  margin-bottom: 46px;
}

.page-header h1 {
  margin: 0;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.page-header .meta {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.texto {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.texto h2 {
  margin: 2.2em 0 0.5em;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 710;
  letter-spacing: -0.045em;
  line-height: 1.1;
}

.texto h3 {
  margin: 1.8em 0 0.4em;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.texto p {
  margin: 0 0 1.2em;
  color: var(--muted);
}

.texto p:first-child {
  margin-top: 0;
}

.texto a {
  color: var(--orange-dark);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.texto img {
  margin-block: 1.6em;
  border-radius: var(--radius-medium);
}

.texto ul,
.texto ol {
  margin: 0 0 1.2em;
  padding-left: 1.3em;
  color: var(--muted);
}

.texto li {
  margin-bottom: 0.4em;
}

.texto blockquote {
  margin: 1.8em 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--orange);
  color: var(--graphite);
  font-size: 1.16rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ===== Blog (busca + lista de posts) ===== */

.busca form {
  display: flex;
  max-width: 520px;
  gap: 10px;
  margin-bottom: 46px;
}

.busca input[type="search"] {
  flex: 1;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.busca button {
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--graphite);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 0.2s ease;
}

.busca button:hover {
  background: var(--orange-dark);
}

.posts-lista {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.posts-lista li {
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: var(--paper);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.posts-lista li:hover {
  box-shadow: 0 24px 50px rgba(63, 48, 37, 0.1);
  transform: translateY(-6px);
}

.posts-lista a {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 0 0 26px;
  text-decoration: none;
}

.posts-lista img {
  width: 100%;
  aspect-ratio: 16 / 10;
  margin-bottom: 22px;
  object-fit: cover;
}

.posts-lista strong {
  padding-inline: 26px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.posts-lista span {
  margin-top: 10px;
  padding-inline: 26px;
  color: var(--muted);
  line-height: 1.55;
}

.posts-lista time {
  margin-top: auto;
  padding: 22px 26px 0;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.posts-lista .posts-vazio {
  grid-column: 1 / -1;
  padding: 60px 26px;
  border-style: dashed;
  color: var(--muted);
  text-align: center;
}

.posts-lista .paginacao {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 0;
  border: 0;
  background: none;
}

.paginacao span {
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.paginacao a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

/* ===== Contato ===== */

.contato {
  max-width: 640px;
}

.contato form {
  display: grid;
  gap: 20px;
  margin-top: 10px;
}

.contato label {
  display: grid;
  gap: 8px;
  color: var(--graphite);
  font-size: 0.88rem;
  font-weight: 750;
}

.contato input,
.contato textarea {
  min-height: 54px;
  padding: 14px 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--paper);
  color: var(--graphite);
  font-family: var(--font-sans);
  font-size: 1rem;
}

.contato textarea {
  resize: vertical;
}

.contato input:focus,
.contato textarea:focus {
  border-color: var(--orange);
  outline: 2px solid var(--orange-soft);
  outline-offset: 0;
}

.contato button[type="submit"] {
  justify-self: start;
  min-height: 60px;
  padding: 0 34px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: #161614;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 820;
  box-shadow: 0 14px 32px rgba(244, 81, 11, 0.22);
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.contato button[type="submit"]:hover {
  background: #ff6420;
  transform: translateY(-3px);
}

.aviso {
  padding: 18px 24px;
  border-radius: 16px;
  font-weight: 700;
}

.aviso.ok {
  background: #e2f3e2;
  color: #1e5e1e;
}

.aviso.erro {
  background: var(--orange-soft);
  color: var(--orange-dark);
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* ===== Manutenção ===== */

.manutencao {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.manutencao img {
  margin: 0 auto 34px;
  width: 200px;
}

.manutencao h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 720;
  letter-spacing: -0.05em;
}

.manutencao p {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

/* ===== Responsivo ===== */

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 6.3vw, 5rem);
  }

  .desktop-nav {
    gap: 22px;
  }

  .subscription-grid,
  .process-layout {
    gap: 64px;
  }

  .closing-card {
    padding: 52px;
  }
}

@media (max-width: 980px) {
  .container {
    width: min(100% - 48px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    min-height: 46px;
    padding: 12px 18px;
    border: 1px solid var(--graphite);
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 800;
    list-style: none;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 82px;
    right: 0;
    display: grid;
    min-width: 250px;
    gap: 2px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 720;
    text-decoration: none;
  }

  .mobile-menu nav a:hover {
    background: var(--ivory);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 76px 50px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .site-composition {
    min-height: 520px;
  }

  .browser-card {
    right: 4%;
    width: 78%;
  }

  .update-card {
    right: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(3) {
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .split-heading,
  .subscription-grid,
  .process-layout,
  .closing-card {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 28px;
  }

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

  .service-card {
    min-height: 280px;
  }

  .service-topline {
    padding-bottom: 52px;
  }

  .subscription-grid {
    gap: 70px;
  }

  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-intro {
    position: static;
  }

  .process-layout {
    gap: 60px;
  }

  .closing-card {
    align-items: start;
    gap: 44px;
  }

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

  .posts-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .container {
    width: calc(100% - 36px);
  }

  .header-inner {
    min-height: 84px;
  }

  .brand img {
    width: 144px;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu nav {
    top: 72px;
  }

  .hero {
    padding-block: 58px 35px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 14vw, 4.45rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .dark-button {
    width: 100%;
    justify-content: space-between;
  }

  .site-composition {
    min-height: 440px;
  }

  .composition-orbit-one {
    right: -190px;
  }

  .browser-card {
    right: 0;
    width: 95%;
    height: 356px;
  }

  .browser-bar {
    height: 62px;
    padding-inline: 20px;
  }

  .browser-body {
    height: 294px;
  }

  .browser-copy {
    padding: 26px 12px 26px 24px;
  }

  .browser-art {
    margin: 30px 18px 30px 0;
  }

  .update-card {
    width: 260px;
    min-height: 98px;
    padding: 14px 16px;
  }

  .check-mark {
    width: 45px;
    height: 45px;
  }

  .proof-item {
    min-height: 118px;
    padding: 22px 18px;
  }

  .section,
  .subscription-section,
  .process-section {
    padding-block: 88px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .subscription-copy h2,
  .process-intro h2,
  .closing-card h2 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
  }

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

  .deliverable-card.destaque,
  .deliverable-card.larga {
    grid-column: auto;
  }

  .process-list li {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .client-grid a,
  .client-grid a:nth-child(even) {
    border-right: 0;
  }

  .closing-section {
    padding-bottom: 28px;
  }

  .closing-card {
    min-height: 500px;
    padding: 36px 26px;
    border-radius: 26px;
  }

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

  .copyright {
    grid-column: auto;
  }

  .page-main {
    padding-block: 44px 76px;
  }

  .posts-lista {
    grid-template-columns: 1fr;
  }

  .busca form {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: clamp(3rem, 15vw, 3.7rem);
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .site-composition {
    min-height: 390px;
  }

  .browser-card {
    width: 100%;
    height: 320px;
    border-radius: 24px;
  }

  .browser-body {
    height: 258px;
  }

  .browser-art {
    margin: 25px 14px 25px 0;
  }

  .browser-copy {
    padding-left: 19px;
  }

  .browser-button {
    width: 95px;
    height: 38px;
  }

  .update-card {
    right: -8px;
    bottom: 2px;
  }

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

  .proof-item,
  .proof-item:first-child,
  .proof-item:nth-child(2),
  .proof-item:nth-child(3),
  .proof-item:nth-child(4) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .service-card {
    padding: 26px;
  }
}

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

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