* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background: #d9bf8f url("../images/bg.png") center top / cover no-repeat;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px 100px 20px;
}

.container {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.logo {
  width: 100px;
  margin: 0 auto 80px auto;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.card {
  position: relative;
  display: block;
  isolation: isolate;
}

.card-image {
  width: 100%;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.float-icon {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  transition: transform 0.25s ease;
}

/* Desktop mantém mais solto */
.icon-chef {
  width: 100px;
  right: -45px;
  top: 89%;
  transform: translateY(-50%);
}

.icon-dish {
  width: 100px;
  left: -50px;
  bottom: -12px;
}

.icon-drink {
  width: 100px;
  right: -52px;
  bottom: -12px;
}

/*hover links*/
.card {
  position: relative;
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
}

.card:hover .card-image {
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.float-icon {
  transition: transform 0.25s ease;
}

/* chef mantém o translate */
.card:hover .icon-chef {
  transform: translateY(-50%) scale(1.08) rotate(4deg);
}

/* outros normais */
.card:hover .icon-dish,
.card:hover .icon-drink {
  transform: scale(1.08) rotate(4deg);
}

/*Brihlo hover*/
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.card:hover::after {
  opacity: 1;
}





/* Responsivo*/
@media (max-width: 520px) {
  .page {
    padding: 70px 20px;
  }

  .container {
    max-width: 340px;
  }

  .logo {
    width: 110px;
    margin-bottom: 50px;
  }

  .links {
    gap: 22px;
  }

  .card-image {
    border-radius: 22px;
  }

  .icon-chef,
  .icon-dish,
  .icon-drink {
    width: 68px;
  }

  .icon-chef {
    right: -14px;
    top: 86%;
  }

  .icon-dish {
    left: -14px;
    bottom: -4px;
  }

  .icon-drink {
    right: -14px;
    bottom: -4px;
  }
}

@media (max-width: 390px) {
  .page {
    padding: 60px 16px;
  }

  .container {
    max-width: 100%;
  }

  .logo {
    width: 100px;
    margin-bottom: 38px;
  }

  .links {
    gap: 20px;
  }

  .card-image {
    border-radius: 20px;
  }

  .icon-chef,
  .icon-dish,
  .icon-drink {
    width: 58px;
  }

  .icon-chef {
    right: -8px;
    top: 84%;
  }

  .icon-dish {
    left: -8px;
    bottom: -2px;
  }

  .icon-drink {
    right: -8px;
    bottom: -2px;
  }
}