/* ==========================================================================
   Carol Lopes - Arte & Desenhos | Estilos Principais
   Paleta: Off-White, Rosa Floral e Roxo Delicado
   ========================================================================== */

:root {
  /* Fundo Delicado com Toque Lilás / Violeta */
  --bg-primary: #F7F3FA;
  --bg-secondary: #FAF7FC;
  --bg-card: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.9);
  
  --text-main: #2D252E;
  --text-muted: #6B5E6E;
  --text-subtle: #988C9B;

  /* Cores de Destaque - Rosa e Roxo */
  --pink-light: #FCE7F3;
  --pink-primary: #EC4899;
  --pink-dark: #DB2777;
  --purple-light: #F3E8FF;
  --purple-primary: #A855F7;
  --purple-dark: #9333EA;

  /* Gradientes */
  --gradient-accent: linear-gradient(135deg, #F472B6 0%, #A855F7 100%);
  --gradient-hover: linear-gradient(135deg, #EC4899 0%, #9333EA 100%);
  --gradient-soft: linear-gradient(135deg, #FDF2F8 0%, #F5EBFF 100%);
  --gradient-glow: linear-gradient(135deg, rgba(244, 114, 182, 0.25) 0%, rgba(168, 85, 247, 0.25) 100%);

  /* Estados de Sucesso / Pix Verde */
  --emerald-bg: #ECFDF5;
  --emerald-border: #34D399;
  --emerald-primary: #10B981;
  --emerald-dark: #059669;
  --gradient-emerald: linear-gradient(135deg, #10B981 0%, #059669 100%);

  /* Bordas e Sombras Suaves */
  --border-delicate: #EFE6F5;
  --border-accent: rgba(168, 85, 247, 0.22);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-subtle: 0 4px 20px -2px rgba(138, 115, 150, 0.09);
  --shadow-card: 0 10px 30px -5px rgba(150, 110, 160, 0.12);
  --shadow-hover: 0 16px 36px -4px rgba(168, 85, 247, 0.22);
  --shadow-btn: 0 8px 24px -4px rgba(236, 72, 153, 0.35);
}

/* Reset Básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 16px calc(60px + env(safe-area-inset-bottom, 0px)) 16px;
  position: relative;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 12% 15%, rgba(244, 114, 182, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 88% 82%, rgba(168, 85, 247, 0.15) 0%, transparent 50%);
}

/* Container Principal */
.app-container {
  width: 100%;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

/* Header & Perfil */
.profile-header {
  text-align: center;
  margin-bottom: 24px;
}

.avatar-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  margin: 0 auto 16px auto;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFFFFF;
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.2);
  background: var(--gradient-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--gradient-accent);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border: 2px solid white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.artist-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.artist-subtitle {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.intro-box {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-subtle);
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 14.5px;
  color: var(--text-muted);
  text-align: center;
}

.dream-highlight {
  display: block;
  margin-top: 8px;
  color: var(--pink-dark);
  font-weight: 600;
  font-size: 14px;
}

.sulfite-note-header {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(236, 72, 153, 0.2);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  background: rgba(243, 232, 255, 0.45);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  text-align: center;
}

/* ==========================================================================
   Caixa do PIX Interativa (Transição para Verde)
   ========================================================================== */
.pix-card {
  background: var(--bg-card);
  border: 2px solid rgba(236, 72, 153, 0.25);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
  transition: border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pix-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
  transition: all 0.35s ease;
}

/* Estado quando copiado: Caixa fica verde com brilho e efeito vibrante */
.pix-card.copied {
  background-color: #ECFDF5 !important;
  border-color: #10B981 !important;
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25), 0 14px 32px -4px rgba(16, 185, 129, 0.3) !important;
  transform: translateY(-2px);
  animation: pulseCardGreen 0.5s ease-out;
}

.pix-card.copied::before {
  background: linear-gradient(90deg, #34D399, #10B981, #059669) !important;
}

.pix-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pix-title-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pix-icon {
  width: 22px;
  height: 22px;
  color: var(--pink-primary);
  transition: color 0.3s ease;
}

.pix-card.copied .pix-icon {
  color: #059669 !important;
}

.pix-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

.pix-badge-status {
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--pink-light);
  color: var(--pink-dark);
  transition: all 0.3s ease;
}

.pix-card.copied .pix-badge-status {
  background: #D1FAE5 !important;
  color: #065F46 !important;
  border: 1px solid #34D399;
}

/* Caixa com Chave + Botão */
.pix-input-group {
  display: flex;
  align-items: center;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 6px 6px 6px 14px;
  gap: 8px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

.pix-card.copied .pix-input-group {
  background: #FFFFFF !important;
  border-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15) !important;
}

.pix-key-text {
  flex: 1;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-main);
  word-break: break-all;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: -0.2px;
  -webkit-user-select: all;
  user-select: all;
  cursor: pointer;
}

.btn-copy-pix {
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.btn-copy-pix:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.35);
}

.btn-copy-pix:active {
  transform: scale(0.95);
}

/* Botão Verde quando copiado */
.pix-card.copied .btn-copy-pix,
.btn-copy-pix.is-copied {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%) !important;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45) !important;
  animation: bounceCopied 0.45s ease-out;
}

@keyframes pulseCardGreen {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

@keyframes bounceCopied {
  0% { transform: scale(0.95); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Valores e Informações Sulfite */
.pix-details {
  border-top: 1px dashed var(--border-delicate);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pix-suggested-value {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.45;
}

.pix-suggested-value strong {
  color: var(--purple-dark);
  font-size: 15px;
}

/* Destaque sutil para a frase após o valor */
.pix-flexible-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(236, 72, 153, 0.08);
  color: #BE185D;
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(236, 72, 153, 0.25);
  width: fit-content;
  transition: all 0.3s ease;
}

.pix-card.copied .pix-flexible-note {
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
  border-color: rgba(16, 185, 129, 0.3);
}

/* ==========================================================================
   Formulário Principal
   ========================================================================== */
.order-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-delicate);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.form-title-section {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-delicate);
}

.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.label-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-subtle);
}

.form-input {
  width: 100%;
  background: var(--bg-primary);
  border: 1.5px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 16px; /* 16px evita zoom automático no iOS / Safari */
  color: var(--text-main);
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  font-family: inherit;
}

/* Estado de Erro - Borda e Fundo Vermelho */
.form-input.input-error,
.form-textarea.input-error,
.receipt-upload-zone.input-error {
  border-color: #EF4444 !important;
  background-color: #FEF2F2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.18) !important;
  animation: shakeError 0.35s ease-out;
}

.field-error-msg {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #DC2626;
  font-size: 12.5px;
  font-weight: 600;
  margin-top: 6px;
  animation: fadeInError 0.25s ease-out;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

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

.form-textarea {
  min-height: 95px;
  resize: vertical;
  line-height: 1.5;
}

.form-input:focus {
  background: #FFFFFF;
  border-color: var(--pink-primary);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.12);
}

.form-input::placeholder {
  color: var(--text-subtle);
}

/* Upload de Comprovante de Pagamento */



/* Tipo de Desenho - Cards Selecionáveis */
.drawing-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
}

.drawing-type-option {
  position: relative;
  cursor: pointer;
}

.drawing-type-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drawing-type-card {
  background: var(--bg-primary);
  border: 1.5px solid var(--border-delicate);
  border-radius: var(--radius-md);
  padding: 14px 8px;
  text-align: center;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 96px;
  height: 100%;
  user-select: none;
}

.drawing-type-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(168, 85, 247, 0.08);
  color: var(--purple-primary);
  transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 2px;
  font-size: 22px;
  line-height: 1;
}

.drawing-type-icon svg {
  width: 24px;
  height: 24px;
  transition: all 0.28s ease;
}

.drawing-type-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.25;
  transition: color 0.25s ease;
}

.drawing-type-option input:checked + .drawing-type-card {
  background: var(--gradient-soft);
  border-color: var(--purple-primary);
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.18);
  transform: translateY(-2px);
}

.drawing-type-option input:checked + .drawing-type-card .drawing-type-icon {
  background: var(--gradient-accent);
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.35);
}

.drawing-type-option input:checked + .drawing-type-card .drawing-type-title {
  color: var(--purple-dark);
  font-weight: 700;
}

.drawing-type-option input:focus-visible + .drawing-type-card {
  outline: 2px solid var(--purple-primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.15);
}

.upload-zone:focus-visible,
.receipt-upload-zone:focus-visible {
  outline: 2px solid var(--purple-primary);
  outline-offset: 2px;
}

.carousel-slide:focus-visible {
  outline: 2px solid var(--pink-primary);
  outline-offset: 2px;
}

/* ==========================================================================
   Upload de Imagens de Referência
   ========================================================================== */
.upload-zone {
  display: block;
  border: 2px dashed rgba(236, 72, 153, 0.35);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
}

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

.upload-zone > *:not(.native-file-input) {
  pointer-events: none;
}

.upload-zone:hover, .upload-zone.dragover {
  background: #FFF5F9;
  border-color: var(--pink-primary);
  transform: scale(0.99);
}

.upload-zone-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  background: var(--pink-light);
  color: var(--pink-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-zone-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 3px;
}

.upload-zone-sub {
  font-size: 12px;
  color: var(--text-subtle);
}

/* Miniaturas de Pré-visualização */
.previews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.preview-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--border-delicate);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  animation: scaleIn 0.3s ease-out;
  background: #fff;
}

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

.btn-remove-img {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.65);
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn-remove-img:hover {
  background: #EF4444;
}

/* ==========================================================================
   Botão de Envio & Animações
   ========================================================================== */
.btn-submit {
  width: 100%;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 12px;
}

.btn-submit:hover {
  background: var(--gradient-hover);
  box-shadow: 0 10px 28px rgba(236, 72, 153, 0.45);
  transform: translateY(-2px);
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.spinner {
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.8s linear infinite;
  display: none;
}

/* Footer Delicado */
.app-footer {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-subtle);
  margin-top: 20px;
}

.app-footer a {
  color: var(--pink-primary);
  text-decoration: none;
  font-weight: 600;
}

/* ==========================================================================
   Modal de Sucesso
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(45, 39, 39, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.show .modal-card {
  transform: translateY(0) scale(1);
}

.modal-icon-success {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--emerald-bg);
  color: var(--emerald-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 34px;
}

.modal-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.modal-btn-close {
  width: 100%;
  background: var(--gradient-accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Toast de Alerta */
.toast-container {
  position: fixed;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: #2D2727;
  color: #FFFFFF;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: toastIn 0.3s ease-out;
}

/* ==========================================================================
   Animações
   ========================================================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

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

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

/* ==========================================================================
   Carrossel de Exemplos de Desenhos (Mobile Peek 20% + 3 Bolinhas)
   ========================================================================== */
.carousel-section {
  margin-bottom: 24px;
}

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

.carousel-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
  -webkit-overflow-scrolling: touch;
  padding: 4px 2px 8px 2px;
}

.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel-slide {
  flex: 0 0 80%; /* 80% do slide -> 20% do próximo visível! */
  max-width: 80%;
  scroll-snap-align: start;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border-delicate);
  background: var(--bg-card);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.carousel-slide:active {
  transform: scale(0.98);
}

.carousel-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #F3E8FF;
  overflow: hidden;
}

.carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.carousel-slide:hover .carousel-img-wrap img {
  transform: scale(1.04);
}

.carousel-badge {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  background: rgba(45, 37, 46, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: -0.1px;
}

/* Indicadores de 3 Bolinhas */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(168, 85, 247, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-dot.active {
  width: 24px;
  height: 8px;
  background: var(--gradient-accent);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.35);
}

/* Otimizações Mobile */
@media (max-width: 480px) {
  body {
    padding: 16px 12px calc(40px + env(safe-area-inset-bottom, 0px)) 12px;
  }

  .artist-title {
    font-size: 23px;
  }

  .intro-box {
    padding: 14px;
    font-size: 13.5px;
  }

  .pix-card {
    padding: 16px;
  }

  .pix-key-text {
    font-size: 12px;
  }

  .btn-copy-pix {
    padding: 8px 12px;
    font-size: 12px;
  }

  .order-form-card {
    padding: 20px 16px;
  }

  .drawing-type-card {
    padding: 12px 6px;
  }

  .drawing-type-icon {
    font-size: 24px;
  }

  .drawing-type-title {
    font-size: 11.5px;
  }
}
