/* ============================================================
   PAUSA PROFISSIONAL — Estilos principais
   ============================================================ */

/* ── Variáveis de marca ─────────────────────────────────── */
:root {
  --terracota:      #c47b67;
  --terracota-dark: #a8604f;
  --rosa:           #d6a8a0;
  --areia:          #ebd9ce;
  --salvia:         #a8b2a2;
  --offwhite:       #f9f8f6;
  --branco:         #ffffff;
  --texto:          #3a3530;
  --texto-suave:    #6b5e56;
  --texto-claro:    #9a8d87;

  --fonte-titulo: 'Baskervville', Georgia, serif;
  --fonte-corpo:  'DM Sans', system-ui, sans-serif;

  --raio:    8px;
  --sombra:  0 4px 24px rgba(58,53,48,.08);
  --sombra-hover: 0 8px 32px rgba(58,53,48,.14);
  --transicao: .25s ease;

  --max-width: 1200px;
  --padding-h: clamp(1.25rem, 5vw, 3rem);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--fonte-corpo);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--texto);
  background: var(--offwhite);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--terracota); text-decoration: none; transition: color var(--transicao); }
a:hover { color: var(--terracota-dark); }
ul { list-style: none; }

/* ── Tipografia ─────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--fonte-titulo);
  font-weight: 400;
  line-height: 1.25;
  color: var(--texto);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1.25rem; color: var(--texto-suave); }
p:last-child { margin-bottom: 0; }

/* ── Utilitários ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

.section-pad { padding: clamp(3rem, 8vw, 6rem) 0; }

.text-center { text-align: center; }
.text-terracota { color: var(--terracota); }

/* ── Botões ─────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 2rem;
  border-radius: 50px;
  font-family: var(--fonte-corpo);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transicao);
  text-align: center;
}

.btn-primary {
  background: var(--terracota);
  color: var(--branco);
  border-color: var(--terracota);
}
.btn-primary:hover {
  background: var(--terracota-dark);
  border-color: var(--terracota-dark);
  color: var(--branco);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,123,103,.35);
}

.btn-outline {
  background: transparent;
  color: var(--terracota);
  border-color: var(--terracota);
}
.btn-outline:hover {
  background: var(--terracota);
  color: var(--branco);
  transform: translateY(-2px);
}

.btn-branco {
  background: var(--branco);
  color: var(--terracota);
  border-color: var(--branco);
}
.btn-branco:hover {
  background: var(--offwhite);
  transform: translateY(-2px);
}

/* ── Elemento decorativo: onda ──────────────────────────── */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ── HEADER / NAVEGAÇÃO ─────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--offwhite);
  border-bottom: 1px solid var(--areia);
  box-shadow: 0 2px 16px rgba(58,53,48,.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem var(--padding-h);
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-logo img {
  height: 72px;
  width: auto;
  max-width: 260px;
}

/* Menu principal */
.nav-primary ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-primary a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--texto-suave);
  padding: .25rem 0;
  position: relative;
}

.nav-primary a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--terracota);
  transition: width var(--transicao);
}

.nav-primary a:hover,
.nav-primary .current-menu-item > a {
  color: var(--terracota);
}
.nav-primary a:hover::after,
.nav-primary .current-menu-item > a::after {
  width: 100%;
}

/* Botão hamburger (mobile) */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--terracota);
  transition: all var(--transicao);
  border-radius: 2px;
}

/* ── HERO (Homepage) ────────────────────────────────────── */
.hero {
  background: var(--offwhite);
  padding: clamp(3rem, 8vw, 5rem) 0 0;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-h);
}

.hero-texto .subtitulo {
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--salvia);
  font-weight: 500;
  margin-bottom: 1rem;
}

.hero-texto h1 {
  color: var(--texto);
  margin-bottom: 1.25rem;
}

.hero-texto h1 span { color: var(--terracota); }

.hero-texto .lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--texto-suave);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-foto {
  position: relative;
}

.hero-foto img {
  width: 100%;
  height: clamp(400px, 60vh, 620px);
  object-fit: cover;
  object-position: top center;
  border-radius: 200px 200px 0 0;
  box-shadow: var(--sombra-hover);
}

/* Fundo decorativo atrás da foto */
.hero-foto::before {
  content: '';
  position: absolute;
  top: 2rem; right: -1rem;
  width: 90%; height: 90%;
  border-radius: 200px 200px 0 0;
  background: var(--areia);
  z-index: -1;
}

/* Onda abaixo do hero */
.hero-wave {
  margin-top: 3rem;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ── SEÇÃO: O LIVRO (Homepage) ──────────────────────────── */
.secao-livro {
  background: var(--areia);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.livro-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.livro-capa img {
  width: clamp(200px, 25vw, 300px);
  border-radius: var(--raio);
  box-shadow: 0 20px 60px rgba(58,53,48,.2);
}

.livro-info .label {
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--salvia);
  font-weight: 500;
  margin-bottom: .75rem;
}

.livro-info h2 {
  margin-bottom: .5rem;
}

.livro-info .subtitulo-livro {
  font-family: var(--fonte-titulo);
  font-style: italic;
  color: var(--terracota);
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.livro-info .sinopse {
  font-size: .97rem;
  line-height: 1.85;
  color: var(--texto-suave);
  margin-bottom: 2rem;
}

/* ── SEÇÃO: ÚLTIMOS ARTIGOS ─────────────────────────────── */
.secao-blog {
  background: var(--offwhite);
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.secao-header {
  text-align: center;
  margin-bottom: 3rem;
}

.secao-header .linha-decorativa {
  display: inline-block;
  width: 50px; height: 2px;
  background: var(--terracota);
  margin-bottom: 1.25rem;
}

.secao-header p {
  max-width: 520px;
  margin: .75rem auto 0;
  font-size: .97rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card de post */
.post-card {
  background: var(--branco);
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  transition: box-shadow var(--transicao), transform var(--transicao);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  box-shadow: var(--sombra-hover);
  transform: translateY(-4px);
}

.post-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.post-card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.post-card:hover .post-card-thumb img {
  transform: scale(1.04);
}

.post-card-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--areia), var(--rosa));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.post-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card-meta {
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin-bottom: .75rem;
}

.post-card-meta span + span::before {
  content: ' · ';
}

.post-card h3 {
  font-size: 1.1rem;
  margin-bottom: .75rem;
  flex: 1;
}

.post-card h3 a { color: var(--texto); }
.post-card h3 a:hover { color: var(--terracota); }

.post-card .excerpt {
  font-size: .88rem;
  line-height: 1.7;
  color: var(--texto-suave);
  margin-bottom: 1.25rem;
}

.post-card .ler-mais {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terracota);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: auto;
}

.post-card .ler-mais::after {
  content: '→';
  transition: transform var(--transicao);
}

.post-card:hover .ler-mais::after {
  transform: translateX(4px);
}

.ver-todos {
  text-align: center;
  margin-top: 3rem;
}

/* ── SEÇÃO: NEWSLETTER ──────────────────────────────────── */
.secao-newsletter {
  background: linear-gradient(135deg, var(--terracota) 0%, #b56b58 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  color: var(--branco);
  margin-bottom: 1rem;
}

.newsletter-inner p {
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  padding: .85rem 1.5rem;
  border-radius: 50px;
  border: none;
  font-family: var(--fonte-corpo);
  font-size: .95rem;
  outline: none;
  color: var(--texto);
}

.newsletter-form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.4);
}

.newsletter-aviso {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-top: 1rem;
}

/* ── HEADER DE PÁGINA INTERNA ────────────────────────────── */
.page-hero {
  background: var(--offwhite);
  padding: clamp(2.5rem, 6vw, 4rem) 0 0;
  overflow: hidden;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-h);
  text-align: center;
}

.page-hero .breadcrumb {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--texto-claro);
  margin-bottom: 1rem;
}

.page-hero h1 { margin-bottom: .75rem; }

.page-hero .subtitulo-pagina {
  font-size: 1rem;
  color: var(--texto-suave);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.page-hero-wave {
  margin-top: 2rem;
  overflow: hidden;
  line-height: 0;
}

/* ── BLOG: LISTAGEM ─────────────────────────────────────── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* Sidebar */
.blog-sidebar .widget {
  background: var(--branco);
  border-radius: var(--raio);
  padding: 1.75rem;
  margin-bottom: 2rem;
  box-shadow: var(--sombra);
}

.blog-sidebar .widget-title {
  font-size: 1rem;
  color: var(--terracota);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--areia);
}

/* Paginação */
.paginacao {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding: 2rem 0;
  flex-wrap: wrap;
}

.paginacao .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  font-size: .88rem;
  font-weight: 500;
  color: var(--texto-suave);
  background: var(--branco);
  border: 1px solid var(--areia);
  transition: all var(--transicao);
}

.paginacao .page-numbers:hover,
.paginacao .current {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--branco);
}

/* ── POST INDIVIDUAL ────────────────────────────────────── */
.single-post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.post-content-area article { background: var(--branco); border-radius: var(--raio); overflow: hidden; box-shadow: var(--sombra); }

.post-featured-image {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
}

.post-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.post-body {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.post-categoria {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--terracota);
  font-weight: 500;
  margin-bottom: .75rem;
}

.post-titulo {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin-bottom: 1rem;
}

.post-meta-barra {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: .8rem;
  color: var(--texto-claro);
  padding: 1rem 0;
  border-top: 1px solid var(--areia);
  border-bottom: 1px solid var(--areia);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.post-meta-barra span { display: flex; align-items: center; gap: .35rem; }

/* Conteúdo do post */
.post-conteudo {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--texto-suave);
}

.post-conteudo h2, .post-conteudo h3, .post-conteudo h4 {
  color: var(--texto);
  margin: 2rem 0 .75rem;
}

.post-conteudo p { margin-bottom: 1.5rem; }

.post-conteudo blockquote {
  border-left: 3px solid var(--terracota);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--areia);
  border-radius: 0 var(--raio) var(--raio) 0;
  font-style: italic;
  color: var(--texto);
}

.post-conteudo a { color: var(--terracota); text-decoration: underline; }
.post-conteudo img { border-radius: var(--raio); margin: 1.5rem auto; }
.post-conteudo ul, .post-conteudo ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.post-conteudo li { margin-bottom: .5rem; }

/* Nav post anterior/próximo */
.post-navegacao {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--areia);
}

.post-navegacao a {
  display: block;
  padding: 1rem 1.25rem;
  background: var(--offwhite);
  border-radius: var(--raio);
  font-size: .85rem;
  color: var(--texto-suave);
  transition: background var(--transicao);
}

.post-navegacao a:hover { background: var(--areia); color: var(--terracota); }
.post-navegacao .nav-proximo { text-align: right; }
.post-navegacao .nav-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--texto-claro); display: block; margin-bottom: .25rem; }
.post-navegacao .nav-titulo { font-weight: 500; }

/* Bio da autora no final do post */
.post-autora {
  margin-top: 2rem;
  padding: 1.75rem;
  background: var(--areia);
  border-radius: var(--raio);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.post-autora img {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.post-autora h4 { font-size: 1rem; margin-bottom: .25rem; }
.post-autora p { font-size: .88rem; margin: 0; }

/* ── PÁGINA SOBRE ────────────────────────────────────────── */
.sobre-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.sobre-foto img {
  width: 100%;
  border-radius: 200px 200px var(--raio) var(--raio);
  box-shadow: var(--sombra-hover);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
}

.sobre-texto h2 {
  color: var(--terracota);
  margin-bottom: 1.5rem;
}

.sobre-texto p {
  font-size: 1.02rem;
  line-height: 1.9;
}

.sobre-valores {
  background: var(--areia);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.valores-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.valor-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--branco);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.valor-item .icone { font-size: 2rem; margin-bottom: 1rem; }
.valor-item h3 { font-size: 1.1rem; color: var(--terracota); margin-bottom: .75rem; }
.valor-item p { font-size: .9rem; }

/* ── LIVRO 3D MOCKUP ────────────────────────────────────── */
.livro-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 2rem 2rem 3rem;
}

.livro-mockup {
  position: relative;
  width: clamp(200px, 28vw, 280px);
  transform: perspective(700px) rotateY(-22deg);
  transition: transform .5s ease;
  cursor: pointer;
  filter: drop-shadow(24px 24px 48px rgba(0,0,0,.45));
}

.livro-mockup:hover {
  transform: perspective(700px) rotateY(-10deg);
  filter: drop-shadow(30px 30px 56px rgba(0,0,0,.5));
}

/* Lombada do livro (canto esquerdo) */
.livro-mockup::before {
  content: '';
  position: absolute;
  top: 2%;
  left: -22px;
  width: 22px;
  height: 96%;
  background: linear-gradient(
    to bottom,
    #0a2420 0%,
    #1b4740 30%,
    #0f3530 60%,
    #0a2420 100%
  );
  transform-origin: right center;
  transform: skewY(-0.3deg);
  border-radius: 3px 0 0 3px;
}

/* Borda de topo do livro */
.livro-mockup::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -18px;
  width: calc(100% + 18px);
  height: 8px;
  background: linear-gradient(to right, #0a2420 0%, #1e5248 60%, #2a6b5f 100%);
  border-radius: 2px 2px 0 0;
  transform: skewX(-45deg) scaleX(0.98);
}

.livro-mockup img {
  width: 100%;
  display: block;
  border-radius: 1px 6px 6px 1px;
}

/* ── PÁGINA O LIVRO ─────────────────────────────────────── */
.livro-page-capa {
  background: var(--areia);
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.livro-page-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.livro-page-inner img.capa {
  width: clamp(220px, 28vw, 340px);
  border-radius: var(--raio);
  box-shadow: 0 24px 64px rgba(58,53,48,.2);
}

.livro-page-texto h1 { margin-bottom: .5rem; }
.livro-page-texto .subtitulo-italic {
  font-family: var(--fonte-titulo);
  font-style: italic;
  color: var(--terracota);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.livro-sinopse { padding: clamp(2.5rem, 6vw, 4rem) 0; }

.livro-sinopse .blockquote-grande {
  max-width: 720px;
  margin: 0 auto 3rem;
  padding: 2.5rem;
  background: var(--branco);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  border-left: 4px solid var(--terracota);
  font-family: var(--fonte-titulo);
  font-style: italic;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.8;
  color: var(--texto);
}

/* ── PÁGINA CONTATO ─────────────────────────────────────── */
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.contato-info h2 { margin-bottom: 1.5rem; }

.contato-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contato-item .icone-contato {
  width: 44px; height: 44px;
  background: var(--areia);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contato-item h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: var(--texto-claro); margin-bottom: .25rem; }
.contato-item a { color: var(--texto-suave); font-size: .95rem; }
.contato-item a:hover { color: var(--terracota); }

/* Formulário de contato */
.form-contato input,
.form-contato textarea,
.form-contato select {
  width: 100%;
  padding: .85rem 1.25rem;
  border: 1.5px solid var(--areia);
  border-radius: var(--raio);
  font-family: var(--fonte-corpo);
  font-size: .95rem;
  color: var(--texto);
  background: var(--branco);
  transition: border-color var(--transicao), box-shadow var(--transicao);
  margin-bottom: 1.25rem;
  outline: none;
}

.form-contato input:focus,
.form-contato textarea:focus {
  border-color: var(--terracota);
  box-shadow: 0 0 0 3px rgba(196,123,103,.12);
}

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

.form-contato label {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  color: var(--texto-suave);
  margin-bottom: .4rem;
  letter-spacing: .04em;
}

/* ── 404 ─────────────────────────────────────────────────── */
.pagina-404 {
  text-align: center;
  padding: clamp(4rem, 10vw, 8rem) var(--padding-h);
}

.pagina-404 .numero-404 {
  font-family: var(--fonte-titulo);
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--areia);
  line-height: 1;
  margin-bottom: 1rem;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.site-footer {
  background: var(--texto);
  color: rgba(255,255,255,.7);
  padding: clamp(3rem, 6vw, 4rem) 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 2rem;
}

.footer-marca .logo-footer {
  display: inline-block;
  margin-bottom: 1.25rem;
}

.footer-nome {
  font-family: var(--fonte-titulo);
  font-size: 1.5rem;
  letter-spacing: .08em;
  line-height: 1.15;
  display: block;
}

.footer-nome .linha1 { color: var(--rosa); }
.footer-nome .linha2 { color: var(--salvia); }

.footer-marca p {
  font-size: .88rem;
  line-height: 1.8;
  color: rgba(255,255,255,.6);
}

.footer-col h4 {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--rosa);
  margin-bottom: 1.25rem;
  font-family: var(--fonte-corpo);
  font-weight: 500;
}

.footer-col ul li { margin-bottom: .6rem; }

.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--transicao);
}

.footer-col ul li a:hover { color: var(--rosa); }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
  transition: all var(--transicao);
}

.footer-social a:hover {
  background: var(--terracota);
  border-color: var(--terracota);
  color: var(--branco);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── RESPONSIVO ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { display: none; }
  .single-post-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header mobile */
  .menu-toggle { display: flex; }

  .nav-primary {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--offwhite);
    border-bottom: 2px solid var(--areia);
    box-shadow: var(--sombra);
    padding: 1.5rem var(--padding-h);
  }

  .nav-primary.aberto { display: block; }
  .nav-primary ul { flex-direction: column; gap: 0; }
  .nav-primary ul li a { display: block; padding: .75rem 0; border-bottom: 1px solid var(--areia); }
  .nav-primary ul li:last-child a { border-bottom: none; }

  /* Hero mobile */
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-foto { order: -1; }
  .hero-foto img { height: 320px; border-radius: 50%; width: 280px; margin: 0 auto; }
  .hero-foto::before { display: none; }
  .hero-btns { justify-content: center; }

  /* Livro mobile */
  .livro-inner { grid-template-columns: 1fr; text-align: center; }
  .livro-capa { margin: 0 auto; }

  /* Sobre mobile */
  .sobre-layout { grid-template-columns: 1fr; }
  .sobre-foto img { height: 380px; border-radius: var(--raio); }

  /* Livro page mobile */
  .livro-page-inner { grid-template-columns: 1fr; text-align: center; }

  /* Contato mobile */
  .contato-layout { grid-template-columns: 1fr; }

  /* Blog mobile */
  .blog-posts-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }

  /* Valores mobile */
  .valores-grid { grid-template-columns: 1fr; }

  /* Footer mobile */
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Post autora mobile */
  .post-autora { flex-direction: column; }
  .post-navegacao { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form input[type="email"] { min-width: 100%; }
  .hero-foto img { width: 240px; height: 240px; }
}
