* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

:root {
  --text-color: white;
  --bg: linear-gradient(135deg, #3e5641 15%, #26413c 85%);
  --bg-mobile: url(../assets/bgCafe.jpeg);
  --border-color: white;
  --surface: rgba(0, 0, 0, 0.5);
}

/*base do site*/
body {
  background-image: var(--bg);
  height: 100vh;
}

body * {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
  text-shadow: 0 0 3px black;
}

#container {
  width: 100%;
  max-width: 588px;
  margin: 56px auto 0px;
  padding: 0px 24px;
  position: relative;
}

/*Foto*/
#profile {
  text-align: center;
  padding: 24px;
}

#profile img {
  width: 112px;
  border-radius: 50%;
  border: 3px solid var(--border-color);
}

#profile p {
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  margin-top: 8px;
  text-decoration: underline;
}

#profile p:hover {
  color: var(--surface);
}

/*Links*/
ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;

  padding: 24px 0px;
}

ul li {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*Botões*/
.links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  padding: 16px 24px;

  background: var(--bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;

  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  cursor: pointer;
  transition: 0.2s ease-in-out;
}

/*pseudo-selector*/
.links:hover {
  background: var(--surface);
  border: 1.5px solid white;
  transform: translateY(-5px);
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.1);
}

.links h2 {
  font-size: 20px;
}

.links i {
  position: absolute;
  left: 28px;
  top: 13px;
  font-size: 30px;
  color: var(--text-color);
}

.links .fa-whatsapp {
  font-size: 35px;
}

.links .fa-map-pin {
  left: 32px;
}

.share {
  height: 54px;
  padding: 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  right: 40px;
  z-index: 2;

  cursor: pointer;
  transition: all 0.3s ease;
}

.share i {
  font-size: 30px;
}

.share i:hover {
  color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 1280px) {
  body {
    background-image: var(--bg-mobile);
    background-size: cover;
  }
}
