/**
 * Estilos Públicos — Elo do Bem
 * Portal Mobile-First, Liquid Glass, Vídeo Player e Menu Pílula
 */
.elo-portal-wrap {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    padding: 16px 16px 100px 16px;
    color: var(--elo-text-main);
}

/* Header & Logo Topo */
.elo-top-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 0 24px 0;
}
.elo-main-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.elo-logo-link {
    display: inline-block;
    transition: var(--elo-transition);
}
.elo-logo-link:hover {
    transform: scale(1.03);
    opacity: 0.95;
}
.elo-logo-img {
    display: block;
    max-width: 250px;
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.4));
}

/* Card do Versículo Bíblico */
.elo-verse-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: var(--elo-radius-md);
    padding: 14px 16px;
    margin-bottom: 20px;
    backdrop-filter: var(--elo-glass-blur);
}
.elo-verse-icon svg {
    width: 24px;
    height: 24px;
    color: var(--elo-gold);
    flex-shrink: 0;
}
.elo-verse-text {
    margin: 0 0 4px 0;
    font-size: 0.92rem;
    line-height: 1.45;
    font-style: italic;
    color: #fef3c7;
}
.elo-verse-ref {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--elo-gold);
    text-align: right;
}

/* Hero Card da Campanha */
.elo-campaign-hero-card {
    background: var(--elo-glass-bg);
    border: 1px solid var(--elo-glass-border);
    border-radius: var(--elo-radius-lg);
    overflow: hidden;
    box-shadow: var(--elo-card-shadow);
    backdrop-filter: var(--elo-glass-blur);
    margin-bottom: 24px;
}
.elo-hero-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #090e17;
    border-radius: var(--elo-radius-lg) var(--elo-radius-lg) 0 0;
}
.elo-hero-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.elo-hero-status-row {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}
.elo-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: var(--elo-radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.elo-status-pill.active {
    background: rgba(16, 185, 129, 0.12);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.25);
}
.elo-status-pill.closed {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.elo-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    box-shadow: 0 0 6px currentColor;
    display: inline-block;
}

.elo-hero-content {
    padding: 20px;
}
.elo-campaign-title {
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1.3;
    margin: 0 0 16px 0;
    color: #f8fafc;
}

/* Bloco Financeiro & Metas */
.elo-financial-panel {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    background: rgba(15, 23, 42, 0.5);
    border-radius: var(--elo-radius-md);
    padding: 14px 16px;
    margin-bottom: 14px;
}
.elo-stat-group {
    display: flex;
    flex-direction: column;
}
.elo-stat-label {
    font-size: 0.78rem;
    color: var(--elo-text-muted);
    margin-bottom: 4px;
}
.elo-stat-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #f8fafc;
}
.elo-highlight-value {
    color: #34d399;
}

/* Barra de Progresso */
.elo-progress-container {
    margin-bottom: 20px;
}
.elo-progress-bar-bg {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--elo-radius-pill);
    overflow: hidden;
}
.elo-progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #f59e0b);
    border-radius: var(--elo-radius-pill);
    transition: width 0.6s ease-in-out;
}
.elo-progress-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 0.8rem;
    color: var(--elo-text-muted);
}
.elo-progress-pct {
    font-weight: 700;
    color: #f59e0b;
}

/* Botões */
.elo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--elo-radius-md);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--elo-transition);
    text-decoration: none;
}
.elo-btn svg { width: 20px; height: 20px; }
.elo-btn-primary {
    background: linear-gradient(135deg, #059669, #047857);
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(5, 150, 105, 0.35);
}
.elo-btn-primary:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    transform: translateY(-2px);
}
.elo-btn-hero {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    border-radius: var(--elo-radius-md);
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}
.elo-btn-pulse {
    animation: eloPulse 2.5s infinite;
}
@keyframes eloPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(245, 158, 11, 0.6); }
}

/* Player de Vídeo Responsivo (YouTube, Vimeo ou HTML5) */
.elo-video-embed-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--elo-radius-md);
    margin-top: 20px;
    background: #000000;
    border: 1px solid var(--elo-glass-border);
}
.elo-video-embed-wrap iframe,
.elo-video-embed-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--elo-radius-md);
}

/* Descrição da Campanha */
.elo-campaign-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--elo-glass-border);
}
.elo-desc-heading { font-size: 1.1rem; margin: 0 0 10px 0; color: #f8fafc; }
.elo-desc-text { font-size: 0.92rem; line-height: 1.6; color: var(--elo-text-muted); }

/* Menu Flutuante em Pílula (Minimalista Apple Liquid Glass) */
.elo-floating-pill {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: var(--elo-radius-pill);
    padding: 3px 5px;
    backdrop-filter: blur(24px) saturate(190%);
    -webkit-backdrop-filter: blur(24px) saturate(190%);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
    z-index: 999;
}
.elo-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: var(--elo-radius-pill);
    border: none;
    background: transparent;
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--elo-transition);
    white-space: nowrap;
}
.elo-pill-btn svg { width: 14px; height: 14px; }
.elo-pill-btn-donate {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #ffffff;
    font-weight: 700;
    padding: 6px 13px;
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.35);
}
.elo-pill-btn-donate:hover { transform: scale(1.03); color: #ffffff; }
.elo-pill-btn-my-donations:hover, .elo-pill-btn-campaigns:hover { background: rgba(255, 255, 255, 0.08); color: #f8fafc; }

/* Rodapé com Versão Interativa */
.elo-footer-badge { text-align: center; padding: 24px 0 10px 0; }
.elo-footer-content { display: inline-flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--elo-text-light); }
.elo-footer-brand { font-weight: 700; color: var(--elo-text-muted); }
.elo-footer-version-btn {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--elo-gold);
    font-weight: 700;
    font-size: 0.76rem;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: var(--elo-radius-pill);
    transition: var(--elo-transition);
}
.elo-footer-version-btn:hover {
    background: var(--elo-gold);
    color: #0f172a;
    transform: translateY(-1px);
}
