/* Casa Aura — home "Em breve" */

.home-page {
  --bg-body: #faf9f7;
  --text-main: #231f20;
  --text-muted: #6b7280;
  --accent: #d4af37;
  --accent-secondary: #b8860b;
  --accent-soft: rgba(212, 175, 55, 0.12);
  min-height: 100vh;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 175, 55, 0.08), var(--bg-body) 55%);
  color: var(--text-main);
  font-family: "Inter", system-ui, sans-serif;
}

.home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 4rem 1.25rem 2.5rem;
  text-align: center;
}

.home__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 1.75rem;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.home__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--accent-secondary);
  margin-bottom: 1.25rem;
}

.home h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.home__lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.65;
  margin-bottom: 3rem;
}

.home__guides {
  width: 100%;
  max-width: 560px;
}

.home__guides-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.home__search {
  width: 100%;
  margin-bottom: 1.25rem;
}

.home__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home__search-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-main);
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home__search-input::placeholder {
  color: var(--text-muted);
}

.home__search-input:hover {
  border-color: rgba(212, 175, 55, 0.35);
}

.home__search-input:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.home__search-empty {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.home__grid {
  display: grid;
  gap: 1rem;
}

.home__card--filtered-out {
  display: none !important;
}

.home__card {
  display: block;
  padding: 1.1rem 1.25rem;
  border-radius: 0.75rem;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: inherit;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home__card-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home__card-thumb {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.03);
  padding: 0.25rem;
}

.home__card-text {
  min-width: 0;
}

.home__card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.12);
}

.home__card-text h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  color: var(--accent-secondary);
  margin-bottom: 0.35rem;
}

.home__card-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.home__footer {
  margin-top: 3rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--accent);
}

.footer-social-icon {
  width: 1.15em;
  height: 1.15em;
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .home__logo {
    width: 96px;
    height: 96px;
  }
}
