        body {
    animation: fadeIn 0.4s ease-in-out;
        }

       @keyframes fadeIn {
        0% { opacity: 0; }
        100% { opacity: 1; }
        }
        
        /*@view-transition {
          navigation: auto;
         }*/


        
        
        /* --- SOBRE A EMPRESA E FOOTER --- */
        .sobre-container {
            background-color: #F9F9F9;
            width: 100%;
            padding: 30px 20px 20px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border-top: 1px solid var(--cinza-borda);
            margin-top: 40px;
        }

        .sobre-title {
            font-size: 18px;
            font-weight: bold;
            color: #222222;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            text-align: center;
        }

        .sobre-texto {
            font-size: 12px;
            color: #666666;
            max-width: 850px;
            margin-bottom: 24px;
            line-height: 1.6;
            text-align: justify;
            width: 100%;
        }

        .footer-dark {
            background-color: #242424;
            width: 100%;
            padding: 50px 20px 40px;
            display: flex;
            justify-content: center;
        }

        .footer-content {
            max-width: 850px;
            width: 100%;
            border-top: 1px solid #333333;
            padding-top: 25px;
            text-align: center;
        }

        .footer-links {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            margin-bottom: 14px;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: #BBBBBB;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: #FFFFFF;
        }

        .footer-links .separator {
            color: #444444;
            font-size: 12px;
        }

        .footer-copy {
            font-size: 14px;
            color: #777777;
        }
        hr {
    border: 0;
    height: 2px;
    background-color: lightgray; /* Cor da linha */
    width: 50%; /* Largura da linha na tela */
    margin: 20px auto; /* Espaçamento em cima/baixo e centralizado */
         }

/* Container fixo no canto superior direito */
.in-app-container {
    display: none; /* Escondido por padrão, o JS vai mudar para 'flex' */
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 99999;
    flex-direction: column;
    align-items: flex-end; /* Alinha a seta e o popup à direita */
    max-width: 280px;
    animation: fadeIn 0.5s ease-in-out;
}

/* Estilo da seta SVG */

.seta-svg {
    width: 38px;  /* Aumentado levemente para destacar a borda */
    height: 38px;
    margin-bottom: 3px; 
    margin-right: 12px; 
}

/* Estilo da caixa do Pop-up */
.in-app-popup {
    background-color: rgba(200, 245, 200, 0.9); /* Verde claro transparente */
    border: 2px solid #00ff00; /* Borda verde */
    border-radius: 12px; /* Bordas arredondadas */
    padding: 15px 20px 15px 15px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Estilo do texto do Pop-up */
.in-app-popup p {
    color: #000000; /* Texto preto */
    font-size: 14px;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    margin: 0;
}

/* Botão pequeno 'X' para fechar */
.btn-fechar-x {
    position: absolute;
    top: 5px;
    right: 8px;
    color: #005700;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.btn-fechar-x:hover {
    color: #000000;
}

/* Animação suave para aparecer */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/*.btn-categories, .btn-toggle-desc, .tab-button, .btn-action-trigger, .modal-close, .btn-modal, .btn-primary-action, .btn-secondary-action, .btn-fechar-x, .brand-logo a, .breadcrumbs a, .footer-links a */



.coupon-card {
     
         -webkit-tap-highlight-color: transparent;
           transform: scale(0.96); /* Dá uma leve "afundada" no botão */
           opacity: 1; /* Fica levemente transparente */
           transition: all 0.1s ease;  
        }