:root {
  --gradient-color-to: #3847EF;
  --gradient-color-from: #331C9C;
  --gradient-color-to: #9066FB;
  --pulsatrix-primary: #4e418f;
}

a {
  text-decoration: none;
}

img:not(.projeto):hover {
  transform: scale(1.1);
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  /* background: linear-gradient(123deg, #ef6a00 0%, #cc7447 50%, #db9876 100%); */
  background-color: #292929;
  color: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  line-height: 1.5;
}

main {
  flex: 1;
  width: 100%;
  max-width: 480px;
  padding: 2rem 1rem;
  box-sizing: border-box;
}

.profile {
  text-align: center;
  position: relative;
}

.share-btn {
  position: absolute;
  top: -1rem;
  right: 0;
  background: #1a1a1a35;
  color: #f8f8f8;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 50%;
  height: 36px;
  width: 36px;
}

.avatar-group {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.circle-avatar {
  height: 96px;
  width: 96px;
}

.avatar {
  border-radius: 50%;
  height: 96px;
  object-fit: cover;
  width: 96px;
}

.bio p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.projeto {
  margin-bottom: 2.4rem;
}

.projeto-swiper {
  height: 320px;
}

.projeto img {
  border-radius: 8px;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.swiper-fullscreen img {
  height: 100%;
  object-fit: contain;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff !important;
}

.swiper-fullscreen-btn {
  background:rgba(0,0,0,0.5);
  border:none;
  border-radius:50%;
  cursor:pointer;
  padding:8px;
  position:absolute;
  right:10px;
  top:10px;
  z-index:10;
}

.swiper-fullscreen-btn i {
  color: #fff;
}

.instagram-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.links-content {
  display: flex;
  flex-direction: column;
}

.links-content-link {
  background: linear-gradient(-135deg,#1400c8,#b900b4,#f50000);
  border-radius: 8px 8px 0 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
  color: white;
  font-weight: 600;
  text-align: center;

  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 1rem;
  position: relative;
  transition: all 0.2s;
  z-index: 1;
}

.links-content-link i:not(.fa-solid) {
  font-size: 1.2rem;
}

.links-content-link i.fa-solid {
  position: absolute;
  right: 16px;
  transform: rotate(-45deg);
}

.links-content-link:hover {
  filter: brightness(1.1);
  transform: scale(1.1);
}

.instagram-feed {
  background-color: #ffffff;
  border-radius: 0 0 8px 8px;
}

.instagram-list {
  margin: 0;
  padding: 1rem 0.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
}

.instagram-item {
  display: flex;
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  padding: 0;
  border: none;
  background: none;
}

.instagram-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 3ms ease-in-out;
}

.pulsatrix {
  background-color: #26244b;
  border: 1px solid #1B1F2F;
  border-radius: 10px;
  color: #f8f8f8;

  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.4rem;

  text-align: center;
}

.pulsatrix a strong {
  color: #614cc9;
}

.pulsatrix img {
  height: 120px;
  max-width: 320px;
}

.pulsatrix p {
  font-size: 1.2rem;
}

.pulsatrix-link {
  color: var(--gradient-color-to);
}

.pulsatrix-link:hover {
  color: #6655bb;
}

.pulsatrix-btn {
  transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75) !important;
  font-size: 16px;
  font-weight: 500;
  text-transform: None;
  color: #f8f8f8;
  border-style: none;
  padding: 21px 50px;
  background-image: linear-gradient(to right, var(--gradient-color-from) 0%, var(--gradient-color-to) 50%, var(--gradient-color-from) 100%);
  padding: 16px 41px;
  position: relative;
  display: inline-block;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  line-height: 1.1;
  letter-spacing: -.3px;
  -webkit-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
}

.pulsatrix-btn:hover {
  transform: scale(1.1);
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;

  z-index: 10;
}

.modal {
  position: relative;
  background: #f8f8f8;
  padding: 1.5rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 300px;
  z-index: 20;
}

.modal h2 {
  text-align: center;
  color: #191919;
  margin-top: 0;
}

.share-options {
  display: flex;
  justify-content: space-around;
  margin-top: 1rem;
}

.share-options a,
.share-options button {
  text-align: center;
  color: #111;
  font-size: 0.875rem;
  text-decoration: none;
  background: none;
  border-radius: 4px;
  padding: 8px;
}

.share-options p {
  margin: 0;
}

.share-options i {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.close-btn {
  background: none;
  border: none;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1.2rem;
  cursor: pointer;
}