/* Responsabilidade: Estilos base e reset */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --cream: #F7F4EF;
  --dark: #1A1A1A;
  --gold: #B8975A;
  --gold-light: #D4B07A;
  --muted: #6B6560;
  --border: #E0D8CE;
  --white: #FFFFFF;
  --admin-bg: #0F0F0F;
  --admin-panel: #1A1A1A;
  --admin-border: #2A2A2A;
  --error: #C0392B;
  --success: #27AE60;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--cream);
  color: var(--dark);
  min-height: 100vh;
}

/* PDF / Print layout lock */
@media print {
  body { background: white; }
  .top-bar, .admin-overlay, .crop-modal, #toast { display: none !important; }
  #document-page {
    margin: 0 !important;
    padding: 40px !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Ensure property card grid never collapses */
.property-card {
  min-width: 0;
}
.property-card * {
  min-width: 0;
}
