.horoscopo-hero {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.horoscopo-hero p {
  color: #5c6370;
  margin-bottom: 0;
}

.horoscopo-card {
  border: 1px solid rgba(27, 67, 50, 0.12);
  border-radius: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.horoscopo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(27, 67, 50, 0.12);
}

.horoscopo-card .emoji {
  line-height: 1;
}

.horoscopo-text {
  font-size: 1rem;
  line-height: 1.55;
  color: #2c5f2d;
}

.share-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  z-index: 1000;
}

.share-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.share-fab:active {
  transform: scale(0.95);
}

#horoscopoCanvas {
  display: none;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-overlay.active {
  display: flex;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: horoscopo-spin 1s linear infinite;
}

@keyframes horoscopo-spin {
  to { transform: rotate(360deg); }
}
