* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --background: hsl(206 100% 32% / 0.6);
  --text-color: hsl(255 100% 100% / 0.8);
  --stroke-color: hsl(206 100% 32% / 0.1);
  --surface-color-hover: var(--stroke-color);
}

body {
  background: var(--background);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

body * {
  font-family: "Inter", sans-serif;
  color: var(--text-color);
}

img {
  width: 100%;
  object-fit: contain;
}

.icon {
  width: 32px;
  height: 32px;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(270deg) brightness(103%) contrast(100%);
  padding-right: 0.5em;
}

.white {
  /* color: white; */
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(270deg) brightness(103%) contrast(100%);
}
.black {
  /* color: black; */
  filter: invert(0%) sepia(90%) saturate(7500%) hue-rotate(70deg) brightness(90%) contrast(108%);
}

.wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 588px;

  margin: 3em auto;
  padding-inline: 24px;
}

header {
  display: grid;
  width: 90%;
  place-items: center;
  margin: 0 auto;
}

.header-profile {
  display: grid;
  justify-items: center;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid white;
  margin-bottom: 1em;
  object-fit: cover;
}

h1 {
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
}

p {
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 1px;
  padding: 1em;
  text-align: center;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--background);
  border: none;
  border-radius: 8px;

  margin-top: 32px;
  padding: 15px 32px;

  color: var(--text-color);
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  filter: brightness(1.1);
}


/* Links */

#contacts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 90%;
  margin: 0 auto;
}

#contacts li a {
  padding: 16px 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;

  background: var(--background);
  border: 1px solid  var(--text-color);
  border-radius: 8px;

  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);

  font-weight: 500;
  font-size: clamp(.8rem, 3vw, 1rem);

  text-decoration: none;

  transition: background 0.2s;
}

#contacts li a:hover {
  background: var(--stroke-color);
}

.qrcode {
  margin-inline: auto;
  border-radius: 0.5em;

  padding: 0.5em;

  background-color: white;
  /* outline: 4px solid black; */
}

.qrcode img:first-child {
  margin-bottom: 2em;
}

/* Contêiner principal do carrossel */
.carousel-container {
  width: 100%;
  height: 350px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  padding-block: 2rem;
}

/* Contêiner das imagens para transição */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

/* Estilo para cada imagem no carrossel */
.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  object-position: bottom;
}
