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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    min-height: 100vh;
}

.menu-container {
    position: relative;
    min-height: 100vh;
   background-image: url(\'background.jpg\');    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 1;
}

.menu-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px 40px;
    color: white;
}

.menu-title {
    font-family: 'Fredoka One', cursive;
    font-size: 4rem;
    color: #FFD700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.menu-subtitle {
    font-size: 1.3rem;
    color: #FFA500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.menu-content {
    position: relative;
    z-index: 2;
    padding: 0 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    border-color: #FFD700;
}

.product-card:hover::before {
    left: 100%;
}

.product-info {
    flex: 1;
    margin-right: 20px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    font-weight: 400;
}

.price-tag {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 20px;
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.price-tag::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

.standard-price {
    background: linear-gradient(135deg, #FF6B35, #FF8E53);
    color: white;
}

.standard-price::before {
    border-bottom: 8px solid #FF6B35;
}

.premium-price {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #8B4513;
    border: 2px solid #FF6B35;
}

.premium-price::before {
    border-bottom: 8px solid #FFD700;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.price-unit {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.9;
}

.price-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsividade */
@media (max-width: 768px) {
    .menu-title {
        font-size: 2.5rem;
    }
    
    .menu-subtitle {
        font-size: 1.1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .product-info {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .price-tag {
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .menu-header {
        padding: 40px 15px 30px;
    }
    
    .menu-title {
        font-size: 2rem;
    }
    
    .menu-content {
        padding: 0 15px 40px;
    }
    
    .product-card {
        padding: 15px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-description {
        font-size: 0.9rem;
    }
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

.product-card:nth-child(even) {
    animation-delay: 0.1s;
}

.product-card:nth-child(3n) {
    animation-delay: 0.2s;
}



/* Seção de Contato */
.contact-section {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 20px 0;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.contact-content {
    padding: 40px;
    text-align: center;
}

.contact-title {
    font-family: 'Fredoka One', cursive;
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 500;
}

.contact-info {
    margin-bottom: 30px;
}

.phone-number {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.phone-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.phone-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
    letter-spacing: 1px;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-button:hover::before {
    left: 100%;
}

.whatsapp-button:active {
    transform: translateY(-1px);
}

.whatsapp-icon {
    font-size: 1.5rem;
    margin-right: 12px;
}

.button-text {
    position: relative;
    z-index: 1;
}

.business-hours {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.business-hours p {
    font-size: 1rem;
    color: #8B4513;
    font-weight: 500;
    margin: 0;
}

/* Responsividade para seção de contato */
@media (max-width: 768px) {
    .contact-section {
        margin: 30px 15px 0;
    }
    
    .contact-content {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1.1rem;
    }
    
    .phone-number {
        padding: 12px 20px;
    }
    
    .phone-text {
        font-size: 1.1rem;
    }
    
    .whatsapp-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .contact-title {
        font-size: 1.8rem;
    }
    
    .whatsapp-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .button-text {
        display: block;
        text-align: center;
    }
}

/* Animação de entrada para seção de contato */
.contact-section {
    animation: slideInUp 0.8s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.menu-container {
    position: relative;
    min-height: 100vh;
    /* background-image: url(\'background.jpg\'); */ /* Comentado para usar a tag <img> */
    /* background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat; */
}



/* Estilos para links das etiquetas de preço */
.price-tag {
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.price-tag:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.price-tag:active {
    transform: scale(1.02);
}

/* Adicionar indicador visual de que é clicável */
.price-tag::after {
    content: '👆';
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 0.8rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.price-tag:hover::after {
    opacity: 1;
}

