/* ============================== 
   Color Palette and Variables
   ============================== */

:root {
    --primary-color: #405060;
    /* Deep blue-gray for main elements */
    --secondary-color: #bdd8f2;
    /* Slightly lighter blue-gray */
    --accent-color: #27AE60;
    /* Vibrant green for highlights */
    --background-color: #ECF0F1;
    /* Light gray-blue background */
    --background-color2: #ECF0F1;
    /* Duplicate variable for future use */
    --text-color: #2C3E50;
    /* Dark text color */
    --white-color: #FFFFFF;
    /* Clean white */
    --background-cardapio: #ecf7ef;
    /* Background color for cardapio */
    --gradient-linear: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--highlight-color));
}

/* ============================== 
   Global Styles
   ============================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

body {
    background-color: #ADB7B6;
    margin: 0;
    font-family: Poppins;
    color: var(--text-color);
    line-height: 1.6;
    padding-bottom: 60px;
  
}

/* ============================== 
   Layout: Container, Header, Footer
   ============================== */

.container {
    max-width: 480px;
    margin: 0 auto;
    background-color: #f5f5f5;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    /* Permite que os cards "quebrem" para a próxima linha */
    gap: 16px;
    /* Espaçamento entre os cards */
    justify-content: center;
    /* Centraliza os cards */
    padding: 10px;
    /* Espaçamento interno do container */

}

/* CABEÇALHO */
.header {
    width: 100%;
    height: 150px;
    background-color: var(--background-color);
    margin-bottom: 1px;
    overflow: hidden;
    position: relative;
}

.header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header .logo {
    position: absolute;
    bottom: 10px;
    left: 20px;
    width: 100px;
    height: 100px;
    top: 40px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    padding: 2px;
}

.header .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Estilos para a seção de informações da empresa */
.dadosEmpresa {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Alinha o conteúdo da esquerda para a direita */
    padding: 10px 20px;
    background-color: #f4f4f4;
    border-radius: 8px;
}

/* Estilo para o título */
.dadosEmpresa h1 {
    font-size: 10px;
    margin: 0 20px 0 0;
    /* Adiciona espaço à direita do título */
    color: #5a75f9;
    flex-grow: 1;
    /* Permite que o título ocupe o espaço disponível */
}

.nomeusuario {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.nomeusuario p {
    font-size: 13px;
    font-weight: 500;
    margin: 0 20px 0 0;
    color: #fff;
    background: #5a75f9;
    border-radius: 8px;
    flex-grow: 1;
    padding: 10px;
    /* Permite que o título ocupe o espaço disponível */
}

/* Estilo para o botão de ação */
.acao {
    padding: 10px 20px;
    /* Aumentando o espaçamento interno do botão */
    background-color: #ff6347;
    /* Cor de fundo */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-left: 20px;
    /* Espaço maior à esquerda do botão */
}

.acao:hover {
    background-color: #e55347;
    /* Cor ao passar o mouse */
}

/* Search Container */
.busca-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.campo-busca {
    width: 300px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.btn-busca {
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-busca:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;

    color: #0056b3;
    padding: 10px 20px;
    z-index: 100;
    font-size: 0.9rem;

    background-image: url('./img/bgBarr.jpg');
    background-size: cover;
    /* Faz a imagem cobrir toda a área do elemento */
    background-position: center;
    /* Centraliza a imagem */
}

/* Footer Content */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 575px;
    padding: 0 20px;
}

/* ============================== 
   Carousel Styles
   ============================== */

/* CARROUSEL */
.carrossel-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    background-color: #fcfafa;
    margin-bottom: -30px;
    transform-style: preserve-3d;
    transform: perspective(100rem);
    z-index: 1;
}

.carrossel-container .titulo-container p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #202020;
}

.carrossel {
    display: flex;
    will-change: transform;
    animation: scrollCarousel 140s linear infinite;
    /* Loop contínuo da animação */
    gap: 30px;
    margin: bottom 10px;

}

.carrossel-item {
    width: 200px;
    flex: 0 0 auto;
    box-shadow: 0 2px 6px rgba(0, 10, 0, 1);
    overflow: hidden;

    text-align: center;
    padding: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
    margin-bottom: 20px;
    font-size: 15px;
    text-decoration: none;

    --rX: 0deg;
    --rY: 0deg;
    --bX: 50%;
    --bY: 80%;

    background-color: #fff;
    border-radius: 20px;
    transform: rotateX(var(--rX)) rotateY(var(--rY));
    box-shadow: 0 30px 20px #5555;

}

.carrossel-item:hover {
    transform: scale(1.05);
    background: #e9bd91;
}

.carrossel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 20px #5559;
    z-index: -1;
}

.carrossel-item p {
    line-height: 1;
    color: #202020;
    font-size: 13px;
    margin: 1px 0;
}

.carrossel-item .preco {
    text-decoration: line-through;
    color: #7e6a6a;
    font-size: 0.8rem;
    margin: 1px 0;
}

.carrossel-item .preco-desconto {
    font-weight: 600;
    color: #4CAF50;
    font-size: 15px;
}

/* Animação contínua sem interrupção */
@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
        /* Mover os itens para a esquerda até o fim */
    }
}


/* SELECT DE CATEGORIAS */
.categorias-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: sticky;
    top: -4px;
    z-index: 100;

    --rX: 0deg;
    --rY: 0deg;
    --bX: 50%;
    --bY: 80%;

    background-image: url('./img/bgBarr.jpg');
    background-size: cover;
    /* Faz a imagem cobrir toda a área do elemento */
    background-position: center;
    /* Centraliza a imagem */

    border-radius: 10px;
    transform: rotateX(var(--rX)) rotateY(var(--rY));
    box-shadow: 0 30px 20px #5555;
    margin-bottom: 20px;

    transform-style: preserve-3d;
    transform: perspective(100rem);

}

#categoria-select {
    padding: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    width: 80%;
    max-width: 575px;
    background-color: #f0f0f0;
    transition: border 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    color: #5a75f9;
    margin-bottom: 20px;
}

#categoria-select option {
    background-color: #f5f5f5;
    color: #333;
    padding: 8px;
}

#categoria-select option:hover {
    background-color: #e0e0e0;
    color: #fb8804;
}

#categoria-select:focus {
    border-color: #fb8804;
    outline: none;
}

/* PRODUTOS E CARDS */
#produtos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 5px;
    box-sizing: border-box;
}

.titulo-grupos {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: -1px;
    font-size: 15px;
    font-weight: 600;
    color: #1e1d1d;
}

.card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin-top: -10px;
    margin-bottom: 15px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-5px);
    background: #e9bd91;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.card-info {
    flex: 0 0 70%;
    padding-right: 10px;
}

.card-info h3 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #333;
}

.card-info p {
    margin: 5px 0;
    font-size: 12px;
    color: #666;
    text-align: justify;
}

.card-info .preco {
    font-size: 15px;
    font-weight: 600;
    color: #e53935;
}

.card-imagem {
    flex: 0 0 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-imagem img {
    max-width: 80%;
    height: 80%;

    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 30px 20px rgba(85, 85, 85, 0.6);

}

.product-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centraliza a imagem */
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Faz a imagem cobrir todo o quadrado */
}

/* ============================== 
   Modal and Cart Styles
   ============================== */

/* Modal  Estilos para o modal */
#cart-modal {
    display: none;
    /* Inicialmente oculto */
    position: fixed;
    /* Fixa o modal na tela */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    /* Certifique-se que o modal apareça sobre o conteúdo */
}

/* Estilos para o conteúdo do modal */
.modal-content {
    background-color: white;
    padding: 20px;
    margin: 50px auto;
    width: 100%;
    /* Pode ajustar o tamanho conforme necessário */
    max-width: 575px;
    position: relative;
    border-radius: 8px;
}

#close-modal {
    font-size: 24px; /* Ajuste do tamanho do '×' */
    font-weight: bold;
    color: white; /* Cor do texto */
    background: linear-gradient(145deg, rgb(173, 200, 251), rgb(38, 72, 243));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 10px; /* Espaçamento superior */
    right: 15px; /* Espaçamento lateral */
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Forma circular */
    display: flex; /* Centraliza o texto */
    align-items: center; /* Alinha verticalmente */
    justify-content: center; /* Alinha horizontalmente */
    cursor: pointer;
    border: none;
}

#close-modal:hover {
    background: linear-gradient(145deg, rgb(38, 72, 243), rgb(173, 200, 251));
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

/* Estilos para o título do modal */
h2 {  
    background-image: url('./img/bgBarr.jpg');
    background-size: cover;
    /* Faz a imagem cobrir toda a área do elemento */
    background-position: center;
    /* Centraliza a imagem */
    padding: 10px;
    margin: 0;
    text-align: center;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
}

/* Área de itens do carrinho */
#cart-items {
    max-height: 500px;
    /* Limita a altura da lista de itens (ajuste conforme necessário) */
    overflow-y: auto;
    /* Permite rolagem vertical se o conteúdo exceder a altura */
    padding: 10px;
    margin-top: 10px;
}

/* Estilo do total do carrinho */
#cart-total {
    margin-top: 20px;
    text-align: right;
    font-size: 18px;
    font-weight: bold;
}


/* Cart Item Styles */
.cart-item {
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    border-bottom: 1px solid #edc3c3;
    padding-bottom: 10px;
}

.cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 14px;
}

.cart-item .item-info {
    flex: 1;
}

.cart-item .item-info p {
    display: flex;
    justify-content: center;
    margin: 5px 0;
    color: #3d3d3d;
    font-size: 12px;
}

.cart-item .item-info .item-price {
    font-weight: 500;
}

/* Cart Total */
.cart-total {
    text-align: right;
    font-size: 15px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 30px;
    color: #1d1c1c;
    z-index: 200;
}

/* Remove Item Button */
.remove-item {
    display: flex;
    justify-content: center;
    /* Alinha horizontalmente */
    align-items: center;
    /* Alinha verticalmente */
    background: linear-gradient(145deg, rgb(173, 200, 251), rgb(38, 72, 243));
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    margin: 0px;
    /* Garantir que não tenha margem extra */
}

.remove-item:hover {

    background: linear-gradient(145deg, rgb(251, 173, 173), rgb(243, 38, 38));
}

.buscar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.buscar input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 12px;
}

.buscar .search-button,
.buscar .clear-button {
    background-color: #434242;
    border: none;
    border-radius: 5px;
    color: white;
    padding: 5px 5px;
    /* Reduzindo o padding para diminuir o tamanho */
    font-size: 14px;
    /* Ajustando o tamanho da fonte */
    cursor: pointer;
    transition: background-color 0.3s;
    width: auto;
    /* Garantindo que o botão tenha o tamanho adequado */
    height: auto;
    /* Ajustando a altura automaticamente */
}

.buscar .search-button:hover,
.buscar .clear-button:hover {
    background-color: #e5533d;
}

.buscar .search-icon,
.buscar .clear-button i {
    font-size: 20px;
    color: #fff;
}

.buscar .clear-button {
    display: none;
    /* Inicialmente escondido */
}

/* Estilos para a modal */
.modal3 {
    display: none;
    /* Inicialmente oculta */
    position: fixed;
    /* Fixa no centro da tela */
    z-index: 40;
    /* Garante que fique por cima de outros elementos */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    /* Cor de fundo semi-transparente */
}

/* Estilos para o conteúdo da modal */
.modal-content3 {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
    max-width: 575px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
}

.modal-content3 h2 {
    font-size: 15px;
}

.modal-content3 p {
    font-size: 13px;
}

/* Estilos para o botão de fechar */
.close3 {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
    cursor: pointer;
}

.close3:hover,
.close3:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Estilo para o botão de ação */
.acao {
    background-color: #28a745;
    /* Verde (cor de "Aberto") */
    color: #fff;
    /* Texto branco */
    border: none;
    /* Sem borda */
    border-radius: 5px;
    /* Bordas arredondadas */
    padding: 2px 5px;
    /* Espaçamento interno */
    font-size: 12px;
    /* Tamanho do texto */
    cursor: pointer;
    /* Indica que é clicável */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Sombra */
    transition: background-color 0.3s ease;
    /* Efeito ao passar o mouse */
}

.acao:hover {
    background-color: #218838;
    /* Cor mais escura ao passar o mouse */
}

.detalhes {
    padding: 20px;
    margin-bottom: 40px;
    /* Adicione ou aumente esse valor */
}

.detalhes .titulo {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
}

.detalhes .descricao {
    font-size: 13px;
    text-align: justify;
    margin-bottom: 20px;
}

.detalhes .preco {
    font-size: 17px;
    color: #f2ae0f;
    text-align: justify;
    margin-bottom: 20px;
}

.voltar-container {
    margin: 20px;
    text-align: right;
}

.btn-voltar,
.btn-pedido {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, rgb(173, 200, 251), rgb(38, 72, 243));
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    height: 40px;
    border-radius: 8px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none; 
}

.btn-voltar i {
    font-size: 13px;
}

.btn-voltar:hover {
    background-color: #004eb3;
}

.produtoShow-quantidade {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    /* Aumentei o espaço entre os controles */
    margin-bottom: 20px;
    /* Ajustei o espaço inferior */
}

.produtoShow-quantidade input[type="number"] {
    width: 60px;
    text-align: center;
    padding: 5px;
    font-size: 16px;
    background-color: rgb(244, 218, 171);
}

.produtoShow-quantidade .btn-adicionar {
    background-color: #ff6347;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 8px 12px;
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.produtoShow-quantidade .btn-adicionar:hover {
    background-color: #e5533c;
    font-size: 12px;
}

/* Estilos do campo de observação */
.observacao {
    margin-top: 20px;
    /* Espaçamento superior para separar do campo de quantidade */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Espaço entre o label e o campo de textarea */
    margin-bottom: 20px;
}

.observacao label {
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.observacao textarea {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: 15px;
    resize: vertical;
}

.observacao textarea:focus {
    border-color: #007BFF;
    outline: none;
}

/* Estilos para a modal */
.modal-msg {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
}

.modal-content-msg {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 50%;
    border-radius: 12px;
    /* Borda arredondada */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Sombra suave */
    transition: transform 0.3s ease-in-out;
    /* Animação suave */
}

/* Animação de entrada da modal */
.modal-msg:target .modal-content-msg {
    transform: scale(1.05);
}

/* Estilos para o botão de fechar */
.fechar_msg {
    color: #888;
    float: right;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}

.fechar_msg:hover {
    color: #f44336;
    /* Cor de destaque no hover */
}

/* Estilos para as mensagens */
.vermelho {
    background: red;
    color: #fff;
    font-size: 14px;
    /* Tamanho da fonte para mensagens lidas */
}

.verde {
    background: green;
    color: #fff;
    font-size: 12px;
    /* Tamanho da fonte para mensagens lidas */
}

.ticado {
    color: green;
    font-size: 18px;
    margin-left: 10px;
}

/* Estilos do botão de notificação */
.notification-button {
    font-size: 18px;
    padding: 10px;
    color: #000;

    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    /* Para o contador de notificações */
    margin-bottom: 10px;
}

.notification-button:hover {

    color: #fff;
}

/* Estilos para a quantidade de notificações */
.notification-count {
    background-color: rgb(255, 0, 0);
    color: #fff;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 13px;
    position: absolute;
    display: flex;
    /* Enables flexbox alignment */
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    min-width: 20px;
    /* Ensures consistent width for single digits */
    min-height: 20px;
    /* Makes it perfectly circular */
    line-height: 1;
    /* Prevents text from stretching */
    top: 15px;
    /* Ajuste esse valor conforme necessário */
    right: 30px;
    /* Ajuste esse valor conforme necessário */
}

.notification-icon {
    margin-left: 10px;
    color: red;
}

/* ============================== 
   Responsive Styles (Mobile)
   ============================== */

/* Responsividade para telas menores que 768px */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        width: 400px;
        margin-bottom: 10px;
    }

    .busca-container {
        width: 100%;
        justify-content: space-between;
    }

    .campo-busca {
        width: 70%;
    }

    .btn-busca {
        width: 28%;
    }

    .card {
        flex-direction: row;
        padding: 8px;
        width: 100%;
        /* Garante que todos tenham a mesma largura */
    }

    .card-info h3 {
        font-size: 12px;
    }

    .card-info p {
        font-size: 12px;
    }

    .card-info .preco {
        font-size: 12px;
    }

    .card-imagem img {
        width: 100px;
        height: 100px;
    }

    .modal-content-msg {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        border-radius: 12px;
        /* Borda arredondada */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* Sombra suave */
        transition: transform 0.3s ease-in-out;
        /* Animação suave */
    }

}

/* Responsividade para telas menores que 480px */
@media (max-width: 575px) {
    header {
        padding: 10px;
    }

    .logo img {
        width: 350px;
    }

    .busca-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .campo-busca,
    .btn-busca {
        width: 100%;
    }

    .card {
        padding: 8px;
        font-size: 12px;
        width: 100%;
        /* Garante que todos tenham a mesma largura */
    }

    .card-info h3 {
        font-size: 12px;
    }

    .card-info p {
        font-size: 12px;
    }

    .card-info .preco {
        font-size: 12px;
    }

    .card-imagem img {
        width: 100px;
        height: 100px;
    }

    .dadosEmpresa h1 {
        font-size: 14px;
        /* Ajusta o tamanho do título em dispositivos móveis */

    }

    .dadosEmpresa p {
        font-size: 10px;
        color: #202020;
        /* Ajusta o tamanho do texto em dispositivos móveis */
    }

    .modal-content-msg {
        background-color: #fff;
        margin: 15% auto;
        padding: 20px;
        border: 1px solid #888;
        width: 100%;
        border-radius: 12px;
        /* Borda arredondada */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* Sombra suave */
        transition: transform 0.3s ease-in-out;
        /* Animação suave */
    }

    /* Estilos para as mensagens */
    .vermelho {

        font-size: 10px;
        /* Tamanho da fonte para mensagens lidas */
    }

    .verde {

        font-size: 10px;
        /* Tamanho da fonte para mensagens lidas */
    }

    .ticado {
        color: green;
        font-size: 18px;
        margin-left: 14px;
    }

}