/* ============================================================
   ARRIVED.COM — RÉPLICA FIEL (testes)
   Design tokens extraídos do DOM real (2026-08-04):
   - Fonte: Calibre (fallback Helvetica Neue/Arial)
   - Headings: #040609, weight 600
   - CTA azul: #156CD8, radius 8px
   - Footer: #F2F2F4
   - FAQ items: border 1px #F2F2F4, height 57px
   ============================================================ */

:root {
  --ink: #040609;
  --body: #212121;
  --blue: #156CD8;
  --footer-bg: #F2F2F4;
  --line: #F2F2F4;
  --muted: #666;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Calibre", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--body);
  background: #fff;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

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

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #EEEEF0;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-size: 26px; font-weight: 700; color: var(--ink); letter-spacing: -0.5px; }
.main-nav { display: flex; gap: 40px; }
.main-nav a { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; color: var(--body); }
.main-nav a:hover { color: var(--blue); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.btn-login { font-size: 16px; padding: 8px 16px; color: var(--body); }
.btn-signup {
  font-size: 16px; padding: 10px 18px; background: var(--ink);
  color: #fff; border-radius: 8px; font-weight: 500;
}
.btn-signup:hover { opacity: 0.85; }

/* ============ HERO ============ */
.hero { padding: 72px 0 48px; }
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 32px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: start;
}
.hero-copy h1 {
  font-size: 80px; line-height: 0.98; font-weight: 600; color: var(--ink);
  letter-spacing: -1.5px; margin-bottom: 28px;
}
.hero-sub { font-size: 32px; font-weight: 300; color: var(--ink); line-height: 1.25; margin-bottom: 36px; max-width: 520px; }
.btn-cta {
  background: var(--blue); color: #fff; font-size: 15px; font-weight: 600;
  letter-spacing: 0.04em; padding: 16px 28px; border-radius: 8px;
  transition: opacity 0.15s;
}
.btn-cta:hover { opacity: 0.88; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; }
.stat { display: flex; flex-direction: column; }
.stat-val { font-size: 28px; font-weight: 600; color: var(--ink); }
.stat-label { font-size: 14px; color: var(--muted); margin-top: 2px; }
.hero-props {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.prop-chip {
  border-radius: 8px; overflow: hidden; background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08); transition: transform 0.15s;
}
.prop-chip:hover { transform: translateY(-2px); }
.prop-chip img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.prop-chip span { display: block; font-size: 12px; font-weight: 500; padding: 6px 8px; color: var(--body); text-align: center; }

/* ============ TICKER ============ */
.ticker {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0; background: #fff;
}
.ticker-track { display: flex; gap: 36px; white-space: nowrap; animation: ticker 60s linear infinite; width: max-content; }
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item { display: flex; align-items: baseline; gap: 8px; font-size: 15px; }
.t-name { font-weight: 500; color: var(--body); }
.t-price { color: var(--ink); font-weight: 600; }
.t-pct { font-weight: 600; font-size: 13px; }
.t-pct.up { color: #0A8F44; }
.t-pct.down { color: #D33; }

/* ============ PRESS ============ */
.press { text-align: center; padding: 64px 32px; max-width: 1000px; margin: 0 auto; }
.press-quote { font-size: 24px; font-weight: 500; color: var(--ink); max-width: 720px; margin: 0 auto 32px; line-height: 1.3; }
.press-label { font-size: 13px; letter-spacing: 0.15em; color: var(--muted); margin-bottom: 28px; }
.press-logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.press-logo { max-height: 32px; width: auto; opacity: 0.75; }
.press-logo-yahoo { max-height: 26px; }
.press-logo-wsj { max-height: 20px; }

/* ============ MAP SECTION ============ */
.map-section { padding: 80px 32px; max-width: 1280px; margin: 0 auto; }
.map-copy { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.map-copy h2 { font-size: 40px; font-weight: 600; color: var(--ink); line-height: 1.15; margin-bottom: 32px; }
.map-visual { border-radius: 12px; overflow: hidden; }
.map-svg { width: 100%; height: auto; }

/* ============ VIDEO SECTION ============ */
.video-section { padding: 96px 32px; text-align: center; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 20px; }
.video-section h2 { font-size: 40px; font-weight: 600; color: var(--ink); max-width: 720px; margin: 0 auto 16px; line-height: 1.15; }
.video-sub { font-size: 20px; color: var(--body); max-width: 620px; margin: 0 auto 40px; }
.video-play { position: relative; display: inline-block; border-radius: 12px; overflow: hidden; }
.video-thumb { width: min(660px, 90vw); aspect-ratio: 660/456; object-fit: cover; }
.play-badge {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 72px; height: 72px; border-radius: 50%; background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--ink); padding-left: 5px;
}

/* ============ TRACK RECORD ============ */
.track { padding: 96px 32px; }
.track h2 { font-size: 40px; font-weight: 600; color: var(--ink); text-align: center; margin-bottom: 16px; }
.track-sub { text-align: center; max-width: 640px; margin: 0 auto 56px; font-size: 18px; color: var(--body); }
.track-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1280px; margin: 0 auto; }
.track-card { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; background: #fff; }
.track-card img { width: 100%; aspect-ratio: 763/458; object-fit: cover; }
.track-card-head { padding: 20px 20px 8px; }
.track-card-head h3 { font-size: 22px; font-weight: 600; color: var(--ink); }
.track-prop { font-size: 16px; font-weight: 500; margin-top: 6px; }
.track-type { font-size: 14px; color: var(--muted); }
.track-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px 20px 24px; border-top: 1px solid var(--line); margin-top: 16px; }
.tm { display: flex; flex-direction: column; }
.tm-val { font-size: 17px; font-weight: 600; color: var(--ink); }
.tm-label { font-size: 12px; color: var(--muted); }

/* ============ HOW IT WORKS ============ */
.how { padding: 96px 32px; max-width: 1280px; margin: 0 auto; }
.how-head { text-align: center; margin-bottom: 72px; }
.how-watch {
  display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px;
  font-size: 15px; font-weight: 500; color: var(--blue);
}
.how-watch img { width: 56px; height: 40px; object-fit: cover; border-radius: 6px; }
.how-head h2 { font-size: 72px; font-weight: 600; color: var(--ink); letter-spacing: -1px; line-height: 1.02; }
.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px 40px; }
.how-step { }
.how-label { font-size: 13px; font-weight: 600; letter-spacing: 0.18em; color: var(--muted); margin-bottom: 14px; }
.how-step h3 { font-size: 56px; font-weight: 600; color: var(--ink); line-height: 1.05; letter-spacing: -1px; margin-bottom: 16px; }
.how-desc { font-size: 18px; color: var(--body); max-width: 460px; margin-bottom: 28px; }
.how-imgs { display: flex; gap: 12px; }
.how-imgs img { width: 120px; height: 72px; object-fit: cover; border-radius: 6px; }
.how-phone { max-width: 220px; margin: 0 auto; }
.earn-pill {
  border: 1px solid var(--line); border-radius: 10px; padding: 20px;
  max-width: 420px; background: #fff;
}
.earn-pill-title { font-size: 20px; font-weight: 600; color: var(--ink); }
.sell-feed { display: flex; flex-direction: column; gap: 8px; max-width: 440px; }
.sell-item {
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 14px; background: #fff;
}
.sell-item img { width: 44px; height: 32px; object-fit: cover; border-radius: 4px; }
.sell-item span { font-size: 14px; color: var(--body); }

/* ============ FAQ ============ */
.faq { padding: 96px 32px; max-width: 900px; margin: 0 auto; }
.faq h2 { font-size: 40px; font-weight: 600; color: var(--ink); text-align: center; line-height: 1.15; margin-bottom: 16px; }
.faq-sub { text-align: center; font-size: 18px; color: var(--body); margin-bottom: 48px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  min-height: 57px; padding: 16px 4px; border-bottom: 1px solid var(--line);
  font-size: 17px; font-weight: 500; color: var(--ink); text-align: left;
}
.faq-icon { font-size: 22px; font-weight: 400; color: var(--muted); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; border-bottom: 1px solid var(--line); }
.faq-a p { padding: 0 4px 20px; font-size: 16px; color: var(--body); line-height: 1.55; }
.faq-a.open { max-height: 300px; }

/* ============ FINAL CTA ============ */
.final-cta {
  position: relative; padding: 120px 32px; text-align: center; overflow: hidden;
  background: linear-gradient(180deg, #0A0C10 0%, #040609 100%); color: #fff;
}
.final-cta h2 { font-size: 32px; font-weight: 600; color: #fff; max-width: 720px; margin: 0 auto 36px; line-height: 1.2; }
.btn-cta-dark { background: var(--blue); }
.cta-artifacts { position: relative; margin-top: 48px; display: flex; justify-content: center; gap: 24px; }
.cta-artifacts img { max-height: 120px; }

/* ============ FOOTER ============ */
.site-footer { background: var(--footer-bg); padding: 64px 32px 40px; }
.footer-top {
  max-width: 1280px; margin: 0 auto; display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.footer-newsletter h2 { font-size: 32px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.footer-newsletter p { font-size: 15px; color: var(--body); max-width: 380px; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 8px; margin-bottom: 24px; }
.newsletter-form input {
  flex: 1; max-width: 280px; padding: 12px 16px; border: 1px solid #D8DAE0;
  border-radius: 8px; font-size: 15px; font-family: inherit;
}
.newsletter-form button {
  background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid #D8DAE0;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--body); background: #fff;
}
.footer-col h3 { font-size: 16px; font-weight: 600; color: var(--ink); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--body); margin-bottom: 10px; }
.footer-col a:hover { text-decoration: underline; }
.footer-contact {
  max-width: 1280px; margin: 48px auto 0; padding-top: 32px;
  border-top: 1px solid #E0E2E6; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-address { font-size: 14px; color: var(--body); }
.footer-email { font-size: 14px; color: var(--blue); }
.risk-disclosure {
  max-width: 1280px; margin: 32px auto 0; padding: 24px;
  background: #fff; border-radius: 10px;
}
.risk-disclosure h6 { font-size: 13px; font-weight: 600; color: var(--ink); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.risk-disclosure p { font-size: 12px; line-height: 1.5; color: var(--muted); }
.risk-disclosure a { color: var(--blue); text-decoration: underline; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 56px; }
  .track-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-head h2 { font-size: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .header-inner { padding: 14px 16px; }
  .main-nav { display: none; }
  .hero { padding: 40px 0 32px; }
  .hero-inner { padding: 0 16px; gap: 32px; }
  .hero-copy h1 { font-size: 40px; }
  .hero-sub { font-size: 22px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-props { grid-template-columns: repeat(3, 1fr); }
  .press-logos { gap: 20px; }
  .map-copy h2 { font-size: 28px; }
  .track h2 { font-size: 28px; }
  .track-grid { grid-template-columns: 1fr; }
  .how-head h2 { font-size: 36px; }
  .how-step h3 { font-size: 36px; }
  .faq h2 { font-size: 28px; }
  .final-cta { padding: 80px 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-contact { flex-direction: column; align-items: flex-start; }
}

/* ============ PROPERTIES LISTING ============ */
.props-head { max-width: 1280px; margin: 0 auto; padding: 64px 32px 32px; }
.props-head h1 { font-size: 56px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.props-sub { font-size: 20px; color: var(--body); margin-bottom: 32px; }
.props-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 20px; border: 1px solid #D8DAE0; border-radius: 24px;
  font-size: 14px; font-weight: 500; color: var(--body); background: #fff;
}
.filter-btn.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.props-grid {
  max-width: 1280px; margin: 0 auto; padding: 0 32px 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.prop-card {
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden;
  background: #fff; transition: transform 0.15s, box-shadow 0.15s;
}
.prop-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.prop-card-img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.prop-card-body { padding: 18px 20px 20px; }
.prop-card-body h3 { font-size: 22px; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.prop-card-type { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.prop-card-loc { font-size: 15px; color: var(--body); margin: 6px 0 12px; }
.prop-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.prop-card-inv { font-size: 13px; color: var(--muted); }
.prop-card-badge { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 12px; }
.badge-avail { background: #E7F4EC; color: #0A8F44; }
.badge-hot { background: #FDF0E3; color: #B4550A; }
.badge-full { background: #EDEEF2; color: var(--muted); }
.badge-new { background: #E3EDFB; color: #156CD8; }
.fund-bar { flex: 1; height: 6px; background: #EDEEF2; border-radius: 3px; overflow: hidden; }
.fund-fill { height: 100%; background: var(--blue); border-radius: 3px; }
.prop-card-fund { display: flex; align-items: center; gap: 10px; }
.fund-pct { font-size: 12px; font-weight: 600; color: var(--ink); white-space: nowrap; }

/* ============ DETAIL PAGE ============ */
.detail-main { max-width: 1280px; margin: 0 auto; padding: 32px; }
.back-link { display: inline-block; font-size: 14px; font-weight: 600; color: var(--blue); margin-bottom: 24px; }
.back-link:hover { text-decoration: underline; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.gallery { margin-bottom: 28px; }
.gallery-main img { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 12px; }
.gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumbs img { width: 84px; height: 56px; object-fit: cover; border-radius: 6px; cursor: pointer; border: 2px solid transparent; }
.gallery-thumbs img:hover { border-color: var(--blue); }
.detail-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; margin-bottom: 20px; }
/* Addresses are longer than the template's short names ("The Rucker"), so 48px
   wrapped huge. 28px reads as a proper property title without dominating. */
.detail-title-row h1 { font-size: 28px; font-weight: 600; line-height: 1.15; color: var(--ink); letter-spacing: -0.01em; }
.prop-type-label { font-size: 14px; color: var(--muted); margin-top: 4px; }
.prop-stats { display: flex; gap: 14px; }
.prop-stat {
  border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px;
  display: flex; align-items: center; gap: 6px; background: #fff;
}
.ps-val { font-size: 18px; font-weight: 600; color: var(--ink); }
.ps-label { font-size: 12px; color: var(--muted); }
.fin-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.fin-col {
  border: 1px solid var(--line); border-radius: 10px; padding: 18px;
  display: flex; flex-direction: column; background: #fff;
}
.fin-val { font-size: 22px; font-weight: 600; color: var(--ink); }
.fin-label { font-size: 13px; color: var(--muted); margin-top: 2px; }
.addr-map { margin-bottom: 28px; }
.map-simple {
  height: 180px; border-radius: 10px; background: #EDEEF2;
  background-image: radial-gradient(circle at 30% 40%, #D8DAE0 2px, transparent 2px),
                    radial-gradient(circle at 55% 60%, #D8DAE0 2px, transparent 2px),
                    radial-gradient(circle at 75% 35%, #D8DAE0 2px, transparent 2px),
                    linear-gradient(180deg, #EDEEF2, #DFE1E8);
  margin-bottom: 10px; position: relative;
}
.map-simple::after {
  content: "📍"; position: absolute; top: 45%; left: 50%;
  font-size: 26px; transform: translate(-50%, -50%);
}
.addr-link { font-size: 14px; color: var(--blue); }
.addr-link:hover { text-decoration: underline; }
.detail-sec { margin-bottom: 36px; }
.detail-sec h2 { font-size: 28px; font-weight: 600; color: var(--ink); margin-bottom: 14px; }
.detail-sec p { font-size: 16px; line-height: 1.6; color: var(--body); margin-bottom: 12px; }
.market-title { font-size: 20px; font-weight: 600; color: var(--ink); margin-bottom: 10px; }
.lease-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: 20px; font-size: 14px; font-weight: 600; margin-top: 6px;
}
.lease-rented { background: #E7F4EC; color: #0A8F44; }
.lease-avail { background: #E3EDFB; color: #156CD8; }
.lease-dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.docs-list { display: flex; flex-direction: column; gap: 8px; }
.doc-link { display: inline-block; font-size: 15px; font-weight: 500; color: var(--blue); padding: 10px 0; border-bottom: 1px solid var(--line); }
.doc-link:hover { text-decoration: underline; }
.fund-cta {
  display: inline-block; margin-top: 8px; padding: 14px 24px;
  background: var(--ink); color: #fff; border-radius: 8px; font-weight: 500;
}
.fund-cta:hover { opacity: 0.85; }
.detail-sidebar { position: sticky; top: 100px; }
.sidebar-card {
  border: 1px solid var(--line); border-radius: 12px; padding: 28px;
  background: #fff; box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.side-remaining { font-size: 32px; font-weight: 600; color: var(--ink); }
.side-label { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.invest-btn {
  width: 100%; padding: 16px; background: var(--blue); color: #fff;
  border-radius: 8px; font-size: 16px; font-weight: 600; margin-bottom: 20px;
}
.invest-btn:hover { opacity: 0.88; }
.side-funded { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.side-investors { font-size: 14px; color: var(--muted); }

@media (max-width: 1024px) {
  .props-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-sidebar { position: static; }
}
@media (max-width: 640px) {
  .props-grid { grid-template-columns: 1fr; padding: 0 16px 60px; }
  .props-head { padding: 40px 16px 24px; }
  .props-head h1 { font-size: 36px; }
  .detail-main { padding: 16px; }
  .detail-title-row { flex-direction: column; }
  .detail-title-row h1 { font-size: 24px; }
  .fin-row { grid-template-columns: 1fr; }
  .prop-stats { flex-wrap: wrap; }
}

/* Address as a link to the property's public record (ClawDeed). */
.address-source-link { border-bottom: 2px solid var(--blue); }
.address-source-link:hover { color: var(--blue) !important; }
