/* VARIÁVEIS DE CORES E ESPAÇAMENTOS */
    :root {
      --primary: #013a7f;
      --primary-light: #e6f0fa;
      --primary-dark: #012a5e;
      --accent: #f59e0b;
      --accent-hover: #f59e0b;
      --text-main: #000;
      --text-muted: #000;
      --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; }


    /* 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: 92vh; 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: 225px;
      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-donate-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-donate-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 appearam 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;
}

.vsl-player {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 1rem;
}

.vsl-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
  border-radius: 12px;
}

.vsl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vsl-loading {
  position: absolute;
  inset: 0;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-family: Arial, sans-serif;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(255,255,255,0.2);
  border-top-color: #e50914;
  border-radius: 50%;
  animation: vsl-spin .75s linear infinite;
}

#vsl-percent {
  position: absolute;
  font-size: 18px;
  font-weight: bold;
}

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

.vsl-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(62%, 360px);
  min-height: 130px;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 10px;
  background: rgba(61, 133, 198, 0.72);
  color: #fff;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 14px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}

.overlay-box {
  width: 100%;
  font-size: clamp(11px, 2.3vw, 18px);
  font-weight: 800;
  line-height: 1.15;
}

.sound-icon {
  font-size: clamp(34px, 8vw, 72px);
  line-height: 1;
  margin: 8px 0;
}

@media (max-width: 480px) {
  .vsl-overlay {
    width: 48%;
    min-height: 105px;
    padding: 10px 8px;
    border-radius: 8px;
  }

  .overlay-box {
    font-size: 10px;
  }

  .sound-icon {
    font-size: 38px;
    margin: 6px 0;
  }
}

.fake-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 10px;
  width: 100%;
  background: rgba(255,255,255,0.2);
  z-index: 6;
}

#fake-progress {
  height: 100%;
  width: 0%;
  background: #3D85C6;
}

.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;
      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);
      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; }

.form-group label .opt {
  color: var(--text-muted);
  font-weight: 500;
}
/* ═══════════════════════════════════════════════════════
   MELHORIAS 29/08/2026
   CTAs dupla escolha + Doação Mensal + Transparência
═══════════════════════════════════════════════════════ */

/* ── DUPLO CTA DO HERO ── */
.hero-donation-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 10px;
}

.hero-donation-actions .btn-primary {
  margin-top: 0;
}

.btn-monthly {
  width: 100%;
  min-height: 54px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius);
  background: #fff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: .9rem .8rem;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
  position: relative;
  box-shadow: 0 4px 14px rgba(1,58,127,.09);
  transition: transform .15s ease, background .2s ease, color .2s ease;
}

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

.btn-monthly:active {
  transform: scale(.985);
}

.btn-monthly-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-light);
  color: var(--primary);
  flex: 0 0 auto;
}

.btn-monthly-badge {
  font-size: .55rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .05em;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 4px 6px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── DOAÇÃO MENSAL ── */
.monthly-sec {
  margin: 1.1rem 0 0;
  padding: 2rem 1.2rem;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,158,11,.12), transparent 35%),
    linear-gradient(160deg, #f7fbff 0%, #edf5ff 100%);
  border-top: 1px solid #dbeafe;
  border-bottom: 1px solid #dbeafe;
  position: relative;
  overflow: hidden;
}

.monthly-sec::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  right: -105px;
  bottom: -110px;
  border-radius: 50%;
  border: 30px solid rgba(1,58,127,.04);
  pointer-events: none;
}

.monthly-kicker,
.transparency-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.monthly-kicker-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(245,158,11,.14);
}

.monthly-heading h2 {
  color: var(--primary-dark);
  font-size: 1.45rem;
  line-height: 1.22;
  letter-spacing: -.025em;
  margin-bottom: .8rem;
}

.monthly-heading h2 em {
  color: var(--accent-hover);
  font-style: normal;
}

.monthly-heading > p {
  color: var(--text-muted);
  font-size: .91rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.monthly-impact-grid {
  display: grid;
  gap: 9px;
}

.monthly-impact-card {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: .9rem;
  border-radius: 11px;
  background: rgba(255,255,255,.88);
  border: 1px solid #dbeafe;
  box-shadow: 0 4px 12px rgba(1,42,94,.045);
}

.monthly-impact-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.monthly-impact-card strong {
  display: block;
  color: var(--primary-dark);
  font-size: .86rem;
  line-height: 1.35;
  margin-bottom: 3px;
}

.monthly-impact-card span {
  display: block;
  color: var(--text-muted);
  font-size: .76rem;
  line-height: 1.5;
}

.monthly-highlight {
  margin: 1rem 0 1.1rem;
  border-radius: 12px;
  background: var(--primary-dark);
  color: #fff;
  padding: 1rem;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(1,42,94,.16);
}

.monthly-highlight-copy {
  min-width: 0;
}

.monthly-highlight-label {
  display: block;
  font-size: .57rem;
  font-weight: 800;
  letter-spacing: .11em;
  color: #93c5fd;
  margin-bottom: 4px;
}

.monthly-highlight strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}

.monthly-highlight p {
  color: rgba(255,255,255,.76);
  font-size: .75rem;
  line-height: 1.48;
}

.monthly-highlight-heart {
  color: var(--accent);
  flex: 0 0 auto;
}

.monthly-main-cta {
  position: relative;
  z-index: 1;
}

.monthly-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-top: .65rem;
  color: var(--text-muted);
  font-size: .66rem;
  text-align: center;
}

.monthly-trust svg {
  color: var(--success);
  flex: 0 0 auto;
}

/* ── TRANSPARÊNCIA ABERTA ── */
.transparency-sec {
  padding: 2.1rem 1.2rem;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.transparency-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 1.2rem;
}

.transparency-head > div:first-child {
  min-width: 0;
}

.transparency-head h2 {
  font-size: 1.45rem;
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--primary-dark);
  margin-bottom: .55rem;
}

.transparency-head h2 em {
  color: var(--accent-hover);
  font-style: normal;
}

.transparency-head p {
  color: var(--text-muted);
  font-size: .86rem;
  line-height: 1.58;
}

.transparency-seal {
  width: 72px;
  min-width: 72px;
  height: 72px;
  border-radius: 18px;
  border: 1px solid #bbf7d0;
  background: #f0fdf4;
  color: #047857;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2px;
  box-shadow: 0 4px 12px rgba(4,120,87,.07);
}

.transparency-seal span {
  font-size: .55rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.transparency-seal strong {
  font-size: .62rem;
}

.transparency-summary {
  display: grid;
  gap: 9px;
  margin-bottom: 1rem;
}

.transparency-summary-card.primary {
  border-radius: 13px;
  padding: 1rem;
  background:
    linear-gradient(135deg, rgba(255,255,255,.07), transparent),
    var(--primary-dark);
  color: #fff;
  box-shadow: 0 8px 22px rgba(1,42,94,.15);
}

.transparency-summary-card span {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  color: #bfdbfe;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.transparency-summary-card strong {
  display: block;
  font-size: 1.75rem;
  line-height: 1.15;
  margin: 4px 0;
}

.transparency-summary-card small {
  display: block;
  font-size: .68rem;
  color: rgba(255,255,255,.7);
}

.transparency-mini-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
}

.transparency-mini {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: .72rem .8rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f8fafc;
}

.transparency-mini span {
  color: var(--text-muted);
  font-size: .72rem;
}

.transparency-mini strong {
  color: var(--primary-dark);
  font-size: .78rem;
  white-space: nowrap;
}

.cost-table {
  border: 1px solid #dbe4ef;
  border-radius: 13px;
  overflow: hidden;
  background: #fff;
  margin: 1rem 0;
}

.cost-table-title,
.cost-row,
.cost-total {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.cost-table-title {
  padding: .75rem .85rem;
  background: var(--primary);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.cost-row {
  padding: .72rem .85rem;
  border-bottom: 1px solid #edf2f7;
  font-size: .77rem;
}

.cost-row:nth-child(even) {
  background: #fbfdff;
}

.cost-row span {
  color: var(--text-main);
  line-height: 1.35;
}

.cost-row strong {
  color: var(--primary-dark);
  font-size: .76rem;
  white-space: nowrap;
}

.cost-total {
  padding: .9rem .85rem;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
}

.cost-total span {
  font-size: .78rem;
}

.cost-total strong {
  font-size: .92rem;
  color: var(--primary);
}

.transparency-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: .8rem;
  margin-bottom: .25rem;
}

.transparency-note-icon {
  color: #b45309;
  flex: 0 0 auto;
  margin-top: 1px;
}

.transparency-note p {
  color: #7c5a10;
  font-size: .7rem;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .hero-donation-actions {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .btn-monthly {
    min-height: 58px;
    font-size: .96rem;
  }

  .monthly-sec,
  .transparency-sec {
    border-radius: 16px;
    margin-top: 1.4rem;
    padding: 2.4rem;
  }

  .monthly-heading h2,
  .transparency-head h2 {
    font-size: 1.85rem;
  }

  .monthly-heading > p,
  .transparency-head p {
    max-width: 760px;
  }

  .monthly-impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .monthly-impact-card {
    min-height: 160px;
    flex-direction: column;
    padding: 1.05rem;
  }

  .monthly-highlight {
    padding: 1.15rem 1.3rem;
  }

  .transparency-summary {
    grid-template-columns: .9fr 1.1fr;
    align-items: stretch;
  }

  .transparency-mini-grid {
    grid-template-columns: 1fr;
  }

  .cost-row,
  .cost-table-title,
  .cost-total {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   AJUSTES FINAIS — 29/08/2026
   Header + imagem da missão + versículos + modal de doação
═══════════════════════════════════════════════════════════════ */

/* ── HEADER MAIS COMPACTO E COM IDENTIDADE ─────────────────── */
.header {
  min-height: 64px !important;
  padding: 5px 16px !important;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdff 100%) !important;
  border-bottom: 1px solid #dbe5f0 !important;
  box-shadow: 0 6px 22px rgba(1,42,94,.055) !important;
  overflow: visible !important;
}

.header::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary) 0%,
    var(--primary) 37%,
    var(--accent) 37%,
    var(--accent) 63%,
    var(--primary) 63%,
    var(--primary) 100%
  );
  opacity: .9;
}

.header img {
  width: auto !important;
  height: 54px !important;
  max-height: 54px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
}

.container {
  padding-top: 76px !important;
}

/* ── IMAGEM "NOSSA MISSÃO": SEM CORTE ─────────────────────── */
.missao-img-wrap {
  height: auto !important;
  aspect-ratio: auto !important;
  background: #eef3f8;
}

.missao-img-wrap img {
  width: 100% !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
}

/* mantém o texto sobreposto legível sem recortar a fotografia */
.missao-img-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(1,42,94,.78) 100%) !important;
  padding-top: 44px !important;
}

/* ── VERSÍCULOS REALMENTE CENTRALIZADOS ────────────────────── */
.hero-bottom {
  align-items: center !important;
}

.verse-area {
  width: 100% !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 14px 18px 10px !important;
  position: relative;
}

.verse-bar {
  display: none !important;
}

.verse-inner {
  width: 100% !important;
  max-width: 720px;
  margin: 0 auto !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center !important;
}

.verse-quote {
  width: 100%;
  text-align: center !important;
  font-size: .86rem !important;
  line-height: 1.55 !important;
  margin: 0 auto 5px !important;
}

.verse-ref {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center !important;
  position: relative;
  padding-bottom: 7px;
}

.verse-ref::after {
  content: '';
  position: absolute;
  width: 28px;
  height: 2px;
  border-radius: 4px;
  background: var(--accent);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

/* ═════════════════════════════════════════════════════════════
   MODAL — IDENTIDADE VISUAL "SHEET" LIMPA E PREMIUM
═════════════════════════════════════════════════════════════ */
.modal-overlay.overlay,
.modal-overlay {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(7,29,64,.62) !important;
  backdrop-filter: blur(5px) !important;
  -webkit-backdrop-filter: blur(5px) !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
  z-index: 9999 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity .28s ease, visibility .28s ease !important;
}

.modal-overlay.active,
.modal-overlay.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.modal-box.sheet,
.modal-box {
  --modal-navy: #0b2a5b;
  --modal-navy-deep: #071d40;
  --modal-paper: #f6f8fb;
  --modal-line: #dce3ec;
  --modal-muted: #697586;

  width: 100% !important;
  max-width: 560px !important;
  max-height: 92vh !important;
  background: #fff !important;
  border: 1px solid rgba(255,255,255,.55) !important;
  border-radius: 22px 22px 0 0 !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translateY(100%) !important;
  transition: transform .38s cubic-bezier(.2,.8,.2,1) !important;
  box-shadow: 0 -12px 42px rgba(7,29,64,.22) !important;
}

.modal-overlay.active .modal-box,
.modal-overlay.is-open .modal-box {
  transform: translateY(0) !important;
}

.modal-handle,
.sheet__handle {
  width: 40px !important;
  height: 4px !important;
  border-radius: 2px !important;
  background: var(--modal-line) !important;
  margin: 11px auto 0 !important;
  flex: 0 0 auto !important;
}

.modal-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 0 !important;
  padding: 14px 20px 10px !important;
  flex-shrink: 0 !important;
}

.modal-header-left {
  min-width: 0;
}

.modal-header-icon {
  width: 38px !important;
  height: 38px !important;
  border-radius: 11px !important;
  background: #edf4ff !important;
  color: var(--modal-navy) !important;
}

.modal-title-copy {
  min-width: 0;
}

.modal-title-copy > span {
  display: block;
  color: var(--accent-hover);
  font-size: .58rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.modal-title-copy h2,
.modal-header h2 {
  margin: 0 !important;
  color: var(--modal-navy) !important;
  font-size: 1.18rem !important;
  line-height: 1.2 !important;
  letter-spacing: -.02em;
}

.modal-close {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  border: 1px solid var(--modal-line) !important;
  background: #fff !important;
  color: var(--modal-muted) !important;
  display: grid !important;
  place-items: center !important;
}

.modal-close:hover {
  background: var(--modal-paper) !important;
  color: var(--modal-navy) !important;
  border-color: var(--modal-line) !important;
}

/* abas */
.modal-tabs {
  margin: 5px 20px 0 !important;
  padding: 4px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 4px !important;
  background: var(--modal-paper) !important;
  border: 1px solid var(--modal-line) !important;
  border-radius: 12px !important;
}

.modal-tab {
  min-height: 51px !important;
  border-radius: 9px !important;
  padding: 7px 8px !important;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  color: var(--modal-muted) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.modal-tab span {
  font-size: .79rem;
  font-weight: 750;
  line-height: 1.2;
}

.modal-tab small {
  display: block;
  font-size: .59rem;
  line-height: 1.2;
  font-weight: 500;
  opacity: .78;
}

.modal-tab.active {
  background: var(--modal-navy) !important;
  color: #fff !important;
  box-shadow: 0 3px 10px rgba(11,42,91,.2) !important;
}

/* bloco exclusivo da recorrência */
.monthly-modal-info {
  display: none;
  margin: 10px 20px 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #b9d7fb;
  background:
    radial-gradient(circle at 100% 0%, rgba(245,158,11,.12), transparent 38%),
    linear-gradient(145deg, #f7fbff 0%, #edf5ff 100%);
  animation: monthlyInfoIn .24s ease both;
}

.monthly-modal-info.is-visible {
  display: block;
}

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

.monthly-modal-info__top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.monthly-modal-info__icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--modal-navy);
  color: #fff;
}

.monthly-modal-info__eyebrow {
  display: block;
  color: #2f6ca9;
  font-size: .55rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .09em;
  margin-bottom: 3px;
}

.monthly-modal-info__top strong {
  display: block;
  color: var(--modal-navy);
  font-size: .8rem;
  line-height: 1.25;
}

.monthly-modal-info__text {
  margin: 9px 0 10px;
  color: #546275;
  font-size: .69rem;
  line-height: 1.48;
}

.monthly-modal-benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.monthly-modal-benefit {
    display: flex;
    align-items: flex-start;
    margin-top: 4px;
    gap: 9px;
    padding: 6px 9px;
    border: 1px solid rgba(185, 215, 251, .75);
    border-radius: 9px;
    background: rgba(255, 255, 255, .78);
}

.monthly-modal-benefit__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: #eaf8f1;
  color: #087f5b;
  font-size: .65rem;
  font-weight: 900;
}

.monthly-modal-benefit strong {
  display: block;
  color: var(--modal-navy);
  font-size: .67rem;
  line-height: 1.2;
  margin-bottom: 1px;
}

.monthly-modal-benefit small {
  display: block;
  color: #718096;
  font-size: .58rem;
  line-height: 1.35;
}

.monthly-modal-info__note {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #0f6a4d;
  font-size: .61rem;
  font-weight: 700;
  text-align: center;
}

.monthly-modal-info__note svg {
  color: #12a36f;
  flex: 0 0 auto;
}

/* body */
.modal-body {
  flex: 1 !important;
  min-height: 0;
  overflow-y: auto !important;
  padding: 14px 20px !important;
  scrollbar-width: thin !important;
  scrollbar-color: #cbd5e1 transparent !important;
}

.modal-body::-webkit-scrollbar {
  width: 5px !important;
  display: block !important;
}

.modal-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

/* valores */
.values-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 9px !important;
  margin-bottom: 15px !important;
  padding-top: 7px;
}

.val-btn {
  min-height: 50px !important;
  position: relative !important;
  overflow: visible !important;
  border: 1.5px solid var(--modal-line) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #28374b !important;
  font-size: .9rem !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}

.val-btn:hover {
  border-color: var(--modal-navy) !important;
  color: var(--modal-navy) !important;
}

.val-btn.selected {
  background: var(--modal-navy) !important;
  border-color: var(--modal-navy) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(11,42,91,.16) !important;
}

.val-btn.popular::before {
  content: 'Mais escolhido' !important;
  top: -8px !important;
  right: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border-radius: 20px !important;
  padding: 2px 6px !important;
  background: var(--accent) !important;
  color: var(--modal-navy-deep) !important;
  font-size: .46rem !important;
  white-space: nowrap !important;
  z-index: 2;
}

.custom-label {
  color: var(--modal-navy) !important;
  font-size: .73rem !important;
  font-weight: 650 !important;
  margin-bottom: 6px !important;
}

.custom-input-wrap {
  border: 1.5px solid var(--modal-line) !important;
  border-radius: 10px !important;
  background: #fff !important;
}

.custom-input-wrap:focus-within {
  border-color: var(--modal-navy) !important;
  box-shadow: 0 0 0 3px rgba(11,42,91,.09);
}

.currency-tag {
  background: var(--modal-paper) !important;
  color: var(--modal-navy) !important;
  border-right: 1px solid var(--modal-line);
}

/* inputs da segunda etapa */
.form-group label {
  color: var(--modal-navy) !important;
  font-size: .73rem !important;
  font-weight: 650 !important;
}

.form-input {
  min-height: 45px !important;
  border: 1.5px solid var(--modal-line) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #28374b !important;
}

.form-input:focus {
  border-color: var(--modal-navy) !important;
  box-shadow: 0 0 0 3px rgba(11,42,91,.09) !important;
}

/* indicador/chip */
.donation-type-indicator {
  margin: 8px 20px 0 !important;
  border-radius: 999px !important;
  padding: 6px 12px !important;
  background: var(--modal-paper) !important;
  border-color: var(--modal-line) !important;
  color: var(--modal-navy) !important;
}

.donation-type-indicator.mensal {
  background: #edf9f4 !important;
  border-color: #bde7d5 !important;
  color: #087f5b !important;
}

.selected-amount-chip {
  border-radius: 999px !important;
  background: var(--modal-paper) !important;
  border: 1px solid var(--modal-line) !important;
}

/* footer */
.modal-footer {
  padding: 12px 20px 16px !important;
  border-top: 1px solid var(--modal-line) !important;
  background: rgba(255,255,255,.96) !important;
}

.btn-donate-main {
  min-height: 50px !important;
  border-radius: 11px !important;
  background: var(--accent) !important;
  color: #fff !important;
  box-shadow: 0 5px 16px rgba(245,158,11,.25) !important;
  font-size: .86rem !important;
  font-weight: 800 !important;
  letter-spacing: .015em;
}

.btn-donate-main:hover {
  background: var(--accent-hover) !important;
}

.modal-footer-safe {
  margin-top: 7px !important;
  color: var(--modal-muted) !important;
  font-size: .62rem !important;
}

/* Quando for mensal, reforça visualmente a recorrência */
.modal-overlay.is-monthly .btn-donate-main {
  background: var(--accent) !important;
  box-shadow: 0 5px 16px rgba(11,42,91,.2) !important;
}

.modal-overlay.is-monthly .btn-donate-main:hover {
  background: var(--modal-navy-deep) !important;
}

/* desktop: modal centralizado e header ainda mais enxuto */
@media (min-width: 768px) {
  .header {
    min-height: 68px !important;
    padding: 6px 24px !important;
  }

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

  .container {
    padding-top: 82px !important;
  }

  .modal-overlay.overlay,
  .modal-overlay {
    align-items: center !important;
    padding: 18px !important;
  }

  .modal-box.sheet,
  .modal-box {
    max-width: 560px !important;
    max-height: min(88vh, 760px) !important;
    border-radius: 20px !important;
    transform: translateY(14px) scale(.985) !important;
    box-shadow: 0 24px 68px rgba(7,29,64,.28) !important;
  }

  .modal-overlay.active .modal-box,
  .modal-overlay.is-open .modal-box {
    transform: none !important;
  }

  .monthly-modal-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .monthly-modal-benefit {
    min-height: 78px;
  }
}

/* mobile pequeno */
@media (max-width: 430px) {
  .header {
    min-height: 58px !important;
    padding: 4px 12px !important;
  }

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

  .container {
    padding-top: 68px !important;
  }

  .modal-header {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .modal-tabs,
  .monthly-modal-info {
    margin-left: 16px !important;
    margin-right: 16px !important;
  }

  .modal-body,
  .modal-footer {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .modal-title-copy h2,
  .modal-header h2 {
    font-size: 1.05rem !important;
  }

  .monthly-modal-info__text {
    font-size: .66rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   AJUSTES FINAIS — 30/08/2026
   PIX mais compacto + CTA mensal azul + grade mensal própria
═══════════════════════════════════════════════════════════════ */

/* ── CTA "QUERO AJUDAR TODO MÊS" ───────────────────────────── */
.btn-monthly {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  box-shadow: 0 5px 16px rgba(1,58,127,.22) !important;
}

.btn-monthly:hover {
  background: var(--primary-dark) !important;
  border-color: var(--primary-dark) !important;
  color: #fff !important;
}

.btn-monthly:active {
  background: var(--primary-dark) !important;
}

.btn-monthly .btn-monthly-icon {
  background: rgba(255,255,255,.13) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.2);
}

.btn-monthly .btn-monthly-icon svg {
  color: #fff !important;
  stroke: #fff !important;
}

.btn-monthly .btn-monthly-badge {
  background: rgba(255,255,255,.13) !important;
  border-color: rgba(255,255,255,.35) !important;
  color: #fff !important;
}

/* ── PIX DIRETO — versão mais compacta ─────────────────────── */
.pix-donate-sec {
  padding: 20px 14px 22px !important;
  background: linear-gradient(160deg, #278f4c 0%, #319c53 50%, #42a95d 100%) !important;
}

.pix-donate-container {
  max-width: 460px !important;
}

.pix-donate-card {
  padding: 17px 16px 16px !important;
  border-radius: 16px !important;
  border: 0 !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.09) !important;
}

.pix-donate-logo-wrap {
  gap: 9px !important;
  margin-bottom: 14px !important;
}

.pix-donate-logo-circle {
  width: 38px !important;
  height: 38px !important;
  box-shadow: 0 3px 10px rgba(76,175,80,.25) !important;
}

.pix-donate-logo-circle svg {
  width: 20px !important;
  height: 20px !important;
}

.pix-donate-brand {
  font-size: 1.16rem !important;
  letter-spacing: -.25px !important;
}

.pix-donate-copy-area {
  padding: 12px !important;
  border-radius: 11px !important;
  border-width: 1px !important;
}

.pix-donate-label {
  font-size: .57rem !important;
  letter-spacing: 1.25px !important;
  margin-bottom: 7px !important;
}

.pix-donate-key {
  font-size: .96rem !important;
  padding: 8px 9px !important;
  margin-bottom: 9px !important;
  border-width: 1.5px !important;
  border-radius: 8px !important;
}

.pix-donate-btn {
  padding: 9px 12px !important;
  min-height: 40px !important;
  border-radius: 8px !important;
  font-size: .78rem !important;
}

.pix-donate-btn svg {
  width: 15px !important;
  height: 15px !important;
}

.pix-donate-divider {
  margin: 12px 0 !important;
}

.pix-donate-recipient-block {
  gap: 1px !important;
}

.pix-donate-recipient-label,
.pix-donate-steps-title {
  font-size: .56rem !important;
  letter-spacing: 1.2px !important;
}

.pix-donate-recipient-name {
  font-size: .86rem !important;
  margin-top: 2px !important;
}

.pix-donate-recipient-cnpj {
  font-size: .68rem !important;
  margin-top: 1px !important;
}

.pix-donate-steps-block {
  padding-top: 0 !important;
}

.pix-donate-steps-list {
  margin-top: 7px !important;
  padding-left: 18px !important;
}

.pix-donate-steps-list li {
  font-size: .69rem !important;
  line-height: 1.4 !important;
  margin-bottom: 4px !important;
}

.pix-donate-footer {
  margin-top: 13px !important;
  font-size: .68rem !important;
  line-height: 1.45 !important;
  padding: 0 8px !important;
}

/* ── MODAL: identifica visualmente a grade mensal ──────────── */
.modal-overlay.is-monthly .values-grid {
  margin-top: 1px !important;
}

/* O "Mais escolhido" continua em R$30 nas duas modalidades. */
.modal-overlay.is-monthly .val-btn.popular::before {
  content: 'Mais escolhido' !important;
}

/* compactação adicional no celular */
@media (max-width: 480px) {
  .pix-donate-sec {
    padding: 16px 12px 18px !important;
  }

  .pix-donate-card {
    padding: 15px 13px 14px !important;
    border-radius: 14px !important;
  }

  .pix-donate-logo-wrap {
    margin-bottom: 12px !important;
  }

  .pix-donate-key {
    font-size: .9rem !important;
  }

  .pix-donate-footer {
    margin-top: 11px !important;
  }
}
