
    /* VARIÁVEIS DE CORES E ESPAÇAMENTOS */
    :root {
      --primary: #013a7f;
      --primary-light: #e6f0fa;
      --primary-dark: #012a5e;
      --accent: #f59e0b;
      --accent-hover: #d97706;
      --text-main: #334155;
      --text-muted: #64748b;
      --bg-body: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --success: #10b981;
      --danger: #ef4444;
      --radius: 12px;
      --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    }

    /* RESET BÁSICO */
    * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
    body { background-color: var(--bg-body); color: var(--text-main); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; height: auto; display: block; border-radius: 8px; }
    a { text-decoration: none; color: inherit; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    /* LAYOUT MOBILE-FIRST COMPACTO */
    .container { width: 100%; max-width: 600px; margin: 0 auto; padding: 0 1rem; background: var(--white); min-height: 100vh; }
    
    /* HEADER */
    .header { display: flex; justify-content: center; align-items: center; padding: 0.3rem 0; background: var(--white); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--border); }
    .header img { max-height: 100px; }
    /* Trava o Header no topo absoluto da tela e garante que ele fique na frente de tudo */


    /* BOTÕES */
    .btn-primary { background-color: var(--accent); color: var(--white); width: 100%; padding: 1rem; border-radius: var(--radius); font-size: 1.1rem; font-weight: 700; text-align: center; display: flex; justify-content: center; align-items: center; gap: 8px; transition: background 0.3s; box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4); white-space: nowrap; flex-wrap: nowrap; }
    .btn-primary:hover { background-color: var(--accent-hover); }
    
    /* TAGS E ALERTAS */
    .tag-seguranca { display: inline-flex; align-items: center; gap: 6px; background: #ecfdf5; color: #047857; padding: 6px 12px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin: 1rem 0; border: 1px solid #a7f3d0; white-space: nowrap; }

    
       /* ══ ORG CARD ══ */
    .org-card {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      align-items: center;
      background: var(--primary-light);
      border: 1px solid #c7dbf5;
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 1.5rem;
    }

    .org-col {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 0.8rem 1rem;
    }

    .org-col-icon {
      width: 32px; height: 32px;
      background: var(--primary);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--white);
    }

    .org-col-info { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
    .org-col-label {
      font-size: 0.65rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .org-col-value {
      font-size: 0.73rem;
      font-weight: 700;
      color: var(--primary-dark);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .org-divider { background: #c7dbf5; height: 100%; }

    /* badge verificada */
    .org-badge {
      grid-column: 1 / -1;
      border-top: 1px solid #c7dbf5;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 0.45rem;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--primary);
      background: var(--white);
      letter-spacing: 0.02em;
    }
    .org-badge svg { color: var(--success); flex-shrink: 0; }
    /* SEÇÕES COMUNS */
    .section-title { font-size: 1.3rem; color: var(--primary); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
    .text-content p { margin-bottom: 1rem; color: var(--text-main); font-size: 1rem; }
    .text-content b { color: var(--primary-dark); }

    /* SLIDER COMPACTO MOBILE */
    .slider-container { width: 100%; overflow: hidden; position: relative; margin-bottom: 1.5rem; }
    .slider-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 10px; padding-bottom: 10px; scrollbar-width: none; }
    .slider-track::-webkit-scrollbar { display: none; }
    .slide-item { flex: 0 0 85%; scroll-snap-align: center; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 10px; text-align: center; }
    .slide-item img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 10px; }
    .slide-info h4 { color: var(--primary); margin-bottom: 2px; }
    .slide-info span { font-size: 0.85rem; color: var(--text-muted); }

    /* IMPACTO (SEM VOCÊ / COM VOCÊ) */
    .impact-list { list-style: none; margin-bottom: 1.5rem; }
    .impact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; padding: 12px; border-radius: 8px; background: #fef2f2; border: 1px solid #fecaca; }
    .impact-item.pos { background: #f0fdf4; border: 1px solid #bbf7d0; }
    .impact-icon { flex-shrink: 0; display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; color: white; }
    .icon-neg { background: var(--danger); }
    .icon-pos { background: var(--success); }
    .impact-text { font-size: 0.85rem; line-height: 1.3; }

    /* PIX COPIA E COLA */
    .pix-area { background: var(--primary-light); padding: 1.5rem; border-radius: var(--radius); text-align: center; margin: 2rem 0; border: 1px dashed var(--primary); }
    .pix-area h3 { color: var(--primary-dark); margin-bottom: 10px; }
    .pix-input { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 6px; text-align: center; font-family: monospace; font-size: 1rem; margin-bottom: 10px; background: var(--white); color: var(--text-muted); }
    
    /* TRANSPARÊNCIA FINANCEIRA */
    .finance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 1.5rem; }
    .finance-card { background: var(--white); border: 1px solid var(--border); padding: 0.8rem 0.5rem; border-radius: var(--radius); text-align: center; display: flex; flex-direction: column; justify-content: center; }
    .finance-card span { font-size: 1.5rem; margin-bottom: 4px; }
    .finance-card strong { font-size: 0.8rem; color: var(--primary); line-height: 1.2; }

    /* FAQ */
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-question { width: 100%; text-align: left; padding: 1rem 0; font-weight: 600; color: var(--primary-dark); display: flex; justify-content: space-between; align-items: center; }
    .faq-answer { display: none; padding-bottom: 1rem; font-size: 0.9rem; color: var(--text-muted); }
    .faq-item.active .faq-answer { display: block; }
    .faq-item.active .faq-question svg { transform: rotate(180deg); }

    /* MODAL DOAÇÃO */
    .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); display: none; justify-content: center; align-items: flex-end; z-index: 100; }
    .modal-overlay.active { display: flex; }
    .modal-content { background: var(--white); width: 100%; max-width: 600px; border-radius: 20px 20px 0 0; padding: 1.5rem; animation: slideUp 0.3s ease; max-height: 90vh; overflow-y: auto; }
    @keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
    .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
    .close-modal { font-size: 1.5rem; font-weight: bold; color: var(--text-muted); }
    .grid-valores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 1rem; }
    .btn-valor { border: 1px solid var(--primary); background: transparent; color: var(--primary); padding: 10px; border-radius: 8px; font-weight: 600; white-space: nowrap; }
    .btn-valor.active { background: var(--primary); color: var(--white); }
    .input-custom { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 8px; margin-bottom: 1.5rem; font-size: 1.1rem; text-align: center; }

    /* FOOTER */
    .footer { text-align: center; padding: 2rem 0; margin-top: 0rem; border-top: 1px solid var(--border); }
    .footer-logo { max-width: 120px; margin: 0 auto 1rem; }
    .footer p { font-size: 0.8rem; color: var(--text-muted); }

     /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .hero {
      padding: 1.5rem 0 1.8rem;
      text-align: center;
    }

    /* tag de segurança */
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #ecfdf5;
      color: #047857;
      border: 1px solid #a7f3d0;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 5px 13px;
      border-radius: 50px;
      margin-bottom: 1.1rem;
    }
    .hero-tag svg { flex-shrink: 0; }

    /* título */
    .hero h1 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary);
      line-height: 1.3;
      margin-bottom: 0.6rem;
      letter-spacing: -0.01em;
      margin-top: 10px;
    }
    .hero h1 em {
      font-style: normal;
      color: #f59e0b;
      position: relative;
    }

    /* sub */
    .hero-sub {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
 
    }
    .hero-sub strong { color: var(--primary-dark); }

    /* vídeo */
    .video-wrapper {
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 1.2rem;
      aspect-ratio: 16/9;
      background: #000;
      box-shadow: var(--shadow);
      position: relative;
      border: 1px solid var(--border);
    }
    .video-wrapper iframe,
    .video-wrapper video { width: 100%; height: 100%; border: none; display: block; }
    .video-placeholder {
      width: 100%; height: 100%;
      background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 10px; cursor: pointer;
    }
    .play-btn {
      width: 52px; height: 52px;
      background: var(--accent);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 0 0 10px rgba(245,158,11,.2);
      transition: transform .2s;
    }
    .play-btn:hover { transform: scale(1.08); }
    .play-btn svg { margin-left: 4px; }
    .video-placeholder p { color: rgba(255,255,255,.6); font-size: 0.78rem; font-weight: 500; }

    /* ── BARRA DE META ── */
    .meta-box {
      background: var(--primary-light);
      border: 1px solid #c7dbf5;
      border-radius: var(--radius);
      padding: 1rem;
      margin-bottom: 1.2rem;
      text-align: left;
    }

    .meta-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    .meta-live {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .meta-live-dot {
      width: 7px; height: 7px;
      background: var(--danger);
      border-radius: 50%;
      flex-shrink: 0;
      animation: blink 1.4s ease-in-out infinite;
    }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }

    .meta-pct-badge {
      background: var(--primary);
      color: var(--white);
      font-size: 0.78rem;
      font-weight: 700;
      padding: 2px 10px;
      border-radius: 50px;
      min-width: 42px;
      text-align: center;
    }

    /* trilha */
    .meta-track {
      width: 100%;
      height: 11px;
      background: rgba(1,58,127,.12);
      border-radius: 50px;
      overflow: hidden;
      margin-bottom: 10px;
    }
    .meta-fill {
      height: 100%;
      width: 0%;
      border-radius: 50px;
      background: linear-gradient(90deg, var(--primary-dark), var(--primary), #2e7fd4);
      transition: width 1.7s cubic-bezier(.4,0,.2,1);
      position: relative;
    }
    .meta-fill::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 60%, rgba(255,255,255,.45) 80%, transparent 100%);
      animation: shine 2.2s ease-in-out infinite;
    }
    @keyframes shine { 0%{transform:translateX(-100%)} 100%{transform:translateX(200%)} }

    /* stats */
    .meta-stats {
      display: grid;
      grid-template-columns: 1fr 1px 1fr 1px 1fr;
      align-items: center;
    }
    .meta-divider { height: 26px; background: rgba(1,58,127,.15); }
    .meta-stat { text-align: center; }
    .meta-stat strong {
      display: block;
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--primary-dark);
      line-height: 1.1;
      margin-bottom: 1px;
    }
    .meta-stat span { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }

    /* CTA */
    .btn-primary {
      background: var(--accent);
      color: var(--white);
      width: 100%;
      padding: 1rem;
      border-radius: var(--radius);
      font-size: 1rem;
      font-weight: 700;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 14px rgba(245,158,11,.4);
      transition: background .2s, transform .15s;
      letter-spacing: 0.01em;
      margin-top: 10px;
    }
    .btn-primary:hover { background: var(--accent-hover); }
    .btn-primary:active { transform: scale(.98); }

    .hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      font-size: 0.74rem;
      color: var(--text-muted);
      margin-top: 0.7rem;
    }
       /* ══ SEÇÃO 1 — NOSSA MISSÃO ══ */
    .missao-sec {
      padding: 2rem 1.2rem;
    }

    .missao-sec h2 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark);
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .missao-img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 1.2rem;
      box-shadow: var(--shadow);
      position: relative;
    }
    .missao-img-wrap img {
      width: 100%;
      height: 195px;
      object-fit: cover;
      display: block;
    }
    .missao-img-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(1,42,94,.7));
      padding: 1.5rem 1rem 0.75rem;
    }
    .missao-img-overlay span {
      color: rgba(255,255,255,.85);
      font-size: 0.78rem;
      font-weight: 600;
    }

    .missao-text {
      font-size: 0.93rem;
      color: var(--text-main);
      line-height: 1.75;
      margin-bottom: 0.85rem;
    }
    .missao-text strong { color: var(--primary-dark); }

    /* ══ SEÇÃO 2 — PRATO CHEIO ══ */
    .prato-sec {
      background: var(--primary-light);
      border-top: 1px solid #c7dbf5;
      border-bottom: 1px solid #c7dbf5;
      padding: 1rem 1.2rem;
      border-radius: 10px;
    }

    .prato-sec h2 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark);
      line-height: 1.3;
      margin-bottom: 1rem;
    }

    .prato-img-wrap {
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 1.2rem;
      box-shadow: var(--shadow);
    }
    .prato-img-wrap img {
      width: 100%;
      height: 195px;
      object-fit: cover;
      display: block;
    }

    .prato-text {
      font-size: 0.93rem;
      color: var(--text-main);
      line-height: 1.75;
      margin-bottom: 1rem;
    }
    .prato-text strong { color: var(--primary-dark); }

    /* card de alerta */
    .urgency-card {
      background: var(--white);
      border: 1px solid #fde68a;
      border-left: 3px solid var(--accent);
      border-radius: var(--radius);
      padding: 0.85rem 1rem;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin-bottom: 1.4rem;
    }
    .urgency-icon {
      color: var(--accent);
      flex-shrink: 0;
      margin-top: 1px;
    }
    .urgency-text {
      font-size: 0.87rem;
      color: var(--text-main);
      line-height: 1.6;
    }
    .urgency-text strong { color: var(--primary-dark); }

        /* ══ QUEM SOMOS ══ */
    .quem-somos { padding: 2rem 0; }

    .qs-header { padding: 0 1.2rem; margin-bottom: 1.4rem; }
    .qs-header h2 { font-size: 1.3rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 0.7rem; }
    .qs-header p { font-size: 0.93rem; color: var(--text-muted); line-height: 1.75; }
    .qs-header p strong { color: var(--primary-dark); }

    /* ── SLIDER ── */
    .qs-slider-wrap {
      /* overflow visible para o card vazar pela direita */
      overflow: visible;
      padding-left: 1.2rem;
      margin-bottom: 1rem;
    }

    .qs-track {
      display: flex;
      gap: 12px;
      overflow-x: scroll;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      /* padding-right garante que o último card também fique snappable */
      padding-right: 1.2rem;
      padding-bottom: 6px;
    }
    .qs-track::-webkit-scrollbar { display: none; }

    .qs-card {
      /* largura fixa: mostra 85% do card + vaza 15% do próximo */
      flex: 0 0 82%;
      scroll-snap-align: start;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      box-shadow: 0 8px 24px rgba(0,0,0,.13);
    }

    .qs-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
    }

    .qs-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(1,42,94,.82));
      padding: 2.5rem 1rem 0.9rem;
    }
    .qs-caption-tag {
      display: inline-block;
      background: var(--accent);
      color: var(--primary-dark);
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      padding: 2px 8px;
      border-radius: 4px;
      margin-bottom: 5px;
    }
    .qs-caption-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.25;
    }
    .qs-caption-sub {
      font-size: 0.75rem;
      color: rgba(255,255,255,.6);
      margin-top: 2px;
    }

    /* dots */
    .qs-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-bottom: 1.4rem;
    }
    .qs-dot {
      width: 6px; height: 6px;
      border-radius: 3px;
      background: var(--border);
      transition: width .3s ease, background .3s ease;
    }
    .qs-dot.active {
      width: 20px;
      background: var(--primary);
    }

    .qs-footer { padding: 0 1.2rem; }


  

/* ---- */


    :root {
      --primary: #013a7f;
      --primary-dark: #012a5e;
      --text-main: #334155;
      --text-muted: #64748b;
      --bg-body: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --radius: 12px;
      --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);

      --g:        #3a9e6f;
      --g-dark:   #2d7d57;
      --g-deeper: #1f5c3f;
      --g-light:  rgba(255,255,255,.15);
      --g-border: rgba(255,255,255,.25);
    }

    /* ══ PIX SECTION ══ */
    .pix-sec {
      background: var(--g);
      padding: 1.6rem 1.2rem;
      border-radius: 10px;
    }

    /* cabeçalho */
    .pix-head {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--g-light);
      border: 1px solid var(--g-border);
      border-radius: var(--radius);
      padding: 0.85rem 1rem;
      margin-bottom: 1.4rem;
    }
    .pix-head-icon {
      width: 38px; height: 38px;
      background: var(--g-dark);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .pix-head-text strong {
      display: block;
      font-size: 0.97rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 1px;
    }
    .pix-head-text span {
      font-size: 0.78rem;
      color: rgba(255,255,255,.75);
    }

    /* label copie a chave */
    .pix-copy-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: rgba(255,255,255,.8);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    /* campo + botão copiar */
    .pix-key-row {
      display: flex;
      align-items: stretch;
      gap: 0;
      margin-bottom: 8px;
      border-radius: 9px;
      overflow: hidden;
      box-shadow: 0 2px 10px rgba(0,0,0,.15);
    }
    .pix-key-input {
      flex: 1;
      background: var(--white);
      border: none;
      padding: 0.85rem 1rem;
      font-family: monospace;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--text-main);
      outline: none;
      min-width: 0;
    }
    .btn-copy-row {
      background: var(--g-deeper);
      color: var(--white);
      border: none;
      padding: 0 1.2rem;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      display: flex; align-items: center; gap: 6px;
      white-space: nowrap;
      font-family: 'Inter', sans-serif;
      transition: background .2s;
      letter-spacing: 0.03em;
    }
    .btn-copy-row:hover { background: #163d28; }

    /* recebedor */
    .pix-recebedor-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 1.3rem;
      padding: 0 0.1rem;
    }
    .pix-recebedor-item {
      font-size: 0.75rem;
      color: rgba(255,255,255,.7);
    }
    .pix-recebedor-item strong {
      color: var(--white);
      font-weight: 600;
    }
    .pix-recebedor-sep {
      width: 1px; height: 12px;
      background: rgba(255,255,255,.3);
    }

    /* caixa de passos */
    .pix-steps-box {
      background: var(--g-light);
      border: 1px solid var(--g-border);
      border-radius: var(--radius);
      padding: 1rem 1rem;
    }
    .pix-steps-title {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.8rem;
    }
    .pix-steps { display: flex; flex-direction: column; gap: 9px; }
    .pix-step { display: flex; align-items: flex-start; gap: 10px; }
    .pix-step-num {
      width: 22px; height: 22px;
      background: var(--g-deeper);
      color: var(--white);
      border-radius: 50%;
      font-size: 0.72rem;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: 1px;
    }
    .pix-step-text {
      font-size: 0.84rem;
      color: rgba(255,255,255,.85);
      line-height: 1.5;
    }
    .pix-step-text strong { color: var(--white); }

    /* ══ POPUP ══ */
    .popup-overlay {
      position: fixed; inset: 0;
      background: rgba(0,0,0,.5);
      display: flex; align-items: center; justify-content: center;
      padding: 1.5rem; z-index: 200;
      opacity: 0; pointer-events: none;
      transition: opacity .3s;
    }
    .popup-overlay.show { opacity: 1; pointer-events: all; }
    .popup-box {
      background: var(--white);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      width: 100%; max-width: 340px;
      text-align: center;
      transform: scale(.92) translateY(16px);
      transition: transform .35s cubic-bezier(.34,1.56,.64,1);
      box-shadow: 0 20px 60px rgba(0,0,0,.2);
    }
    .popup-overlay.show .popup-box { transform: scale(1) translateY(0); }

    .popup-check {
      width: 64px; height: 64px;
      background: #ecfdf5;
      border: 2px solid #a7f3d0;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 1.2rem;
    }
    .popup-check svg {
      stroke-dasharray: 40;
      stroke-dashoffset: 40;
      transition: stroke-dashoffset .5s ease .2s;
    }
    .popup-overlay.show .popup-check svg { stroke-dashoffset: 0; }

    .popup-title { font-size: 1.15rem; font-weight: 700; color: var(--g-dark); margin-bottom: 0.4rem; }
    .popup-text { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1.1rem; }
    .popup-key {
      background: #ecfdf5; border: 1px solid #a7f3d0;
      border-radius: 8px; padding: 0.6rem 1rem;
      font-family: monospace; font-size: 0.82rem;
      color: var(--g-dark); font-weight: 700;
      margin-bottom: 1.2rem; word-break: break-all;
    }
    .popup-steps {
      text-align: left; background: var(--bg-body);
      border-radius: 10px; padding: 0.85rem 1rem;
      margin-bottom: 1.3rem;
      display: flex; flex-direction: column; gap: 7px;
    }
    .popup-step { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-main); }
    .popup-step-num {
      width: 18px; height: 18px; background: var(--g);
      color: white; border-radius: 50%; font-size: 0.65rem; font-weight: 700;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .btn-popup-close {
      background: var(--g); color: var(--white);
      width: 100%; padding: 0.85rem; border-radius: var(--radius);
      font-size: 0.95rem; font-weight: 700;
      border: none; cursor: pointer; font-family: 'Inter', sans-serif;
      transition: background .2s;
    }
    .btn-popup-close:hover { background: var(--g-dark); }
  

/* ---- */


    /* --- ATUALIZAÇÃO DE CORES E BLOCOS EM CARDS --- */
    
    :root {
      /* Nova cor de fundo bege clara e elegante */
      --bg-body: #f7f4ed; 
    }

    /* O container principal e o body assumem o fundo bege */
    body {
      background-color: var(--bg-body) !important;
    }
html, body {
  overflow-x: hidden;
  overscroll-behavior-y: none; /* impede o bounce vertical */
  height: 100%;
}

.container {
  min-height: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
}
    /* Container ganha padding superior para o conteúdo não esconder debaixo do header fixo */
    .container {
      background-color: #f6eacf !important;
      padding: 90px 1rem 1rem 1rem !important; /* 90px é o respiro do header */
      overflow-x: hidden; 
    }

    /* Header 100% fixo no topo, centralizado no limite de 600px do mobile */
    .header {
      position: fixed !important;
      top: 0 !important;
      left: 50% !important;
      transform: translateX(-50%) !important;
      width: 100% !important;
      max-width: 600px !important;
      z-index: 999 !important;
      margin: 0 !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    }

    /* Transforma TODAS as seções em cards brancos, EXCETO as originais coloridas */
    section:not(.prato-sec):not(.pix-sec):not(.org-card) {
      background-color: var(--white);
      border-radius: var(--radius);
      padding: 1rem 0.8rem;
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      border: 1px solid var(--border);
      margin-top: 30px;
    }

    /* Adiciona a mesma sombra e margem aos blocos Azul e Verde */
    .prato-sec, .pix-sec {
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    }

    /* --- Ajustes finos de espaçamento --- */
    .hero { padding-top: 0 !important; padding-bottom: 1.5rem !important; }
    .loc-sec { padding: 1rem 1.2rem !important; }
    .qs-header, .qs-footer { padding: 0 !important; }
    .qs-slider-wrap { padding-left: 0 !important; padding-right: 0 !important; }
  

/* ---- */


  /* ══ PULSO NOS BOTÕES AMARELOS ══ */
  @keyframes pulse-btn {
    0%   { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 0 rgba(245,158,11,.55); }
    65%  { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 14px rgba(245,158,11,0); }
    100% { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 0 rgba(245,158,11,0); }
  }
  .btn-primary {
    animation: pulse-btn 1.9s ease-out infinite !important;
  }
  .btn-primary:active {
    animation: none !important;
    transform: scale(.97) !important;
  }


/* ---- */


  .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  overflow: hidden;
  z-index: 1;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
  
  /* Garante que meta-box e CTA apareçam ABAIXO do player */
  .meta-box {
    position: relative;
    z-index: 2;
    margin-top: 1rem;
  }
  
  .hero .btn-primary {
    position: relative;
    z-index: 2;
  }



/* ---- */



    /* ════════════════════════════════
       OVERLAY
    ════════════════════════════════ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(1,42,94,.6);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      display: flex;
      align-items: flex-end;
      justify-content: center;
      z-index: 999;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }
    .modal-overlay.active {
      opacity: 1;
      pointer-events: all;
    }

    /* ════════════════════════════════
       MODAL BOX
    ════════════════════════════════ */
    .modal-box {
      background: var(--white);
      width: 100%;
      max-width: 520px;
      border-radius: 24px 24px 0 0;
      overflow: hidden;
      transform: translateY(100%);
      transition: transform .4s cubic-bezier(.34,1.25,.64,1);
      max-height: 92vh;
      display: flex;
      flex-direction: column;
    }
    .modal-overlay.active .modal-box {
      transform: translateY(0);
    }

    /* handle */
    .modal-handle {
      width: 40px; height: 4px;
      background: var(--border);
      border-radius: 2px;
      margin: 12px auto 0;
      flex-shrink: 0;
    }

    /* ── HEADER ── */
    .modal-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1rem 1.4rem 0.6rem;
      flex-shrink: 0;
    }
    .modal-header-left {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .modal-header-icon {
      width: 36px; height: 36px;
      background: var(--primary-light);
      border-radius: 9px;
      display: flex; align-items:center; justify-content:center;
      color: var(--primary);
      flex-shrink: 0;
    }
    .modal-header h2 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--primary-dark);
    }
    .modal-close {
      width: 32px; height: 32px;
      background: #f1f5f9;
      border: 1px solid var(--border);
      border-radius: 50%;
      display: flex; align-items:center; justify-content:center;
      cursor: pointer;
      color: var(--text-muted);
      transition: background .2s, color .2s;
      flex-shrink: 0;
    }
    .modal-close:hover { background: #fee2e2; color: var(--danger); border-color: #fecaca; }

    /* ── ABAS ── */
    .modal-tabs {
      display: flex;
      margin: 0.4rem 1.4rem 0;
      background: var(--primary-light);
      border-radius: 10px;
      padding: 4px;
      flex-shrink: 0;
    }
    .modal-tab {
      flex: 1;
      padding: 8px 10px;
      border-radius: 7px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
      background: transparent;
      border: none;
      cursor: pointer;
      transition: background .25s, color .25s, box-shadow .25s;
      text-align: center;
      font-family: 'Inter', sans-serif;
    }
    .modal-tab.active {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 2px 8px rgba(1,58,127,.3);
    }

    /* ── TYPE INDICATOR (etapa 2) ── */
    .donation-type-indicator {
      display: none;
      margin: 0.5rem 1.4rem 0;
      background: var(--primary-light);
      border: 1px solid #c7dbf5;
      border-radius: 8px;
      padding: 6px 12px;
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary);
      text-align: center;
      flex-shrink: 0;
    }
    .donation-type-indicator.mensal {
      background: #f0fdf4;
      border-color: #bbf7d0;
      color: #166534;
    }

    /* ── SCROLLABLE BODY ── */
    .modal-body {
      flex: 1;
      overflow-y: auto;
      padding: 1rem 1.4rem;
      scrollbar-width: none;
    }
    .modal-body::-webkit-scrollbar { display: none; }

    /* ── GRADE DE VALORES ── */
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 1.2rem;
    }
    .val-btn {
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--text-main);
      font-size: 0.88rem;
      font-weight: 700;
      padding: 12px 6px;
      border-radius: 10px;
      cursor: pointer;
      transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
      position: relative;
      overflow: hidden;
      font-family: 'Inter', sans-serif;
    }
    .val-btn:hover { border-color: var(--primary); color: var(--primary); }
    .val-btn.selected {
      border-color: var(--primary);
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 12px rgba(1,58,127,.3);
    }
    .val-btn.popular::before {
      content: 'Popular';
      position: absolute;
      top: 0; right: 0;
      background: var(--accent);
      color: var(--primary-dark);
      font-size: 0.5rem;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 0 9px 0 6px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    /* custom input */
    .custom-label {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--primary-dark);
      margin-bottom: 6px;
      display: flex; align-items: center; gap: 5px;
    }
    .custom-input-wrap {
      display: flex;
      align-items: center;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color .2s;
    }
    .custom-input-wrap:focus-within { border-color: var(--primary); }
    .currency-tag {
      background: var(--primary-light);
      color: var(--primary);
      font-weight: 700;
      font-size: 0.92rem;
      padding: 11px 14px;
      border-right: 1.5px solid var(--border);
      white-space: nowrap;
    }
    .custom-input-wrap input {
      flex: 1;
      border: none;
      outline: none;
      padding: 11px 12px;
      font-size: 0.98rem;
      font-weight: 600;
      color: var(--text-main);
      font-family: 'Inter', sans-serif;
      background: var(--white);
    }

    /* ── CHIP VALOR (etapa 2) ── */
    .selected-amount-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--primary-light);
      border: 1.5px solid #c7dbf5;
      border-radius: 50px;
      padding: 6px 14px;
      margin-bottom: 1.2rem;
    }
    .chip-label {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .chip-value {
      font-size: 1rem;
      font-weight: 800;
      color: var(--primary-dark);
    }

    /* ── FORM ── */
    .form-group { margin-bottom: 1rem; }
    .form-group label {
      display: block;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 5px;
    }
    .form-group label .req { color: var(--danger); }
    .form-input {
      width: 100%;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 11px 13px;
      font-size: 0.92rem;
      font-family: 'Inter', sans-serif;
      color: var(--text-main);
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      background: var(--white);
    }
    .form-input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(1,58,127,.1);
    }
    .form-input::placeholder { color: #cbd5e1; }
    .form-input:disabled { background: #f8fafc; color: var(--text-muted); }

    /* Anônimo */
    .anon-row {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 6px;
    }
    .anon-row input[type=checkbox] { accent-color: var(--primary); width: 15px; height: 15px; cursor: pointer; }
    .anon-row span { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; cursor: pointer; }

    /* Turbinar */
    .turbine-card {
      background: linear-gradient(135deg, #fffbeb, #fef3c7);
      border: 1.5px solid #fde68a;
      border-radius: 10px;
      padding: 12px 14px;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      cursor: pointer;
      margin-bottom: 1rem;
      transition: border-color .2s, box-shadow .2s;
      user-select: none;
    }
    .turbine-card:hover { border-color: var(--accent); box-shadow: 0 2px 12px rgba(245,158,11,.18); }
    .turbine-card.checked { border-color: var(--accent); background: linear-gradient(135deg, #fffbeb, #fef9c3); }
    .turbine-card input[type=checkbox] { accent-color: var(--accent); width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; cursor: pointer; }
    .turbine-text strong {
      font-size: 0.88rem;
      color: var(--primary-dark);
      display: flex; align-items: center; gap: 5px;
      margin-bottom: 3px;
    }
    .turbine-text p { font-size: 0.77rem; color: var(--text-muted); line-height: 1.4; }

    /* ── BACK BUTTON ── */
    .step-back {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      color: var(--text-muted);
      font-size: 0.8rem;
      font-weight: 600;
      transition: color .2s;
      background: none;
      border: none;
      padding: 0;
      font-family: 'Inter', sans-serif;
    }
    .step-back:hover { color: var(--primary); }

    /* ── FOOTER / CTA ── */
    .modal-footer {
      padding: 0.8rem 1.4rem 1.4rem;
      flex-shrink: 0;
      border-top: 1px solid var(--border);
      background: var(--white);
    }

    @keyframes pulse-btn {
      0%   { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 0   rgba(245,158,11,.55); }
      65%  { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 14px rgba(245,158,11,0); }
      100% { box-shadow: 0 4px 14px rgba(245,158,11,.45), 0 0 0 0   rgba(245,158,11,0); }
    }
    .btn-donate-main {
      width: 100%;
      background: var(--accent);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      padding: 1rem;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      letter-spacing: 0.02em;
      animation: pulse-btn 1.9s ease-out infinite;
      transition: background .2s;
      display: flex; align-items: center; justify-content: center; gap: 8px;
    }
    .btn-donate-main:hover { background: var(--accent-hover); }
    .btn-donate-main:active { animation: none; transform: scale(.98); }

    .modal-footer-safe {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      font-size: 0.72rem;
      color: var(--text-muted);
      margin-top: 8px;
    }

    /* ── LOADING ── */
    .donation-loading {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 3.5rem 2rem;
      gap: 1.2rem;
      text-align: center;
      min-height: 280px;
    }
    .loading-spinner {
      width: 46px; height: 46px;
      border: 3px solid var(--primary-light);
      border-top-color: var(--primary);
      border-radius: 50%;
      animation: spin .75s linear infinite;
    }
    @keyframes spin { to { transform: rotate(360deg); } }
    .loading-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--primary-dark);
    }
    .loading-sub {
      font-size: 0.82rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ── STEPS ── */
    .donation-step { display: none; flex-direction: column; flex: 1; overflow: hidden; }
    .donation-step.active { display: flex; }
    /* O body dentro do step rola */
    .donation-step.active .modal-body { flex: 1; overflow-y: auto; }

    /* ──────────────────────────────
       DEMO TRIGGER
    ────────────────────────────── */
    .demo-btn {
      background: var(--accent);
      color: var(--white);
      border: none;
      padding: 1rem 2.5rem;
      border-radius: var(--radius);
      font-size: 1.05rem;
      font-weight: 700;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      animation: pulse-btn 1.9s ease-out infinite;
    }
    .demo-btn:hover { background: var(--accent-hover); }
  

/* ---- */


  .org-card {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    background: var(--primary-light);
    border: 1px solid #c7dbf5;
    border-radius: var(--radius);
    overflow: visible;
    margin-bottom: 1.5rem;
    position: relative;
  }

  /* ── BOTÃO PRESTAÇÃO ── */
  .pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #c7dbf5;
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s, box-shadow .2s;
    white-space: nowrap;
  }
  .pc-btn:hover { background: var(--primary-light); box-shadow: 0 2px 8px rgba(1,58,127,.12); }
  .pc-btn svg { flex-shrink: 0; transition: transform .25s; }
  .pc-btn.open svg { transform: rotate(180deg); }

  /* ── DROPDOWN ── */
  .pc-dropdown {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    right: 0;
    width: 260px;
    background: #fff;
    border: 1px solid #c7dbf5;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(1,42,94,.13);
    z-index: 200;
    overflow: hidden;
  }
  .pc-dropdown.open { display: block; }

  .pc-dropdown-header {
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .pc-list { padding: 6px 0; }
  .pc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    gap: 8px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.75rem;
  }
  .pc-row:last-child { border-bottom: none; }
  .pc-row-label { color: var(--text-main); line-height: 1.3; flex: 1; }
  .pc-row-val { font-weight: 700; color: var(--primary-dark); white-space: nowrap; flex-shrink: 0; }

  .pc-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 12px;
    background: var(--primary-light);
    border-top: 1.5px solid #c7dbf5;
    font-size: 0.78rem;
  }
  .pc-total-label { font-weight: 700; color: var(--primary-dark); }
  .pc-total-val   { font-weight: 800; color: var(--primary); }


/* ---- */


  /* ═══════════════════════════════════════════════════════
   DESKTOP RESPONSIVE — Leão de Judá
   Colar como último <style> no <head> do site
═══════════════════════════════════════════════════════ */

@media (min-width: 768px) {

  html, body {
    overflow-x: hidden;
  }

  body {
    background-color: #f6eacf !important;
  }

  /* ── CONTAINER ──
     A correção principal: sobrescreve max-width 600px */
  .container {
    max-width: 1200px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 100px 2rem 2rem 2rem !important;
    background: transparent !important;
  }

  /* ── HEADER ──
     A correção principal: sobrescreve max-width 600px e left/transform do mobile */
  .header {
    max-width: 100% !important;
    width: 100% !important;
    left: 0 !important;
    transform: none !important;
    padding: 0.4rem 3rem !important;
    display: flex !important;
    justify-content: center !important;
  }

  .header img {
    max-height: 70px !important;
  }

  /* ══════════════════════════════════════
     GRID 2 COLUNAS — principal + sidebar
  ══════════════════════════════════════ */
  .desktop-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 2rem;
    align-items: start;
  }

  .desktop-main {
    min-width: 0;
  }

  .desktop-sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  /* ── HERO ── */
  .hero h1 {
    font-size: 2.1rem !important;
    line-height: 1.25 !important;
  }

  .hero-sub {
    font-size: 1.05rem !important;
  }

  /* ── TÍTULOS ── */
  .missao-sec h2,
  .prato-sec h2,
  .qs-header h2,
  .section-title {
    font-size: 1.6rem !important;
  }

  /* ── IMAGENS ── */
  .missao-img-wrap img,
  .prato-img-wrap img {
    height: 280px !important;
  }

  /* ── SLIDER — 2 cards visíveis ── */
  .qs-card {
    flex: 0 0 46% !important;
  }

  .qs-card img {
    height: 280px !important;
  }

  .qs-slider-wrap {
    padding-left: 0 !important;
  }

  .qs-track {
    padding-right: 0 !important;
  }

  /* ── IMPACT LIST — 2 colunas ── */
  .impact-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .impact-item:last-child {
    grid-column: 1 / -1;
  }

  /* ── MAPA ── */
  .map-wrap {
    height: 320px !important;
  }

  /* ── PIX SECTION ── */
  .pix-donate-sec {
    border-radius: 14px !important;
  }

  /* ── MODAL — centralizado no desktop ── */
  .modal-overlay {
    align-items: center !important;
  }

  .modal-box {
    border-radius: 24px !important;
    max-width: 520px !important;
    max-height: 85vh !important;
  }

  /* ── FOOTER — ocupa tudo, sem limitação ── */
  .footer {
    border-radius: 0 !important;
    margin: 2rem -2rem -2rem -2rem !important;
    width: calc(100% + 4rem) !important;
  }

  .footer-top {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    text-align: left !important;
    max-width: 1160px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
    box-sizing: border-box !important;
  }

  .footer-tagline {
    max-width: none !important;
    text-align: right !important;
  }

  .footer-socials,
  .footer-bottom {
    max-width: 1160px !important;
    margin: 0 auto !important;
  }

  .footer-info {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 1160px !important;
    margin: 0 auto !important;
  }

  .footer-info-row {
    border-right: 1px solid rgba(255,255,255,.08) !important;
    padding: 1rem 1.4rem !important;
  }

  .footer-info-row:last-child {
    border-right: none !important;
  }

  /* ── ORG CARD ── */
  .org-card {
    margin-bottom: 0 !important;
  }

  /* ── BOTÕES ── */
  .btn-primary {
    font-size: 1.05rem !important;
    padding: 1.1rem !important;
  }

}

@media (min-width: 1100px) {
  .hero h1 {
    font-size: 2.4rem !important;
  }

  .qs-card {
    flex: 0 0 38% !important;
  }
}



/* ── SOCIAL PROOF ── */
.sp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}
.sp-avatars { display: flex; }
.sp-av {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid #f6eacf;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700; color: #fff;
  margin-left: -6px;
}
.sp-av:first-child { margin-left: 0; }
.sp-text { font-size: 0.73rem; font-weight: 600; color: var(--text-main); }
.sp-text span { color: var(--primary); }

/* ── VERSÍCULO ── */
.hero-bottom {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 0.8rem;
}
.verse-area {
  border-radius: 10px;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.verse-bar {
  width: 2px;
  height: 32px;
  background: #013a7f;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: .5;
}

.verse-quote {
  font-size: 0.73rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0 0 3px;
  opacity: 1;
  transition: opacity .45s ease;
}
.verse-quote.fade { opacity: 0; }

.verse-ref {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.74rem;
  color: var(--text-muted);
}
.hero-title-block {
  background: linear-gradient(to bottom, rgba(255,255,255,.75) 0%, rgba(255,255,255,0) 100%);
  padding: 14px calc(16px + 1rem) 8px; /* era 20px, virou 8px */
  position: relative;
  border-radius: 10px 10px 0 0;
  margin-bottom: 0.5rem; /* era 1.1rem */
  margin-left: -1rem;
  margin-right: -1rem;
  padding-left: calc(16px + 1rem);
  padding-right: calc(16px + 1rem);
}

/* borda com fade — isolada no ::before, não afeta o texto */
.hero-title-block::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px 10px 0 0;
  border-top: 3px solid #013a7f;
  border-left: 3px solid #013a7f;
  border-right: 3px solid #013a7f;
  -webkit-mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 45%, transparent 100%);
  pointer-events: none;
  box-sizing: border-box;
}


/* ---- */


.pix-donate-sec {
  background: linear-gradient(160deg, #3d9140 0%, #4CAF50 50%, #5cb85c 100%);
  padding: 32px 1rem;
}


.pix-donate-container {
  max-width: 480px;
  margin: 0 auto;
}

.pix-donate-card {
  background: #fff;
  border-radius: 22px;
  border: 2.5px solid #81C784;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1), 0 0 0 6px rgba(255,255,255,0.5);
  padding: 28px 24px 24px;
  font-family: 'Inter', sans-serif;
}

.pix-donate-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pix-donate-logo-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(76,175,80,0.35);
}

.pix-donate-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: #43A047;
  letter-spacing: -0.5px;
}

.pix-donate-copy-area {
  background: #f1f8e9;
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  border: 1.5px solid #a5d6a7;
}

.pix-donate-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #43A047;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pix-donate-key {
  font-size: 1.25rem;
  font-weight: 800;
  color: #388E3C;
  background: #fff;
  border: 2px dashed #66BB6A;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
  user-select: all;
  word-break: break-all;
}

.pix-donate-btn {
  width: 100%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 4px 0 #388E3C, 0 6px 16px rgba(76,175,80,0.3);
  transition: all 0.18s ease;
}

.pix-donate-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pix-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 0 #388E3C, 0 10px 22px rgba(76,175,80,0.4);
}

.pix-donate-btn:active {
  transform: translateY(3px);
  box-shadow: 0 1px 0 #388E3C;
}

.pix-donate-btn.copied {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 0 #047857, 0 6px 16px rgba(16,185,129,0.35);
}

.pix-donate-divider {
  border: none;
  border-top: 1.5px dashed #e2e8f0;
  margin: 18px 0;
}

.pix-donate-recipient-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pix-donate-recipient-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #94a3b8;
  text-transform: uppercase;
}

.pix-donate-recipient-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e293b;
}

.pix-donate-recipient-cnpj {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 500;
}

.pix-donate-steps-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pix-donate-steps-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #43A047;
  text-transform: uppercase;
}

.pix-donate-steps-list {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
}

.pix-donate-steps-list li {
  font-size: 0.83rem;
  color: #555;
  line-height: 1.45;
}

.pix-donate-steps-list li strong {
  color: #43A047;
}

.pix-donate-footer {
  text-align: center;
  color: white;
  font-size: 0.83rem;
  margin-top: 18px;
  font-family: 'Inter', sans-serif;
}

.pix-donate-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  z-index: 9999;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  opacity: 0;
  width: 90%;
  max-width: 360px;
}

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

.pix-donate-toast-inner {
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 0 0 3px rgba(76,175,80,0.15);
  border-left: 5px solid #66BB6A;
}

.pix-donate-toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #66BB6A, #4CAF50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(76,175,80,0.35);
}

.pix-donate-toast-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
}

.pix-donate-toast-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pix-donate-toast-text strong {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.pix-donate-toast-text span {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: #64748b;
}

@media (max-width: 480px) {
  .pix-donate-card {
    padding: 22px 16px 20px;
    border-radius: 18px;
  }
  .pix-donate-key {
    font-size: 1rem;
  }
  .pix-donate-btn {
    font-size: 0.85rem;
    padding: 12px 14px;
  }
}


/* ---- */


    :root {
      --primary: #013a7f;
      --primary-light: #e6f0fa;
      --primary-dark: #012a5e;
      --accent: #f59e0b;
      --text-main: #334155;
      --text-muted: #64748b;
      --bg-body: #f8fafc;
      --white: #ffffff;
      --border: #e2e8f0;
      --radius: 12px;
      --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
    }

    /* ══ LOCALIZAÇÃO ══ */
    .loc-sec { padding: 0rem 1.2rem 0; }

    .loc-sec h2 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 0.4rem;

    }
    .loc-sub {
      font-size: 0.87rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 1.4rem;
    }

    /* ── MAPA ── */
    .map-wrap {
      position: relative;
      width: 100%;
      height: 220px;
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 0;
      box-shadow: var(--shadow);
    }
    .map-wrap iframe {
      width: 100%; height: 100%;
      border: none; display: block;
    }

    /* pin overlay centralizado */
    .map-pin-overlay {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .map-pin-bubble {
      background: var(--primary);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 700;
      padding: 5px 12px;
      border-radius: 50px;
      white-space: nowrap;
      box-shadow: 0 4px 12px rgba(1,58,127,.35);
      margin-bottom: 6px;
    }
    .map-pin-dot {
      width: 12px; height: 12px;
      background: var(--primary);
      border: 2px solid white;
      border-radius: 50%;
      box-shadow: 0 2px 8px rgba(0,0,0,.3);
    }

    /* ── CARD DE ENDEREÇO ── */
    .addr-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-top: none;
      border-radius: 0 0 var(--radius) var(--radius);
      overflow: hidden;
      margin-bottom: 1.2rem;
    }

    .addr-main {
      padding: 1rem 1rem 0.9rem;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      border-bottom: 1px solid var(--border);
    }
    .addr-icon-wrap {
      width: 38px; height: 38px;
      background: var(--primary-light);
      border-radius: 9px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--primary);
      margin-top: 1px;
    }
    .addr-info strong {
      display: block;
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 2px;
    }
    .addr-info span {
      font-size: 0.8rem;
      color: var(--text-muted);
    }

    /* linha de detalhes extras */
    .addr-details {
      display: grid;
      grid-template-columns: 1fr 1px 1fr;
      align-items: center;
    }
    .addr-detail {
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .addr-detail-icon {
      color: var(--primary);
      flex-shrink: 0;
    }
    .addr-detail-text { display: flex; flex-direction: column; gap: 1px; }
    .addr-detail-label {
      font-size: 0.62rem;
      color: var(--text-muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .addr-detail-val {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text-main);
    }
    .addr-col-divider { background: var(--border); height: 32px; }

    /* botão maps */
    .btn-maps {
      width: 100%;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      padding: 0.9rem;
      font-size: 0.92rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background .2s, transform .15s;
      text-decoration: none;

    }
    .btn-maps:hover { background: var(--primary-dark); }
    .btn-maps:active { transform: scale(.98); }
  

/* ---- */



    /* ══ FOOTER ══ */
    .footer {
      background: var(--primary-dark);
    }

    /* topo — logo + tagline */
    .footer-top {
      padding: 2rem 1.4rem 1.4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-logo-wrap {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 0.6rem;
    }
    .footer-logo-img {
      width: 44px; height: 44px;
      border-radius: 10px;
      object-fit: cover;
      background: rgba(255,255,255,.1);
      /* troque por: <img src="Imagens/logo.jpeg"> */
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
    }
    .footer-logo-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
      line-height: 1.2;
    }
    .footer-logo-name span {
      display: block;
      font-size: 0.68rem;
      font-weight: 400;
      color: rgba(255,255,255,.45);
      letter-spacing: 0.04em;
    }
    .footer-tagline {
      font-size: 0.82rem;
      color: rgba(255,255,255,.45);
      line-height: 1.6;
      max-width: 280px;
    }

    /* redes sociais */
    .footer-socials {
      display: flex;
      gap: 10px;
      justify-content: center;
      padding: 1.2rem 1.4rem;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .social-btn {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: background .2s, transform .15s;
      text-decoration: none;
      color: rgba(255,255,255,.7);
    }
    .social-btn:hover {
      background: rgba(255,255,255,.15);
      transform: translateY(-2px);
    }
    .social-btn svg { display: block; }

    /* infos de contato */
    .footer-info {
      padding: 1.2rem 1.4rem;
      display: flex;
      flex-direction: column;
      gap: 10px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-info-row {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .footer-info-icon {
      width: 30px; height: 30px;
      background: rgba(255,255,255,.07);
      border-radius: 7px;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: rgba(255,255,255,.5);
    }
    .footer-info-text {
      display: flex;
      flex-direction: column;
      gap: 1px;
    }
    .footer-info-label {
      font-size: 0.62rem;
      color: rgba(255,255,255,.35);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }
    .footer-info-val {
      font-size: 0.83rem;
      color: rgba(255,255,255,.75);
      font-weight: 500;
      text-decoration: none;
    }
    a.footer-info-val:hover { color: var(--white); }

    /* CNPJ + copyright */
    .footer-bottom {
      padding: 1rem 1.4rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      text-align: center;
    }
    .footer-cnpj {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 50px;
      padding: 4px 12px;
      font-size: 0.72rem;
      color: rgba(255,255,255,.45);
      font-weight: 600;
      margin-bottom: 4px;
    }
    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255,255,255,.25);
    }
  

/* ---- */


  /* ── LINKS NO FOOTER ── */
  .footer-policy-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
  .footer-policy-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 0.75rem;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    padding: 0;
    transition: color .2s;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .footer-policy-btn:hover { color: rgba(255,255,255,.9); }
  .footer-policy-sep { color: rgba(255,255,255,.25); font-size: 0.75rem; }

  /* ── OVERLAY ── */
  .policy-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1,42,94,.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
  }
  .policy-overlay.active {
    opacity: 1;
    pointer-events: all;
  }

  /* ── MODAL BOX ── */
  .policy-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 640px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(.94) translateY(16px);
    transition: transform .35s cubic-bezier(.34,1.25,.64,1);
    box-shadow: 0 24px 64px rgba(0,0,0,.2);
  }
  .policy-overlay.active .policy-modal {
    transform: scale(1) translateY(0);
  }

  /* ── HEADER ── */
  .policy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
  }
  .policy-modal-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #012a5e;
    margin: 0;
  }
  .policy-close-btn {
    width: 32px; height: 32px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: background .2s, color .2s;
    flex-shrink: 0;
  }
  .policy-close-btn:hover { background: #fee2e2; color: #ef4444; border-color: #fecaca; }

  /* ── BODY SCROLLÁVEL ── */
  .policy-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.4rem 1.6rem;
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.75;
  }
  .policy-modal-body h2 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #012a5e;
    margin: 1.4rem 0 0.4rem;
  }
  .policy-modal-body h2:first-child { margin-top: 0; }
  .policy-modal-body p { margin-bottom: 0.5rem; }
  .policy-modal-body ul {
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
  }
  .policy-modal-body ul li { margin-bottom: 4px; }

  /* ── FOOTER ── */
  .policy-modal-footer {
    padding: 1rem 1.6rem 1.4rem;
    border-top: 1px solid #e2e8f0;
    flex-shrink: 0;
  }
  .policy-close-main-btn {
    width: 100%;
    background: #013a7f;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.85rem;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background .2s;
  }
  .policy-close-main-btn:hover { background: #012a5e; }
