/* ============================
   VARIABLES & RESET
   ============================ */
:root {
  --pink-bg: #FFF9FB;
  --pink-soft: #FCE4EC;
  --pink-medium: #F8BBD0;
  --pink-accent: #EC407A;
  --pink-accent-dark: #D81B60;
  --pink-shadow: rgba(236, 64, 122, 0.15);
  --white: #FFFFFF;
  --text: #2D2D2D;
  --text-muted: #6B6B6B;
  --text-light: #9E9E9E;
  --success: #4CAF50;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 40px rgba(236, 64, 122, 0.12);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--pink-bg);
  line-height: 1.6;
  font-size: 16px;
  padding-bottom: 88px; /* espaço para o sticky CTA no mobile */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--pink-accent);
}

/* ============================
   LAYOUT
   ============================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 60px 0;
}

/* ============================
   TYPOGRAPHY
   ============================ */
h1 {
  font-size: clamp(2rem, 5.5vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

h2 {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--text);
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

p {
  color: var(--text-muted);
  line-height: 1.7;
}

.highlight {
  color: var(--pink-accent);
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-tag {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink-accent-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-subtitle {
  font-size: 1rem;
  margin-top: 8px;
}

.section-cta {
  text-align: center;
  margin-top: 32px;
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--pink-accent);
  color: var(--white);
  box-shadow: 0 6px 20px var(--pink-shadow);
}

.btn-primary:hover {
  background: var(--pink-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px var(--pink-shadow);
}

.btn-large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.btn-pulse {
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 20px var(--pink-shadow); }
  50% { box-shadow: 0 6px 20px var(--pink-shadow), 0 0 0 14px rgba(236, 64, 122, 0.06); }
}

/* ============================
   HERO
   ============================ */
.hero {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--pink-bg) 100%);
  padding: 56px 20px 72px;
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.hero-content {
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: var(--white);
  color: var(--pink-accent-dark);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: var(--text);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-note {
  font-size: 0.85rem;
  margin-top: 16px;
  color: var(--text-light);
}

.hero-image {
  max-width: 420px;
  margin: 0 auto;
  width: 100%;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

@media (min-width: 900px) {
  .hero {
    padding: 80px 20px 100px;
  }
  .hero-container {
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
  }
  .hero-content {
    text-align: left;
  }
  .hero-subtitle {
    margin-left: 0;
    margin-right: 0;
  }
}

/* ============================
   PROGRESS
   ============================ */
.progress-section {
  background: var(--pink-bg);
  padding: 40px 0;
}

.progress-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow-md);
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid var(--pink-soft);
}

.progress-header {
  margin-bottom: 24px;
}

.progress-header h2 {
  margin-bottom: 4px;
  font-size: 1.5rem;
}

.progress-header p {
  font-size: 0.95rem;
}

.progress-numbers {
  display: flex;
  justify-content: space-around;
  gap: 16px;
  margin-bottom: 18px;
}

.progress-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-stat .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  font-weight: 600;
}

.progress-stat .value {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.value-raised { color: var(--pink-accent); }
.value-goal { color: var(--text); }

.progress-bar {
  height: 14px;
  background: var(--pink-soft);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink-accent) 0%, var(--pink-accent-dark) 100%);
  border-radius: var(--radius-pill);
  transition: width 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.progress-percentage {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.progress-percentage span {
  font-weight: 700;
  color: var(--pink-accent);
}

/* ============================
   STORY
   ============================ */
.story {
  background: var(--white);
}

.story-content {
  max-width: 720px;
  margin: 0 auto;
}

.story-content p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.story-content p strong {
  color: var(--text);
}

.story-content .story-closing {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 0;
}

.story-content .story-closing strong {
  color: var(--pink-accent-dark);
}

/* ============================
   GALLERY
   ============================ */
.gallery {
  background: var(--pink-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

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

@media (min-width: 700px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

/* ============================
   DONATE (CONVERSION SECTION)
   ============================ */
.donate-section {
  background: linear-gradient(135deg, var(--pink-soft) 0%, #FCE4EC 100%);
  padding: 70px 0;
  scroll-margin-top: 20px;
}

.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--pink-medium);
}

.donate-header {
  margin-bottom: 24px;
  text-align: center;
}

.donate-badge {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink-accent-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.donate-header h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.donate-header p {
  font-size: 0.95rem;
}

/* ===== Formulário ===== */
.donate-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.amount-group {
  background: var(--pink-bg);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px dashed var(--pink-medium);
}

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

.amount-chip {
  background: var(--white);
  border: 2px solid var(--pink-soft);
  color: var(--text);
  padding: 12px 8px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.amount-chip:hover {
  border-color: var(--pink-accent);
  color: var(--pink-accent-dark);
}

.amount-chip.active {
  background: var(--pink-accent);
  border-color: var(--pink-accent);
  color: var(--white);
}

.amount-custom {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  transition: border-color 0.2s ease;
}

.amount-custom:focus-within {
  border-color: var(--pink-accent);
}

.amount-prefix {
  font-weight: 700;
  color: var(--pink-accent-dark);
  margin-right: 8px;
  font-size: 1rem;
}

.amount-custom input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  outline: none;
  min-width: 0;
}

.amount-help {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 10px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-field input {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
}

.form-field input:focus {
  border-color: var(--pink-accent);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-light);
}

.form-field textarea {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
  min-height: 76px;
  line-height: 1.5;
}

.form-field textarea:focus {
  border-color: var(--pink-accent);
}

.form-optional {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.78rem;
}

.form-help {
  font-size: 0.74rem;
  color: var(--text-light);
  text-align: right;
  margin: 4px 2px 0 0;
}

/* Checkbox "Doar anonimamente" */
.form-check {
  margin-bottom: 18px;
}

.check-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-dark);
  user-select: none;
}

.check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--pink-accent);
  cursor: pointer;
  flex-shrink: 0;
}

.check-help {
  text-align: left;
  margin: 6px 0 0 28px;
}

/* Campo de nome desabilitado quando a doação é anônima */
.form-field.is-disabled {
  opacity: 0.5;
}

.form-field input:disabled {
  cursor: not-allowed;
  background: var(--pink-bg, #fdf2f6);
}

.success-message {
  background: var(--pink-bg);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 0.92rem !important;
  color: var(--pink-accent-dark) !important;
  border: 1px dashed var(--pink-medium);
  margin: 10px auto 14px !important;
  max-width: 380px;
}

.form-error {
  font-size: 0.82rem;
  color: #D32F2F;
  font-weight: 500;
  min-height: 0;
  margin: 0;
}

.form-error:empty {
  display: none;
}

.form-error-general {
  text-align: center;
  margin-top: -4px;
}

.btn-full {
  width: 100%;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* O atributo [hidden] precisa vencer o display: inline-flex acima,
   senão os dois estados do botão aparecem sobrepostos. */
.btn-text[hidden],
.btn-loading[hidden] {
  display: none;
}

.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.form-disclaimer {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 4px;
  line-height: 1.5;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (min-width: 520px) {
  .amount-quick {
    grid-template-columns: repeat(6, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===== QR Code result ===== */
/* ============================
   PAGAMENTO PIX — TELA CHEIA
   ============================ */
.pix-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  background: radial-gradient(circle at 50% 0%, rgba(216, 27, 96, 0.38), rgba(40, 12, 24, 0.62));
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  backdrop-filter: blur(10px) saturate(130%);
  animation: overlay-in 0.3s ease forwards;
}

/* O atributo [hidden] precisa vencer o display: flex acima. */
.pix-overlay[hidden] {
  display: none;
}

body.modal-open {
  overflow: hidden;
}

.pix-overlay-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 28px 28px;
  box-shadow: 0 30px 80px rgba(40, 12, 24, 0.45);
  overflow: hidden;
  animation: card-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pix-overlay-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--pink-medium), var(--pink-accent), var(--pink-accent-dark));
}

.pix-overlay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: var(--pink-bg);
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, color 0.2s ease, transform 0.25s ease;
}

.pix-overlay-close:hover {
  background: var(--pink-soft);
  color: var(--pink-accent-dark);
  transform: rotate(90deg);
}

@keyframes overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes card-in {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .pix-overlay,
  .pix-overlay-card {
    animation: none;
  }
}

.pix-result {
  text-align: center;
}

.pix-result-header {
  margin-bottom: 18px;
}

.pix-amount-badge {
  display: inline-block;
  background: var(--pink-soft);
  color: var(--pink-accent-dark);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.pix-amount-badge strong {
  color: var(--pink-accent-dark);
}

.pix-result-header h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pix-result-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.pix-qr-wrap {
  background: var(--white);
  padding: 12px;
  border: 2px solid var(--pink-soft);
  border-radius: var(--radius-md);
  display: inline-block;
  margin: 0 auto 18px;
  max-width: 260px;
}

.pix-qr-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
}

.pix-code-box {
  background: var(--pink-bg);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.pix-code-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-align: center;
}

.pix-code-box textarea {
  width: 100%;
  min-height: 80px;
  background: var(--white);
  border: 1px solid var(--pink-soft);
  border-radius: var(--radius-sm);
  padding: 10px;
  font-family: 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.78rem;
  color: var(--text);
  resize: none;
  margin-bottom: 10px;
  word-break: break-all;
  outline: none;
}

.pix-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-bg);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 14px;
}

.pix-status-dot {
  width: 10px;
  height: 10px;
  background: var(--pink-accent);
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.pix-expire {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.pix-expire span {
  font-weight: 700;
  color: var(--pink-accent-dark);
  font-variant-numeric: tabular-nums;
}

.btn-link {
  background: none;
  border: none;
  color: var(--pink-accent);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  text-decoration: underline;
}

.btn-link:hover {
  color: var(--pink-accent-dark);
}

/* ===== Sucesso ===== */
.pix-success {
  text-align: center;
  padding: 12px 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 12px;
  animation: success-bounce 0.6s ease-out;
}

@keyframes success-bounce {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.pix-success h3 {
  font-size: 1.4rem;
  color: var(--success);
  margin-bottom: 12px;
}

.pix-success p {
  font-size: 1rem;
  margin-bottom: 12px;
}

.success-note {
  color: var(--text-muted);
  font-size: 0.9rem !important;
}

.success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 20px;
}

/* ============================
   DONOR MESSAGES
   ============================ */
.messages {
  background: var(--white);
}

.messages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.message-card {
  background: var(--pink-bg);
  border-radius: var(--radius-md);
  padding: 20px;
  border-left: 4px solid var(--pink-accent);
  box-shadow: var(--shadow-sm);
}

.message-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.message-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-accent), var(--pink-accent-dark));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.message-meta {
  display: flex;
  flex-direction: column;
}

.message-meta strong {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.message-amount {
  font-size: 0.85rem;
  color: var(--pink-accent);
  font-weight: 600;
  margin-top: 2px;
}

.message-text {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-muted);
}

@media (min-width: 700px) {
  .messages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .messages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ============================
   FINAL
   ============================ */
.final {
  background: linear-gradient(135deg, var(--pink-soft) 0%, var(--pink-bg) 100%);
  text-align: center;
}

.final-content {
  max-width: 600px;
  margin: 0 auto;
}

.final-content h2 {
  margin-bottom: 10px;
}

.final-content > p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.final-note {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================
   STICKY CTA (mobile)
   ============================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 12px 16px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  z-index: 100;
  border-top: 1px solid var(--pink-soft);
  transition: transform 0.3s ease;
}

.sticky-cta .btn {
  width: 100%;
}

@media (min-width: 900px) {
  .sticky-cta {
    display: none;
  }
  body {
    padding-bottom: 0;
  }
}

/* ============================
   FOOTER
   ============================ */
.footer {
  padding: 24px 20px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--pink-soft);
}

.footer p {
  font-size: 0.85rem;
}

/* ============================
   TOAST (copy feedback)
   ============================ */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--success);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1100; /* acima do modal de pagamento (z-index 1000) */
  pointer-events: none;
}

.toast.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

@media (min-width: 900px) {
  .toast {
    bottom: 32px;
  }
}

/* ============================
   REDUCED MOTION
   ============================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
