body {
    background-color: #f8f9fa;
    font-family: Arial, sans-serif;
}

h1 {
	font-size: 1.2rem;
	font-weight: 700; 
	text-transform: uppercase;
}

@media (min-width: 768px) {
	h1 {
		font-size: 2rem; /* aumenta no desktop */
	}
}

a {
    text-decoration: none;
    color: inherit;
	font-weight: 600; 
}

a:hover {
    color: #c00;
}

/* INDEX */
.back-link {
	font-weight: 900;
    display: inline-block;   
    padding: 1px 25px 5px 8px;        
    text-decoration: none;    
}

.category-box {
    display: block;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 20px 10px;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    min-height: 110px;
}

.category-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    color: white;
}

/* Gradientes variados */
.color1 { background: linear-gradient(135deg, #773194, #daa0f2); }
.color2 { background: linear-gradient(135deg, #1e4e7b, #6fc7c7); }
.color3 { background: linear-gradient(135deg, #e84809, #f0b256); }
.color4 { background: linear-gradient(135deg, #00b09b, #96c93d); }
.color5 { background: linear-gradient(135deg, #0e0770, #6fc7c7); }
.color6 { background: linear-gradient(135deg, #231145, #2ebf91); }
.color7 { background: linear-gradient(135deg, #2193b0, #6dd5ed); } 
.color8 { background: linear-gradient(135deg, #7e354e, #f291b3); }
.color9 { background: linear-gradient(135deg, #d92745, #f58799); }
.color10 { background: linear-gradient(135deg, #6b290a, #cf6d40); }


/* Restaurantes */
.card-item {
  padding: 8px;
    box-shadow: 0 5px 3px rgba(0,0,0,0.05);
    margin-bottom: 10px;
    border-radius: 6px;
}
.card-item:last-child {
  border-bottom: none;
}

.fa-fw-custom {
    display: inline-block;
    width: 20px; 
    text-align: center;
}

