    * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

   body {
  font-family: 'Poppins', sans-serif;
  
 background: #000000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}


    .container {
    text-align: center;
    max-width: 450px;
    width: 100%;
    }

    .logo-container {
    margin-bottom: 5px;
    }

    .logo {
    width: 270px;
    height: 270px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffd9008f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    }

    h1 {
    font-size: 36px;
    color: #FFD700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    }

    .rating {
    margin-bottom: 10px;
    font-size: 20px;
    color: #FFD700;
    }

    .slogan {
    margin-bottom: 25px;
    font-size: 18px;
    color: #ddd;
    font-weight: 400;
    }

    .descricao {
    margin: 20px auto 35px;
    background-color: #2b2b2b;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    color: #f2f2f2;
    font-size: 16px;
    }

    .descricao-titulo {
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFD700;
    text-align: center;
    }

    .descricao ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    }

    .descricao ul li {
    padding: 8px 0;
    border-bottom: 1px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ccc;
    }

    .descricao ul li:last-child {
    border-bottom: none;
    }

    .links {
    margin-top: 30px;
    }

    .link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    padding: 16px;
    border-radius: 10px;
    margin: 15px 0;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .link-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    }

    .whatsapp-btn {
    background-color: #25D366; /* Verde do WhatsApp */
    }

    .whatsapp-btn:hover {
    background-color: #128C7E;
    }

    .menu-btn {
    background-color: #FF8C00; /* Laranja vibrante para o cardápio */
    }

    .menu-btn:hover {
    background-color: #e57c00;
    }

    .instagram-btn {
    background-color: #E1306C; /* Rosa do Instagram */
    }

    .instagram-btn:hover {
    background-color: #C135A2;
    }

    .maps-btn {
    background-color: #4285F4; /* Azul do Google Maps */
    }

    .maps-btn:hover {
    background-color: #357ae8;
    }

    .link-btn i {
    margin-right: 10px;
    font-size: 20px;
    }

    footer {
    margin-top: 40px;
    }

    footer p {
    font-size: 14px;
    color: #777;
    }
   
    footer .copyright {
  font-size: 16px;
  color: #555;
  margin-top: 20px;
}
