* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: radial-gradient(circle at 20% 30%, #1e1a0f, #0a0a0a);
    color: #ffffff;
    line-height: 1.5;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 12px;
    vertical-align: middle;
}

/* Glassmorphism principal */
.glass-card {
    max-width: 950px;
    width: 100%;
    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 3rem;
    padding: 2.5rem 2.2rem;
    box-shadow: 0 25px 40px -8px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 140, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

/* Cabeçalho */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.8rem;
}

.channel-badge {
    background: rgba(255, 215, 0, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    color: #FFD700;
    font-weight: 700;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Tipografia */
h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.text-yellow { color: #FFD700; }
.text-orange { color: #FF8C00; }

.subheadline {
    font-size: 1.25rem;
    color: #ddd;
    margin-bottom: 2.5rem;
    padding-left: 0.5rem;
    border-left: 4px solid #FF8C00;
    opacity: 0.9;
}

/* Card da meta */
.goal-card {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 2rem;
    padding: 2rem 1.8rem;
    margin: 1.8rem 0 2rem;
    border: 1px solid rgba(255, 140, 0, 0.2);
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

.goal-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.raised-block, .goal-block {
    display: flex;
    flex-direction: column;
}

.block-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #aaa;
    margin-bottom: 0.4rem;
}

.block-value {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
}

.percent-chip {
    background: #FF8C00;
    color: #0c0c0c;
    font-weight: 800;
    padding: 0.4rem 1.4rem;
    border-radius: 60px;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(255,140,0,0.3);
    backdrop-filter: blur(4px);
    align-self: center;
}

/* Barra de progresso */
.progress-container {
    margin-top: 1.5rem;
}

.progress-track {
    background: rgba(40, 40, 40, 0.7);
    height: 40px;
    border-radius: 100px;
    overflow: hidden;
    box-shadow: inset 0 4px 8px rgba(0,0,0,0.6);
    border: 1px solid #3a3a3a;
    backdrop-filter: blur(4px);
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF8C00, #FFB347, #FFD700);
    border-radius: 100px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 15px #ffb347;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 18px;
    color: #0a0a0a;
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

.progress-details {
    display: flex;
    justify-content: space-between;
    margin-top: 0.8rem;
    color: #ccc;
    font-weight: 500;
}

/* Bloco de motivação */
.motivation-glass {
    background: rgba(255, 140, 0, 0.07);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 1.8rem 1.8rem;
    border-radius: 2rem;
    margin: 2.2rem 0 2rem;
    border-left: 6px solid #FFD700;
    border-top: 1px solid rgba(255,215,0,0.2);
    border-right: 1px solid rgba(255,140,0,0.1);
    border-bottom: 1px solid rgba(255,140,0,0.1);
}

.motivation-glass p {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.motivation-glass i {
    color: #FFD700;
    margin-right: 8px;
}

.inline-stats {
    margin-top: 16px;
    font-size: 1.1rem;
    background: rgba(0,0,0,0.2);
    display: inline-block;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(4px);
}

/* Botões */
.action-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    padding: 1.1rem 2.2rem;
    border-radius: 60px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.25s;
    flex: 1 1 200px;
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.btn-primary {
    background: #FF8C00;
    color: #0a0a0a;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    border: 1px solid rgba(255,215,0,0.5);
}

.btn-primary:hover {
    background: #ffa42e;
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 140, 0, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #FFD700;
    color: #FFD700;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: #fff;
    color: white;
    transform: translateY(-2px);
}

.pix-hint {
    margin-top: 1.2rem;
    font-size: 0.95rem;
    color: #bbb;
    text-align: center;
}

/* Estilos para o QR Code */
.qrcode-container {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 140, 0, 0.05);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.qrcode-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.qrcode-caption {
    margin-top: 1rem;
    color: #ddd;
    font-size: 1rem;
    font-weight: 500;
}

.qrcode-caption i {
    color: #FFD700;
    margin-right: 8px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px; /* ou 20px, 24px… */
    margin: 32px 0;
}

.social-icons a {
    font-size: 24px;
    padding: 8px;
    color: #ffffff;
}

/* Footer */
.footer {
    margin-top: 2.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #aaa;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 1.5rem;
}


/* Responsivo */
@media (max-width: 600px) {
    .glass-card { padding: 1.8rem 1.2rem; }
    h1 { font-size: 2.2rem; }
    .block-value { font-size: 2rem; }
    .btn { padding: 0.9rem 1.5rem; font-size: 1rem; }
    .percent-chip { font-size: 1.2rem; padding: 0.2rem 1rem; }
}
