:root {
  --gold-1: #d9b372;
  --gold-2: #b8903f;
  --gold-3: #8b6a2a;
  --ink-1: #1c1c1c;
  --ink-2: #2f2f2f;
  --ink-3: #4a4a4a;
  --cream-1: #f7f1e6;
  --cream-2: #efe6d4;
  --paper: #fbf8f2;
  --line: rgba(28, 28, 28, 0.08);
  --line-on-dark: rgba(217, 179, 114, 0.22);
  --shadow-lg: 0 40px 80px -40px rgba(28, 28, 28, 0.45);
  --shadow-md: 0 20px 40px -28px rgba(28, 28, 28, 0.35);
  --radius: 14px;
  --radius-lg: 22px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink-2);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92%); margin: 0 auto; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(251, 248, 242, 0.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease, background .3s ease;
}
.nav.is-scrolled { box-shadow: 0 8px 30px -24px rgba(28,28,28,.35); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 14px 0;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo {
  height: 60px; width: auto; max-width: 170px;
  object-fit: contain; object-position: left center;
  background: transparent;
  transition: transform .25s ease;
}
.nav__brand:hover .nav__logo { transform: scale(1.03); }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-text strong {
  font-family: var(--font-serif); font-weight: 700; font-size: 20px;
  color: var(--gold-3); letter-spacing: .5px;
}
.nav__brand-text em {
  font-style: normal; font-size: 11px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--ink-3); margin-top: 4px;
}
.nav__menu { display: flex; gap: 28px; align-items: center; }
.nav__menu a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold-2);
  transition: width .25s ease;
}
.nav__menu a:hover { color: var(--gold-3); }
.nav__menu a:hover::after { width: 100%; }
.nav__cta {
  padding: 10px 20px !important; border: 1.5px solid var(--gold-2);
  border-radius: 999px; color: var(--gold-3) !important;
  transition: all .25s ease;
}
.nav__cta:hover {
  background: var(--gold-2); color: #fff !important;
}
.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav__toggle span {
  display: block; width: 26px; height: 2px; background: var(--ink-2);
  transition: transform .25s, opacity .25s;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: 999px;
  font-weight: 600; font-size: 14px; letter-spacing: .3px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer; white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #fff; box-shadow: 0 12px 28px -12px rgba(184, 144, 63, .55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(184, 144, 63, .7);
}
.btn--ghost {
  background: transparent; color: var(--ink-1);
  border: 1.5px solid var(--ink-2);
}
.btn--ghost:hover { background: var(--ink-1); color: #fff; }
.btn--lg { padding: 18px 36px; font-size: 15px; }
.btn--block { width: 100%; }

/* ============ TYPOGRAPHY ============ */
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-3); margin-bottom: 18px;
  position: relative; padding-left: 42px;
}
.eyebrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 30px; height: 1px; background: var(--gold-2);
}
.eyebrow--on-dark { color: var(--gold-1); }
.eyebrow--on-dark::before { background: var(--gold-1); }

.h2 {
  font-family: var(--font-serif);
  font-weight: 600; font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15; color: var(--ink-1);
  margin: 0 0 20px; letter-spacing: -0.5px;
}
.h2--on-dark { color: #f4ecdb; }
.gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; font-style: italic;
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section--light { background: var(--paper); }
.section--cream { background: var(--cream-1); }
.section--dark {
  background: var(--ink-1);
  color: #e7dfcf;
}
.section--dark p { color: #c3baa7; }
.section__head {
  max-width: 720px; margin-bottom: 56px;
}
.section__head--center {
  text-align: center; margin-left: auto; margin-right: auto;
}
.section__head--center .eyebrow { padding-left: 0; }
.section__head--center .eyebrow::before { display: none; }
.section__sub { font-size: 17px; color: var(--ink-3); margin-top: 8px; }
.section__sub--on-dark { color: #b5ac99; }

/* ============ GRID ============ */
.grid { display: grid; gap: 48px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--center { align-items: center; }

/* ============ HERO ============ */
.hero {
  position: relative; padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1000px 600px at 85% 20%, rgba(217, 179, 114, .18), transparent 60%),
    radial-gradient(800px 500px at 10% 80%, rgba(28, 28, 28, .08), transparent 60%),
    var(--paper);
}
.hero__bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(28,28,28,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28,28,28,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  pointer-events: none;
}
.hero__inner {
  position: relative; display: grid;
  grid-template-columns: 1.2fr .8fr; gap: 64px;
  align-items: center;
}
.hero__title {
  font-family: var(--font-serif); font-weight: 600;
  font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05;
  letter-spacing: -1px; color: var(--ink-1); margin: 0 0 24px;
}
.hero__lead { font-size: 18px; color: var(--ink-3); max-width: 560px; }
.hero__ctas { display: flex; gap: 14px; margin: 32px 0 48px; flex-wrap: wrap; }
.hero__stats {
  display: flex; gap: 40px; list-style: none; padding: 0; margin: 0;
  padding-top: 28px; border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero__stats li { display: flex; flex-direction: column; }
.hero__stats strong {
  font-family: var(--font-serif);
  font-size: 32px; color: var(--gold-3); font-weight: 700;
  line-height: 1;
}
.hero__stats span {
  font-size: 12px; color: var(--ink-3); text-transform: uppercase;
  letter-spacing: 2px; margin-top: 8px;
}
.hero__logo {
  position: relative;
}
.hero__logo img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.hero__logo img:hover { transform: rotate(0deg) scale(1.02); }
.hero__logo::before {
  content: ""; position: absolute; inset: -14px;
  border: 1px solid var(--gold-2); border-radius: calc(var(--radius-lg) + 12px);
  transform: rotate(2deg);
  pointer-events: none;
}

.hero__scroll {
  position: absolute; bottom: 30px; left: 50%;
  width: 1px; height: 50px;
  background: linear-gradient(var(--gold-2), transparent);
}
.hero__scroll span {
  position: absolute; left: -3px; top: 0;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-2);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 0; opacity: 1; }
  100% { top: 45px; opacity: 0; }
}

/* ============ ABOUT ============ */
.about-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  position: relative;
}
.about-card::before {
  content: ""; position: absolute; top: 0; left: 40px; right: 40px;
  height: 3px; background: linear-gradient(90deg, var(--gold-1), var(--gold-3));
  border-radius: 0 0 3px 3px;
}
.about-card h3 {
  font-family: var(--font-serif); font-size: 24px; margin: 0 0 20px;
  color: var(--ink-1); font-weight: 600;
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.check-list li:last-child { border-bottom: 0; }
.check-list span { color: var(--gold-2); font-size: 14px; margin-top: 3px; }

/* ============ FEATURES (diferenciais) ============ */
.feature {
  padding: 36px 28px; border-radius: var(--radius);
  background: rgba(217, 179, 114, 0.04);
  border: 1px solid var(--line-on-dark);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.feature:hover {
  transform: translateY(-4px);
  background: rgba(217, 179, 114, 0.08);
  border-color: rgba(217, 179, 114, 0.4);
}
.feature__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  color: var(--ink-1); margin-bottom: 22px;
}
.feature h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 600; margin: 0 0 10px;
  color: #f4ecdb;
}
.feature p { font-size: 14px; color: #b5ac99; margin: 0; line-height: 1.6; }

/* ============ ATUAÇÃO ============ */
.states {
  display: grid; gap: 14px; margin-top: 32px;
}
.state {
  display: grid; grid-template-columns: 70px 1fr; gap: 18px;
  padding: 18px 22px; background: #fff;
  border-radius: var(--radius); border: 1px solid var(--line);
  align-items: center;
  transition: border-color .25s, transform .25s;
}
.state:hover { border-color: var(--gold-2); transform: translateX(4px); }
.state strong {
  font-family: var(--font-serif); font-size: 32px; font-weight: 700;
  color: var(--gold-3); line-height: 1; text-align: center;
}
.state span {
  display: block; font-weight: 600; color: var(--ink-1); font-size: 15px;
}
.state em {
  display: block; font-style: normal; color: var(--ink-3); font-size: 13px; margin-top: 3px;
}

.map-card {
  background: #fff; border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  text-align: center;
}
.map-svg { width: 100%; height: auto; max-height: 380px; }
.map-card__caption {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--ink-3); margin: 16px 0 0;
}

/* ============ PARTNERS ============ */
.partners {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px;
  margin-bottom: 18px;
}
.partner-card {
  aspect-ratio: 3 / 2;
  display: grid; place-items: center;
  background: rgba(247, 241, 230, 0.05);
  border: 1px dashed rgba(217, 179, 114, 0.35);
  border-radius: var(--radius);
  color: #a59b86; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; font-weight: 500; text-align: center;
  padding: 10px;
  transition: background .25s, border-color .25s;
}
.partner-card:hover {
  background: rgba(247, 241, 230, 0.1);
  border-color: var(--gold-1);
}
.partners__note {
  text-align: center; color: #8a8169; font-size: 12px; margin-top: 20px;
  font-style: italic;
}

/* ============ STEPS ============ */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  counter-reset: steps;
}
.steps li {
  position: relative; padding: 36px 28px;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  transition: transform .3s ease;
}
.steps li:hover { transform: translateY(-6px); }
.steps__num {
  font-family: var(--font-serif);
  font-size: 54px; font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gold-1), var(--gold-3));
  -webkit-background-clip: text; background-clip: text;
  color: transparent; margin-bottom: 14px;
}
.steps h3 {
  font-family: var(--font-serif); font-size: 20px; font-weight: 600;
  margin: 0 0 10px; color: var(--ink-1);
}
.steps p { font-size: 14px; margin: 0; color: var(--ink-3); }

/* ============ CTA BAND ============ */
.cta-band {
  background: linear-gradient(135deg, var(--ink-1) 0%, #2a2520 60%, var(--gold-3) 130%);
  padding: 70px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 80% 50%, rgba(217,179,114,.25), transparent);
  pointer-events: none;
}
.cta-band__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; position: relative;
}
.cta-band h2 {
  font-family: var(--font-serif); font-size: clamp(24px, 3vw, 34px);
  color: #fff; margin: 0 0 8px; font-weight: 600;
}
.cta-band p { color: #c3baa7; margin: 0; font-size: 16px; }

/* ============ CONTACT ============ */
.contact-list {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 18px;
}
.contact-list li {
  display: grid; grid-template-columns: 120px 1fr; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact-list strong {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-3); font-weight: 700;
}
.contact-list a, .contact-list span {
  font-size: 15px; color: var(--ink-2); transition: color .2s;
}
.contact-list a:hover { color: var(--gold-3); }

.form {
  background: #fff; padding: 40px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  display: grid; gap: 16px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form label { display: grid; gap: 6px; }
.form label > span {
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--ink-3);
}
.form input, .form textarea, .form select {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font-family: inherit; font-size: 15px; color: var(--ink-1);
  background: #fafafa;
  transition: border-color .2s, background .2s;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--gold-2); background: #fff;
}
.form textarea { resize: vertical; min-height: 110px; }
.form__status {
  margin: 4px 0 0; font-size: 14px; min-height: 20px;
  color: var(--gold-3); font-weight: 500;
}

/* ============ FOOTER ============ */
.footer {
  background: #141210; color: #a59b86; padding-top: 70px;
}
.footer__inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px;
  padding-bottom: 50px;
}
.footer__brand img {
  width: 80px; height: 80px; border-radius: 14px;
  object-fit: cover; margin-bottom: 16px; background: #fff;
}
.footer__brand p { font-size: 14px; max-width: 320px; color: #9a9078; }
.footer__links {
  display: flex; flex-direction: column; gap: 10px;
}
.footer__links h4 {
  font-family: var(--font-serif); font-size: 18px; color: #f4ecdb;
  margin: 0 0 10px; font-weight: 600;
}
.footer__links a, .footer__links span {
  font-size: 14px; color: #9a9078;
  transition: color .2s;
}
.footer__links a:hover { color: var(--gold-1); }
.footer__base {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer__base-inner {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 12px; color: #706754; flex-wrap: wrap;
}

/* ============ WHATSAPP FLOAT ============ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25d366; color: #fff;
  box-shadow: 0 14px 32px -8px rgba(37, 211, 102, .5);
  transition: transform .25s ease, box-shadow .25s ease;
}
.wa-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 18px 36px -8px rgba(37, 211, 102, .6);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__logo { max-width: 420px; margin: 20px auto 0; }
  .hero { padding: 130px 0 80px; }
  .section { padding: 80px 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 640px) {
  .nav__menu {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    gap: 0; background: var(--paper);
    padding: 20px; border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px -30px rgba(0,0,0,.3);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav__menu a:last-child { border-bottom: 0; }
  .nav__cta { text-align: center; margin-top: 8px; }
  .nav__toggle { display: flex; }
  .form__row { grid-template-columns: 1fr; }
  .form { padding: 26px; }
  .hero__stats { gap: 24px; flex-wrap: wrap; }
  .steps { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-list li { grid-template-columns: 1fr; gap: 4px; }
  .nav__brand-text em { display: none; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
