.senso-assistente-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(15, 23, 42, .30);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity .2s ease;
}

.senso-assistente-overlay.ativo {
    opacity: 1;
}

.senso-assistente-modal {
    width: min(100%, 430px);
    max-height: calc(100vh - 40px);
    overflow: auto;
    box-sizing: border-box;
    border: 1px solid rgba(15, 157, 88, .18);
    border-radius: 22px;
    padding: 20px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
    transform: translateY(14px) scale(.98);
    transition: transform .24s ease;
}

.senso-assistente-overlay.ativo .senso-assistente-modal {
    transform: translateY(0) scale(1);
}

.senso-assistente-cabecalho {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.senso-assistente-icone {
    display: grid;
    place-items: center;
    width: 84px;
    height: 84px;
    flex: 0 0 84px;
    border-radius: 22px;
    background: #e8f7ef;
    font-size: 20px;
    overflow: hidden;
}

.senso-assistente-mascote {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.senso-assistente-titulo {
    flex: 1;
    margin: 0;
    color: #17212b;
    font-size: 17px;
}

.senso-assistente-fechar {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: #f1f3f4;
    color: #5f6368;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.senso-assistente-balao {
    position: relative;
    margin-left: 7px;
    border-radius: 6px 17px 17px 17px;
    padding: 16px;
    background: #f4faf7;
    color: #26352d;
    font-size: 14px;
    line-height: 1.5;
}

.senso-assistente-balao p {
    margin: 0 0 9px;
}

.senso-assistente-balao p:first-child {
    color: #153d2b;
    font-size: 15px;
    font-weight: 900;
}

.senso-assistente-balao p:last-child {
    margin-bottom: 0;
}

.senso-assistente-acoes {
    display: grid;
    gap: 9px;
    margin-top: 16px;
}

.senso-assistente-acao {
    width: 100%;
    border: 1px solid #dce5df;
    border-radius: 12px;
    padding: 11px 14px;
    background: #fff;
    color: #34443b;
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

.senso-assistente-acao:hover {
    transform: translateY(-1px);
    border-color: #0f9d58;
}

.senso-assistente-acao.primaria {
    border-color: #0f9d58;
    background: #0f9d58;
    color: #fff;
}

.senso-assistente-acao.sutil {
    border-color: transparent;
    background: transparent;
    color: #66736c;
}

.senso-assistente-destaque {
    animation: senso-destaque 1.4s ease 2;
    scroll-margin-top: 18px;
}

@keyframes senso-destaque {
    0%, 100% { box-shadow: 0 0 0 0 rgba(15, 157, 88, 0); }
    45% { box-shadow: 0 0 0 5px rgba(15, 157, 88, .2); }
}

@media (prefers-reduced-motion: reduce) {
    .senso-assistente-overlay,
    .senso-assistente-modal,
    .senso-assistente-acao {
        transition: none;
    }

    .senso-assistente-destaque {
        animation: none;
    }
}

@media (max-width: 480px) {
    .senso-assistente-icone {
        width: 76px;
        height: 76px;
        flex-basis: 76px;
    }
}
