/* ESPAÇO MOVIMENTO — clean & compact · laranja + preto */

:root {
  --ink: #121110;
  --ink-2: #1e1b18;
  --paper: #FBF8F2;
  --paper-2: #F2EBDD;
  --line: rgba(18,17,16,.12);
  --orange: #FE5504;        /* laranja exato da logo */
  --orange-deep: #D8430A;
  --orange-soft: #FF8A4D;
  --muted: #6b635b;

  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --maxw: 1140px;
  --pad: clamp(18px, 4vw, 40px);
  --r: 14px;
  --ease: cubic-bezier(.2,.8,.2,1);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1,h2,h3,h4 { font-family: var(--f-display); font-weight: 500; line-height: 1.08; letter-spacing: -.015em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* tags PE/BA */
.tag {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; flex: 0 0 auto;
  border-radius: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  font-family: var(--f-body);
}
.tag-pe { background: var(--orange); color: #fff; }
.tag-ba { background: var(--ink); color: var(--orange-soft); }

/* eyebrow */
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange-deep);
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
}
.eyebrow::before { content:''; width: 26px; height: 2px; background: var(--orange); }
.eyebrow-light { color: var(--orange-soft); }
.eyebrow-light::before { background: var(--orange-soft); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 13px 24px; border-radius: 100px;
  font-weight: 600; font-size: 15px; white-space: nowrap;
  border: 1.5px solid transparent; transition: all .25s var(--ease);
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-deep); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(254,85,4,.3); }
.btn-ghost { color: var(--ink); padding-left: 4px; }
.btn-ghost:hover { color: var(--orange-deep); }
.btn-outline { border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }

/* section heads */
.section { padding: clamp(52px, 8vw, 88px) 0; }
.head { max-width: 640px; margin-bottom: 40px; }
.head-center { margin-inline: auto; text-align: center; }
.head-center .eyebrow { justify-content: center; }
.head h2 { font-size: clamp(28px, 4vw, 44px); }
.head-lead { color: var(--muted); margin-top: 14px; font-size: 16px; }
.section-dark .head-lead { color: rgba(251,248,242,.7); }

/* HEADER */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding: 14px 0;
  background: rgba(251,248,242,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent; transition: all .3s var(--ease);
}
.header.scrolled { padding: 9px 0; border-bottom-color: var(--line); }
.header-row { display: flex; align-items: center; gap: 24px; }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo-img { border-radius: 9px; width: 40px; height: 40px; object-fit: cover; }
.logo-name { font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: -.01em; }
.nav { display: flex; gap: 28px; margin-left: auto; }
.nav a { font-size: 15px; font-weight: 500; }
.nav a:hover { color: var(--orange-deep); }
.btn-head { margin-left: 4px; }
.menu-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; justify-content: center; align-items: center; }
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); transition: .2s var(--ease); }

/* HERO */
.hero { padding: 120px 0 56px; }
.hero-row { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; }
.hero-text h1 {
  font-size: clamp(42px, 6.5vw, 78px); font-weight: 500; margin-bottom: 20px;
}
.hero-text h1 .hl { color: var(--orange); font-style: italic; }
.hero-lead { color: var(--muted); font-size: 17px; max-width: 48ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 40px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4,auto); gap: 28px;
  list-style: none; padding-top: 26px; border-top: 1px solid var(--line);
}
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--f-display); font-size: 34px; font-weight: 500; line-height: 1; }
.hero-stats span { font-size: 13px; color: var(--muted); margin-top: 6px; }

.hero-brand {
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  padding: 36px; border-radius: var(--r); background: var(--ink);
}
.hero-logo { width: 168px; height: 168px; border-radius: 24px; object-fit: cover; }
.hero-brand-tag { font-family: var(--f-display); font-style: italic; font-size: 18px; color: var(--orange-soft); }

/* MODALIDADES (dark) */
.section-dark { background: var(--ink); color: var(--paper); }
.section-dark .head h2 { color: var(--paper); }
.mod-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mod-col-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.mod-col-head h3 { font-size: 24px; color: var(--paper); }
.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; }
.chip {
  font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: 100px;
  background: rgba(251,248,242,.07); border: 1px solid rgba(251,248,242,.14);
  color: rgba(251,248,242,.92);
}
.chip-on { background: var(--orange); border-color: var(--orange); color: #fff; font-weight: 600; }
.mod-note { margin-top: 26px; font-family: var(--f-display); font-style: italic; font-size: 14px; color: rgba(251,248,242,.55); }

/* PLANOS */
.plan-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.plan-unit-head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.plan-unit-head h3 { font-size: 24px; }
.plan-card {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 18px 20px; margin-bottom: 12px;
  transition: all .25s var(--ease);
}
.plan-card:hover { border-color: rgba(254,85,4,.4); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(18,17,16,.07); }
.plan-highlight { border-color: var(--orange); border-width: 2px; }
.plan-promo { background: var(--ink); border-color: var(--ink); }
.plan-promo h4, .plan-promo .plan-price { color: var(--paper); }
.plan-promo .plan-price span { color: var(--orange-soft); }
.plan-promo .plan-desc { color: rgba(251,248,242,.72); }
.plan-flag {
  position: absolute; top: -10px; left: 18px;
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  background: var(--orange); color: #fff; padding: 3px 10px; border-radius: 100px;
  font-family: var(--f-body);
}
.plan-flag-promo { background: var(--orange-soft); color: var(--ink); }
.plan-card h4 { font-size: 19px; margin-bottom: 6px; }
.plan-price { font-family: var(--f-display); font-size: 26px; font-weight: 500; line-height: 1.1; color: var(--ink); }
.plan-price span { font-family: var(--f-body); font-size: 13px; font-weight: 500; color: var(--muted); }
.plan-desc { font-size: 13.5px; color: var(--muted); margin-top: 6px; line-height: 1.5; }
.plan-foot { font-size: 13px; color: var(--muted); margin-top: 14px; line-height: 1.6; }
.plan-foot strong { color: var(--ink); }
.plan-eval {
  margin-top: 28px; text-align: center; font-size: 15px; color: var(--muted);
  padding: 16px; background: var(--paper-2); border-radius: var(--r);
}
.plan-eval strong { color: var(--ink); }

/* UNIDADES */
.section-soft { background: var(--paper-2); }
.unit-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.unit {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px; transition: all .25s var(--ease);
}
.unit:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(18,17,16,.1); border-color: rgba(254,85,4,.3); }
.unit-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.unit-top h3 { font-size: 30px; }
.unit-sub { font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--muted); }
.unit-info { margin-bottom: 22px; }
.unit-info > div { display: grid; grid-template-columns: 96px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px dotted var(--line); font-size: 14px; }
.unit-info > div:last-child { border-bottom: 0; }
.unit-info dt { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange-deep); padding-top: 2px; }
.unit-info dd { line-height: 1.5; }
.unit-info a { border-bottom: 1px solid var(--orange); padding-bottom: 1px; }
.unit-info a:hover { color: var(--orange-deep); }
.unit-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* FOOTER */
.footer { background: var(--ink); color: var(--paper); padding: 48px 0 24px; }
.footer-row { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(251,248,242,.12); }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand .logo-img { border-radius: 10px; }
.footer-name { font-family: var(--f-display); font-size: 19px; font-weight: 600; }
.footer-tag { font-size: 13px; color: rgba(251,248,242,.6); margin-top: 2px; }
.footer-units { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-units h4 { font-family: var(--f-body); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange-soft); margin-bottom: 10px; }
.footer-units p { font-size: 14px; color: rgba(251,248,242,.7); margin-bottom: 6px; }
.footer-units a:hover { color: var(--orange-soft); }
.footer-bottom { display: flex; justify-content: space-between; gap: 12px; margin-top: 24px; font-size: 12px; color: rgba(251,248,242,.5); }

/* WHATSAPP FLOAT */
.wa { position: fixed; bottom: 22px; right: 22px; z-index: 90; }
.wa-btn {
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 26px rgba(37,211,102,.4);
  transition: transform .25s var(--ease);
}
.wa-btn:hover { transform: scale(1.07); }
.wa-btn svg { width: 27px; height: 27px; }
.wa-menu {
  position: absolute; bottom: 70px; right: 0; min-width: 260px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 14px; box-shadow: 0 20px 50px rgba(18,17,16,.2);
  opacity: 0; transform: translateY(8px) scale(.96); pointer-events: none;
  transform-origin: bottom right; transition: all .25s var(--ease);
}
.wa.open .wa-menu { opacity: 1; transform: none; pointer-events: auto; }
.wa-title { font-family: var(--f-display); font-style: italic; font-size: 14px; color: var(--muted); margin-bottom: 10px; padding: 0 6px; }
.wa-opt { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: 10px; transition: background .2s var(--ease); }
.wa-opt:hover { background: rgba(254,85,4,.08); }
.wa-opt-text { display: flex; flex-direction: column; line-height: 1.3; }
.wa-opt-text strong { font-size: 15px; }
.wa-opt-text em { font-size: 12px; font-style: normal; color: var(--muted); }

/* reveal */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 860px) {
  .hero-row { grid-template-columns: 1fr; gap: 36px; }
  .hero-brand { order: -1; padding: 28px; }
  .hero-logo { width: 120px; height: 120px; }
  .mod-cols, .plan-cols, .unit-cols { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav, .btn-head { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: flex; position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--paper); padding: 16px var(--pad); border-top: 1px solid var(--line); margin: 0;
  }
  .nav.open a { font-family: var(--f-display); font-size: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .footer-row { flex-direction: column; gap: 28px; }
  .footer-units { gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .unit-info > div { grid-template-columns: 1fr; gap: 3px; }
  .unit-info dt { padding-top: 0; }
  .wa-menu { min-width: calc(100vw - 44px); }
}

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