:root {
  --cor-principal: #1f1f9e;
  --cor-secundaria: #645af5;
  --cor-white: #ffffff;
  --cor-preta: #000000;
  --cor-cinza: #ac9e9e;
  --color-titulo: #0000ff;
}

html,
body {
  height: 100%;
}

body {
  background-color: var(--cor-white); /* Cor de fundo mais neutra */
}

.condo-card {
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  padding: 32px;
  animation: fadeIn 0.5s ease-in;
  margin: 4rem auto; /* Centraliza o card na página com margem vertical */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.condo-image-container {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.condo-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.condo-image:hover {
  transform: scale(1.05);
}

.condo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 28px;
}

.stats-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 255, 0.1);
}

.stat-label {
  font-size: 0.875rem;
  color: #666;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #0000ff;
  line-height: 1;
}

.stat-icon {
  font-size: 1.5rem;
  color: #0000ff;
  margin-bottom: 8px;
}

.button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.btn-custom {
  background: #0000ff;
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 255, 0.3);
}

.btn-custom:hover {
  background: #0000cc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 255, 0.4);
  color: white;
}

.btn-custom:active {
  transform: translateY(0);
}

.btn-custom i {
  margin-right: 8px;
}

.btn-chat {
  width: 100%;
  background: linear-gradient(135deg, #0000ff 0%, #0000cc 100%);
}

.btn-chat:hover {
  background: linear-gradient(135deg, #0000cc 0%, #0000aa 100%);
}

@media (max-width: 576px) {
  .condo-card {
    padding: 24px;
  }

  .condo-title {
    font-size: 1.25rem;
  }

  .stat-value {
    font-size: 1.75rem;
  }

  .button-group {
    grid-template-columns: 1fr;
  }
}
