@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --bg-color: #0b0512;
  --text-color: #ffffff;
  --text-muted: #b5a9c2;
  --accent: #ff758c; 
  --accent-secondary: #ff7eb3;
  --gradient-primary: linear-gradient(135deg, #ff7eb3 0%, #ff758c 50%, #e1306c 100%);
  --gradient-bg: radial-gradient(circle at center, #1b0c2a 0%, #07030a 100%);
  --card-bg: rgba(20, 12, 28, 0.6);
  --card-border: rgba(255, 126, 179, 0.15);
  --input-bg: rgba(255, 255, 255, 0.05);
  --input-border: rgba(255, 255, 255, 0.08);
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Plus Jakarta Sans', sans-serif; 
}

body { 
  background: var(--bg-color);
  background-image: var(--gradient-bg);
  color: var(--text-color); 
  min-height: 100vh;
  overflow-x: hidden; 
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Estilos do Formulário (index.php) */
.container { 
  width: 100%;
  max-width: 550px; 
  margin: 40px auto; 
  padding: 40px 30px; 
  background: var(--card-bg); 
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: 24px; 
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 40px rgba(255, 117, 140, 0.05);
  position: relative;
  z-index: 10;
}

/* Decorativos de Fundo no Form */
.container::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 150px;
  height: 150px;
  background: var(--accent);
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.container::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 150px;
  height: 150px;
  background: #7928ca;
  filter: blur(100px);
  opacity: 0.15;
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

h1 { 
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  text-align: center; 
  margin-bottom: 30px; 
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

form { 
  display: flex; 
  flex-direction: column; 
  gap: 20px; 
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.input-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.input-wrapper .input-icon {
  position: absolute;
  left: 16px;
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 5;
}

input[type="text"], 
input[type="date"], 
input[type="number"], 
select, 
textarea { 
  width: 100%;
  padding: 14px 16px 14px 48px; 
  border-radius: 12px; 
  border: 1px solid var(--input-border); 
  background: var(--input-bg);
  color: white;
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg fill='rgba(255,255,255,0.6)' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 20px;
}

input[type="text"]:focus, 
input[type="date"]:focus, 
input[type="number"]:focus, 
select:focus, 
textarea:focus { 
  outline: none;
  border-color: var(--accent-secondary);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 15px rgba(255, 126, 179, 0.25);
}

.input-wrapper input:focus + .input-icon,
.input-wrapper select:focus + .input-icon,
.input-wrapper textarea:focus + .input-icon {
  color: var(--accent-secondary);
  filter: drop-shadow(0 0 5px rgba(255, 126, 179, 0.4));
}

textarea { 
  resize: vertical; 
  min-height: 100px;
}

.input-wrapper.textarea-wrapper {
  align-items: flex-start;
}

.input-wrapper.textarea-wrapper .input-icon {
  top: 16px;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: invert(0.65) sepia(1) saturate(5) hue-rotate(315deg);
  opacity: 0.8;
  transition: opacity 0.2s;
}

input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Custom File Upload */
.file-upload-wrapper {
  position: relative;
  width: 100%;
}

.file-upload-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-upload-trigger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border: 2px dashed rgba(255, 126, 179, 0.3);
  border-radius: 14px;
  background: rgba(255, 126, 179, 0.02);
  text-align: center;
  transition: all 0.3s ease;
  gap: 8px;
}

.file-upload-trigger svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--accent-secondary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.3s;
}

.file-upload-trigger span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.file-upload-trigger .file-name {
  font-size: 12px;
  color: var(--accent-secondary);
  font-weight: 600;
  word-break: break-all;
  margin-top: 4px;
}

.file-upload-wrapper:hover .file-upload-trigger {
  border-color: var(--accent-secondary);
  background: rgba(255, 126, 179, 0.06);
  box-shadow: 0 0 15px rgba(255, 126, 179, 0.1);
}

.file-upload-wrapper:hover .file-upload-trigger svg {
  transform: translateY(-2px);
}

/* Photo Preview & Date Counter */
.date-counter {
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(255, 126, 179, 0.08);
  border: 1px solid rgba(255, 126, 179, 0.2);
  border-radius: 12px;
  color: var(--accent-secondary);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(255, 126, 179, 0.05);
}

.photo-preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 20px;
  border: 2px dashed rgba(255, 126, 179, 0.4);
  background: rgba(255, 126, 179, 0.03);
  border-radius: 14px;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.photo-preview-container img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 8px 20px rgba(255, 117, 140, 0.35);
}

.btn-remove-photo {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-remove-photo:hover {
  background: rgba(255, 75, 75, 0.15);
  color: #ff4b4b;
  border-color: rgba(255, 75, 75, 0.3);
}

/* Form Section Layout */
.form-section {
  margin-top: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.form-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-secondary);
  margin-bottom: 16px;
  text-align: left;
  letter-spacing: 0.5px;
}

.form-row-three {
  display: flex;
  gap: 12px;
}

.form-row-three .form-group {
  flex: 1;
  min-width: 0;
}

.form-row-three input[type="number"] {
  padding-left: 42px;
}

.form-row-three .input-wrapper .input-icon {
  left: 12px;
  width: 18px;
  height: 18px;
}

/* Quiz Style */
.quiz-question {
  margin-bottom: 18px;
  text-align: left;
}

.quiz-question p {
  font-size: 14px;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
}

.quiz-options {
  display: flex;
  gap: 12px;
}

.quiz-option-label {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--input-border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  transition: all 0.3s ease;
  user-select: none;
}

.quiz-option-label input[type="radio"] {
  display: none;
}

.quiz-option-label:hover {
  background: rgba(255, 126, 179, 0.05);
  border-color: rgba(255, 126, 179, 0.3);
  color: white;
}

/* Style checked label */
.quiz-option-label:has(input[type="radio"]:checked) {
  background: rgba(255, 126, 179, 0.15);
  border-color: var(--accent-secondary);
  color: white;
  box-shadow: 0 0 12px rgba(255, 126, 179, 0.2);
}

/* Photos Grid Preview System */
.photos-preview-grid-container {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  background: rgba(20, 12, 28, 0.5);
  border: 2px dashed rgba(255, 126, 179, 0.3);
  border-radius: 16px;
  text-align: center;
}

.photos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.photo-grid-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: #000;
}

.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-remove-grid-photo {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.btn-remove-grid-photo:hover {
  background: #ff4b4b;
  transform: scale(1.1);
}

.btn-add-more-photos {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-more-photos:hover {
  background: rgba(255, 126, 179, 0.1);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
}

/* Music Search System */
.music-search-container {
  width: 100%;
  position: relative;
}

#music-search-container .input-wrapper input {
  padding-right: 90px;
}

.btn-search-music {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  color: white;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.btn-search-music:hover {
  box-shadow: 0 4px 12px rgba(255, 117, 140, 0.3);
  transform: translateY(-50%) scale(1.02);
}

.btn-search-music:disabled {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  cursor: not-allowed;
  box-shadow: none;
  transform: translateY(-50%);
}

.music-results-list {
  margin-top: 10px;
  max-height: 270px;
  overflow-y: auto;
  background: rgba(11, 5, 18, 0.4);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.music-results-list::-webkit-scrollbar {
  width: 4px;
}
.music-results-list::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 2px;
}

.music-loading, .music-no-results {
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.music-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.music-result-item:hover {
  background: rgba(255, 126, 179, 0.08);
}

.result-cover {
  width: 44px;
  height: 44px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.result-info {
  flex-grow: 1;
  text-align: left;
  min-width: 0;
}

.result-title {
  font-size: 14px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-artist {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 2px;
}

.result-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-preview-audio {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 126, 179, 0.3);
  background: rgba(255, 126, 179, 0.08);
  color: var(--accent-secondary);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  line-height: 1;
}

.btn-preview-audio:hover, .btn-preview-audio.playing {
  background: var(--accent-secondary);
  color: #121212;
  border-color: var(--accent-secondary);
  box-shadow: 0 0 10px rgba(255, 126, 179, 0.3);
}

.btn-select-track {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-select-track:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(255, 117, 140, 0.3);
}

/* Selected Music Widget (Spotify-like Card) */
.selected-music-widget {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 16px;
  background: rgba(20, 12, 28, 0.8);
  border: 1.5px solid var(--accent);
  border-radius: 16px;
  position: relative;
  box-shadow: 0 10px 30px rgba(255, 117, 140, 0.15);
  overflow: hidden;
}

.selected-music-widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(255, 126, 179, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.selected-music-disc {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, #2c2c2c 30%, #000 31%, #000 40%, #2c2c2c 41%, #111 100%);
  opacity: 0.15;
  pointer-events: none;
}

#selected-music-cover {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-music-info {
  flex-grow: 1;
  text-align: left;
  min-width: 0;
}

.selected-music-name {
  font-size: 15px;
  font-weight: 800;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selected-music-artist {
  font-size: 12px;
  color: var(--accent-secondary);
  font-weight: 600;
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-play-selected-preview {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 117, 140, 0.35);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-play-selected-preview:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(255, 117, 140, 0.5);
}

.btn-play-selected-preview svg {
  width: 18px;
  height: 18px;
}

.btn-remove-selected-music {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  padding: 4px;
  transition: all 0.2s ease;
  line-height: 1;
}

.btn-remove-selected-music:hover {
  color: #ff4b4b;
  transform: scale(1.1);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.disc-spinning #selected-music-cover {
  animation: spin 6s linear infinite;
}

/* Botões */
button[type="submit"] { 
  background: var(--gradient-primary); 
  color: white; 
  cursor: pointer; 
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700; 
  letter-spacing: 0.5px;
  padding: 16px;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(255, 117, 140, 0.35);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
  margin-top: 10px;
}

button[type="submit"]:hover { 
  transform: translateY(-2px) scale(1.01); 
  box-shadow: 0 12px 30px rgba(255, 117, 140, 0.5);
}

button[type="submit"]:active {
  transform: translateY(0) scale(1.0);
}

.btn-bot { 
  background: rgba(255, 255, 255, 0.03); 
  color: var(--accent-secondary); 
  cursor: pointer; 
  font-size: 13px; 
  font-weight: 600; 
  border: 1px dashed rgba(255, 126, 179, 0.4); 
  border-radius: 10px;
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 8px; 
  padding: 12px;
  transition: all 0.3s ease;
}

.btn-bot:hover { 
  background: rgba(255, 126, 179, 0.08); 
  border-color: var(--accent-secondary);
  color: white;
}

.btn-bot svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* --- Estilos da Retrospectiva (Slides / Stories) --- */
.retro-container { 
  position: relative; 
  width: 100vw; 
  height: 100vh; 
  overflow: hidden; 
  background: #050209; 
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Indicadores de Progresso do Stories */
.progress-container {
  position: absolute;
  top: 20px;
  left: 5%;
  width: 90%;
  display: flex;
  gap: 6px;
  z-index: 100;
  pointer-events: none;
}

.progress-track {
  height: 4px;
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #ffffff;
  border-radius: 2px;
  transition: width 0.1s linear;
}

/* Zonas de clique para navegação */
.click-zone {
  position: absolute;
  top: 0;
  height: 100%;
  width: 30%;
  z-index: 90;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.click-zone-left {
  left: 0;
}

.click-zone-right {
  right: 0;
}

/* Efeito de Partículas em Segundo Plano */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  opacity: 0.6;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 126, 179, 0.5);
  border-radius: 50%;
  filter: blur(1px);
  animation: floatUp 8s infinite linear;
}

@keyframes floatUp {
  0% {
    transform: translateY(105vh) translateX(0) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) translateX(50px) scale(1.2);
    opacity: 0;
  }
}

/* Slides */
.slide { 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  opacity: 0; 
  visibility: hidden; 
  text-align: center; 
  padding: 40px 20px;
  z-index: 5;
}

.slide-content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  z-index: 10;
}

/* Tipografia dos Slides */
.slide h2 { 
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem; 
  font-weight: 800;
  line-height: 1.2; 
  text-shadow: 0 4px 15px rgba(0,0,0,0.6); 
  letter-spacing: -0.5px;
}

.slide-1 h2 {
  background: linear-gradient(to right, #ff7eb3, #ff758c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slide-2 h2 {
  color: #ffffff;
}

.slide h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.slide p {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
  max-width: 90%;
  margin: 0 auto;
}

/* Imagem de casal */
.slide-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 117, 140, 0.25);
  border: 3px solid rgba(255, 255, 255, 0.1);
  transform: scale(0.95);
}

.slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
}

/* Widget de Música Premium */
.music-card, .music-card-dynamic {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 20px;
  border-radius: 50px;
  margin-top: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.vinyl-disc, .vinyl-disc-dynamic {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #2c2c2c 30%, #000 31%, #000 40%, #2c2c2c 41%, #111 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
  animation: spinVinyl 4s linear infinite;
}

.vinyl-disc::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--accent-secondary);
  border-radius: 50%;
}

.vinyl-disc-dynamic .vinyl-cover {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vinyl-disc-dynamic::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  z-index: 10;
}

.music-details {
  text-align: left;
}

.music-details p.music-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.music-details p.music-subtitle {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

/* Floating Audio Control on retro.php */
.music-float-control {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 110;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.music-float-control:hover {
  transform: scale(1.1);
  background: rgba(255, 126, 179, 0.15);
  border-color: var(--accent-secondary);
  color: var(--accent-secondary);
  box-shadow: 0 0 15px rgba(255, 126, 179, 0.4);
}

.music-float-control svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@keyframes spinVinyl {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Slide 6 (Mensagem final) */
.slide-6 blockquote {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  line-height: 1.4;
  color: #fff;
  max-width: 500px;
  font-style: italic;
  position: relative;
  padding: 10px;
}

.slide-6 blockquote::before {
  content: '“';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  top: -40px;
  left: -20px;
  opacity: 0.3;
}

.slide-6 blockquote::after {
  content: '”';
  font-size: 5rem;
  color: var(--accent);
  position: absolute;
  bottom: -60px;
  right: -20px;
  opacity: 0.3;
}

.slide-6 .final-celebration {
  margin-top: 30px;
  font-size: 1.4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.2));
}

/* Slide 1 - Calendar Card */
.calendar-card {
  background: white;
  width: 160px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 117, 140, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  transform: rotate(-3deg);
  animation: swingCalendar 3s ease-in-out infinite alternate;
}

.calendar-header {
  background: var(--accent);
  color: white;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 8px 10px;
  letter-spacing: 1px;
}

.calendar-body {
  flex-grow: 1;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #121212;
}

.calendar-day {
  font-size: 4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1;
  color: #2b0825;
}

.calendar-weekday {
  font-size: 11px;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  margin-top: 4px;
}

.calendar-footer {
  background: #e9ecef;
  color: #343a40;
  font-size: 13px;
  font-weight: 700;
  padding: 4px;
  border-top: 1px dashed #dee2e6;
}

@keyframes swingCalendar {
  0% { transform: rotate(-3deg); }
  100% { transform: rotate(3deg); }
}

/* Slide 2 - Relationship Counter Box */
.relationship-counter-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  margin: 15px 0;
  width: 90%;
  max-width: 320px;
}

.counter-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 700;
}

.counter-number {
  font-size: 4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 6px 0;
  line-height: 1;
  filter: drop-shadow(0 4px 10px rgba(255, 117, 140, 0.25));
}

.time-breakdown {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-secondary);
  letter-spacing: 0.5px;
}

/* Slide 3 - Wrapped Stats Grid */
.stats-wrapped-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  width: 100%;
  max-width: 500px;
  margin-top: 15px;
}

.stat-wrapped-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.stat-wrapped-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.stat-val {
  font-size: 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-lbl {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Slide 4 - Quiz Results Panel */
.quiz-result-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.quiz-result-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.quiz-result-q {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.quiz-result-a {
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.quiz-result-a::before {
  content: '👤';
  font-size: 14px;
}

.quiz-result-a.highlight-user {
  color: var(--accent-secondary);
}

.quiz-result-a.highlight-partner {
  color: #48cae4;
}

/* Slide 5 - Gallery Stack */
.gallery-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.gallery-img.active {
  opacity: 1;
  z-index: 2;
}

@media (max-width: 480px) {
  .stats-wrapped-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .stat-wrapped-card {
    flex-direction: row;
    justify-content: flex-start;
    gap: 20px;
    padding: 15px 20px;
  }
  .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
  .stat-val {
    font-size: 2.2rem;
    margin-bottom: 0;
  }
  .stat-lbl {
    font-size: 11px;
  }
}

/* Responsividade */
@media (max-width: 600px) {
  .container {
    margin: 15px auto;
    width: calc(100% - 24px);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  }
  
  h1 {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .form-group label {
    font-size: 13px;
  }

  input[type="text"], 
  input[type="date"], 
  input[type="number"], 
  select, 
  textarea { 
    padding: 12px 14px 12px 44px;
    font-size: 14px;
  }

  .input-wrapper .input-icon {
    left: 14px;
    width: 18px;
    height: 18px;
  }
  
  .input-wrapper.textarea-wrapper .input-icon {
    top: 14px;
  }
  
  button[type="submit"] {
    padding: 14px;
    font-size: 15px;
  }

  .btn-bot {
    font-size: 12px;
    padding: 10px;
  }

  .form-row-three {
    flex-direction: column;
    gap: 12px;
  }

  .quiz-options {
    flex-direction: column;
    gap: 8px;
  }

  .photos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .slide h2 {
    font-size: 2.0rem;
  }
  
  .slide h3 {
    font-size: 2.5rem;
  }
  
  .slide-6 blockquote {
    font-size: 1.3rem;
  }
}
