/* ------------------------------------------------------ */
/* IMPORTS DE FONTES                                      */
/* ------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css');

@font-face {
  font-family: 'TanPearl';
  src: url('./fonts/tan-pearl.otf') format('opentype');
}

/* ------------------------------------------------------ */
/* RESET                                                  */
/* ------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------------------------------------------ */
/* FUNDO – GALÁXIA ROSÉ PREMIUM                           */
/* ------------------------------------------------------ */
body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;

  /* empilha card + footer em coluna */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 10px 0;

  /* Fundo: base bem clara + manchas rosé/lilás suaves */
  background:
    radial-gradient(circle at 12% 20%,
      rgba(196, 150, 209, 0.42) 0%,
      rgba(255, 255, 255, 0) 55%
    ),
    radial-gradient(circle at 78% 78%,
      rgba(255, 180, 220, 0.42) 0%,
      rgba(255, 255, 255, 0) 60%
    ),
    linear-gradient(
      to bottom,
      #fff9ff 0%,
      #f8edf7 40%,
      #f5e4f5 100%
    );

  background-size: cover;
  background-attachment: fixed;

  color: #2b1837;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: rgba(196, 156, 223, 0.7) transparent;
}

@keyframes gradientMove {
  0% { background-position: 50% 0%; }
  50% { background-position: 48% 40%; }
  100% { background-position: 52% 90%; }
}

/* ------------------------------------------------------ */
/* PARTÍCULAS DA GALÁXIA                                  */
/* ------------------------------------------------------ */
#lightParticles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  mix-blend-mode: screen;
  z-index: 0;
}

/* ------------------------------------------------------ */
/* CARD – GLASS ROSÉ                                      */
/* ------------------------------------------------------ */
.container {
  width: 90%;
  max-width: 460px;
  margin: 40px auto;
  padding: 40px 28px 44px;

  background: linear-gradient(
    145deg,
    rgba(255, 244, 248, 0.92),
    rgba(245, 224, 230, 0.86),
    rgba(235, 200, 210, 0.82)
  );

  backdrop-filter: blur(30px) saturate(160%);
  -webkit-backdrop-filter: blur(30px) saturate(160%);

  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.78);

  box-shadow:
    0 26px 50px rgba(60, 20, 100, 0.30),
    0 6px 18px rgba(160, 110, 190, 0.18);

  position: relative;
  z-index: 2;
}

/* highlight de vidro */
.container::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.18) 40%,
    rgba(255, 255, 255, 0) 100%
  );
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  z-index: -1;
}

/* ponto decorativo */
.container::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.4px solid rgba(255, 255, 255, 0.75);
  background: radial-gradient(circle,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.75);
  bottom: 18px;
  right: 28px;
}

/* ------------------------------------------------------ */
/* FOTO + NOME                                            */
/* ------------------------------------------------------ */
.container-imagem {
  margin-top: 4px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.img {
  position: relative;
  background-image: url('./fotos/perfil.jpg');
  width: 150px;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  margin-bottom: 20px;

  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 14px 30px rgba(235, 200, 210, 0.6),
    0 4px 10px rgba(220, 180, 195, 0.40);

  transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.3s ease;
}

.img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 18px 38px rgba(235, 200, 210, 0.70),
    0 8px 16px rgba(220, 180, 195, 0.45);
  filter: brightness(1.05);
}

.nome-pri {
  font-family: 'TanPearl', serif;
  font-size: 32px;
  color: #3b2640;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 2px;
}

.profissao-pri {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  color: #6f5a79;
  text-align: center;
}

/* ------------------------------------------------------ */
/* DESCRIÇÃO                                              */
/* ------------------------------------------------------ */
.container-descricao p {
  text-align: center;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #5b3c66;
  margin-top: 12px;
  margin-bottom: 22px;
}

/* ------------------------------------------------------ */
/* BOTÕES – ROSÉ PREMIUM                                  */
/* ------------------------------------------------------ */
.container-botao {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.botao {
  width: 100%;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);

  background: linear-gradient(
    120deg,
    rgba(255, 244, 248, 0.98),
    rgba(247, 228, 236, 0.99),
    rgba(235, 200, 210, 1)
  );

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  display: flex;
  align-items: center;
  text-decoration: none;

  color: #3b2640;

  /* sombra mais marcada para destacar os botões */
  box-shadow:
    0 10px 22px rgba(132, 78, 124, 0.26),
    0 4px 10px rgba(160, 110, 135, 0.14);

  transform: translateY(18px);
  opacity: 0;

  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    background 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.botao.show {
  opacity: 1;
  transform: translateY(0);
}

.botao i {
  margin-left: 26px;
  font-size: 22px;
  color: #3b2640;
}

.botao p {
  margin-left: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #3b2640;
}

.botao:hover {
  background: linear-gradient(
    120deg,
    rgba(255, 248, 252, 1),
    rgba(252, 234, 241, 1),
    rgba(242, 210, 220, 1)
  );

  transform: translateY(2px);

  box-shadow:
    0 14px 28px rgba(132, 78, 124, 0.35),
    0 6px 14px rgba(160, 110, 135, 0.20);

  border-color: rgba(255, 255, 255, 0.95);
}

/* estado ativo / clique */
.botao:active {
  transform: translateY(4px);
  box-shadow:
    0 8px 18px rgba(132, 78, 124, 0.25),
    0 3px 8px rgba(160, 110, 135, 0.16);
}

/* ------------------------------------------------------ */
/* REDES SOCIAIS                                          */
/* ------------------------------------------------------ */
.container-redesocial {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.rede-social i {
  font-size: 26px;
  cursor: pointer;
  color: #3b2640;
  transition: transform 0.25s ease, color 0.25s ease, filter 0.25s ease;
}

.rede-social i:hover {
  transform: scale(1.12) translateY(-1px);
  color: #ffffff;
  filter: brightness(1.25);
}

/* ------------------------------------------------------ */
/* SCROLLBAR – MINIMALISTA                                */
/* ------------------------------------------------------ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(180deg,
    rgba(244, 218, 250, 0.95),
    rgba(208, 172, 238, 0.95)
  );
  border: 2px solid rgba(255, 255, 255, 0.9);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg,
    rgba(249, 226, 255, 1),
    rgba(215, 182, 244, 1)
  );
}

/* ------------------------------------------------------ */
/* MOBILE                                                 */
/* ------------------------------------------------------ */
@media (max-width: 480px) {
  body {
    padding: 32px 0;
  }

  .container {
    padding: 26px 18px 30px;
    margin: 24px auto;
  }

  .img {
    width: 138px;
    height: 138px;
    margin-bottom: 18px;
  }

  .nome-pri {
    font-size: 28px;
  }

  .profissao-pri {
    font-size: 16px;
  }

  .container-descricao p {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .botao {
    height: 52px;
  }

  .botao i {
    margin-left: 22px;
    font-size: 20px;
  }

  .botao p {
    font-size: 13px;
  }

  .container-redesocial {
    margin-top: 24px;
  }
}

.footer-site {
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: rgba(124, 112, 129, 0.75);
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.footer-site a {
  color: rgba(146, 128, 155, 0.95);
  text-decoration: none;
  font-weight: 500;
}

.footer-site a:hover {
  text-decoration: underline;
}