.checkbox-anon {
  transform: scale(1.1); /* Aumenta ~20% */
  height: 1.2rem; /* ajuste visual */
  width: 1.2rem; /* ajuste visual */
  accent-color: #5b9e51; /* cor verde igual ao tema */
  cursor: pointer;
}

.label-anon {
  margin-left: 0.5rem;
  font-size: 1rem; /* aumenta um pouco a fonte */
  font-weight: 500;   /* opcional: deixa um pouco mais forte */
  color: #374151;     /* text-gray-700 */
  cursor: pointer;
}


    /* container fixo no canto superior direito */
  .toast-container {
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none; /* não bloqueia cliques no conteúdo atrás */
  }

  /* card do toast */
  .toast {
    min-width: 280px;
    max-width: 420px;
    padding: 12px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    background: #fff;
    color: #111827;
    font: 14px/1.4 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    gap: 10px;
    align-items: start;
    pointer-events: auto; /* permite clicar no botão fechar */
    opacity: 0;
    transform: translateY(-6px);
    animation: toast-in .25s ease-out forwards, toast-out .35s ease-in forwards var(--toast-life, 4s);
  }

  .toast--error {
    border-left: 4px solid #ef4444;
  }

  .toast__icon {
    margin-top: 2px;
  }

  .toast__title {
    font-weight: 600;
    margin-bottom: 2px;
  }

  .toast__message {
    margin: 0;
  }

  .toast__close {
    background: transparent;
    border: 0;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    color: #6b7280;
  }
  .toast__close:hover { color: #111827; }

  @keyframes toast-in {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes toast-out {
    to   { opacity: 0; transform: translateY(-6px); }
  }


	html, body {
	font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI",
				Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif !important;
	}
	.valor-doacao-input { padding-left: 2.25rem !important; } /* ~pl-13 */

    .btn-donation{
      width:100%;
      background-color:#5b9e51;
      color:#fff;
      padding:0.75rem 1rem;
      border-radius:0.375rem; 
      font-weight:500; 
      box-shadow:0 1px 2px 0 rgb(0 0 0 / 0.05);
      transition:color .15s, background-color .15s, border-color .15s, fill .15s, stroke .15s;
          margin-top: 15px;
    margin-bottom: 15px;

    }
    .btn-donation:hover{ background-color:#5b9e51; }

    .span-duas-colunas{ grid-column: 1 / -1; }

    .border-teal-500{ border-color: #5b9e51!important; }
    .bg-teal-500{ background-color: #5b9e51!important; color:#fff!important; }
    .bg-teal-600{ background-color: #5b9e51!important; color:#fff!important; }
    .text-teal-600{ color: #5b9e51!important; }
    .text-teal-800{ color:#fff; }

    .atualizacao-item{ margin-top:20px; }

    #overlay-loading{
      position:fixed; inset:0; z-index:9999;
      display:none; align-items:center; justify-content:center; pointer-events:all;
    }
    .overlay-bg{ position:absolute; inset:0; background:rgba(255,255,255,0.5); backdrop-filter:blur(6px); z-index:1; }
    .overlay-content{ position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; justify-content:center; }
    .spinner{ width:48px; height:48px; border:5px solid #f3f3f3; border-top:5px solid #e63539; border-radius:50%; animation:spin .9s linear infinite; margin-bottom:28px; }
    @keyframes spin{ 0%{transform:rotate(0)} 100%{transform:rotate(360deg)} }

    .layout-campanha{ display:block; }
    @media (min-width:1024px){
      .layout-campanha{
        display:flex;
        gap:2rem;
        align-items:flex-start;
      }
      .col-left{ flex:1; min-width:0; }
      .col-right{ width:360px; flex:0 0 360px; position:sticky; top:24px; }
    }
	@media (min-width: 1024px) {
  .only-mobile { display: none !important; }
}

.logo{
    max-width: 92px;
    display: block;
    margin: 0 auto;
}
/* Sidebar Overlay */
#sidebar-mobile {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: stretch;
    transition: opacity 0.3s cubic-bezier(.4,0,.2,1);
    opacity: 0;
    pointer-events: none;
}
/* Overlay visível */
#sidebar-mobile.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
}
/* Sidebar Content (menu branco) */
#sidebar-mobile .sidebar-content {
    background: #fff;
    width: 100vw;
    max-width: 100vw;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 1.5rem;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.25s cubic-bezier(.4,0,.2,1);
    display: flex;
    flex-direction: column;
    opacity: 0.96;
}
#sidebar-mobile.open .sidebar-content {
    transform: translateX(0);
    opacity: 1;
}
/* Botão de fechar */
#close-sidebar {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
}
@media (min-width: 768px) {
    #sidebar-mobile { display: none !important; }
}
/* Dropdown - Menu de usuário */
.group:hover .group-hover\:block {
    display: block;
}
.group-hover\:block {
    display: none;
}

/* ===== Modal de Doação (estilo Vakinha) ===== */
.modal-doacao-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow-y: auto;
}
.modal-doacao-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    cursor: pointer;
}
.modal-doacao-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    margin: auto;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}
.modal-doacao-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 1.75rem;
    line-height: 1;
    color: #6b7280;
    cursor: pointer;
    padding: 0.25rem;
    z-index: 1;
}
.modal-doacao-close:hover {
    color: #111827;
}
.modal-doacao-inner {
    padding: 1.5rem 1.5rem 1.5rem;
}
.modal-doacao-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem;
    line-height: 1.35;
}
.modal-doacao-id {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.75rem;
}
.modal-doacao-label {
    font-size: 0.9rem;
    color: #475569;
    margin: 0 0 0.5rem;
}
.value-input {
    display: flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    margin-bottom: 0.5rem;
    background: #f8fafc;
}
.value-input .currency-prefix {
    font-weight: 700;
    color: #334155;
    margin-right: 0.5rem;
}
.value-input .value-field {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1.15rem;
    font-weight: 600;
    outline: none;
}
.preset-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin: 1rem 0;
}
@media (max-width: 400px) {
    .preset-values { grid-template-columns: repeat(2, 1fr); }
}
.preset-value-btn, .btn-valor {
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    background: #f1f5f9;
    font-weight: 600;
    font-size: 0.85rem;
    color: #334155;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}
.preset-value-btn:hover, .btn-valor:hover {
    border-color: #10b981;
    background: #d1fae5;
}
.preset-value-btn.selected, .btn-valor.selected {
    border-color: #059669;
    background: #059669;
    color: #fff;
}
.section-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1e3a5f;
    margin: 1.25rem 0 0.5rem;
}
.section-title-accent {
    position: relative;
    padding-bottom: 0.35rem;
}
.section-title-accent::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, #ec4899 0%, #ec4899 40%, #10b981 40%, #10b981 100%);
    border-radius: 2px;
}
.modal-doacao-btn-primary {
    width: 100%;
    background: #22c55e;
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: background 0.2s, transform 0.05s;
}
.modal-doacao-btn-primary:hover {
    background: #16a34a;
}
.modal-doacao-btn-primary:active {
    transform: scale(0.99);
}
.payment-methods {
    margin: 1rem 0 0;
}
.payment-option.pix {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: #dcfce7;
    border: 1px solid #86efac;
    cursor: default;
}
.payment-option.pix.selected .radio-button {
    background: #16a34a;
    border-color: #16a34a;
}
.payment-option .radio-button {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 2px solid #9ca3af;
    margin-right: 0.5rem;
    vertical-align: middle;
    flex-shrink: 0;
}
.modal-doacao-turbine-text {
    font-size: 0.9rem;
    color: #334155;
    margin: 0.5rem 0 0.15rem;
}
.modal-doacao-turbine-sub {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0 0 0.75rem;
}
.charity-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.5rem 0 1rem;
}
.charity-item {
    flex: 1 1 120px;
    min-width: 100px;
    padding: 1rem 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: #fff;
}
.charity-item:hover {
    border-color: #10b981;
    background: #f0fdf4;
}
.charity-item.selected {
    border-color: #059669;
    background: #d1fae5;
}
.charity-icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
    line-height: 1;
}
.charity-name {
    font-weight: 600;
    font-size: 0.8rem;
    color: #334155;
    line-height: 1.3;
}
.charity-price {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.25rem;
}
.modal-doacao-summary {
    margin: 1rem 0;
    padding: 0.5rem 0;
}
.modal-doacao-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #475569;
    margin-bottom: 0.25rem;
}
.modal-doacao-summary-total {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 0.35rem;
    margin-bottom: 0;
}
.modal-doacao-disclaimer {
    font-size: 10px;
    color: #94a3b8;
    text-align: center;
    margin: 1rem 0 0.75rem;
    line-height: 1.4;
}
.modal-doacao-seal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f1f5f9;
    border-radius: 10px;
    margin-top: 0.5rem;
}
.modal-doacao-seal-badge {
    background: #15803d;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.modal-doacao-seal-text {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
}
.error-message {
    font-size: 0.875rem;
    color: #dc2626;
    margin-bottom: 0.5rem;
}