/* Container geral do botão */
.bnv-wrap {
    max-width: 420px;
    margin: 30px auto;
    text-align: center;
    box-sizing: border-box;
}
.bnv-wrap * {
    box-sizing: border-box;
}

/* Botão principal (com animação de pulsação lenta) */
.bnv-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, var(--bnv-btn-bg-start, #ff5b00), var(--bnv-btn-bg-end, #c41500));
    color: var(--bnv-btn-text, #ffffff);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    line-height: 1;
    animation: bnv-heartbeat 2.6s ease-in-out infinite;
    transition: opacity 0.2s ease;
}
.bnv-button:hover,
.bnv-button:focus {
    opacity: 0.92;
    color: var(--bnv-btn-text, #ffffff);
}

.bnv-button__icon {
    font-size: 13px;
    line-height: 1;
    display: inline-flex;
}
.bnv-button__icon--play {
    font-size: 12px;
}

/* Animação de pulsação lenta (estilo "heartbeat"), sem ícone de coração */
@keyframes bnv-heartbeat {
    0%   { transform: scale(1); }
    15%  { transform: scale(1.045); }
    30%  { transform: scale(1); }
    45%  { transform: scale(1.045); }
    60%  { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Mensagem de redirecionamento */
.bnv-redirect-message {
    font-size: 12px !important;
    color: #999;
    margin: 10px 0 0;
    line-height: 1.4;
}

/* Editor (Gutenberg) */
.bnv-editor {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
}

@media screen and (max-width: 480px) {
    .bnv-button {
        font-size: 15px;
        padding: 14px 16px;
    }
}
