@import url("./default.css");

body {
  background: #ffc2c2;
}

body:before {
  background-attachment: scroll;
  content: "";
  display: block;
  height: 100vh;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: scale(1);
  width: 100vw;
  z-index: -1;
  background-image: url("../images/pattern.svg");
  background-size: 866px;
  background-position: center;
  background-repeat: repeat;
}

.c-section {
  margin: 90px auto;
  padding: 0px 30px;
  width: 400px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
}

/* Components */

.c-logo {
  margin-bottom: 18px;
}

.c-logo__image {
  margin: 0 auto;
  width: 180px;
  clip-path: circle();
}

.c-button {
  width: 100%;
}

.c-button__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  column-gap: 12px;
  border-radius: 32px;
  width: 100%;
  background: #ffffff;
  transition: background 0.15s ease-out;
  border: 2px solid #212121;
  transition: transform 0.15s cubic-bezier(0.26, -0.27, 0.5, 3) 0s;
}

.c-button__button:hover {
  transform: scale(1.03);
  background: white;
}

.c-button__button > span {
  color: #212121;
  font-weight: 700;
  text-transform: uppercase;
}

.c-button__icon {
  font-size: 20px;
  color: #212121;
}

/* Round Buttons */

.c-buttons__round {
  width: 100%;
  display: flex;
  justify-content: center;
  column-gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.c-button__round {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid #212121;
  transition: transform 0.15s cubic-bezier(0.26, -0.27, 0.5, 3) 0s;
}

.c-button__round:hover {
  transform: scale(1.03);
}

.c-button__round > i {
  font-size: 24px;
  color: #212121;
}

/* Utilities */

.u-whatsapp {
  background: #39b54a;
}

.u-ifood {
  background: #ff2929;
}

.u-cardapio {
  background: #ffeed1;
}

.u-instagram {
  background: #ff9ecd;
}

.u-tiktok {
  background: #2b2a2a;
}

.u-tiktok > span,
.u-tiktok > i {
  color: white;
}

.u-tiktok:hover > span,
.u-tiktok:hover > i {
  color: #212121;
}

.u-tiktok__round {
  background: #fc92e9;
}

.u-instagram__round {
  background: #fdd305;
}

.u-tel__round {
  background: #91d1ff;
}
