/* Página de seleção — ArtBarra Imóveis RJ / Barra Prime Offices
   Página simples para comparar as 3 propostas antes da publicação.
*/
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:    #F5F0EC;
  --red:      #7B0000;
  --red-tx:   #3D1212;
  --ink:      #22292E;
  --text-mid: #5A6268;
  --border:   rgba(20, 20, 20, 0.1);
  --white:    #FFFFFF;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

/* ===== HEADER ===== */
.header {
  height: 76px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: var(--cream);
  border-bottom: 2px solid var(--red);
}
.brand-logo-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.brand-logo { display: block; height: 42px; width: auto; border-radius: 3px; }

/* ===== INTRO ===== */
.intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 32px 40px;
  text-align: center;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.intro h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 16px;
}
.lead { font-size: 15.5px; color: var(--text-mid); }

/* ===== CARDS ===== */
.cards {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--white);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(20,20,20,0.12); }
.card-photo {
  height: 200px;
  background-size: cover;
  background-position: center;
}
.card-body { padding: 24px 24px 28px; display: flex; flex-direction: column; gap: 10px; }
.card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}
.card-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
}
.card-body p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.card-facts {
  list-style: none;
  font-size: 12.5px;
  color: var(--text-mid);
  padding-top: 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.card-facts li { padding: 5px 0; }
.card-cta {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red-tx);
  transition: gap 0.2s;
}
.card:hover .card-cta { gap: 12px; color: var(--red); }

/* ===== FOOTER ===== */
.footer { padding: 28px 32px 40px; text-align: center; }
.footer p { font-size: 12px; color: var(--text-mid); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; max-width: 480px; }
}
