/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500&display=swap');


/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #acacac;
  --first-color-light: #c4c4c4;
  --first-color-lighten: #131313;
  --gradient-color: #f074c0;
  --title-color: #000000;
  --text-color: #000000;
  --white-color: #000000;
  --body-color: #f074c0;
  
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
}

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

body {
  font-family: "Poppins", sans-serif;
  font-size: var(--normal-font-size);
  backdrop-filter: blur(5px);
  background-image: url('../img/bg5.webp');
  background-size: cover;
  background-position: center;
  color: var(--text-color);
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust the opacity as needed */
  z-index: -1;
}

ul {
  list-style: none;
}

a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/*=============== CARD ===============*/
.container {
  height: 100vh;
  margin-inline: 1.5rem;
  display: grid;
  place-items: center;
}

.container {
  animation: fadeIn 1s ease;
}

.card {
  position: relative;
  width: 290px;
  background: rgb(211 189 211 / 29%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 3px solid #fa28a9;
  border-radius: 30px;
  padding: 2.5rem 1.5rem 3.5rem;
  text-align: center;
  box-shadow: 0 .4rem .8rem #0005;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}
.card__img {
  width: 200px;
  border-radius: 50%;
  box-shadow: 0 .4rem .8rem #0005;
}
.card__border {
  width: 124px;
  height: 124px;
  background-color: var(--first-color-light);
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
}
.card__perfil {
  width: 104px;
  height: 104px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.card__name, .card__profession {
  color: var(--white-color);
}
.card__name {
  font-size: var(--h2-font-size);
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.card__profession {
  font-size: var(--smaller-font-size);
  font-weight: 500;
}

.card header {
  font-size: 1.5rem;
  color: #000000;
  font-weight: 600;
  text-align: center;
}

button {
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 100%;
  color: #1f1f1f;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: #f074c0;
  border-radius: 20px;
  border: 3px solid #fa28a9;
  box-shadow: 0 .2rem .6rem #0005;
  position: relative;
}

button:hover {
  opacity: 85%;
}


/* Mobile styles */
@media (max-width: 768px) {
  /* Adjust footer font size for smaller screens */
  .footer h3 {
      font-size: 20px;
      letter-spacing: normal;
  }

  .footer #container{
    padding: 15px;
  }
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  font-size: 32px;
  text-align: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}

#spinner {
  width: 2em;
  animation: rotate 750ms linear infinite;
}

@keyframes rotate {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}

#sGD stop {
  stop-color: #ffffff;
}

.path-solid {
  stroke: #ffffff;
}