.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:550px; flex:0 0 550px; position:sticky; top:24px; }
      /* Aumenta tamanho dos botões de valor no desktop */
      .col-right .valor-btn{
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
        font-weight: 600;
      }
      /* Aumenta gap entre botões no desktop */
      .col-right .grid{
        gap: 0.75rem;
      }
      /* Aumenta padding do formulário no desktop */
      .col-right #section-donation{
        padding: 2rem;
      }
      /* Ajusta título no desktop */
      .col-right h1{
        margin-bottom: 1.5rem;
        line-height: 1.2;
      }
    }
	@media (min-width: 1024px) {
  .only-mobile { display: none !important; }
}

.logo{
    max-width: 220px;
    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;
}