/* ═══════════════════════════════════════════════
   CREATEEVA · ESTILO COMPARTILHADO (paginas internas)
   Design "field notes": papel creme, serif display,
   cards sticker, acentos saturados.
   ═══════════════════════════════════════════════ */

:root {
  --paper:       #F2EDE4;
  --paper-2:     #E7DECB;
  --paper-card:  #F8F4EC;
  --ink:         #1A1714;
  --ink-soft:    #4A433C;
  --ink-mute:    #8A8174;
  --yellow:      #F5C842;
  --pink:        #EC4B8C;
  --blue:        #3B5BDB;
  --mint:        #5FD0B8;
  --accent:      #EC4B8C;
  --line:        #1A1714;
  --line-soft:   rgba(26,23,20,0.16);
  --shadow:      6px 6px 0 var(--ink);
  --shadow-sm:   4px 4px 0 var(--ink);
  --serif:  'Playfair Display', Georgia, serif;
  --mono:   'Space Mono', 'Courier New', monospace;
  --sans:   'Archivo', system-ui, sans-serif;
  --pad:     clamp(20px, 5vw, 64px);
  --sec-pad: clamp(64px, 9vw, 130px);
  --max:     1240px;
  --ease:    cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--ink); color: var(--yellow); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  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 { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }

h1, h2, h3 { font-family: var(--serif); font-weight: 800; line-height: 1.04; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.6rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; }
p  { color: var(--ink-soft); }

h1 em, h2 em, h3 em { font-style: italic; }
.hl { position: relative; font-style: italic; white-space: nowrap; }
.hl::after { content:''; position:absolute; left:-2px; right:-2px; bottom:0.07em; height:0.3em; background: var(--yellow); z-index:-1; transform: skewX(-4deg); }
.hl-pink::after { background: var(--pink); }
.hl-mint::after { background: var(--mint); }

/* eyebrow / label */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content:''; width: 22px; height: 2px; background: var(--pink); flex-shrink: 0; }

/* pill */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 16px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--paper-card); box-shadow: var(--shadow-sm); line-height: 1;
}
.pill-yellow { background: var(--yellow); }
.pill-pink   { background: var(--pink); color:#fff; }
.pill-blue   { background: var(--blue); color:#fff; }
.pill-mint   { background: var(--mint); }
.pill-ink    { background: var(--ink); color: var(--paper); }

/* botoes */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 26px; border: 2px solid var(--ink); border-radius: 999px;
  line-height: 1; white-space: nowrap;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease);
}
.btn svg, .btn .arrow { width: 14px; height: 14px; transition: transform 0.25s var(--ease); }
.btn-primary, .btn-ink { background: var(--ink); color: var(--paper); box-shadow: var(--shadow-sm); }
.btn-primary:hover, .btn-ink:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); background:#000; }
.btn-primary:hover svg, .btn-ink:hover svg { transform: translate(3px,-3px); }
.btn-yellow { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-sm); }
.btn-yellow:hover { transform: translate(-2px,-2px); box-shadow: 7px 7px 0 var(--ink); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* ── NAV ── */
.nav { position: sticky; top: 0; z-index: 90; background: var(--paper); border-bottom: 1px solid transparent; transition: border-color 0.25s var(--ease), background 0.25s var(--ease); }
.nav.scrolled { border-bottom-color: var(--ink); background: rgba(242,237,228,0.94); backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 0; }
.logo { display: flex; align-items: center; gap: 12px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 42px; height: 42px; background: var(--ink); color: var(--yellow); border-radius: 9px; display: grid; place-items: center; font-family: var(--serif); font-weight: 900; font-size: 22px; flex-shrink: 0; }
.brand-text { line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 800; font-size: 20px; letter-spacing: -0.01em; }
.brand-sub { font-family: var(--mono); font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); }
.nav-links { display: flex; gap: 30px; align-items: center; list-style: none; }
.nav-links a { font-family: var(--mono); font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.2s var(--ease); }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 12px 20px; border: 2px solid var(--ink); border-radius: 999px;
  background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-sm);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.nav-cta:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 var(--ink); }

.burger { display: none; width: 30px; height: 22px; position: relative; z-index: 200; }
.burger span { position: absolute; left: 0; right: 0; height: 2px; background: var(--ink); transition: 0.3s var(--ease); }
.burger span:nth-child(1) { top: 2px; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 2px; }
.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) { bottom: auto; 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; padding: 80px var(--pad) 60px; transform: translateY(-100%); transition: transform 0.55s var(--ease); visibility: hidden; }
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu a { font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.2rem); font-weight: 800; padding: 12px 0; border-bottom: 2px solid var(--line-soft); }
.mobile-menu .mobile-cta { color: var(--pink); }
.mobile-menu .mobile-footer { margin-top: 30px; display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-mute); border: none; }

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

/* ── PAGE HERO ── */
.page-hero { padding: clamp(48px,7vw,96px) 0 clamp(40px,6vw,72px); }
.page-hero .eyebrow { margin-bottom: 26px; }
.page-hero h1 { max-width: 16ch; margin-bottom: 28px; }
.page-hero .lead { font-size: clamp(1.1rem,1.6vw,1.35rem); color: var(--ink-soft); max-width: 56ch; font-weight: 400; margin-bottom: 38px; }
.page-hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SECTION ── */
.section { padding: var(--sec-pad) 0; }
.section-alt { background: var(--paper-2); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.section-head { max-width: 760px; margin-bottom: clamp(40px,6vw,64px); }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head h2 em { color: var(--pink); }

.info-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,5vw,72px); align-items: start; }
.info-grid .eyebrow { margin-bottom: 0; }
.info-body .lead { font-size: clamp(1.1rem,1.5vw,1.3rem); color: var(--ink); font-weight: 500; }
.info-body p { font-size: 16px; margin-bottom: 16px; }
.info-body p:last-child { margin-bottom: 0; }
.info-body strong { color: var(--ink); font-weight: 700; }
@media (max-width: 820px) { .info-grid { grid-template-columns: 1fr; } }

/* ── BULLETS (entregaveis) ── */
.bullets { list-style: none; border-top: 2px solid var(--ink); }
.bullets li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; align-items: start; padding: 26px 0; border-bottom: 2px dashed var(--line-soft); }
.bullets .num { font-family: var(--serif); font-style: italic; font-weight: 800; font-size: 1.6rem; line-height: 1; color: var(--pink); }
.bullets li:nth-child(3n+2) .num { color: var(--blue); }
.bullets li:nth-child(3n) .num { color: var(--mint); }
.bullets .txt strong { display: block; font-family: var(--serif); font-weight: 700; font-size: 1.25rem; margin-bottom: 6px; color: var(--ink); }
.bullets .txt span { color: var(--ink-soft); font-size: 15.5px; }

/* ── FIT GRID (para quem e / nao e) ── */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px,2.5vw,26px); }
.fit-side { border: 2px solid var(--ink); padding: clamp(26px,3vw,40px); box-shadow: var(--shadow); }
.fit-side.yes { background: var(--paper-card); }
.fit-side.no  { background: var(--ink); color: var(--paper); }
.fit-label { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); display: block; margin-bottom: 16px; }
.fit-side.no .fit-label { color: var(--mint); }
.fit-side h3 { font-size: clamp(1.3rem,2vw,1.6rem); margin-bottom: 20px; }
.fit-side.no h3 { color: var(--paper); }
.fit-side ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.fit-side li { font-size: 15px; line-height: 1.55; padding-left: 24px; position: relative; color: var(--ink-soft); }
.fit-side.no li { color: rgba(242,237,228,0.82); }
.fit-side.yes li::before { content:'+'; position: absolute; left: 0; top: -1px; font-family: var(--mono); font-weight: 700; color: var(--mint); }
.fit-side.no li::before { content:'\2014'; position: absolute; left: 0; top: 0; font-family: var(--mono); font-weight: 700; color: var(--ink-mute); }
@media (max-width: 720px) { .fit-grid { grid-template-columns: 1fr; } }

/* ── CTA FINAL (amarelo) ── */
.cta-final { background: var(--yellow); padding: var(--sec-pad) 0; border-top: 2px solid var(--ink); }
.cta-final .eyebrow { margin-bottom: 26px; }
.cta-final .eyebrow::before { background: var(--ink); }
.cta-final h2 { max-width: 18ch; margin-bottom: 24px; }
.cta-final p { font-size: clamp(1.05rem,1.5vw,1.25rem); color: var(--ink); max-width: 52ch; margin-bottom: 38px; }

/* ── FOOTER ── */
footer { background: var(--ink); color: var(--paper); padding: clamp(56px,7vw,88px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-bottom: clamp(36px,5vw,52px); border-bottom: 1px solid rgba(242,237,228,0.18); margin-bottom: 30px; }
.footer-brand .logo { font-family: var(--serif); font-weight: 800; font-size: clamp(1.8rem,3vw,2.4rem); color: var(--paper); margin-bottom: 18px; display: inline-block; }
.footer-brand .logo sup { font-family: var(--mono); font-size: 10px; color: rgba(242,237,228,0.5); letter-spacing: 0.14em; }
.footer-brand p { font-size: 14.5px; color: rgba(242,237,228,0.72); max-width: 34ch; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: 14.5px; color: rgba(242,237,228,0.82); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.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: 480px) { .footer-top { grid-template-columns: 1fr; } }

/* ── FLOATS (WhatsApp + Instagram) ── */
.wa-float { position: fixed; bottom: 22px; right: 22px; z-index: 81; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; border: 2px solid var(--ink); box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease); }
.wa-float:hover { transform: translate(-2px,-2px) scale(1.05); }
.wa-float svg { width: 32px; height: 32px; }
.ig-float { position: fixed; bottom: 88px; right: 22px; z-index: 80; width: 54px; height: 54px; border-radius: 50%; background: var(--ink); color: var(--paper); display: grid; place-items: center; border: 2px solid var(--ink); box-shadow: var(--shadow-sm); transition: transform 0.2s var(--ease), background 0.2s var(--ease); }
.ig-float:hover { transform: translate(-2px,-2px) scale(1.05); background: var(--pink); }
.ig-float svg { width: 24px; height: 24px; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── POLICY ── */
.policy-wrap { padding: clamp(44px,6vw,88px) 0 clamp(56px,8vw,110px); }
.policy-grid { display: grid; grid-template-columns: 290px 1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.policy-side { position: sticky; top: 96px; }
.policy-side .pill { margin-bottom: 22px; }
.policy-side h1 { font-size: clamp(2rem,4vw,2.8rem); margin-bottom: 16px; }
.policy-side .meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); }
.policy-body { max-width: 720px; font-size: 16px; line-height: 1.75; color: var(--ink-soft); }
.policy-body h2 { font-size: clamp(1.3rem,2vw,1.65rem); font-weight: 700; color: var(--ink); margin-top: 44px; margin-bottom: 14px; }
.policy-body h2:first-child { margin-top: 0; }
.policy-body h2::before { content: attr(data-num); font-family: var(--mono); font-size: 0.7em; font-weight: 700; color: var(--pink); margin-right: 12px; letter-spacing: 0.05em; }
.policy-body p { margin-bottom: 16px; }
.policy-body ul { padding-left: 20px; margin-bottom: 16px; }
.policy-body li { margin-bottom: 8px; }
.policy-body strong { color: var(--ink); font-weight: 700; }
.policy-body a { color: var(--ink); border-bottom: 2px solid var(--pink); padding-bottom: 1px; }
.policy-body a:hover { color: var(--pink); }
.contact-box { background: var(--paper-card); border: 2px solid var(--ink); box-shadow: var(--shadow-sm); padding: 22px 24px; margin: 24px 0; }
.contact-box strong { display: block; margin-bottom: 8px; color: var(--ink); }
@media (max-width: 860px) { .policy-grid { grid-template-columns: 1fr; } .policy-side { position: static; margin-bottom: 24px; } }

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