/* =========================================================
   DoeHoje - Design System & Stylesheet
   ========================================================= */

:root {
  /* Cores Principais */
  --primary: #10b981;
  --primary-hover: #059669;
  --primary-light: #ecfdf5;
  --primary-dark: #047857;
  --primary-glow: rgba(16, 185, 129, 0.35);

  --accent: #f59e0b;
  --accent-light: #fef3c7;
  
  /* Escala de Cinzas & Fundos */
  --bg-main: #0b1319;
  --bg-card: rgba(18, 28, 38, 0.95);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --bg-input: #13222d;
  --bg-input-border: rgba(255, 255, 255, 0.12);

  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-dark: #0f172a;

  /* Efeitos e Raios */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.6), 0 1px 2px rgba(255, 255, 255, 0.05) inset;
  --shadow-glow: 0 0 25px var(--primary-glow);

  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* Reset Básico */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Fundo Dinâmico com Orbs Brilhantes */
.page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  animation: float 20s infinite alternate ease-in-out;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #10b981 0%, rgba(16, 185, 129, 0) 70%);
  top: -100px;
  right: -100px;
}

.glow-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #0284c7 0%, rgba(2, 132, 199, 0) 70%);
  bottom: -50px;
  left: -100px;
  animation-delay: -10s;
}

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 30px) scale(1.1); }
}

.container {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header Centralizado */
.app-header {
  position: relative;
  z-index: 10;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--bg-card-border);
  backdrop-filter: blur(12px);
  background: rgba(11, 19, 25, 0.7);
}

.header-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-icon-svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  flex-shrink: 0;
}

.logo-text .highlight {
  color: var(--primary);
}

/* Conteúdo Principal */
.main-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 2rem 0 3rem;
  display: flex;
  align-items: center;
}

/* Card da Doação */
.donation-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  backdrop-filter: blur(16px);
  transition: var(--transition);
}

/* Media / Imagem da Campanha */
.campaign-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d1821;
}

.campaign-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.campaign-media-wrapper:hover .campaign-photo {
  transform: scale(1.03);
}

.media-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* Corpo da Campanha */
.campaign-body {
  padding: 1.75rem;
}

@media (max-width: 480px) {
  .campaign-body {
    padding: 1.25rem;
  }
}

.campaign-header {
  margin-bottom: 1.5rem;
}

.campaign-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.campaign-subtitle {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Meta e Barra de Progresso */
.goal-section {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}

.goal-stats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 0.75rem;
}

.stats-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.stats-value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.stats-value.highlight-amount {
  font-size: 1.45rem;
  color: var(--primary);
  font-weight: 800;
}

/* Barra de Progresso */
.progress-track {
  width: 100%;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  overflow: hidden;
  position: relative;
  margin-bottom: 0.75rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #10b981 0%, #34d399 50%, #38bdf8 100%);
  border-radius: var(--radius-full);
  position: relative;
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 12px var(--primary-glow);
}

.progress-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.goal-stats-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.supporters-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.heart-icon {
  width: 14px;
  height: 14px;
  color: #f43f5e;
}

.percentage-badge {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.divider {
  height: 1px;
  background: var(--bg-card-border);
  margin: 1.5rem 0;
}

/* Seção de Seleção de Valor */
.selection-section {
  display: flex;
  flex-direction: column;
}

.selection-title-group {
  margin-bottom: 1.15rem;
}

.selection-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.selection-subtitle {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Grade de Botões de Valor */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 440px) {
  .amount-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.amount-btn {
  background: var(--bg-input);
  border: 1.5px solid var(--bg-input-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 0.5rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  position: relative;
  transition: var(--transition);
  outline: none;
}

.amount-btn .btn-currency {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.amount-btn:hover {
  border-color: rgba(16, 185, 129, 0.5);
  background: #172a38;
  transform: translateY(-2px);
}

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

.amount-btn.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.1) 100%);
  border-color: var(--primary);
  box-shadow: 0 0 15px var(--primary-glow);
  color: #fff;
}

.amount-btn.active .btn-currency {
  color: #34d399;
}

/* Tag de Sugerido */
.amount-btn.is-popular {
  position: relative;
}

.popular-tag {
  position: absolute;
  top: -9px;
  right: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 0.1rem 0.45rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 5px rgba(245, 158, 11, 0.4);
}

/* Botão Personalizado */
.amount-btn.custom-btn {
  grid-column: span 1;
  font-size: 0.92rem;
  gap: 0.4rem;
}

@media (min-width: 441px) {
  .amount-btn.custom-btn {
    grid-column: span 2;
  }
}

.amount-btn.custom-btn .btn-icon-svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* Campo Personalizado com Máscara */
.custom-amount-container {
  background: rgba(16, 185, 129, 0.06);
  border: 1.5px dashed rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-md);
  padding: 1.15rem;
  margin-bottom: 1.25rem;
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.custom-input-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.6rem;
}

.custom-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-input);
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 0 1rem;
  box-shadow: 0 0 12px var(--primary-glow);
}

.input-currency-prefix {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-right: 0.5rem;
}

.custom-amount-input {
  width: 100%;
  background: transparent;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  padding: 0.6rem 0;
  outline: none;
}

.custom-amount-input::placeholder {
  color: var(--text-muted);
}

.custom-input-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

/* Resumo da Seleção */
.selection-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  margin-bottom: 1.25rem;
}

.summary-label {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.summary-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #34d399;
}

/* Botão Próximo */
.next-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border: none;
  border-radius: var(--radius-md);
  padding: 1.05rem 1.5rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.next-btn:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

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

.next-btn .arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.2s ease;
}

.next-btn:hover .arrow-icon {
  transform: translateX(4px);
}

/* Rodapé de Confiança */
.trust-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.trust-item svg {
  width: 14px;
  height: 14px;
  color: #34d399;
}

/* Footer Geral */
.app-footer {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  border-top: 1px solid var(--bg-card-border);
}

/* =========================================================
   Modal de Checkout & Pagamento PIX
   ========================================================= */

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 1rem;
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.checkout-modal-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: popIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-close-x {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-x svg {
  width: 16px;
  height: 16px;
}

.modal-close-x:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal-step-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.step-badge {
  display: inline-block;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.modal-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-subtitle strong {
  color: #34d399;
}

/* Formulário do Doador */
.donor-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: left;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-input {
  background: var(--bg-input);
  border: 1.5px solid var(--bg-input-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-glow);
}

.generate-pix-btn {
  margin-top: 0.5rem;
}

/* Passo 2: QR Code e PIX */
.pix-live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.6rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  background-color: #f59e0b;
  border-radius: 50%;
  box-shadow: 0 0 8px #f59e0b;
}

.qr-code-wrapper {
  background: #ffffff;
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 240px;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.pix-copy-section {
  text-align: left;
  margin-bottom: 1rem;
}

.pix-copy-box {
  display: flex;
  gap: 0.5rem;
  background: var(--bg-input);
  border: 1px solid var(--bg-input-border);
  border-radius: var(--radius-sm);
  padding: 0.4rem;
}

.pix-copy-input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: monospace;
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  background: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: var(--transition);
  white-space: nowrap;
}

.copy-btn:hover {
  background: var(--primary-hover);
}

.copy-btn.copied {
  background: #059669;
}

.copy-icon {
  width: 14px;
  height: 14px;
}

.pix-instructions {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  text-align: left;
  margin-bottom: 1rem;
}

.pix-instructions ol {
  padding-left: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.pix-instructions li {
  margin-bottom: 0.25rem;
}



/* Passo 3: Sucesso */
.success-icon-wrapper {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  border: 2px solid #10b981;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.25rem;
  box-shadow: 0 0 25px var(--primary-glow);
}

.success-icon-svg {
  width: 36px;
  height: 36px;
  color: #10b981;
}

.modal-text {
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  text-align: center;
}

.modal-text strong {
  color: #34d399;
}

.modal-subtext {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 1.5rem;
}

.finish-btn {
  margin-top: 0.5rem;
}

/* =========================================================
   Seção: Sobre o Promotor da Campanha
   ========================================================= */

.promoter-section {
  padding-top: 0.5rem;
}

.promoter-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.promoter-card {
  display: flex;
  gap: 1.35rem;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  align-items: flex-start;
}

.promoter-avatar-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  min-width: 90px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--primary) 0%, #38bdf8 100%);
  box-shadow: 0 4px 15px var(--primary-glow);
  flex-shrink: 0;
}

.promoter-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: #1e293b;
  border: 2px solid var(--bg-card);
}

.promoter-verified-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: #10b981;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid var(--bg-card);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.promoter-verified-badge .badge-icon {
  width: 13px;
  height: 13px;
}

.promoter-info {
  flex: 1;
}

.promoter-header-info {
  margin-bottom: 0.85rem;
}

.promoter-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

.promoter-role {
  display: inline-block;
  font-size: 0.78rem;
  color: #34d399;
  font-weight: 600;
  margin-top: 0.2rem;
}

.promoter-bio p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.promoter-bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 540px) {
  .promoter-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
  }

  .promoter-avatar-wrapper {
    width: 100px;
    height: 100px;
    min-width: 100px;
    margin-bottom: 0.5rem;
  }

  .promoter-bio p {
    text-align: left;
  }
}

