/* ════════════════════════════════════════════
   DESPACHANTE FABIANO MARCELINO
   Design: Premium Dark + Gold Editorial
   ════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dim:    rgba(201,168,76,0.12);
  --gold-line:   rgba(201,168,76,0.3);
  --ink:         #080B11;
  --ink-2:       #0F1420;
  --ink-3:       #161D2E;
  --ink-4:       #1E2740;
  --white:       #FFFFFF;
  --text:        #D8D4CC;
  --muted:       rgba(216,212,204,0.45);
  --border:      rgba(255,255,255,0.06);
  --radius:      0px;
  --transition:  0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--ink);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  height: 72px;
  padding: 0 3rem;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(8,11,17,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.navbar.scrolled { background: rgba(8,11,17,0.98); }

.nb-brand { display: flex; align-items: center; gap: 16px; }

.nb-monogram {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
}
.nb-monogram::before {
  content: ''; position: absolute; inset: 4px;
  background: var(--gold-dim);
}
.nb-monogram span { position: relative; z-index: 1; }

.nb-name {
  font-size: 14px; font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.2px;
}
.nb-sub { font-size: 11px; font-weight: 300; color: var(--muted); }

.nb-actions { display: flex; align-items: center; gap: 16px; }
.nb-phone {
  font-size: 13px; font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--transition);
}
.nb-phone:hover { color: var(--gold); }

.nb-cta {
  background: var(--gold);
  color: var(--ink);
  font-size: 13px; font-weight: 700;
  padding: 10px 24px;
  text-decoration: none;
  letter-spacing: 0.3px;
  position: relative; overflow: hidden;
  transition: transform var(--transition);
}
.nb-cta:hover { transform: translateY(-1px); }
.nb-cta::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0.12);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.nb-cta:hover::after { transform: translateX(0); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--ink);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: 120px 3rem 80px;
}

.hero-glow-a {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 65%);
  top: -200px; right: -150px;
  filter: blur(40px);
}
.hero-glow-b {
  position: absolute; border-radius: 50%; pointer-events: none;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,60,160,0.09) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  filter: blur(40px);
}
.hero-grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 380px; gap: 80px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards;
}
.eyebrow-line { width: 36px; height: 1px; background: var(--gold); }
.eyebrow-text {
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero h1 .accent { color: var(--gold); font-style: italic; }

.hero-desc {
  font-size: 16px; font-weight: 300; color: var(--muted);
  line-height: 1.85; max-width: 500px; margin-bottom: 40px;
  opacity: 0; animation: fadeUp 0.7s 0.35s ease forwards;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 56px;
  opacity: 0; animation: fadeUp 0.7s 0.45s ease forwards;
}

.btn-gold {
  background: var(--gold); color: var(--ink);
  font-size: 14px; font-weight: 700;
  padding: 16px 36px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  letter-spacing: 0.3px; position: relative; overflow: hidden;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(201,168,76,0.22);
}

.btn-ghost {
  border: 1px solid var(--gold-line); color: var(--gold);
  font-size: 14px; font-weight: 500;
  padding: 16px 30px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition), color var(--transition);
}
.btn-ghost:hover { background: var(--gold-dim); color: var(--gold-light); }

.hero-metrics {
  display: flex; gap: 48px;
  padding-top: 40px; border-top: 1px solid var(--border);
  opacity: 0; animation: fadeUp 0.7s 0.55s ease forwards;
}
.metric-val {
  font-family: 'Playfair Display', serif;
  font-size: 34px; font-weight: 900; color: var(--gold); line-height: 1;
}
.metric-label { font-size: 12px; font-weight: 300; color: var(--muted); margin-top: 5px; }

/* hero sidebar card */
.hero-card {
  background: var(--ink-2);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  opacity: 0; animation: fadeUp 0.7s 0.5s ease forwards;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hc-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.hc-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.hc-row:last-child { border-bottom: none; padding-bottom: 0; }
.hc-ico {
  width: 36px; height: 36px;
  background: var(--gold-dim); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.hc-lbl { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.hc-val { font-size: 13px; font-weight: 400; color: var(--text); line-height: 1.55; }

/* ── TICKER ── */
.ticker { background: var(--gold); padding: 14px 0; overflow: hidden; }
.ticker-wrap { display: flex; animation: tickerMove 28s linear infinite; white-space: nowrap; }
.ticker-item {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink); padding: 0 44px;
  display: inline-flex; align-items: center; gap: 18px; flex-shrink: 0;
}
.ticker-item::after { content: '◆'; font-size: 7px; }
@keyframes tickerMove {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
.services { background: var(--ink-2); padding: 100px 3rem; }
.sec-header { margin-bottom: 56px; max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 56px; }
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.sec-eyebrow-line { width: 24px; height: 1px; background: var(--gold); }
.sec-eyebrow span { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); }
.sec-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 900;
  color: var(--white); line-height: 1.15; margin-bottom: 12px;
}
.sec-sub { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.75; max-width: 480px; }

.svc-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.svc-card {
  background: var(--ink-2); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: background var(--transition);
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.svc-card:hover { background: var(--ink-3); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-n {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 900;
  color: rgba(201,168,76,0.07); line-height: 1; margin-bottom: 20px;
  transition: color var(--transition);
}
.svc-card:hover .svc-n { color: rgba(201,168,76,0.14); }
.svc-ico { font-size: 26px; margin-bottom: 16px; display: block; }
.svc-name {
  font-size: 15px; font-weight: 600; color: var(--white);
  margin-bottom: 8px; line-height: 1.3;
}
.svc-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ── WHY ── */
.why { background: var(--ink); padding: 100px 3rem; position: relative; overflow: hidden; }
.why-glow {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  right: -200px; top: -100px; filter: blur(60px); pointer-events: none;
}
.why-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.why-list { margin-top: 40px; }
.why-row {
  display: flex; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border);
}
.why-row:first-child { border-top: 1px solid var(--border); }
.why-num {
  font-family: 'Playfair Display', serif;
  font-size: 12px; font-weight: 700; color: var(--gold); opacity: 0.55;
  width: 24px; flex-shrink: 0; margin-top: 3px;
}
.why-body h3 { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 6px; }
.why-body p { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.75; }

.why-right { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.testimonial {
  background: var(--ink-2); border: 1px solid var(--border);
  padding: 36px; position: relative;
}
.testimonial::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 36px; height: 36px;
  border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold);
}
.testimonial::after {
  content: ''; position: absolute; bottom: 0; right: 0;
  width: 36px; height: 36px;
  border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold);
}
.test-stars { color: var(--gold); font-size: 16px; letter-spacing: 3px; margin-bottom: 14px; }
.test-quote {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-style: italic; color: var(--white); line-height: 1.6; margin-bottom: 14px;
}
.test-author { font-size: 12px; font-weight: 300; color: var(--muted); letter-spacing: 0.5px; }

.cert-badge {
  background: var(--gold-dim); border: 1px solid var(--gold-line);
  padding: 20px 24px; display: flex; align-items: center; gap: 16px;
}
.cert-ico { font-size: 22px; }
.cert-txt strong { display: block; font-size: 14px; font-weight: 600; color: var(--gold); margin-bottom: 2px; }
.cert-txt span { font-size: 12px; font-weight: 300; color: rgba(201,168,76,0.65); }

/* ── PROCESS ── */
.process { background: var(--ink-2); padding: 100px 3rem; }
.process-inner { max-width: 1200px; margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 60px; position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 27px; left: 12.5%; right: 12.5%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-line) 20%, var(--gold-line) 80%, transparent);
}
.step { padding: 0 16px; text-align: center; }
.step-dot {
  width: 54px; height: 54px;
  border: 1px solid var(--gold-line);
  background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 700; color: var(--gold);
  position: relative; z-index: 1;
  transition: background var(--transition), border-color var(--transition);
}
.step:hover .step-dot { background: var(--gold-dim); border-color: var(--gold); }
.step-title { font-size: 15px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
.step-desc { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }

/* ── CONTACT ── */
.contact { background: var(--ink); padding: 100px 3rem; }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.contact-map { aspect-ratio: 4/3; position: relative; border: 1px solid var(--border); overflow: hidden; }
.contact-map::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(201,168,76,0.15);
}
.contact-map iframe {
  width: 100%; height: 100%; border: none;
  filter: grayscale(90%) brightness(0.5) contrast(1.2) sepia(20%);
  transition: filter var(--transition);
}
.contact-map:hover iframe { filter: grayscale(60%) brightness(0.65) sepia(10%); }

.ci-block {
  display: flex; gap: 18px;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.ci-block:last-of-type { border-bottom: none; margin-bottom: 28px; }
.ci-ico {
  width: 44px; height: 44px;
  background: var(--gold-dim); border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-lbl { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-val { font-size: 14px; font-weight: 400; color: var(--text); line-height: 1.6; }
.ci-val a { color: var(--text); text-decoration: none; transition: color var(--transition); }
.ci-val a:hover { color: var(--gold); }

.ci-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ci-tag {
  font-size: 12px; font-weight: 500; color: var(--gold);
  border: 1px solid var(--gold-line); background: var(--gold-dim);
  padding: 6px 14px; letter-spacing: 0.3px;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--gold); padding: 80px 3rem;
  position: relative; overflow: hidden; text-align: center;
}
.cta-strip-bg {
  position: absolute; font-family: 'Playfair Display', serif;
  font-size: 180px; font-weight: 900; color: rgba(8,11,17,0.05);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; letter-spacing: 16px;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.5vw, 44px); font-weight: 900;
  color: var(--ink); margin-bottom: 12px; position: relative;
}
.cta-strip p { font-size: 16px; font-weight: 300; color: rgba(8,11,17,0.6); margin-bottom: 36px; position: relative; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; position: relative; }

.btn-dark {
  background: var(--ink); color: var(--gold);
  font-size: 14px; font-weight: 700;
  padding: 16px 36px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition), transform var(--transition);
}
.btn-dark:hover { background: var(--ink-2); transform: translateY(-2px); }

.btn-wpp {
  background: #25D366; color: #fff;
  font-size: 14px; font-weight: 700;
  padding: 16px 36px; text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--transition), transform var(--transition);
}
.btn-wpp:hover { background: #1ab355; transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--ink); border-top: 1px solid var(--border);
  padding: 36px 3rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 14px; font-weight: 700; color: var(--gold);
}
.footer-mid { font-size: 12px; font-weight: 300; color: var(--muted); text-align: center; line-height: 1.75; }
.footer-cnpj { font-size: 11px; color: rgba(255,255,255,0.18); letter-spacing: 0.3px; }

/* ── WPP FLOAT ── */
.wpp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 400;
  background: #25D366;
  width: 60px; height: 60px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: popIn 0.6s 1.5s cubic-bezier(0.34,1.56,0.64,1) backwards;
}
.wpp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 44px rgba(37,211,102,0.5);
}

/* ── KEYFRAMES ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.3); }
  to   { opacity: 1; transform: scale(1); }
}

.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-card  { display: none; }
  .svc-grid   { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .why-inner  { grid-template-columns: 1fr; gap: 48px; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 640px) {
  .navbar { padding: 0 1.25rem; }
  .nb-phone { display: none; }
  .hero, .services, .why, .process, .contact, .cta-strip { padding-left: 1.25rem; padding-right: 1.25rem; }
  footer { padding: 28px 1.25rem; flex-direction: column; text-align: center; }
  .svc-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-metrics { gap: 28px; flex-wrap: wrap; }
  .cta-strip { padding: 60px 1.25rem; }
}
