/* 
 * ESTILIZAÇÃO PREMIUM DE LUXO - TEMA ESCURO E DOURADO (IMOBILIÁRIA)
 * Padrão Mobile-First, com animações ricas, Glassmorphism, Floating Labels e Card Radios.
 */

:root {
  --bg-dark: #070708;
  --bg-card: rgba(15, 15, 17, 0.82);
  --border-gold: rgba(212, 175, 55, 0.16);
  --border-gold-active: rgba(212, 175, 55, 0.8);
  --gold: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-metallic: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA8F39 100%);
  --gold-soft: rgba(212, 175, 55, 0.04);
  --text-light: #F4F4F5;
  --text-muted: #8E8E93;
  --error: #FF453A;
  --error-bg: rgba(255, 69, 58, 0.06);
  --success: #30D158;
  --success-bg: rgba(48, 209, 88, 0.06);
  
  --font-title: 'Outfit', sans-serif;
  --font-serif: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  
  --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  --blur: blur(16px);
}

/* Reset Geral */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Ambient Lights (Luzes de fundo esfumaçadas de alta classe) */
.ambient-light {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.12;
}

.light-gold-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, rgba(212,175,55,0) 70%);
  top: -150px;
  right: -100px;
}

.light-gold-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #AA8F39 0%, rgba(170,143,57,0) 70%);
  bottom: -100px;
  left: -100px;
}

.light-dark-1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.02);
  top: 30%;
  left: 20%;
  opacity: 0.05;
}

/* Layout Geral */
.app-container {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 16px 80px 16px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Header & Banner Monumental */
.app-header {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  position: relative;
}

.banner-container {
  position: relative;
  width: 100%;
  background-color: #0E0E10;
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.banner-fallback-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  width: 100%;
  min-height: 150px;
  background: radial-gradient(circle at center, #1c1c1c 0%, #020202 100%);
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(7, 7, 8, 0.2) 0%, rgba(7, 7, 8, 0.8) 100%);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-crest {
  margin-bottom: 12px;
  animation: crestFloat 4s ease-in-out infinite;
}

@keyframes crestFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-4px) scale(1.02); }
}

.banner-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.title-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 6px 0;
  width: 100%;
}

.title-separator .line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, rgba(212,175,55,0) 0%, var(--gold) 100%);
}

.title-separator .line:last-child {
  background: linear-gradient(90deg, var(--gold) 0%, rgba(212,175,55,0) 100%);
}

.title-separator .diamond {
  color: var(--gold);
  font-size: 10px;
}

.banner-subtitle {
  font-family: var(--font-title);
  color: var(--text-light);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.75;
}

/* Stepper Card de Luxo */
.stepper-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 24px 16px;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.stepper {
  display: flex;
  justify-content: space-between;
  list-style: none;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Conectores metálicos */
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  z-index: -1;
  transition: var(--transition);
}

.step-item.active:not(:last-child)::after {
  background: var(--gold);
}

.step-item.completed:not(:last-child)::after {
  background: var(--gold);
}

.step-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #111113;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--text-muted);
  font-size: 13px;
  position: relative;
  transition: var(--transition);
}

.step-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--gold);
  filter: blur(10px);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.step-item.active .step-number {
  background-color: #070708;
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.2);
}

.step-item.active .step-glow {
  opacity: 0.25;
}

.step-item.completed .step-number {
  background: var(--gold-metallic);
  border-color: var(--gold);
  color: #0c0c0e;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
}

.step-label {
  font-size: 10px;
  margin-top: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-align: center;
  transition: var(--transition);
}

.step-item.active .step-label {
  color: var(--gold);
}

.step-item.completed .step-label {
  color: var(--text-light);
}

/* Formulário de Luxo */
.luxury-form {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: 20px;
  padding: 30px 20px;
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.65);
  transition: var(--transition);
}

.form-step {
  display: none;
  animation: stepFadeIn 0.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.form-step.active {
  display: block;
}

@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.step-header {
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 12px;
}

.step-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gold-metallic);
}

.step-title {
  font-family: var(--font-title);
  font-size: 21px;
  color: var(--text-light);
  font-weight: 700;
}

.step-description {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--gold);
  font-weight: 700;
  margin: 32px 0 12px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.border-top-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 36px;
  padding-top: 28px;
}

/* ==========================================================================
   FLOATING LABELS (Inputs Elegantes com Labels Flutuantes)
   ========================================================================== */
.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.floating-group {
  position: relative;
  padding-top: 15px;
}

.floating-group input {
  width: 100%;
  min-height: 48px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 10px 0;
  transition: var(--transition);
  border-radius: 0; /* Reset border radius para estilo border-bottom */
}

.floating-group label {
  position: absolute;
  top: 22px;
  left: 0;
  font-size: 15px;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition);
  font-weight: 500;
}

/* Linha de foco dourada em baixo */
.input-focus-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-metallic);
  transition: var(--transition);
}

/* Comportamento de Flutuar ao Focar ou Digitar */
.floating-group input:focus,
.floating-group input:not(:placeholder-shown) {
  outline: none;
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label {
  top: 0px;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.5px;
  font-weight: 600;
}
.floating-group input:focus ~ .input-focus-line {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* Estilo de Dropdowns Personalizados */
.custom-select-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* Estilo de Dropdowns Customizados Internos com Contraste Perfeito */
.custom-select-native {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  min-height: 48px;
  background-color: #121214;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
  user-select: none;
}

.custom-select-trigger::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  transition: var(--transition);
}

.select-wrapper.open .custom-select-trigger {
  border-color: var(--gold);
  background-color: var(--gold-soft);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.select-wrapper.open .custom-select-trigger::after {
  transform: rotate(180deg);
}

/* Painel de Opções */
.custom-select-options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #161619;
  border: 1.5px solid var(--gold);
  border-radius: 8px;
  margin-top: 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  z-index: 100;
  max-height: 220px;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: var(--transition);
}

.select-wrapper.open .custom-select-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.custom-select-option {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #fff; /* Contraste 100% perfeito no tema escuro */
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.custom-select-option:last-child {
  border-bottom: none;
}

.custom-select-option:hover {
  background-color: var(--gold);
  color: #0c0c0e; /* Dourado de fundo com letra escura para contraste máximo */
  font-weight: 600;
}

.custom-select-option.selected {
  color: var(--gold);
  background-color: rgba(212, 175, 55, 0.08);
}

/* Fallback de Validação para Custom Select */
.select-wrapper.user-invalid-fallback .custom-select-trigger {
  border-color: var(--error) !important;
  background-color: var(--error-bg) !important;
}

/* Dicas e Erros */
.field-hint {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 10px;
  line-height: 1.3;
}

.error-msg {
  display: none;
  font-size: 11px;
  color: var(--error);
  font-weight: 600;
  margin-top: 6px;
  animation: errSlide 0.25s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes errSlide {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Validação Baseada no Estado do Navegador com Fallback */
input:user-invalid,
select:user-invalid {
  border-color: var(--error) !important;
  background-color: var(--error-bg) !important;
}

input:user-invalid + .error-msg,
select:user-invalid + .error-msg {
  display: block;
}

.user-invalid-fallback {
  border-color: var(--error) !important;
  background-color: var(--error-bg) !important;
}

/* ==========================================================================
   CARDS DE MULTIPLA ESCOLHA PREMIUM (Bolas/Cartões Substituindo Radios)
   ========================================================================== */
.premium-radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 6px;
}

.premium-radio-card {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
}

.premium-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.radio-card-content {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 20px;
  border-radius: 12px;
  min-height: 58px;
  transition: var(--transition);
}

.radio-card-bullet {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  transition: var(--transition);
}

.radio-card-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-metallic);
  transition: var(--transition);
}

.radio-card-text {
  display: flex;
  flex-direction: column;
}

.radio-card-text .title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.radio-card-text .desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Hover e Estados Selecionados */
.premium-radio-card:hover .radio-card-content {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(212, 175, 55, 0.3);
}

.premium-radio-card input[type="radio"]:checked + .radio-card-content {
  background-color: var(--gold-soft);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.12);
}

.premium-radio-card input[type="radio"]:checked + .radio-card-content .radio-card-bullet {
  border-color: var(--gold);
}

.premium-radio-card input[type="radio"]:checked + .radio-card-content .radio-card-bullet::after {
  transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   ÁREAS DE UPLOAD DE ARQUIVOS (Dropzones Estilizadas com Glow)
   ========================================================================== */
.dropzone {
  position: relative;
  width: 100%;
  min-height: 120px;
  border: 1px dashed rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition);
}

.dropzone-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0);
  transition: var(--transition);
  pointer-events: none;
}

.dropzone:hover,
.dropzone.dragover {
  background-color: var(--gold-soft);
  border-color: var(--gold);
}

.dropzone:hover .dropzone-border-glow,
.dropzone.dragover .dropzone-border-glow {
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.15);
}

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

.dropzone-icon {
  font-size: 26px;
  margin-bottom: 8px;
  text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.dropzone-text {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Lista de Arquivos Selecionados */
.file-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  animation: dropSlide 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes dropSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.file-item-name {
  color: var(--text-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 85%;
  font-weight: 500;
}

.file-item-remove {
  background: none;
  border: none;
  color: var(--error);
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  padding: 4px;
  transition: var(--transition);
}

.file-item-remove:hover {
  transform: scale(1.2);
}

/* Guia de Selfie com Avatar */
.selfie-guide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 24px;
  gap: 20px;
}

.selfie-avatar-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.selfie-guidelines {
  flex: 1;
}

.selfie-guidelines h3 {
  font-family: var(--font-title);
  color: var(--gold);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}

.selfie-guidelines ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.selfie-guidelines li {
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.selfie-guidelines li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Botões Magníficos */
.button-group {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.btn {
  min-height: 50px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--gold-metallic);
  color: #0c0c0e;
  flex: 2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  flex: 1;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-gold {
  background: var(--gold-metallic);
  color: #0c0c0e;
  width: 100%;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-gold:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  transform: translateY(-1px);
}

/* ==========================================================================
   OVERLAY DE CARREGAMENTO MONUMENTAL
   ========================================================================== */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(7, 7, 8, 0.96);
  z-index: 1000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 24px;
}

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

.spinner-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 440px;
  gap: 20px;
  animation: stepFadeIn 0.4s ease-out forwards;
}

.luxury-spinner {
  width: 70px;
  height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spin-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(212, 175, 55, 0.08);
  border-top: 2px solid var(--gold);
  border-radius: 50%;
  animation: luxurySpin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spin-crest {
  font-size: 22px;
  animation: crestPulse 1.8s ease-in-out infinite;
}

@keyframes luxurySpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes crestPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

.loading-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
}

.loading-subtitle {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   TELA DE SUCESSO FINAL MONUMENTAL
   ========================================================================== */
.success-screen-card {
  text-align: center;
  padding: 50px 30px;
  animation: stepFadeIn 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.crest-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.animate-crest {
  animation: float 4s ease-in-out infinite;
}

.success-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.success-intro {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 20px;
}

.success-body {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.success-whatsapp-banner {
  margin-top: 28px;
  border: 1px dashed var(--border-gold);
  border-radius: 12px;
  background-color: var(--gold-soft);
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  max-width: 90%;
}

.banner-inner .icon {
  font-size: 24px;
  flex-shrink: 0;
}

.banner-inner .text {
  font-size: 12px;
  color: var(--gold-light);
  font-weight: 600;
  line-height: 1.4;
}

/* ==========================================================================
   RESPONSIVIDADE (Telas Grandes e Desktops)
   ========================================================================== */
@media (min-width: 769px) {
  .app-container {
    padding-top: 60px;
    gap: 36px;
  }
  
  /* Remove a altura mínima fixa do banner no desktop para manter a proporção da imagem */
  .banner-container {
    min-height: auto;
  }
  
  .banner-title {
    font-size: 32px;
  }
  
  .stepper-card {
    padding: 30px 40px;
  }
  
  .step-label {
    font-size: 11px;
    letter-spacing: 1.5px;
  }
  
  .luxury-form {
    padding: 50px 40px;
  }
  
  .step-title {
    font-size: 24px;
  }
  
  .premium-radio-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .selfie-guide-card {
    flex-direction: row;
    padding: 30px;
    gap: 30px;
  }
}
