body {
        margin: 0;
        font-family: Arial, sans-serif;
        background-color: #f4f4f4;
    }

    .botao {
        background: #ff3131;
        color: #fff;
        padding: 8px 18px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        display: inline-block;
        transition: background 0.2s;
    }

    .botao:hover {
        background: #d81b1b;
    }

    #banner-carrossel {
        max-width: 900px;
        margin: 32px auto 40px auto;
        position: relative;
    }
    .banner-slide {
        width: 100%;
        border-radius: 24px;
        display: none;
    }
    .banner-slide:first-child {
        display: block;
    }
    #banner-carrossel button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #fff8;
        border: none;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        font-size: 22px;
        cursor: pointer;
        z-index: 2;
    }
    #banner-prev { left: 16px; }
    #banner-next { right: 16px; }

    /* Título Produtos Disponíveis */
    .produtos-disponiveis-titulo {
        font-size: 1.7em;
        font-weight: bold;
        color: #111;
        text-align: center;
        margin-bottom: 24px;
        letter-spacing: 0.5px;
        
    }

    /* Categorias nos cards */
    .produto-categorias {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
        margin-top: 8px;
        margin-bottom: 4px;
    }
    .produto-categoria-tag {
        background: #ffeaea;
        color: #ff3131;
        font-size: 0.98em;
        padding: 3px 12px;
        border-radius: 12px;
        font-weight: 500;
        border: 1px solid #ffd6d6;
        transition: background 0.2s, color 0.2s;
        margin-bottom: 2px;
    }
    .produto-categoria-tag:not(:last-child) {
        margin-right: 2px;
    }