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

:root {
  --bg:       #F7F5F2;
  --bg-warm:  #EDEAE3;
  --ink:      #141414;
  --ink-50:   rgba(20,20,20,0.75);
  --ink-30:   rgba(20,20,20,0.30);
  --ink-15:   rgba(20,20,20,0.10);
  --orange:   #F2712A;
  --teal:     #1F6F7A;
  --dark:     #141414;
  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'IBM Plex Sans', -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV (igual em todas as páginas) ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(247,245,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--ink-15);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, border-color 0.5s ease;
}

.nav-logo { display: block; line-height: 0; }
.nav-logo img { height: 36px; display: block; }

.nav-menu-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-menu a:hover { color: var(--orange); }
.nav-menu .current-menu-item > a,
.nav-menu .current_page_item > a { color: var(--orange); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  border-radius: 3px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--orange); color: #fff; }
.nav-cta svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Botão hambúrguer — próprio, não depende do .navbar-toggler do Bootstrap */
.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Home: nav nasce transparente sobre o hero e revela ao rolar */
#nav.nav--reveal {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: transparent;
  pointer-events: none;
}
#nav.nav--reveal .nav-logo,
#nav.nav--reveal .nav-toggle,
#nav.nav--reveal .nav-menu-wrap {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#nav.nav--reveal.scrolled {
  pointer-events: all;
  background: rgba(247,245,242,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--ink-15);
}
#nav.nav--reveal.scrolled .nav-logo,
#nav.nav--reveal.scrolled .nav-toggle,
#nav.nav--reveal.scrolled .nav-menu-wrap {
  opacity: 1;
  pointer-events: all;
}

/* ─── HERO (home) ─── */
.hero-section {
  min-height: 100vh;
  background: var(--bg);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
}

.hero-logo-wrap {
  padding-top: 18px;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}
.hero-logo-wrap img {
  height: 65px;
  width: auto;
  display: block;
  transition: opacity 0.4s ease;
}
.hero-logo-wrap.hidden { opacity: 0; }

.hero-inner {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: stretch;
}

.hero-text-col {
  padding-top: 60px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-subtitulo {
  font-family: var(--serif);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 600;
  font-style: italic;
  color: var(--orange);
  line-height: 1.25;
  margin-bottom: 36px;
}

.hero-descricao {
  font-size: 17px;
  color: var(--ink-50);
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 44px;
}

.hero-cta {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-cta:hover { background: #D45E1E; color: #fff; transform: translateY(-2px); }
.hero-cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero-photo-col {
  padding-left: 0;
  padding-right: 0;
  display: flex;
  align-items: flex-start;
}
.hero-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-position: top center;
  display: block;
}

.secao {
  padding-top: 120px;
  padding-bottom: 0;
}
.secao-xl {
  padding-top: 110px;
  padding-bottom: 60px;
  background-color: #EDEAE3;
  position: relative;
}

/* ─── SVG REPETIÇÃO (home) ─── */
.svg-repeticao-wrap {
  margin-top: -15px;
  pointer-events: none;
}
.repeticao-svg {
  width: 100%;
  display: block;
}
.ponto-r {
  opacity: 0;
}
.secao-xl-animada .linha-r  { animation: desenha 1.4s ease forwards; }
.secao-xl-animada .l1       { animation-delay: 0.1s; }
.secao-xl-animada .l2       { animation-delay: 0.6s; }
.secao-xl-animada .l3       { animation-delay: 1.1s; }
.secao-xl-animada .ponto-r  { animation: aparece 0.4s ease 1.7s forwards, pulsa 2.4s ease-in-out 2.1s infinite; }
.secao-xl-animada .origem-r { animation: aparece 0.3s ease forwards; }
.secao-xl-animada .o1       { animation-delay: 0.1s; }
.secao-xl-animada .o2       { animation-delay: 0.6s; }
.secao-xl-animada .o3       { animation-delay: 1.1s; }
@keyframes desenha { to { stroke-dashoffset: 0; } }
@keyframes aparece { to { opacity: inherit; } }
@keyframes pulsa {
  0%, 100% { r: 5; opacity: 0.9; }
  50%       { r: 7; opacity: 0.5; }
}
@media (prefers-reduced-motion: reduce) {
  .linha-r   { stroke-dashoffset: 0 !important; animation: none !important; }
  .ponto-r   { opacity: 0.9 !important; r: 5 !important; animation: none !important; }
  .origem-r  { opacity: inherit !important;      animation: none !important; }
  .linha-c   { stroke-dashoffset: 0 !important; animation: none !important; }
  .ponto-c   { opacity: 1 !important;            animation: none !important; }
}

/* ─── TIPOGRAFIA DE CONTEÚDO (home) ─── */
.frase-ancora {
  font-family: var(--serif);
  font-size: clamp(30px, 3.8vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.frase-ancora em {
  font-style: italic;
  color: var(--orange);
}

.prose p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-50);
  margin-bottom: 28px;
}
.prose p:last-child { margin-bottom: 0; }

.prose-marcada {
  position: relative;
  padding-left: 28px;
}
.prose-marcada::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--teal);
  opacity: 0.35;
}

.frase-fechamento {
  font-family: var(--serif);
  font-size: clamp(19px, 1.9vw, 26px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
  color: var(--ink);
  border-left: 2px solid var(--orange);
  padding-left: 24px;
  margin-top: 40px;
  margin-bottom: 0;
}

/* ─── SETTING / COMO FUNCIONA (home) ─── */
.bloco-setting {
  padding-top: 120px;
  padding-bottom: 0;
}

.setting-titulo {
  font-family: var(--serif);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 0;
}

.setting-descricao {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink-50);
  margin-bottom: 0;
}

.setting-logistica {
  border-left: 1px solid var(--orange);
  padding-left: 36px;
}
.setting-logistica p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-50);
  margin-bottom: 20px;
}
.setting-logistica p:last-child { margin-bottom: 0; }

/* ─── BARCO (home) ─── */
.barco-section {
  background: var(--dark);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  margin-top: 120px;
}

.barco-section .barco-spiral {
  position: absolute;
  left: 66%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: auto;
  opacity: 0.05;
  pointer-events: none;
  filter: invert(1);
}

.barco-intro {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(247,245,242,0.55);
  max-width: 530px;
  margin-bottom: 64px;
}

.barco-wrap {
  max-width: 900px;
  gap: 2px;
  background: rgba(247,245,242,0.08);
}

.barco-lado {
  padding: 52px 48px;
  position: relative;
}
.barco-lado-a { background: rgba(247,245,242,0.04); }
.barco-lado-b { background: var(--orange); }

.barco-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: block;
}
.barco-lado-a .barco-tag { color: rgba(247,245,242,0.3); }
.barco-lado-b .barco-tag { color: rgba(255,255,255,0.55); }

.barco-texto {
  font-size: 17px;
  line-height: 1.75;
  margin-bottom: 0;
}
.barco-lado-a .barco-texto { color: rgba(247,245,242,0.6); }
.barco-lado-b .barco-texto { color: rgba(255,255,255,0.92); }

/* ─── FOTO FULL WIDTH (home) ─── */
.foto-full {
  width: 100%;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
  position: relative;
}
.foto-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.foto-caption {
  position: absolute;
  bottom: 32px;
  right: 48px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,242,0.65);
}

/* ─── SOBRE — TEASER NA HOME ─── */
.secao-sobre {
  background: var(--bg-warm);
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}
.sobre-spiral {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 520px;
  height: auto;
  opacity: 0.07;
  pointer-events: none;
}
.secao-sobre .sobre-inner {
  padding-top: 100px;
  padding-bottom: 60px;
}

.sobre-frase-principal {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 28px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 0;
}

.credenciais-linha {
  font-size: 14px;
  color: var(--ink-30);
  letter-spacing: 0.02em;
  margin-top: 40px;
}

.link-sobre {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(31, 111, 122, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}
.link-sobre:hover {
  border-color: var(--teal);
  color: var(--teal);
}

/* ─── FAQ (home) ─── */
.faq-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--ink-15);
  border-radius: 0 !important;
}
.faq-accordion .accordion-item:first-child {
  border-top: 1px solid var(--ink-15);
}
.faq-accordion .accordion-button {
  background: transparent;
  border: none;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 28px 0;
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--ink);
  background: transparent;
}
.faq-accordion .accordion-button::after {
  display: none;
}
.faq-accordion .accordion-button .faq-icon {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}
.faq-accordion .accordion-button .faq-icon::before,
.faq-accordion .accordion-button .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--orange);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.faq-accordion .accordion-button .faq-icon::before {
  width: 14px; height: 1.5px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-accordion .accordion-button .faq-icon::after {
  width: 1.5px; height: 14px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-accordion .accordion-button:not(.collapsed) .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-accordion .accordion-body {
  padding: 0 0 28px 0;
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-50);
}

/* ─── CTA FINAL (home) ─── */
.cta-section {
  background: var(--teal);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.cta-spiral {
  position: absolute;
  right: 0px;
  top: 63.5%;
  transform: translateY(-50%);
  width: 640px;
  height: auto;
  opacity: 0.10;
  pointer-events: none;
  filter: invert(1);
}
.cta-titulo {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--bg);
  margin-bottom: 28px;
}
.cta-sub {
  font-size: 17px;
  color: rgba(247,245,242,0.45);
  max-width: 420px;
  margin-bottom: 52px;
  line-height: 1.7;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.cta-btn:hover { background: #D45E1E; color: #fff; transform: translateY(-2px); }
.cta-btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── PÁGINA GENÉRICA ─── */
.page-wrap {
  padding-top: 120px;
  padding-bottom: 100px;
}

.page-titulo {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 48px;
}

.page-content h2 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--ink);
  margin-top: 44px;
  margin-bottom: 12px;
}

.page-content p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-50);
  margin-bottom: 20px;
}
.page-content p:last-child { margin-bottom: 0; }

.page-content a {
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(31,111,122,0.3);
  transition: border-color 0.2s;
}
.page-content a:hover { border-color: var(--teal); }

.page-meta {
  font-size: 13px;
  color: var(--ink-50);
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-15);
}

/* ─── SOBRE — PÁGINA COMPLETA ─── */
.sobre-hero {
  padding-top: 110px;
  padding-bottom: 0px;
}

.sobre-hero-inner {
  display: flex;
  gap: 0;
  align-items: start;
}

.sobre-foto-col {
  overflow: hidden;
}

.sobre-foto {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center center;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.sobre-foto img {
  width: 135%;
    position: absolute;
    left: -11%;
    top: -16%;
}


.sobre-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.sobre-titulo {
  font-family: var(--serif);
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 40px;
}

.sobre-credenciais {
  font-size: 13px;
  color: var(--ink-30);
  letter-spacing: 0.02em;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--ink-15);
}

.sobre-corpo {
  padding-bottom: 80px;
}

.sobre-corpo .prose p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink-50);
  margin-bottom: 24px;
}
.sobre-corpo .prose p:last-child {
  margin-bottom: 0;
}

.sobre-divisor {
  border: none;
  border-top: 1px solid var(--ink-15);
  margin: 48px 0;
}

.sobre-metodo {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
    font-style: italic;
    color: var(--orange);
  line-height: 1.4;
  margin-bottom: 32px;
}

.sobre-cta {
  background: var(--ink);
  border-radius: 4px;
  padding: 56px 64px;
  margin-top: 80px;
}

.sobre-cta-titulo {
  font-family: var(--serif);
  font-size: clamp(26px, 4.2vw, 46px);
  font-weight: 700;
  color: var(--bg);
  margin-bottom: 16px;
  line-height: 1.2;
}

.sobre-cta-texto {
  font-size: 16px;
  color: rgba(247,245,242,0.65);
  margin-bottom: 32px;
  max-width: 480px;
}

.btn-cta-sobre {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.btn-cta-sobre:hover { opacity: 0.88; color: #fff; }
.btn-cta-sobre svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── SOBRE — SEÇÕES INTERNAS ─── */
.secao-ancora {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 40px;
}

.sobre-caminho {
  background: var(--bg-warm);
  padding: 80px 0;
}

.caminho-svg-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
}

.caminho-svg {
  width: 100%;
  max-width: 300px;
}

/* Animação dos fios da página Sobre — mesmos keyframes da home */
.linha-c {
  animation: desenha 1.4s ease forwards;
  animation-play-state: paused;
}
.caminho-svg.animado .linha-c { animation-play-state: running; }
.linha-c.l0 { animation-delay: 0s; }
.linha-c.l1 { animation-delay: 0.5s; }
.linha-c.l2 { animation-delay: 0.7s; }
.linha-c.l3 { animation-delay: 0.9s; }

.ponto-c {
  opacity: 0;
  animation: aparece 0.3s ease forwards;
  animation-play-state: paused;
}
.caminho-svg.animado .ponto-c { animation-play-state: running; }
.ponto-c.p0 { animation-delay: 0.4s; }
.ponto-c.p1 { animation-delay: 1.2s; }
.ponto-c.p2 { animation-delay: 1.4s; }
.ponto-c.p3 { animation-delay: 1.6s; }

.sobre-trabalho {
  background: var(--bg);
  padding: 80px 0;
}

.sobre-cta-section {
  background: var(--teal);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-spiral-sobre {
  position: absolute;
  right: -60px;
  bottom: 0;
  width: 600px;
  height: auto;
  opacity: 0.08;
  pointer-events: none;
  filter: invert(1);
}

.sobre-cta-sub {
  font-size: 17px;
  color: rgba(247,245,242,0.70);
  margin-bottom: 36px;
  max-width: 480px;
}

/* ─── FOOTER (igual em todas as páginas) ─── */
footer {
  padding: 18px 0;
  border-top: 1px solid var(--ink-15);
  background: var(--bg-warm);
}
.footer-copy { font-size: 13px; color: var(--ink-30); }
.footer-copy-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--ink-15);
}
.footer-links { display: flex; gap: 28px; justify-content: flex-end; }
.footer-links a {
  font-size: 13px;
  color: var(--ink-30);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-links svg { width: 14px; height: 14px; }

/* ─── REVEAL (utilitário compartilhado) ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.10s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }

/* ─── MOBILE ─── */
@media (max-width: 768px) {

  .hero-logo-wrap img {
    height: 43px;
  }
  #nav { padding: 0 20px 0 16px; }

  .nav-toggle { display: flex; }

  .nav-menu-wrap {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 20px 32px;
    background: rgba(247,245,242,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--ink-15);
  }
  .nav-menu-wrap.is-open { display: flex; }

  .nav-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-text-col {
    padding-top: 80px;
    padding-bottom: 35px;
    padding-right: 0;
    justify-content: flex-start;
  }
  .hero-descricao {
    font-size: 16.5px;
  }
  .hero-photo-col { padding: 0; }
  .hero-photo { aspect-ratio: auto; min-height: 380px; }

  .frase-ancora {
    font-size: 34px;
  }
  .svg-repeticao-wrap {
    margin-top: 20px;
  }
  .frase-fechamento {
    margin-top: 30px;
  }

  .setting-titulo {
    font-size: 26px;
  }
  .setting-logistica { border-left: none; padding-left: calc(var(--bs-gutter-x) * .5); margin-top: 32px; font-size: 17px; }

  .barco-wrap .barco-lado { padding: 40px 28px; }
  .barco-section { padding: 80px 0; margin-top: 80px; }
  .barco-section .barco-spiral { top: 80%; left: 40%; width: 550px; }

  .foto-full { height: 55vw; min-height: 300px; }
  .foto-caption { right: 25px; bottom: 20px; }

  .secao-sobre .sobre-inner { padding-top: 60px; }

  .sobre-frase-principal { padding-top: 20px; }

  .cta-titulo { font-size: 42px; }
  .cta-section { padding: 96px 0; }
  .cta-spiral { display: none; }

  .sobre-spiral { display: none; }

  .secao, .secao-xl { padding-top: 80px; }
  .bloco-setting { padding-top: 80px; }

  .page-wrap { padding-top: 96px; padding-bottom: 72px; }

  .sobre-hero { padding-top: 112px; padding-bottom: 56px; }
  .sobre-intro { padding-top: 32px; }
  .sobre-cta { padding: 40px 28px; }

  .sobre-caminho,
  .sobre-trabalho { padding: 56px 0; }
  .caminho-svg-wrap { padding-top: 40px; }
  .caminho-svg { max-width: 220px; }
  .sobre-cta-section { padding: 56px 0; }
  .cta-spiral-sobre { display: none; }

  .footer-links { justify-content: flex-start; }
}

/* ─── ARTIGOS — CONTEÚDO ─── */
.artigo-content {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
}
.artigo-content p {
  margin-bottom: 28px;
}
.artigo-content p:last-child {
  margin-bottom: 0;
}
.artigo-content h2 {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 20px;
}
.artigo-content h3 {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 16px;
}
.artigo-content a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.artigo-content a:hover { color: var(--orange); }

/* ─── ARTIGOS — SINGLE ─── */
.artigo-wrap {
  padding-top: 120px;
  padding-bottom: 80px;
}

.artigo-header {
  margin-bottom: 40px;
}

.artigo-titulo {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 20px;
}

.artigo-excerpt {
  font-family: var(--serif);
  font-size: clamp(16px, 1.6vw, 20px);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-50);
  line-height: 1.55;
  margin-bottom: 0;
}

.artigo-thumb {
  margin-bottom: 48px;
}
.artigo-thumb img {
  width: 100%;
  border-radius: 2px;
  display: block;
}

/* ─── CTA: seção full-width, bg-warm, sem border-radius ─── */
.artigo-cta-section {
  background: var(--bg-warm);
  border-top: 1px solid var(--ink-15);
  padding: 48px 0;
}

.artigo-cta-titulo {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 16px;
}

.artigo-cta-body {
  font-size: 16px;
  color: var(--ink-50);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.btn-cta-artigo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-cta-artigo:hover { background: #D45E1E; color: #fff; transform: translateY(-2px); }
.btn-cta-artigo svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── ARTIGOS — RELACIONADOS ─── */
/* Grade 2 colunas sem imagem — unidade com o archive */
.artigos-relacionados {
  background: var(--bg-warm);
  padding: 0 0 80px;
  border-top: 1px solid var(--ink-15);
}

.relacionados-titulo {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-50);
  margin-bottom: 36px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-top: 56px;
}

.relacionados-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
}

/* Reutiliza .artigo-card do archive — mesmas classes, mesmo visual */
/* Remove borda inferior dos dois últimos cards */
.relacionados-grid .artigo-card:nth-last-child(1),
.relacionados-grid .artigo-card:nth-last-child(2) {
  border-bottom: none;
}

/* ─── ARTIGOS — ARCHIVE ─── */

/* Hero: fundo claro, mesmo padrão das seções da home */
.archive-hero {
  background: var(--bg);
  padding: 100px 0 40px;
}

/* Título âncora: mesmo registro de .frase-ancora da home
   ênfase em itálico laranja via <em> inline */
.archive-titulo {
  font-family: var(--serif);
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0;
  max-width: 640px;
}
.archive-titulo em {
  font-style: italic;
  color: var(--orange);
}

/* Seção de cards: fundo warm + borda superior fina */
.archive-artigos {
  background: var(--bg-warm);
  padding: 72px 0 100px;
  border-top: 1px solid var(--ink-15);
}

/* Grade 2 colunas sem bordas internas —
   espaço é o separador entre colunas */
.artigos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  row-gap: 0;
}

/* Card: link de bloco, sem decoração */
.artigo-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 40px 0;
  border-bottom: 1px solid var(--ink-15);
  transition: opacity 0.2s;
}
.artigo-card:hover { opacity: 0.82; color: inherit; }
.artigo-card:hover .artigo-card-titulo { color: var(--teal); }

/* Remove borda inferior dos dois últimos cards da grade */
.artigo-card:nth-last-child(1),
.artigo-card:nth-last-child(2) {
  border-bottom: none;
}

/* Título do card */
.artigo-card-titulo {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 12px 0;
  transition: color 0.2s;
}

/* Lide */
.artigo-card-excerpt {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-50);
  margin: 0;
}

/* Estado vazio */
.artigos-vazios {
  font-size: 16px;
  color: var(--ink-50);
}

/* Paginação (inalterada) */
.artigos-paginacao {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 64px;
}
.artigos-paginacao .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 14px;
  font-family: var(--sans);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--ink-15);
  border-radius: 3px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.artigos-paginacao .page-numbers:hover,
.artigos-paginacao .page-numbers.current {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.artigos-paginacao .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  pointer-events: none;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .archive-hero { padding: 72px 0 48px; }
  .archive-artigos { padding: 48px 0 72px; }
  .artigos-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
  /* Com 1 coluna, só o último card perde borda */
  .artigo-card:nth-last-child(2) { border-bottom: 1px solid var(--ink-15); }
  .artigo-card:nth-last-child(1) { border-bottom: none; }
  .artigos-paginacao { margin-top: 48px; }
}