/* home.css — Estilos exclusivos da página inicial */

/* Container principal da home */
.home-container {
  position: relative;
  display: flex;
  height: auto;
  min-height: 100vh;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px var(--container-padding) 128px;
  overflow-x: hidden;
}

/* Elementos decorativos de fundo */
.home-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.4;
}

.home-blob-primary {
  position: absolute;
  top: -96px;
  left: -96px;
  width: 384px;
  height: 384px;
  border-radius: 9999px;
  background-color: rgba(244, 184, 196, 0.2);
  filter: blur(64px);
}

.home-blob-secondary {
  position: absolute;
  bottom: -96px;
  right: -96px;
  width: 384px;
  height: 384px;
  border-radius: 9999px;
  background-color: rgba(255, 218, 216, 0.1);
  filter: blur(64px);
}

/* Conteúdo principal centralizado */
.home-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero icon container */
.home-hero-icon {
  margin-bottom: var(--spacing-lg);
  padding: 24px;
  background-color: var(--surface-container-lowest);
  border-radius: var(--radius-xl);
}

.home-hero-circle {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(244, 184, 196, 0.3);
  border-radius: 9999px;
  color: var(--secondary);
}

/* Headline */
.home-headline {
  width: 100%;
  text-align: center;
  margin-bottom: var(--spacing-md);
}

.home-title {
  color: var(--on-surface);
  letter-spacing: -0.025em;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  padding: 0 16px 12px;
}

.home-subtitle {
  color: var(--on-surface-variant);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 4px 16px 12px;
}

/* Botão de ação */
.home-actions {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  width: 100%;
  padding: 0 16px;
  align-items: center;
}

.home-btn-play {
  width: 100%;
  max-width: 320px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 9999px;
  height: 56px;
  padding: 0 32px;
  background-color: var(--primary);
  color: var(--on-primary);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.015em;
  border: none;
  transition: all 0.2s ease;
}

.home-btn-play:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.home-btn-play:active {
  transform: scale(0.98);
}

/* Fotos decorativas flutuantes */
.home-floating-memories {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.home-polaroid {
  position: absolute;
  background: white;
  padding: 4px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--surface-container-highest);
  display: none;
}

.home-polaroid-img {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-polaroid-1 {
  top: 15%;
  left: 10%;
  transform: rotate(-6deg);
  width: 64px;
  height: 80px;
}

.home-polaroid-1 .home-polaroid-img {
  height: 56px;
  background-color: var(--surface-container-highest);
  color: rgba(128, 81, 92, 0.3);
}

.home-polaroid-2 {
  bottom: 20%;
  right: 12%;
  transform: rotate(12deg);
  width: 80px;
  height: 96px;
}

.home-polaroid-2 .home-polaroid-img {
  height: 72px;
  background-color: var(--surface-container-highest);
  color: rgba(162, 60, 63, 0.2);
}

@media (min-width: 640px) {
  .home-polaroid { display: block; }
}

/* Rodapé */
.home-footer {
  margin-top: var(--spacing-xl);
  text-align: center;
  padding: 0 var(--container-padding);
}

.home-footer-text {
  font-size: 0.75rem;
  color: var(--outline);
  font-weight: 400;
}
