/* ============================================================
   EXTRAS 20260721g — Revisão Consolidada Final
   Círculo pulsante doação · Form participação · WA real · GPS
   ============================================================ */

.hero { position: relative; }

/* ─── HERO DONATION CIRCLE — LADO ESQUERDO DO HERO ─────────
   Desktop: absoluto à esquerda, espelhando o card INCA.
   Tablet: canto superior-esquerdo, menor.
   Mobile: fluxo inline, entre data-strip e CTA.
   Pulsação suave. Respeita prefers-reduced-motion.
   ─────────────────────────────────────────────────────────── */
.hero-doacao-seal {
  position: absolute;
  left: clamp(1rem, 4vw, 3.2rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;

  width: clamp(142px, 13.5vw, 180px);
  aspect-ratio: 1;

  background: rgba(255,255,255,0.97);
  border-radius: 50%;
  padding: 10px 8px;

  box-shadow:
    0 10px 40px rgba(0,0,0,.40),
    0 0 0 3px rgba(233,30,140,.35),
    0 0 0 7px rgba(233,30,140,.12);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;

  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;

  animation: doacao-pulse 3s ease-in-out infinite;
  transition: box-shadow var(--transition,0.25s);
}

.hero-doacao-seal:hover { box-shadow: 0 14px 48px rgba(0,0,0,.50), 0 0 0 5px rgba(233,30,140,.5), 0 0 0 10px rgba(233,30,140,.18); }

@keyframes doacao-pulse {
  0%, 100% {
    box-shadow:
      0 10px 40px rgba(0,0,0,.40),
      0 0 0 3px rgba(233,30,140,.35),
      0 0 0 7px rgba(233,30,140,.10);
  }
  50% {
    box-shadow:
      0 12px 44px rgba(0,0,0,.46),
      0 0 0 6px rgba(233,30,140,.45),
      0 0 0 14px rgba(233,30,140,.16);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-doacao-seal {
    animation: none !important;
    box-shadow: 0 10px 40px rgba(0,0,0,.40), 0 0 0 3px rgba(233,30,140,.35) !important;
  }
}

.doacao-icon {
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 1px;
}
.doacao-titulo {
  font-family: 'Montserrat', sans-serif;
  font-size: .50rem;
  font-weight: 900;
  color: var(--rosa);
  text-transform: uppercase;
  letter-spacing: .09em;
  line-height: 1.15;
}
.doacao-valor {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--rosa-dark);
  line-height: 1;
}
.doacao-separador {
  font-size: .40rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .06em;
  line-height: 1.2;
  opacity: .7;
}
.doacao-brinde {
  font-size: .44rem;
  color: var(--verde);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.3;
  max-width: 88%;
}
.doacao-cta-btn {
  margin-top: 6px;
  background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 4px 11px;
  font-size: .55rem;
  font-weight: 800;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(233,30,140,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.doacao-cta-btn:hover { transform: scale(1.07); box-shadow: 0 4px 16px rgba(233,30,140,.4); }

/* Tablet (641–900px): canto superior-esquerdo, menor */
@media (min-width: 641px) and (max-width: 900px) {
  .hero-doacao-seal {
    width: 116px;
    top: 1.2rem;
    left: .8rem;
    transform: none;
    padding: 6px;
    gap: 2px;
  }
  .doacao-valor { font-size: 1rem; }
  .doacao-icon  { font-size: 1.2rem; }
}

/* Mobile (≤640px): fluxo inline, antes do CTA, circular centrado */
@media (max-width: 640px) {
  .hero-doacao-seal {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    z-index: 3;
    width: 148px;
    height: 148px;
    aspect-ratio: 1;
    margin: .2rem auto .7rem;
    padding: 9px;
    gap: 2px;
  }
}

/* ─── SEÇÃO EU VOU PARTICIPAR — formulário foto/nome/msg ────
   Dentro da .pre-evento-section, abaixo do CTA principal.
   ─────────────────────────────────────────────────────────── */
.participacao-card {
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 20px;
  padding: 1.6rem 1.4rem;
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.participacao-card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: .35rem;
  text-align: center;
}
.participacao-card-sub {
  font-size: .84rem;
  color: rgba(255,255,255,.78);
  text-align: center;
  margin-bottom: 1.1rem;
  line-height: 1.55;
}

/* Aviso informativo dentro do card escuro */
.participacao-card .demo-notice {
  background: rgba(255,255,255,.94);
  border-color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
  font-size: .8rem;
}

/* Labels dentro do card escuro */
.participacao-card .form-group { margin-bottom: 1rem; }
.participacao-card .form-group label {
  color: rgba(255,255,255,.88);
  font-size: .85rem;
}
.participacao-card .form-group input,
.participacao-card .form-group textarea {
  background: rgba(255,255,255,.94);
  border: 1.5px solid rgba(255,255,255,.4);
  color: var(--dark);
}
.participacao-card .form-group input:focus,
.participacao-card .form-group textarea:focus {
  border-color: var(--rosa-light);
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(233,30,140,.15);
}
.participacao-card .form-group textarea {
  width: 100%;
  border-radius: 10px;
  padding: .7rem 1rem;
  font-size: .93rem;
  font-family: 'Open Sans', sans-serif;
  resize: vertical;
  min-height: 80px;
}

/* Área de upload de foto */
.foto-upload-area {
  position: relative;
  border: 2px dashed rgba(255,255,255,.42);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  background: rgba(255,255,255,.08);
  transition: background .2s, border-color .2s;
  min-height: 72px;
}
.foto-upload-area:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.65); }
.foto-upload-area input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  z-index: 2;
}
.foto-upload-label {
  font-size: .83rem;
  color: rgba(255,255,255,.75);
  pointer-events: none;
  line-height: 1.5;
}
.foto-preview-img {
  max-width: 100%;
  max-height: 160px;
  border-radius: 10px;
  margin: .5rem auto 0;
  object-fit: contain;
  display: block;
  border: 2px solid rgba(255,255,255,.35);
}

/* Checkbox de autorização */
.auth-check-label {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.80);
  margin: .9rem 0 1.1rem;
  line-height: 1.55;
  cursor: pointer;
}
.auth-check-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--rosa-light);
  cursor: pointer;
}

/* Botão enviar participação */
.btn-participacao-submit {
  width: 100%;
  padding: .9rem;
  border: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  background: var(--white);
  color: var(--rosa);
  box-shadow: 0 4px 20px rgba(0,0,0,.22);
  transition: transform .2s, box-shadow .2s;
}
.btn-participacao-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,.32); }

/* Estado de sucesso após envio */
.participacao-ok {
  background: rgba(255,255,255,.16);
  border: 1.5px solid rgba(255,255,255,.32);
  border-radius: 14px;
  padding: 1.2rem;
  color: #fff;
  font-size: .90rem;
  line-height: 1.65;
  text-align: center;
  margin-bottom: 1rem;
}
.participacao-ok strong { color: #B5F7B0; }

.btn-participacao-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: #25D366;
  color: #fff !important;
  border-radius: 50px;
  padding: .7rem 1.6rem;
  font-weight: 700;
  font-size: .88rem;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(37,211,102,.38);
  transition: transform .2s, box-shadow .2s;
  width: 100%;
  text-align: center;
}
.btn-participacao-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.48); }

/* ─── MODAL DOAÇÃO ──────────────────────────────────────────
   Fluxo demonstrativo para doação voluntária R$25,00
   ─────────────────────────────────────────────────────────── */
.modal-header-doacao {
  background: linear-gradient(135deg, #d63178, #a5005e) !important;
}
.doacao-modal-valor-badge {
  background: linear-gradient(135deg, var(--rosa), var(--rosa-dark));
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  border-radius: 16px;
  padding: .9rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.doacao-modal-valor-badge small {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  opacity: .85;
  margin-bottom: .3rem;
}
.doacao-modal-valor-badge .stock-note {
  display: block;
  font-size: .6rem;
  opacity: .78;
  font-weight: 400;
  margin-top: .3rem;
  font-style: italic;
}
.doacao-product-row {
  display: flex;
  align-items: center;
  gap: .8rem;
  background: var(--verde-pale);
  border: 1px solid rgba(46,125,50,.18);
  border-radius: 12px;
  padding: .75rem 1rem;
  margin-bottom: 1.1rem;
  font-size: .85rem;
  color: var(--verde);
  font-weight: 600;
  line-height: 1.5;
}
.doacao-product-row img {
  width: 52px;
  height: 68px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0,0,0,.14);
}

/* ─── WHATSAPP MODAL — NÚMERO REAL Wilson Barbosa ───────────
   (31) 99259-4953 · Botões de ação rápida pré-preenchidos
   ─────────────────────────────────────────────────────────── */
.wa-numero-card {
  background: linear-gradient(135deg, #e8f5e9, #f0fff4);
  border: 1.5px solid #a5d6a7;
  border-radius: 14px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  text-align: center;
}
.wa-numero-display {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #1B5E20;
  letter-spacing: .03em;
  margin-bottom: .18rem;
}
.wa-numero-nome {
  font-size: .82rem;
  color: var(--verde);
  font-weight: 700;
  margin-bottom: 0;
}
.wa-actions-titulo {
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: .7rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.wa-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
  margin-bottom: 1.1rem;
}
.wa-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  background: var(--white);
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: .7rem .5rem;
  cursor: pointer;
  text-decoration: none;
  color: var(--dark);
  font-size: .76rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  transition: border-color .2s, background .2s, transform .2s;
  line-height: 1.35;
}
.wa-action-btn:hover {
  border-color: #25D366;
  background: #f0fff4;
  color: #1B5E20;
  transform: translateY(-2px);
}
.wa-action-btn .wa-btn-icon { font-size: 1.4rem; line-height: 1; }

.wa-direct-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background: #25D366;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: .9rem 1.5rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  cursor: pointer;
  text-decoration: none !important;
  width: 100%;
  box-shadow: 0 4px 16px rgba(37,211,102,.32);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.wa-direct-link:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.44); }

@media (max-width: 380px) {
  .wa-actions-grid { grid-template-columns: 1fr; }
  .doacao-modal-valor-badge { font-size: 1.8rem; }
}

/* ========================================================
   MASCOTE SECTION — dupla FISIOT + Bellamama
   ======================================================== */
.mascote-section {
  background: linear-gradient(135deg, #fff0f5 0%, #f0fff4 100%);
  padding: 2.5rem 1.5rem;
  border-top: 2px solid rgba(232,0,101,.08);
  border-bottom: 2px solid rgba(39,171,96,.08);
}

/* Layout geral: par de mascotes + texto/CTA */
.mascote-inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Linha com os dois mascotes lado a lado */
.mascote-pair {
  display: flex;
  align-items: flex-end;   /* alinha bases */
  gap: 1.4rem;
  flex-shrink: 0;
}

/* Cada mascote individual */
.mascote-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
}

/* Caixa de imagem — tamanho fixo, fundo branco para imagens com transparência */
.mascote-img-wrap {
  width: 180px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(232,0,101,.18);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagem preenche o espaço sem distorcer, mostra inteira */
.mascote-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

/* Rótulo de nome sob cada mascote (FISIOT e Bellamama) */
.mascote-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rosa, #e80065);
  background: rgba(232,0,101,.08);
  border: 1px solid rgba(232,0,101,.18);
  border-radius: 20px;
  padding: .18rem .7rem;
}

/* Variante FISIOT — verde saúde */
.mascote-name--fisiot {
  color: var(--verde, #27ab60);
  background: rgba(39,171,96,.10);
  border-color: rgba(39,171,96,.22);
}

.mascote-texto {
  flex: 1 1 200px;
  text-align: center;
}
.mascote-frase {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.btn-mascote-cta {
  display: inline-block;
  background: var(--rosa, #e80065);
  color: #fff;
  padding: .65rem 1.6rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: .95rem;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(232,0,101,.25);
}
.btn-mascote-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(232,0,101,.35); }

/* Partner logo images — contain, no distortion */
.partner-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Responsivo ────────────────────────────────────────── */

/* Tablet estreito: imagens menores mas mantém lado a lado */
@media (max-width: 640px) {
  .mascote-img-wrap { width: 140px; height: 155px; }
  .mascote-pair { gap: 1rem; }
}

/* Mobile muito pequeno: empilha o par sobre o texto */
@media (max-width: 400px) {
  .mascote-img-wrap { width: 120px; height: 132px; }
  .mascote-pair { gap: .7rem; }
  .mascote-inner { gap: 1.2rem; }
}
