@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

#menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px;
}

#dishes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 20px;
}

.dish-heart {
    position: absolute;
    background-color: var(--color-primary-6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.563rem;
    color: var(--color-primary-1);
    width: 70px;
    height: 70px;
    right: -10px;
    top: -10px;
    border-radius: 0px 37.5px 0px 42.5px;
    color: rgb(252, 143, 0);
}

.dish-description {
    color: #ffffff;
    text-align: center;
}

.dish-rate i {
    color: #ffd000
}

.dish-price {
    display: flex;
    align-items: center;
    gap: 20px;
}


@media screen and (max-width: 1170px) {
    #dishes {
        flex-wrap: wrap;
        justify-content: center;
    }

    .dish {
        width: calc(100% - 24px);
    }
}

@media screen and (max-width: 600px) {
    .dish {
        width: 100%;
    }

    #menu .section-subtitle {
        text-align: center;
    }
} 

.dish {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dish:hover {
  transform: scale(1.03);
  box-shadow: 0px 0px 20px 6px rgba(255, 102, 0, 0.5); /* sombra laranja vibrante */
}

#cta_buttons .btn-default {
  display: inline-block;
  padding: 12px 24px;
  background-color: #f88d00;
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-decoration: none;
  border-radius: 20px;
  font-size: 14px;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#cta_buttons .btn-default:hover {
  background-color: #ff6600;
} 