/* ═══════════════════════════════════════════════
   CREATEEVA · CSS compartilhado — páginas internas
   (serviços + política de privacidade)
   Paleta bege · Fraunces + Inter · editorial premium
   ═══════════════════════════════════════════════ */

:root {
  --paper:        #F5F1EA;
  --paper-warm:   #EDE6D6;
  --paper-deep:   #E3DAC4;
  --ink:          #1C1917;
  --ink-medium:   #44403C;
  --ink-muted:    #78716C;
  --accent:       #7C5E3C;
  --accent-dark:  #5C4528;
  --sage:         #4A5D4A;
  --line:         #D6CEBE;
  --line-ink:     rgba(28,25,23,0.12);
  --font-serif:   'Fraunces', 'Georgia', serif;
  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --page-pad:     clamp(20px, 5vw, 48px);
  --section-pad:  clamp(64px, 10vw, 128px);
  --max-content:  1280px;
  --max-reading:  720px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast:       0.25s;
  --t-med:        0.5s;
  --t-slow:       0.8s;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--ink); color: var(--paper); }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

/* ══════ CONTAINER ══════ */
.container {
  width: 100%;
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--page-pad);
  padding-right: var(--page-pad);
}

/* ══════ TIPOGRAFIA ══════ */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.4rem, 6.4vw, 4.75rem); font-weight: 300; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 400; }
h3 { font-size: clamp(1.25rem, 2.4vw, 1.625rem); font-weight: 500; }
h4 { font-size: clamp(1.05rem, 1.8vw, 1.25rem); font-weight: 500; }

p { font-size: clamp(1rem, 1.3vw, 1.125rem); color: var(--ink-medium); }
p.lead {
  font-size: clamp(1.125rem, 1.6vw, 1.3rem);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.55;
}

em.hl { font-style: italic; font-weight: 400; color: var(--accent); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-muted);
}

/* ══════ BOTÕES ══════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px 15px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { width: 14px; height: 10px; transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ══════ MASTHEAD + NAV ══════ */
.masthead {
  border-bottom: 1px solid var(--line-ink);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  background: var(--paper);
}
.masthead-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 20px;
}
.masthead-left,
.masthead-right { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.masthead a:hover { color: var(--ink); }
@media (max-width: 720px) {
  .masthead-right .m-hide { display: none; }
  .masthead-inner { font-size: 10px; }
}

.nav {
  position: sticky; top: 0; z-index: 90;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line-ink);
  background: rgba(245,241,234,0.92);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 24px;
}
.logo {
  font-family: var(--font-serif);
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1;
}
.logo sup {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--ink-muted);
  vertical-align: super;
  margin-left: 4px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--ink-medium);
  transition: color var(--t-fast) var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.nav-cta:hover { background: var(--ink); color: var(--paper); }

.burger {
  display: none;
  width: 28px; height: 22px;
  position: relative;
  z-index: 200;
}
.burger span {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-med) var(--ease), opacity var(--t-fast) var(--ease), top var(--t-med) var(--ease);
}
.burger span:nth-child(1) { top: 4px; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { top: calc(100% - 6px); }
.burger.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 50%; transform: translateY(-50%) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px var(--page-pad) 60px;
  transform: translateY(-100%);
  transition: transform var(--t-slow) var(--ease);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: var(--ink);
  padding: 10px 0;
  width: 100%;
  border-bottom: 1px solid var(--line-ink);
}
.mobile-menu .mobile-cta {
  margin-top: 36px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: none;
  padding: 0;
}
.mobile-menu .mobile-footer {
  position: absolute;
  bottom: 36px;
  left: var(--page-pad);
  right: var(--page-pad);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  display: flex;
  justify-content: space-between;
  border: none;
  font-family: var(--font-sans);
}

@media (max-width: 860px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: block; }
}

/* ══════ HERO DE PÁGINA INTERNA ══════ */
.page-hero {
  padding: clamp(60px, 9vw, 110px) 0 clamp(50px, 7vw, 80px);
  border-bottom: 1px solid var(--line-ink);
}
.page-hero .eyebrow { margin-bottom: 32px; }
.page-hero h1 {
  max-width: 18ch;
  margin-bottom: 28px;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.page-hero .lead {
  max-width: 60ch;
  margin-bottom: 40px;
}
.page-hero .ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════ SEÇÕES GENÉRICAS ══════ */
.section {
  padding: var(--section-pad) 0;
}
.section-alt {
  background: var(--paper-warm);
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }
.section-dark p { color: rgba(245,241,234,0.75); }
.section-dark .eyebrow { color: rgba(245,241,234,0.55); }
.section-dark .eyebrow::before { background: rgba(245,241,234,0.35); }
.section-dark em.hl { color: #C8A976; }

.section-head {
  max-width: var(--max-reading);
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 { margin-bottom: 24px; }
.section-head h2 em { font-style: italic; font-weight: 400; color: var(--accent); }

/* ══════ GRID 2-COL INFO ══════ */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.info-grid .info-body p + p { margin-top: 18px; }
.info-grid .info-body strong { color: var(--ink); font-weight: 500; }
.section-dark .info-grid .info-body strong { color: var(--paper); }
@media (max-width: 860px) {
  .info-grid { grid-template-columns: 1fr; }
}

/* ══════ DELIVERABLES / BULLETS ══════ */
.bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.bullets li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-ink);
  align-items: baseline;
}
.bullets li:last-child { border-bottom: none; padding-bottom: 0; }
.bullets .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--accent);
}
.bullets .txt strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  font-size: 16px;
  margin-bottom: 4px;
}
.bullets .txt span {
  font-size: 15px;
  color: var(--ink-medium);
  line-height: 1.6;
}
.section-dark .bullets li { border-bottom-color: rgba(245,241,234,0.12); }
.section-dark .bullets .num { color: #C8A976; }
.section-dark .bullets .txt strong { color: var(--paper); }
.section-dark .bullets .txt span { color: rgba(245,241,234,0.8); }

/* ══════ FIT GRID (PARA QUEM É / PRA QUEM NÃO É) ══════ */
.fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-ink);
  border-bottom: 1px solid var(--line-ink);
}
.fit-side {
  padding: clamp(32px, 4vw, 48px) clamp(24px, 3vw, 40px);
}
.fit-side + .fit-side { border-left: 1px solid var(--line-ink); }
.fit-side .fit-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}
.fit-side h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  margin-bottom: 20px;
}
.fit-side ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fit-side li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-medium);
  line-height: 1.55;
  align-items: baseline;
}
.fit-side li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
}
.fit-side.yes { background: var(--paper-warm); }
.fit-side.yes li::before { background: var(--accent); }
.fit-side.no { background: var(--paper); }
.fit-side.no li::before { background: transparent; border: 1px solid var(--ink-muted); }
.fit-side.no li { color: var(--ink-muted); }
@media (max-width: 720px) {
  .fit-grid { grid-template-columns: 1fr; }
  .fit-side + .fit-side { border-left: none; border-top: 1px solid var(--line-ink); }
}

/* ══════ CTA FINAL ══════ */
.cta-final {
  padding: var(--section-pad) 0;
  background: var(--paper-warm);
  text-align: center;
  border-top: 1px solid var(--line-ink);
}
.cta-final .eyebrow {
  margin-bottom: 32px;
  justify-content: center;
}
.cta-final .eyebrow::before { display: none; }
.cta-final h2 {
  max-width: 18ch;
  margin: 0 auto 28px;
  font-weight: 300;
}
.cta-final h2 em { font-style: italic; font-weight: 400; color: var(--accent); }
.cta-final p {
  max-width: 50ch;
  margin: 0 auto 40px;
  color: var(--ink-medium);
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.7;
}

/* ══════ FOOTER ══════ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 7vw, 80px) 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  margin-bottom: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(32px, 4vw, 48px);
  border-bottom: 1px solid rgba(245,241,234,0.15);
}
.footer-brand .logo {
  color: var(--paper);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 20px;
  display: inline-block;
}
.footer-brand .logo sup { color: rgba(245,241,234,0.5); }
.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245,241,234,0.7);
  max-width: 36ch;
  font-weight: 300;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
  font-weight: 500;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  font-size: 15px;
  color: rgba(245,241,234,0.85);
  font-weight: 300;
  transition: color var(--t-fast) var(--ease);
}
.footer-col a:hover { color: #C8A976; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.5);
}
.footer-bottom a:hover { color: var(--paper); }
@media (max-width: 860px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* ══════ INSTAGRAM FLOAT ══════ */
.ig-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 80;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast) var(--ease), background var(--t-fast) var(--ease);
  box-shadow: 0 8px 24px rgba(28,25,23,0.2);
}
.ig-float:hover { transform: scale(1.08); background: var(--accent); }
.ig-float svg { width: 22px; height: 22px; }

/* ══════ SCROLL REVEAL ══════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
