/* Phone mockup usando imagem real de celular */
.phone-mockup {
  position: relative;
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
}

.phone-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 19.5; /* Proporção típica de smartphone moderno */
  background-image: url('/img/phone-frame.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.4));
}

.phone-mockup.floating:hover .phone-frame {
  transform: translateY(-12px) scale(1.02);
  filter: drop-shadow(0 30px 80px rgba(0, 0, 0, 0.5));
}

/* Área da tela do celular (ajustado para centralização perfeita) */
.phone-screen {
  position: absolute;
  top: 2.5%;
  left: 5.5%;
  right: 5.5%;
  bottom: 2.5%;
  /* Fundo azul mais amistoso e moderno */
  background: linear-gradient(180deg, #0b5b9a 0%, #0a3f78 60%, #04283f 100%);
  border-radius: 45px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  color: #ffffff; /* fontes internas brancas por padrão */
  /* Borda preta simulando moldura da tela */
  border: 3px solid #000000;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
}

.phone-notch {
  display: none;
}

.phone-status-bar {
  display: none;
}

.status-time {
  font-weight: 600;
  font-size: 0.75rem;
}

.status-icons {
  display: flex;
  gap: 6px;
  font-size: 0.65rem;
}

.phone-content {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-y: auto;
}

.promo-badge {
  background: linear-gradient(135deg, #11C2E8, #30D06B);
  color: #fff;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.promo-image {
  width: 100%;
  max-width: 240px;
  margin-bottom: 16px;
  background: transparent;
  display: block;
}

.promo-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.promo-details {
  margin-top: 12px;
  color: #ffffff;
  text-align: center;
}

.promo-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  text-align: center;
  color: #ffffff;
}

.promo-subtitle {
  font-size: 0.85rem;
  margin: 0 0 10px;
  color: rgba(255,255,255,0.85);
  text-align: center;
}

.promo-value {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 8px 14px;
  border-radius: 12px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.value-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.8rem;
}

.value-amount {
  color: #ffd166; /* destaque dourado suave */
  font-weight: 800;
  font-size: 1.05rem;
}

.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #28c1ff, #1bb07a);
  color: #042027;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 14px;
  margin-bottom: 12px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 20px rgba(16,88,120,0.18);
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(16,88,120,0.2);
}

.promo-participants {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.phone-bottom-bar {
  height: 5px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  margin: 0 auto 10px;
  width: 40%;
}

/* Responsivo */
@media (max-width: 768px) {
  .phone-mockup {
    width: 280px;
  }
  
  .phone-content {
    padding: 16px;
  }
  
  .promo-title {
    font-size: 1rem;
  }
  
  .promo-btn {
    padding: 10px 20px;
    font-size: 0.8rem;
  }
}
