/* ================================================= */
/* ESTILOS DO MODAL FLUTUANTE "APOIE O SITE"         */
/* ================================================= */
.modal-apoie-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}

.modal-apoie-container {
    background: #121214;
    border: 1px solid #27272a;
    width: 100%;
    max-width: 440px;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    color: #fff;
    font-family: inherit;
    box-sizing: border-box;
    max-height: 95vh;
    overflow-y: auto;
}

.modal-apoie-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.modal-apoie-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.modal-apoie-subtitle {
    font-size: 0.85rem;
    color: #a1a1aa;
    margin: 0;
}

.btn-fechar-timer {
    background: #7f1d1d;
    color: #fca5a5;
    border: 1px solid #991b1b;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-fechar-timer:not(:disabled) {
    background: #ef4444;
    color: #fff;
    cursor: pointer;
}

.modal-apoie-aviso-card {
    background: #18181b;
    border: 1px solid #27272a;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 16px;
}

.modal-aviso-img img {
    border-radius: 8px;
    object-fit: cover;
}

.modal-aviso-texto p {
    font-size: 0.75rem;
    color: #d4d4d8;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.texto-verde-destaque {
    color: #10b981;
    font-size: 0.75rem;
}

.modal-abas-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #09090b;
    padding: 4px;
    border-radius: 8px;
    border: 1px solid #27272a;
    margin-bottom: 12px;
}

.aba-btn {
    background: transparent;
    border: none;
    color: #a1a1aa;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: 0.2s;
}

.aba-btn.active {
    background: #ef4444;
    color: #fff;
}

.lista-mini-doadores {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.mini-doador-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #18181b;
    border: 1px solid #27272a;
    padding: 10px 12px;
    border-radius: 8px;
}

.mini-doador-item.podium-1 { border-color: rgba(234, 179, 8, 0.4); }
.mini-doador-item.podium-2 { border-color: rgba(148, 163, 184, 0.4); }
.mini-doador-item.podium-3 { border-color: rgba(217, 119, 6, 0.4); }

.mini-info-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.mini-nome {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mini-valor {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.85rem;
}

.link-ver-todas {
    display: block;
    color: #ef4444;
    font-size: 0.8rem;
    text-decoration: none;
    margin-bottom: 14px;
    font-weight: 600;
}
.link-ver-todas:hover { text-decoration: underline; }

.modal-footer-acoes {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.btn-ocultar {
    background: #27272a;
    color: #e4e4e7;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}
.btn-ocultar:hover { background: #3f3f46; }

.ocultar-restante {
    font-size: 0.7rem;
    color: #71717a;
}

.modal-aviso-beneficio {
    background: #18181b;
    border: 1px solid #ef4444;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 14px;
}
.modal-aviso-beneficio p {
    font-size: 0.7rem;
    color: #d4d4d8;
    margin: 0;
    line-height: 1.4;
}

.btn-fazer-doacao-principal {
    display: block;
    width: 100%;
    background: #ef4444;
    color: #fff;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    box-sizing: border-box;
    transition: background 0.2s;
}
.btn-fazer-doacao-principal:hover { background: #dc2626; }
.sem-doadores-msg { text-align: center; font-size: 0.8rem; color: #71717a; padding: 20px; }