/* --- BASE --- */

body {
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #FE0000;
    color: #FE0000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
}

.header {
    background-color: #f8f7f5;
    padding: 0;
    margin: 0;
    box-shadow: none;
    border: none;
    z-index: 10;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

/* Separando o cabeçalho da logo do banner */

.logo-container {
    position: relative;
    background-color: #f8f7f5;
    padding: 4px 0;
    box-shadow: none;
    z-index: 11;
}

/* Efeito de relevo apenas na seção da logo */

.logo-container::before,
.logo-container::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color:
        #FE0000;
    border-radius: 0;
    box-shadow: none;
}

.logo-container::before {
    top: 0;
}

.logo-container::after {
    bottom: 0;
}

/* Logo */

.logo {
    height: 40px;
    margin: 4px 0;
    filter: none;
    box-shadow: none;
}

.banner-container {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    background-color:
        #FE0000;
    position: relative;
    z-index: 10;
    margin: 0;
    padding: 0;
    box-shadow: none;
}

.banner-img {
    width: 100%;
    max-width: 2000px;
    height: 300px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.banner-img,
.info-columns,
.footer {
    position: relative;
    z-index: 5;
}

.bottom-img {
    width: 100%;
    max-width: 2000px;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

/* --- CONTAINER DE CHAT --- */

.chat-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    padding: 20px;
    z-index: 10;
}

/* --- CHAT BOX COM ROLAGEM INTERNA --- */

.chat-box {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 700px;
    height: 1000px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 0 auto;
}

.chat-messages-area {
    flex: 1;
    overflow-y: auto;
    padding-bottom: 16px;
    padding: 10px 20px 20px;
    scroll-behavior: smooth;
    position: relative;
    -webkit-overflow-scrolling: touch;
}

/* --- ÁREA DE INPUT FIXA --- */

.input-area {
    display: flex;
    position: sticky;
    bottom: 0;
    gap: 10px;
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    background-color: #fff;
    z-index: 11;
}

#userInput {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #ccc;
    border-radius: 20px;
    font-size: 1rem;
}

#sendButton {
    background:
        #FE0000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

#sendButton:hover {
    background:
        #FE0000;
}

/* --- MENSAGENS --- */

.message {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
    opacity: 0;
    animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.message.user {
    justify-content: flex-end;
}

.message.bot {
    justify-content: flex-start;
    position: relative;
    padding-left: 50px;
    /* Adicionar espaço para o avatar */
}

.message.bot .bubble {
    color: #000000;
    padding: 12px 16px;
    /* Aumenta o espaço interno */
    line-height: 1.5;
    /* Garante espaçamento entre linhas */
    font-size: 16px;
    word-wrap: break-word;
    max-width: 80%;
    /* ou o que for adequado ao seu layout */
    border-radius: 16px;
}

.bubble {
    background: #eaeaea;
    padding: 12px 18px;
    border-radius: 20px;
    max-width: 75%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
}

.message.user .bubble {
    background: #FFF2B2;
    /* Amarelo claro suave */
    border: 1px solid #FFE566;
    /* Borda em amarelo um pouco mais escuro */
    color: #333;
    /* Texto em cinza escuro para melhor legibilidade */
    box-shadow: 0 2px 5px rgba(255, 213, 0, 0.2);
    /* Sombra sutil com tom amarelado */
}

/* Adicionar um efeito de hover sutil */

.message.user .bubble:hover {
    background: #FFED99;
    /* Amarelo um pouco mais intenso no hover */
}

.user-msg-indicator {
    position: absolute;
    right: 15px;
    bottom: -28px;
    background: #e8f4ff;
    color: #002776;
    font-size: 0.8rem;
    padding: 3px 12px;
    border-radius: 15px;
    opacity: 0.8;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.system-msg {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #dceeff;
    padding: 14px 24px;
    border-radius: 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
    border: 2px solid #3399ff;
    animation: slideInFade 0.6s ease-out;
    margin: 20px auto 10px auto;
}

.system-msg.centered {
    width: 100%;
    margin: 0;
    padding: 25px 20px;
    background: linear-gradient(135deg, #002776, #1a4b9b);
    color: white;
    border: none;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Efeito de brilho dinâmico */

.system-msg.centered::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* Ajuste do texto */

.system-msg.centered strong {
    display: block;
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateY(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- AVATAR --- */

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    margin-top: 2px;
    animation: slideInAvatar 0.4s ease-out;
}

@keyframes slideInAvatar {
    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.message.bot .avatar {
    position: absolute;
    top: 0;
    left: 0;
    /* Alterado de -50px para 0 */
    width: 40px;
    height: 40px;
}

.typing-bubble {
    display: flex;
    gap: 6px;
    padding: 12px 18px;
    background: #dceeff;
    border-radius: 20px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    width: fit-content;
    align-items: center;
    animation: fadeIn 0.3s ease-in-out;
    border: 2px solid #3399ff;
}

.typing-bubble .dot {
    width: 8px;
    height: 8px;
    background-color: #3399ff;
    border-radius: 50%;
    animation: bounce 1.2s infinite;
}

.typing-bubble .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-bubble .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }
}

.init-message-container {
    display: flex;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 12px 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0) 100%);
}

.init-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #002776, #1a4b9b);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: fit-content;
    max-width: 80%;
    text-align: center;
}

.init-message strong {
    letter-spacing: 1px;
    font-size: 1rem;
}

.status-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #32CD32;
    border-radius: 50%;
    box-shadow: 0 0 10px #32CD32;
    animation: pulse 1.5s infinite;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.button-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 12px;
}

.continue-btn {
    background: #002776;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s;
}

.continue-btn:hover {
    background: #001a5b;
    transform: translateY(-2px);
}

/* Estilo especial para o botão de pagamento */

.payment-btn {
    background: #1e8e3e;
    /* Verde para indicar ação de pagamento */
    color: white;
    font-weight: bold;
    padding: 14px 28px;
    /* Um pouco maior que o botão padrão */
    border: none;
    border-radius: 30px;
    font-size: 1.05rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 142, 62, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-btn:hover {
    background: #167e33;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(30, 142, 62, 0.4);
}

.payment-btn:active {
    transform: translateY(-1px);
}

/* Efeito de brilho no botão de pagamento */

.payment-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(30deg);
    transition: all 0.5s;
}

.payment-btn:hover::after {
    animation: btnShine 1.5s infinite;
}

@keyframes btnShine {
    0% {
        transform: translateX(-100%) rotate(30deg);
    }

    100% {
        transform: translateX(100%) rotate(30deg);
    }
}

/* --- IMAGEM DE VERIFICAÇÃO --- */

.verificacao-container {
    background-color: #f0f8ff;
    border: 2px solid #32CD32;
    border-radius: 20px;
    padding: 12px;
    margin: 10px 0;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.verificacao-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    display: block;
}

/* --- ESTILO PARA PLAYER DE ÁUDIO PERSONALIZADO --- */

/* MODIFICADO: Garantir que o container de áudio seja visível */

.audio-container {
    display: block !important;
    background: #f7f7f7;
    border-radius: 20px;
    padding: 15px;
    margin: 5px 0;
    width: 85%;
    max-width: 350px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

/* MODIFICADO: O player original não precisa estar completamente oculto */

.enhanced-audio-player {
    display: block;
    width: 100%;
    height: auto;
    visibility: visible;
}

/* MODIFICADO: Garantir que os controles de áudio sejam exibidos */

.audio-container {
    display: block !important;
    background: #f0f0f0;
    /* Fundo mais claro */
    border-radius: 12px;
    /* Raio menor */
    padding: 10px;
    /* Padding menor */
    margin: 5px 0;
    width: 80%;
    /* Largura menor */
    max-width: 320px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
}

/* Melhorar o contraste do player nativo */

audio {
    width: 100%;
    height: 50px;
    /* Altura um pouco menor */
    padding: 2px;
}

/* Estiliza os controles do player nativo para cores dos Correios */

audio::-webkit-media-controls-panel {
    background-color: #D3D3D3;
}

audio::-webkit-media-controls-play-button,
audio::-webkit-media-controls-mute-button {
    background-color: #FFFFFF;
    border-radius: 50%;
}

/* --- SEÇÃO DE INFORMAÇÕES --- */

.info-columns {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: white;
}

.info-columns div {
    width: 100%;
}

.info-columns div h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.info-columns div ul li {
    font-size: 16px;
    margin: 4px 0;
}

.info-columns h3 {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.info-columns h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 90%;
    height: 2px;
    background-color: #0048A4;
}

.info-columns div ul {
    list-style: none;
    padding: 0;
}

.info-columns div ul li {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- RODAPÉ --- */

.footer {
    background-color: #002776;
    color: white;
    padding: 25px 0;
    width: 100%;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-left {
    float: none;
    position: static;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.footer-logo {
    grid-column: 2;
    height: 130px;
    width: auto;
    max-width: none;
    justify-self: center;
    filter: brightness(0) saturate(100%) invert(84%) sepia(92%) saturate(3425%) hue-rotate(3deg) brightness(100%) contrast(102%);
}

p.no-space {
    margin: 0;
    padding: 0;
}

p.normal-space {
    margin: 1em 0;
}

@media (max-width: 768px) {
    .footer-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 20px;
        /* Reduz o espaço interno */
        gap: 10px;
        text-align: center;
        background-color: #002776;
        /* Exemplo: azul Correios */
    }

    .footer-logo {
        height: auto;
        max-width: 250px;
        width: 100%;
    }

    .footer-left {
        float: none;
        position: static;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }
}

/* Novo bloco para tablets */

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }

    .footer-logo {
        max-width: 200px;
        height: auto;
    }

    .footer-left {
        float: none;
        position: static;
        margin: 0 auto;
        text-align: center;
        width: 100%;
    }
}

/* Ajustes base para dispositivos móveis */

@media (max-width: 768px) {

    /* Ajustes gerais */
    body {
        font-size: 14px;
    }

    /* Cabeçalho e logo responsivos */
    .logo {
        height: 32px;
    }

    /* Ajustes para o chat-box */
    .chat-box {
        height: 80vh;
        min-height: 400px;
        max-height: 600px;
        width: 100%;
        border-radius: 12px;
    }

    .chat-container {
        padding: 10px;
    }

    /* Ajustes para as mensagens */
    .message.bot .bubble,
    .message.user .bubble {
        max-width: 85%;
        padding: 10px 12px;
        font-size: 14px;
    }

    .message.bot {
        padding-left: 40px;
    }

    .message.bot .avatar {
        width: 32px;
        height: 32px;
    }

    /* Ajustes para a área de input */
    .input-area {
        padding: 10px 12px;
    }

    #userInput {
        padding: 8px 12px;
        font-size: 14px;
    }

    #sendButton {
        padding: 8px 15px;
        font-size: 14px;
    }

    /* Ajustes para botões */
    .continue-btn {
        padding: 10px 18px;
        font-size: 14px;
    }

    .payment-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    /* Ajustes para a verificação e elementos de mídia */
    .verificacao-container {
        padding: 8px;
    }

    .audio-container {
        width: 90%;
        max-width: 300px;
        padding: 8px;
    }

    audio {
        height: 40px;
    }

    /* Ajustes importantes para as colunas de informação */
    .info-columns {
        flex-direction: column;
        padding: 20px 15px;
        gap: 25px;
    }

    .info-columns div {
        width: 100%;
    }

    .info-columns div h3 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .info-columns div ul li {
        font-size: 14px;
        margin: 4px 0;
    }

    /* Ajustes adicionais para o rodapé já existente */
    .footer {
        padding: 15px 0;
    }
}

/* Ajustes específicos para telas muito pequenas */

@media (max-width: 480px) {

    /* Redução adicional para fontes em telas muito pequenas */
    body {
        font-size: 13px;
    }

    .logo {
        height: 28px;
    }

    /* Chat ainda mais compacto */
    .chat-box {
        height: 85vh;
        min-height: 350px;
        border-radius: 10px;
    }

    .message.bot .bubble,
    .message.user .bubble {
        max-width: 90%;
        /* Mais espaço para texto */
        font-size: 13px;
    }

    .message.bot {
        padding-left: 35px;
    }

    .message.bot .avatar {
        width: 28px;
        height: 28px;
    }

    /* Inputs e botões mais compactos */
    #userInput {
        padding: 7px 10px;
    }

    #sendButton {
        padding: 7px 12px;
    }

    .continue-btn {
        padding: 8px 15px;
        font-size: 13px;
    }

    .payment-btn {
        padding: 10px 18px;
    }

    /* Imagem de banner responsiva */
    .bottom-img {
        width: 100%;
        height: auto;
    }

    /* Ajustes para elementos como imagens de verificação */
    .verificacao-img {
        max-width: 100%;
    }

    /* Mensagem inicial mais compacta */
    .init-message {
        padding: 10px 18px;
    }

    .init-message strong {
        font-size: 13px;
    }
}

/* Ajustes específicos para tablets */

@media (min-width: 769px) and (max-width: 1024px) {
    .chat-box {
        max-width: 600px;
        height: 700px;
    }

    /* Ajustes para elementos de informação */
    .info-columns {
        padding: 30px 15px;
        gap: 15px;
    }

    .info-columns div {
        padding: 0 10px;
    }
}

/* Ajuste específico para corrigir visualização de imagens */

.verificacao-img {
    max-width: 100%;
    height: auto;
}

/* Ajustes para botões em visualização múltipla */

.button-wrapper.multiple {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
}

@media (max-width: 480px) {
    .button-wrapper.multiple .continue-btn {
        width: 100%;
    }
}

@media screen and (max-height: 600px) {

    .banner-image,
    .info-columns,
    .footer {
        display: none;
    }

    .chat-container {
        height: 100vh;
    }
}

@media screen and (max-width: 768px) {
    .chat-container {
        min-height: 80vh;
    }
}

.parallax,
.animate,
header,
.section {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}

/* Evita problemas de renderização em dispositivos móveis */

@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        /* Força aceleração de hardware */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    /* Correção para partes pretas durante o scroll */
    .section {
        contain: layout paint;
        transform: translateZ(0);
    }

    /* Reduz opacidade do canvas para melhorar performance */
    #canvas {
        opacity: 0.7;
    }
}

/* Correção para evitar flash preto em scroll */

html,
body {
    height: 100%;
    width: 100%;
    position: relative;
    overscroll-behavior-y: none;
}

/* Classe adicionada durante a rolagem para otimização */

body.is-scrolling .parallax {
    transition: none !important;
}

/* Detecta dispositivos de baixo desempenho */

body.low-end-device .parallax {
    transform: none !important;
}

/* ========== COUNTDOWN TIMER ========== */
.countdown-container {
    background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-align: center;
    margin: 15px 0;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.4);
    animation: pulseUrgency 2s infinite;
}

.countdown-container .timer-icon {
    font-size: 24px;
    margin-right: 10px;
}

.countdown-container .timer-text {
    font-size: 14px;
    margin-bottom: 5px;
}

.countdown-container .timer-display {
    font-size: 32px;
    font-weight: bold;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

@keyframes pulseUrgency {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

/* ========== PROGRESS BAR ========== */
.progress-container {
    background: #f0f0f0;
    border-radius: 20px;
    padding: 15px 20px;
    margin: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.progress-bar {
    background: #e0e0e0;
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, #00a859 0%, #00d46a 100%);
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: progressShine 2s infinite;
}

@keyframes progressShine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* ========== QR CODE ANIMATION ========== */
.qr-pulse {
    animation: qrPulse 2s infinite;
}

@keyframes qrPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 168, 89, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 10px rgba(0, 168, 89, 0.2);
    }
}

.qr-container-animated {
    position: relative;
    display: inline-block;
}

/* ========== ORDER BUMP ========== */
.order-bump {
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cc 100%);
    border: 2px dashed #ffc107;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    position: relative;
}

.order-bump::before {
    content: ' OFERTA ESPECIAL';
    position: absolute;
    top: -12px;
    left: 20px;
    background: #ffc107;
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: bold;
}

.order-bump-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.order-bump-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    cursor: pointer;
    accent-color: #00a859;
}

.order-bump-text {
    flex: 1;
}

.order-bump-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.order-bump-price {
    color: #00a859;
    font-weight: bold;
    font-size: 18px;
}

.order-bump-original {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

/* ========== NOTIFICATION SOUND INDICATOR ========== */
.sound-enabled {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.sound-enabled.show {
    opacity: 1;
}

/* ========== SELO DE SEGURANÇA - DESIGN SÓBRIO ========== */
.security-badge {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px 15px;
    margin: 15px 0;
}



@keyframes gradientMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes shineEffect {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.security-badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.security-shield {
    font-size: 18px;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.security-badge-title {
    color: #495057;
    font-weight: 600;
    font-size: 13px;
}

.security-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.security-check {
    color: #6c757d;
    font-size: 11px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.security-check::before {
    content: '✓';
    color: #28a745;
    font-weight: bold;
}