/* styles.css – CTA card; usa variáveis do tema (tema.css) */

.hidden {
  display: none !important;
}

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card {
  background: var(--bg-card);
  border-radius: var(--admin-radius-sm);
  box-shadow: var(--admin-shadow);
  border: 1px solid var(--border);
  padding: 2rem;
  max-width: 380px;
  text-align: center;
}

.cta-tenant-logo {
  display: block;
  margin-bottom: 1rem;
  text-decoration: none;
}

.cta-tenant-logo:hover {
  opacity: 0.9;
}

.cta-tenant-logo img {
  height: 44px;
  width: auto;
  max-width: 200px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.tenant-logo-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.35rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cta-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: rgba(230, 30, 77, 0.08);
  border-radius: var(--admin-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.cta-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.5rem;
}

.cta-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
}

.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.9rem 1.25rem;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  gap: 0.5rem;
}

.cta-button:hover {
  background: var(--border);
  color: var(--text);
  border-color: var(--text-muted);
}

.cta-button-text {
  flex: 1;
  text-align: left;
}

.cta-button-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-button:hover .cta-button-icon {
  background: var(--primary-hover);
}