:root {
  --gold: #c8962a;
  --gold-light: #e0b34e;
  --gold-dark: #a87a1c;
  --gold-soft: #f5e9cf;
  --ink: #1c1b18;
  --ink-soft: #4a473f;
  --muted: #7c786e;
  --bg: #ffffff;
  --bg-alt: #faf6ee;
  --line: #e9e3d6;
  --radius: 18px;
  --shadow: 0 18px 50px -24px rgba(40, 33, 12, 0.35);
  --shadow-sm: 0 8px 24px -16px rgba(40, 33, 12, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(1140px, 92vw); margin-inline: auto; }

.grad-text {
  background: linear-gradient(120deg, var(--gold-dark), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--d, 0ms);
  will-change: opacity, transform;
}
.reveal-left { transform: translateX(-34px); }
.reveal-right { transform: translateX(34px); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===== Scroll progress ===== */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 100;
  transition: width 0.1s linear;
}

/* ===== Buttons ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s var(--ease), box-shadow 0.25s ease;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.45), transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.7s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(168, 122, 28, 0.65); }
.btn-primary:hover::after { transform: translateX(130%); }
.btn-arrow { transition: transform 0.25s var(--ease); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
.btn-ghost { background: rgba(255, 255, 255, 0.6); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.7; cursor: progress; transform: none; }

/* Spinner do submit */
.btn-spinner {
  position: absolute;
  width: 20px; height: 20px;
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  opacity: 0;
  animation: spin 0.7s linear infinite;
}
.btn-submit.loading .btn-label { opacity: 0; }
.btn-submit.loading .btn-spinner { opacity: 1; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(40, 33, 12, 0.5);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 42px; height: 42px; border-radius: 10px; object-fit: cover; box-shadow: var(--shadow-sm); transition: transform 0.3s var(--ease); }
.brand:hover .brand-logo { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.15rem; letter-spacing: -0.01em; }
.brand-text small { color: var(--muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.14em; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { position: relative; font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; }
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.28s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--gold-dark); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--ink); color: #fff !important; padding: 10px 20px; border-radius: 999px; transition: background 0.25s ease, transform 0.2s var(--ease); }
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  background: linear-gradient(180deg, #fffdf8, var(--bg-alt));
  padding: 90px 0 0;
  overflow: hidden;
}
.aurora { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.55; }
.orb-1 { width: 420px; height: 420px; background: radial-gradient(circle, rgba(224, 179, 78, 0.55), transparent 70%); top: -120px; right: -60px; animation: float1 14s ease-in-out infinite; }
.orb-2 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(200, 150, 42, 0.4), transparent 70%); bottom: -120px; left: -80px; animation: float2 18s ease-in-out infinite; }
.orb-3 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(245, 233, 207, 0.7), transparent 70%); top: 40%; left: 45%; animation: float3 16s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-30px, 40px) scale(1.1); } }
@keyframes float2 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(40px, -30px) scale(1.08); } }
@keyframes float3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, -20px) scale(1.12); } }

.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; padding-bottom: 70px; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--gold-soft);
  color: var(--gold-dark);
  font-weight: 700; font-size: 0.82rem;
  padding: 7px 16px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(200, 150, 42, 0.6); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(200, 150, 42, 0.55); } 70% { box-shadow: 0 0 0 9px rgba(200, 150, 42, 0); } 100% { box-shadow: 0 0 0 0 rgba(200, 150, 42, 0); } }
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.07; letter-spacing: -0.025em; margin: 20px 0 18px; }
.lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 38ch; }
.hero-actions { display: flex; gap: 14px; margin: 30px 0 34px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 32px; list-style: none; border-top: 1px solid var(--line); padding-top: 22px; }
.hero-trust li { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.5rem; color: var(--gold-dark); font-variant-numeric: tabular-nums; }
.hero-trust span { font-size: 0.82rem; color: var(--muted); }

.hero-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); padding: 8px; }
.hero-card-inner { position: relative; background: linear-gradient(180deg, #fffdf7, #fbf4e6); border-radius: 18px; padding: 34px 28px 24px; text-align: center; overflow: hidden; }
.hero-card-glow { position: absolute; top: -60px; left: 50%; width: 220px; height: 220px; transform: translateX(-50%); background: radial-gradient(circle, rgba(224, 179, 78, 0.45), transparent 70%); pointer-events: none; }
.hero-seal { position: relative; width: 120px; margin: 0 auto 14px; animation: floatSeal 6s ease-in-out infinite; }
@keyframes floatSeal { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-8px) rotate(2deg); } }
.hero-card-title { position: relative; font-size: 1.3rem; font-weight: 800; letter-spacing: -0.01em; }
.hero-card-sub { position: relative; color: var(--ink-soft); margin: 8px 0 22px; font-size: 0.98rem; }
.hero-card-foot { position: relative; margin-top: 16px; font-size: 0.85rem; color: var(--ink-soft); display: flex; align-items: center; justify-content: center; gap: 8px; }
.dot-live { width: 9px; height: 9px; border-radius: 50%; background: #36b35a; box-shadow: 0 0 0 0 rgba(54, 179, 90, 0.6); animation: pulse-green 2s infinite; }
@keyframes pulse-green { 0% { box-shadow: 0 0 0 0 rgba(54, 179, 90, 0.5); } 70% { box-shadow: 0 0 0 8px rgba(54, 179, 90, 0); } 100% { box-shadow: 0 0 0 0 rgba(54, 179, 90, 0); } }

/* Marquee */
.marquee { position: relative; z-index: 1; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255, 255, 255, 0.5); overflow: hidden; padding: 14px 0; }
.marquee-track { display: inline-flex; gap: 26px; white-space: nowrap; animation: marquee 26s linear infinite; }
.marquee-track span { font-weight: 600; color: var(--ink-soft); font-size: 0.95rem; }
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ===== Sections ===== */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { text-align: center; max-width: 660px; margin: 0 auto 52px; }
.eyebrow { display: inline-block; text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.78rem; font-weight: 700; color: var(--gold-dark); }
.eyebrow.light { color: var(--gold-light); }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -0.02em; margin: 12px 0 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.grid { display: grid; gap: 24px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card-service { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s ease, border-color 0.25s ease; }
.card-service::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(245, 233, 207, 0.5), transparent 60%); opacity: 0; transition: opacity 0.3s ease; }
.card-service:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold-soft); }
.card-service:hover::before { opacity: 1; }
.card-service > * { position: relative; }
.card-service .ico { width: 54px; height: 54px; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-soft), #fff); border: 1px solid var(--gold-soft); border-radius: 14px; font-size: 1.55rem; margin-bottom: 18px; transition: transform 0.3s var(--ease); }
.card-service:hover .ico { transform: scale(1.1) rotate(-6deg); }
.card-service h3 { font-size: 1.18rem; margin-bottom: 8px; }
.card-service p { color: var(--ink-soft); font-size: 0.96rem; }
.card-link { display: inline-block; margin-top: 14px; font-weight: 700; font-size: 0.9rem; color: var(--gold-dark); opacity: 0; transform: translateY(6px); transition: opacity 0.25s ease, transform 0.25s var(--ease); }
.card-service:hover .card-link { opacity: 1; transform: none; }

/* ===== Steps ===== */
.steps { position: relative; }
.step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 28px; transition: transform 0.25s var(--ease), box-shadow 0.25s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: #fff; font-weight: 800; font-size: 1.2rem; margin-bottom: 18px; box-shadow: 0 8px 18px -8px rgba(168, 122, 28, 0.6); }
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step p { color: var(--ink-soft); }

/* ===== About ===== */
.about { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.about-media { position: relative; background: linear-gradient(160deg, #fffdf7, #f3e6c9); border: 1px solid var(--line); border-radius: 24px; padding: 48px; display: grid; place-items: center; box-shadow: var(--shadow); overflow: hidden; }
.about-media-glow { position: absolute; width: 260px; height: 260px; background: radial-gradient(circle, rgba(224, 179, 78, 0.4), transparent 70%); animation: float3 12s ease-in-out infinite; }
.about-media img { position: relative; width: 180px; border-radius: 16px; }
.about-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); letter-spacing: -0.02em; margin: 12px 0 16px; }
.about-copy p { color: var(--ink-soft); font-size: 1.05rem; }
.about-list { list-style: none; margin: 22px 0; display: grid; gap: 12px; }
.about-list li { position: relative; padding-left: 30px; color: var(--ink-soft); }
.about-list li::before { content: "✓"; position: absolute; left: 0; top: 4px; width: 20px; height: 20px; display: grid; place-items: center; background: var(--gold-soft); color: var(--gold-dark); border-radius: 50%; font-size: 0.75rem; font-weight: 800; }
.about-contact { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 10px; }
.about-chip { background: #fff; border: 1px solid var(--line); padding: 10px 16px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; transition: transform 0.2s var(--ease), border-color 0.2s ease; }
.about-chip:hover { transform: translateY(-2px); border-color: var(--gold); }

/* ===== Depoimentos ===== */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 26px; transition: transform 0.25s var(--ease), box-shadow 0.25s ease; }
.quote:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }
.quote blockquote { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.7; }
.quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-weight: 600; font-size: 0.92rem; }
.avatar { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: #fff; font-weight: 800; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 820px; }
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.faq-item[open] { border-color: var(--gold-soft); box-shadow: var(--shadow-sm); }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-weight: 700; font-size: 1.05rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.5rem; font-weight: 400; color: var(--gold-dark); transition: transform 0.3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body { padding: 0 24px 20px; }
.faq-body p { color: var(--ink-soft); }

/* ===== Contact ===== */
.section-contact { position: relative; background: radial-gradient(700px 400px at 12% 0%, rgba(200, 150, 42, 0.22), transparent 60%), linear-gradient(160deg, #211d14, #2e2718); color: #fff; overflow: hidden; }
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.contact-copy h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); letter-spacing: -0.02em; margin: 12px 0 14px; }
.contact-copy p { color: #e7ddc6; font-size: 1.08rem; }
.contact-points { list-style: none; margin-top: 24px; display: grid; gap: 12px; }
.contact-points li { color: #f0e8d4; font-weight: 500; }

.contact-form { background: #fff; color: var(--ink); border-radius: 22px; padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.92rem; margin-bottom: 8px; }
.field input, .field textarea { width: 100%; font-family: inherit; font-size: 1rem; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fcfaf5; color: var(--ink); transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200, 150, 42, 0.18); background: #fff; }
.form-status { margin-top: 14px; font-weight: 600; font-size: 0.95rem; min-height: 1.2em; }
.form-status.ok { color: #2f8f4e; }
.form-status.err { color: #c0392b; }
.form-note { margin-top: 12px; font-size: 0.8rem; color: var(--muted); }

/* ===== Footer ===== */
.site-footer { background: #1a1813; color: #cfc8b8; padding: 56px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { width: 56px; border-radius: 12px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer-col strong { display: block; color: #fff; margin-bottom: 14px; font-size: 0.95rem; }
.footer-col p { font-size: 0.9rem; line-height: 1.8; }
.footer-fiscal { margin-top: 14px; font-size: 0.78rem; line-height: 1.7; color: #8a8474; }
.footer-col a { display: block; margin-bottom: 8px; font-size: 0.9rem; color: #cfc8b8; transition: color 0.2s ease, transform 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold-light); transform: translateX(3px); }
.footer-bottom { padding-top: 22px; font-size: 0.82rem; color: #8a8474; }

/* ===== FAB ===== */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 70; display: inline-flex; align-items: center; gap: 10px; background: linear-gradient(135deg, var(--gold-light), var(--gold-dark)); color: #fff; font-weight: 700; padding: 14px 20px; border-radius: 999px; box-shadow: 0 14px 30px -10px rgba(168, 122, 28, 0.7); transform: translateY(120px); opacity: 0; transition: transform 0.4s var(--ease), opacity 0.4s ease, box-shadow 0.25s ease; }
.fab.show { transform: none; opacity: 1; }
.fab:hover { box-shadow: 0 18px 38px -10px rgba(168, 122, 28, 0.85); transform: translateY(-3px); }
.fab-icon { font-size: 1.2rem; }

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 36px; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  .nav { position: fixed; inset: 72px 0 auto 0; flex-direction: column; gap: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); padding: 8px 0 16px; transform: translateY(-130%); transition: transform 0.35s var(--ease); box-shadow: var(--shadow); }
  .nav.open { transform: none; }
  .nav a { width: 92%; margin-inline: auto; padding: 14px 8px; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 8px; border-bottom: 0 !important; }
  .nav-toggle { display: flex; }
}
@media (max-width: 620px) {
  .grid-4, .grid-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 0; }
  .section { padding: 62px 0; }
  .hero-trust { gap: 20px; flex-wrap: wrap; }
  .fab-text { display: none; }
  .fab { padding: 16px; }
}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
