    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        background-color: #1a1a1a;
		
        color: #f0f0f0;
        font-family: 'Special Elite', monospace;
        padding: 0px;
    }

    .container {
        display: flex;
		
        flex-direction: column;
        gap: 20px;
        width: 100%;
        /*max-width: 800px;*/
        margin: 0 auto;
    }

    .menu-item {
        display: flex;
        flex-direction: column;
        background-color: #2b2b2b;
        border-radius: 10px;
        border: 3px solid #ff8c00;
        padding: 15px;
        position: relative;
    }
	
	.menu-item-tap {
        display: flex;
        background-color: #2b2b2b;
        border-radius: 10px;
        border: 3px solid #ff8c00;
        padding: 15px;
        position: relative;
    }
	
    .menu-number {
        position: absolute;
        top: 10px;
        right: 10px;
        background-color: #ffcc00;
        color: #1a1a1a;
        font-size: 30px;
        font-weight: bold;
        padding: 5px 10px;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
	
	.title-master {
        font-size: 38px;
        color: #ffcc00;
        font-weight: bold;
		text-decoration: underline;
        margin-top: 10px;
		/*margin-bottom: 10px;*/
        /*cursor: pointer;*/
		text-align: center;
    }
	
	.title-section {
        font-size: 32px;
        color: #ffcc00;
        font-weight: bold;
		text-decoration: underline;
        margin-bottom: 10px;
        /*cursor: pointer;*/
    }
	
    .title {
        font-size: 28px;
        color: #ffcc00;
        font-weight: bold;
        margin-bottom: 10px;
		width:90%;
		
        /*cursor: pointer;*/
    }
	
	.title-link {
        font-size: 28px;
        color: #ffcc00;
        font-weight: bold;
		/*text-decoration: underline;*/
        margin-bottom: 10px;
		width:90%;
		
        cursor: pointer;
    }
    .description {
        font-size: 22px;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .price {
        font-size: 32px;
        color: yellow;
        font-weight: bold;
        text-align: right;
    }
	.camera-image {
		/* flex-direction: row; */
        top: 10px;
        left: 10px;
		width: 35px;
		cursor: pointer;
	}
	
    .menu-image {
        width: 100%;
        height: auto;
        max-height: 480px;
        object-fit: cover;
        margin-top: 15px;
        border-radius: 8px;
        border: 2px solid #ffcc00;
        display: none; /* Oculto por padrão */
    }

    .promo-banner {
        position: absolute;
        top: -10px;
        left: -10px;
        background-color: #d90429;
        color: #fff;
        font-size: 16px;
        font-weight: bold;
        padding: 10px;
        transform: rotate(-10deg);
        text-transform: uppercase;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    }
	
	
	 .back-link {
        text-align: right;
        margin-bottom: 20px;
    }

    .back-link a {
        font-size: 24px;
        color: #ffcc00;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s;
    }

    .back-link a:hover {
        color: #ff8c00;
    }