/* ================= ARXYS — Sistema visual do site institucional =================
   Tokens herdados da Central do Corretor (consistência de marca).
   Deltha reservada exclusivamente para o wordmark, como no app interno —
   não usar como fonte de títulos do site. */

@font-face {
  font-family: 'Deltha';
  src: url('../fonts/Deltha-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

:root {
  --bg:        #120e08;
  --bg2:       #1a1208;
  --bg3:       #231a0e;
  --bg4:       #2e2416;
  --card:      #271e10;
  --border:    rgba(200,146,42,.22);
  --border-soft: rgba(200,146,42,.12);

  --gold:      #c8922a;
  --gold-lt:   #e8c058;
  --gold-dk:   #8a5e18;
  --gold-pale: #f5d06a;

  --text:      #f8f0e0;
  --text2:     #d4b87a;
  --text3:     #b09070;
  --text4:     #806848;

  --radius: 4px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }

/* ---------- hex texture (signature background device) ---------- */
.hex-field {
  position: relative;
  background-image: url('../img/hex-pattern.svg');
  background-repeat: repeat;
  background-size: 112px 97px;
}
.hex-field::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(18,14,8,0) 0%, var(--bg) 78%);
  pointer-events: none;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--bg2);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.site-logo img { height: 26px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: 13px; font-weight: 500; letter-spacing: .02em;
  color: var(--text2); transition: color .15s;
}
.site-nav a:hover { color: var(--gold-pale); }
.site-nav .cta {
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-pale));
  color: #0f0b07; border-radius: var(--radius); font-weight: 700;
}
.site-nav .cta:hover { filter: brightness(1.08); }
.site-nav .portal {
  color: var(--text3); font-size: 12px; border: 1px solid var(--border);
  padding: 8px 14px; border-radius: var(--radius);
}
.nav-toggle { display: none; background: none; border: none; color: var(--text); font-size: 24px; cursor: pointer; }

@media (max-width: 860px) {
  .site-nav { position: fixed; top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--bg2); flex-direction: column; align-items: flex-start;
    padding: 32px; gap: 22px; transform: translateX(100%); transition: transform .25s ease;
  }
  .site-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
}

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold); font-weight: 700; margin-bottom: 14px; display: block;
}

/* ---------- hero ---------- */
.hero { padding: 120px 0 100px; }
.hero h1 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 800; line-height: 1.12;
  margin: 0 0 22px; max-width: 780px; letter-spacing: -.01em;
}
.hero h1 .accent {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-pale));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lede { font-size: 18px; color: var(--text2); max-width: 620px; margin: 0 0 40px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 13px; font-weight: 700; letter-spacing: .02em;
  transition: transform .15s, filter .15s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-dk), var(--gold), var(--gold-pale));
  color: #0f0b07;
}
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { border: 1px solid var(--border); color: var(--text2); }
.btn-ghost:hover { border-color: var(--gold-dk); color: var(--gold-pale); }

/* ---------- sections ---------- */
section.block { padding: 88px 0; border-top: 1px solid var(--border-soft); }
.section-head { max-width: 640px; margin: 0 0 52px; }
.section-head h2 { font-size: clamp(26px, 3vw, 36px); font-weight: 800; margin: 0 0 16px; }
.section-head p { color: var(--text2); font-size: 15px; margin: 0; }

/* ---------- hex cards (signature element: differentials grid) ---------- */
.hex-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.hex-card {
  position: relative; background: var(--card);
  border: 1px solid var(--border-soft);
  padding: 32px 28px 28px;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
.hex-card .num {
  font-size: 12px; color: var(--gold-dk); font-weight: 700; letter-spacing: .1em; margin-bottom: 14px; display: block;
}
.hex-card h3 { font-size: 17px; font-weight: 700; margin: 0 0 12px; color: var(--text); }
.hex-card p { font-size: 13.5px; color: var(--text2); margin: 0; line-height: 1.65; }

/* ---------- method timeline (real sequence -> numbering justified) ---------- */
.method-list { display: flex; flex-direction: column; gap: 0; }
.method-item {
  display: grid; grid-template-columns: 64px 1fr; gap: 24px;
  padding: 32px 0; border-top: 1px solid var(--border-soft);
}
.method-item:first-child { border-top: none; }
.method-item .step {
  font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800;
  color: var(--gold-dk); line-height: 1;
}
.method-item h3 { font-size: 18px; font-weight: 700; margin: 0 0 10px; color: var(--text); }
.method-item p { font-size: 14px; color: var(--text2); margin: 0; max-width: 640px; }

/* ---------- cards generic (sócios, contato) ---------- */
.card {
  background: var(--card); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 28px;
}
.people-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.people-grid .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--bg); font-size: 18px; margin-bottom: 16px;
}
.people-grid h3 { font-size: 15px; margin: 0 0 2px; }
.people-grid .role { font-size: 11px; color: var(--gold-pale); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; display: block; }
.people-grid p.bio { font-size: 13px; color: var(--text3); margin: 0; }

/* ---------- placeholder banner (dev-only marker, remove when content is final) ---------- */
.draft-note {
  background: rgba(200,146,42,.08); border: 1px dashed var(--border);
  color: var(--text3); font-size: 12px; padding: 14px 18px; border-radius: var(--radius);
  margin-top: 18px;
}

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--text3); margin: 0 0 16px; }
.footer-grid a, .footer-grid p { font-size: 13px; color: var(--text2); margin: 0 0 10px; display: block; }
.footer-legal {
  border-top: 1px solid var(--border-soft); padding-top: 24px;
  font-size: 11.5px; color: var(--text4); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- misc page (corretores / contato) ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.tag-list span {
  font-size: 12px; padding: 6px 14px; border: 1px solid var(--border);
  border-radius: 999px; color: var(--text2);
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--text2); margin-bottom: 6px; display: block; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--bg3); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px; color: var(--text);
  font-family: inherit; font-size: 13px;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
