/* ================================
   BIO — TRUPI (ENCAPSULADO)
================================ */

.bio-section {
  padding: 4rem 1.5rem;
  background: #111;
  color: #fff;
}

.bio-section .bio-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* TÍTULO */
.bio-section .future__col-title h2 em {
  font-style: normal;
  font-weight: 700;
}

/* FOTO */
.bio-section .bio-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  gap: 1.5rem;
}

.bio-section .bio-photo {
  margin-top: 2rem;
  position: relative;
  width: 360px;
  height: 360px;
  border-radius: 28px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
}

.bio-section .bio-name {
  font-family: Epilogue, Arial, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
  padding: 0;
  text-align: center;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.bio-section .bio-name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff6496, transparent);
  opacity: 0.6;
}

.bio-section .bio-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: radial-gradient(
    circle at 40% 30%,
    rgba(255, 100, 150, 0.45),
    transparent 65%
  );
  filter: blur(55px);
  z-index: -1;
}

.bio-section .bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXTO */
.bio-section .bio-text {
  font-size: 1.15rem;
  line-height: 1.72;
  font-weight: 400;
  text-align: left;
  max-width: 760px;
  margin: 0 auto;
}

.bio-section .bio-text p {
  margin: 1.4rem 0;
}

.bio-section .bio-text blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid #ff6496;
  font-style: italic;
  opacity: 0.9;
}

/* Sticker */
.bio-section .sticker-bio {
  width: 5em;
  position: absolute;
  bottom: 65%;
  right: 10%;
  transform: translate(50%, 50%);
}

/* ===================================
   RESPONSIVIDADE
=================================== */

@media (max-width: 600px) {
  .bio-section .bio-header {
    gap: 1.2rem;
  }

  .bio-section .bio-photo {
    width: 240px;
    height: 240px;
    border-radius: 16px;
  }

  .bio-section .bio-name {
    font-size: 1.4rem;
  }

  .bio-section .bio-name::after {
    width: 50px;
    height: 1.5px;
  }

  .bio-section .bio-text {
    font-size: 1.03rem;
    line-height: 1.65;
    padding: 0 0.5rem;
  }

  .bio-section .bio-text blockquote {
    padding-left: 1rem;
  }

  .bio-section .sticker-bio {
    width: 3em;
    bottom: 4%;
    right: 5%;
  }
}
