@import url("https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:wght@300;500;600;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text-color: #7d0d0d;
  --text-color-botons: #ffffff;
  --text-color-sub: #7d0d0d;
  /* --bg: url(./assets/bg-mobile-light.jpg); */
  --bg: #e88d34;
  --stroke-color: rgba(0, 0, 0, 0.075);
  --surface-color: #7d0d0d;
  --highlight-color: rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Sofia Sans Condensed", sans-serif;
  color: var(--text-color);
  background: var(--bg);
}

body * {
  color: var(--text-color);
}

#container {
  max-width: 588px;
  margin: 0 auto;
  padding: 56px 24px;
}

/* PERFIL ===================*/
#profile {
  text-align: center;
  padding: 24px 24px 5px 24px;
}

#profile img {
  width: 112px;
}

#profile p {
  font-weight: 500;
  line-height: 24px;
  margin-top: 8px;
}

#profile span {
  font-size: 12px;
  color: var(--text-color-sub);
}

#infos p {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  padding: 20px 5px;
}

/*LINKS ===================*/

ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;

  padding: 24px 0;
}

ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: var(--surface-color);
  border: 1px solid var(--stroke-color);
  border-radius: 8px;

  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;

  transition: background 0.5s;
  transition: transform 0.4s;
}

ul li a:hover {
  transform: scale(1.04);
}

#botao_links {
  color: var(--text-color-botons);
}

/* SOCIAL LINKS */
#social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 24px;
}
#social-links a {
  display: flex;
  align-items: center;
  justify-items: center;
  padding: 16px;

  border-radius: 50%;

  transition: background 0.5s;
}

#social-links a:hover {
  background: var(--highlight-color);
}

footer {
  padding: 24px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

/* MEDIA QUERIES ==================*/
/* @media (min-width: 700px) {
  :root {
    --bg: url(./assets/bg-desktop-light.jpg);
  }
} */

/* ANIMAÇÕES =================== */
@keyframes slider-in {
  from {
    left: 0;
  }
  to {
    left: 50%;
  }
}

@keyframes slider-back {
  from {
    left: 50%;
  }
  to {
    left: 0;
  }
}
